Regular Expressions 101

Save & Share

Flavor

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

Function

  • Match
  • Substitution
  • List
  • Unit Tests

Tools

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

Regular Expression

/
/
g

Test String

Code Generator

Generated Code

#include <StringConstants.au3> ; to declare the Constants of StringRegExp #include <Array.au3> ; UDF needed for _ArrayDisplay and _ArrayConcatenate Local $sRegex = "(#:|#,).+[\n]*" Local $sString = "#, fuzzy" & @CRLF & _ "msgid """ & @CRLF & _ "msgstr """ & @CRLF & _ ""Project-Id-Version: \n"" & @CRLF & _ ""POT-Creation-Date: 2017-12-05 11:39+0700\n"" & @CRLF & _ ""PO-Revision-Date: 2016-08-17 19:26+0700\n"" & @CRLF & _ ""Last-Translator: \n"" & @CRLF & _ ""Language-Team: \n"" & @CRLF & _ ""Language: en_US\n"" & @CRLF & _ ""MIME-Version: 1.0\n"" & @CRLF & _ ""Content-Type: text/plain; charset=UTF-8\n"" & @CRLF & _ ""Content-Transfer-Encoding: 8bit\n"" & @CRLF & _ ""X-Generator: Poedit 1.8.7.1\n"" & @CRLF & _ ""X-Poedit-Basepath: ..\n"" & @CRLF & _ ""Plural-Forms: nplurals=2; plural=(n != 1);\n"" & @CRLF & _ ""X-Poedit-SourceCharset: UTF-8\n"" & @CRLF & _ ""X-Poedit-KeywordsList: __;_e;esc_html__;esc_html_e;esc_html_x;_n:1,2;"" & @CRLF & _ ""_n_noop:1,2;_nx:1,2;_nx_noop:1,2\n"" & @CRLF & _ ""X-Poedit-SearchPath-0: .\n"" & @CRLF & _ ""X-Poedit-SearchPathExcluded-0: *.js\n"" & @CRLF & _ "" & @CRLF & _ "#: comments.php:20" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "Comment (%1$s)"" & @CRLF & _ "msgid_plural "Comments (%1$s)"" & @CRLF & _ "msgstr[0] """ & @CRLF & _ "msgstr[1] """ & @CRLF & _ "" & @CRLF & _ "#: comments.php:44 includes/helpers.php:87" & @CRLF & _ "msgid "Previous"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: comments.php:45 includes/helpers.php:88" & @CRLF & _ "msgid "Next"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: comments.php:57" & @CRLF & _ "msgid "Comments are closed."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: default-templates/article.php:29 default-templates/page.php:22" & @CRLF & _ "#: default-templates/single.php:26" & @CRLF & _ "#: framework-customizations/extensions/articles/articles/article-04/views/view.php:29" & @CRLF & _ "#: framework-customizations/extensions/events/views/single.php:90" & @CRLF & _ "#: framework-customizations/extensions/faq/views/single.php:16" & @CRLF & _ "#: framework-customizations/extensions/portfolio/views/single.php:47" & @CRLF & _ "#: framework-customizations/extensions/services/views/single.php:33" & @CRLF & _ "#: framework-customizations/extensions/teams/views/single.php:81" & @CRLF & _ "msgid "Continue reading"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: default-templates/article.php:36 default-templates/page.php:25" & @CRLF & _ "#: default-templates/single.php:30" & @CRLF & _ "#: framework-customizations/extensions/articles/articles/article-04/views/view.php:33" & @CRLF & _ "#: framework-customizations/extensions/portfolio/views/single.php:51" & @CRLF & _ "#: framework-customizations/extensions/posts/posts/post-01/views/view.php:32" & @CRLF & _ "#: framework-customizations/extensions/posts/posts/post-02/views/view.php:30" & @CRLF & _ "#: framework-customizations/extensions/posts/posts/post-03/views/view.php:32" & @CRLF & _ "#: framework-customizations/extensions/posts/posts/post-04/views/view.php:30" & @CRLF & _ "#: framework-customizations/extensions/posts/posts/post-05/views/view.php:27" & @CRLF & _ "#: framework-customizations/extensions/services/views/single.php:37" & @CRLF & _ "msgid "Pages:"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: default-templates/footer.php:12" & @CRLF & _ "msgid "&#169; Designed by RubikThemes. All Rights Reserved."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: default-templates/no-content.php:3" & @CRLF & _ "msgid "We can&rsquo;t find what you&rsquo;re looking for!"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: default-templates/no-content.php:9" & @CRLF & _ "msgid "Ready to publish your first post?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: default-templates/no-content.php:9" & @CRLF & _ "msgid "Get started here"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: default-templates/no-content.php:13" & @CRLF & _ "msgid "Please try again with different keywords."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: default-templates/no-content.php:18" & @CRLF & _ "msgid """ & @CRLF & _ ""It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps "" & @CRLF & _ ""searching can help."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: default-templates/page.php:34" & @CRLF & _ "#: framework-customizations/extensions/events/views/single.php:94" & @CRLF & _ "#: framework-customizations/extensions/faq/views/single.php:39" & @CRLF & _ "#: framework-customizations/extensions/posts/posts/post-01/views/view.php:41" & @CRLF & _ "#: framework-customizations/extensions/posts/posts/post-02/views/view.php:39" & @CRLF & _ "#: framework-customizations/extensions/posts/posts/post-03/views/view.php:41" & @CRLF & _ "#: framework-customizations/extensions/posts/posts/post-04/views/view.php:39" & @CRLF & _ "#: includes/helpers.php:224" & @CRLF & _ "msgid "Edit"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:11" & @CRLF & _ "msgid "Donation"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:161" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:193" & @CRLF & _ "msgid "Exceeds the ticket class allows"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:591" & @CRLF & _ "msgid "Pending"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:592" & @CRLF & _ "msgid "Approve"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:596" & @CRLF & _ "msgid "All Status"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:617" & @CRLF & _ "msgid "All Events"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:634" & @CRLF & _ "msgid "All Event Categories"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:651" & @CRLF & _ "msgid "Money From"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:653" & @CRLF & _ "msgid "To"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:727" & @CRLF & _ "msgid "Speaker"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:730" & @CRLF & _ "msgid "Name of event speaker."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:733" & @CRLF & _ "msgid "Speaker Image"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:736" & @CRLF & _ "msgid "Image of event speaker."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:740" & @CRLF & _ "msgid "Start And End Of Event"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:741" & @CRLF & _ "msgid "Set start and end events datetime"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:763" & @CRLF & _ "msgid "Event Location"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:765" & @CRLF & _ "msgid "Where does the event take place?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:772" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:25" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:102" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:19" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:124" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:29" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:55" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:46" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:40" & @CRLF & _ "#: framework-customizations/theme/options/course-settings.php:48" & @CRLF & _ "#: framework-customizations/theme/options/page-404-settings.php:72" & @CRLF & _ "msgid "Description"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:775" & @CRLF & _ "msgid "Event Label"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:778" & @CRLF & _ "msgid "Label of event."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:787" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:86" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:210" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:337" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:85" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:209" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:330" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:85" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:209" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:318" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:85" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:209" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:322" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:223" & @CRLF & _ "msgid "Custom Style"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:788" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:224" & @CRLF & _ "msgid "Change the style / typography of this shortcode"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:789" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:88" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:212" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:339" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:87" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:211" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:332" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:87" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:211" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:320" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:87" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:211" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:324" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:225" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:169" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:241" & @CRLF & _ "msgid "Styling"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:795" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:25" & @CRLF & _ "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:86" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:155" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:12" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:67" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:231" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:234" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:394" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:457" & @CRLF & _ "#: framework-customizations/theme/options/taxonomies/cat_course.php:15" & @CRLF & _ "#: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:23" & @CRLF & _ "#: includes/hooks.php:436" & @CRLF & _ "msgid "Icon"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:796" & @CRLF & _ "msgid "Select icon for label."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:799" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:92" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:343" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:504" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:657" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:810" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:91" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:336" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:497" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:649" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:801" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:91" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:324" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:485" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:637" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:789" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:91" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:328" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:489" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:641" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:793" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:161" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:232" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:165" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:236" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/logo.php:38" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:88" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:78" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:74" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:34" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:66" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:263" & @CRLF & _ "#: framework-customizations/theme/options/page-boxed-layout.php:42" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:44" & @CRLF & _ "#: framework-customizations/theme/options/posts/page.php:119" & @CRLF & _ "msgid "Background Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:800" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:162" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:233" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:166" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:237" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:264" & @CRLF & _ "msgid "Select the background color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:806" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:125" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:375" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:511" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:664" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:817" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:124" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:368" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:504" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:656" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:808" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:124" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:356" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:492" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:644" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:796" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:124" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:360" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:496" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:648" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:800" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:54" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:270" & @CRLF & _ "msgid "Text Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:807" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:271" & @CRLF & _ "msgid "Select the text color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:817" & @CRLF & _ "msgid "Hide Event When Expired"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:818" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/config.php:46" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:13" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:155" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:165" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:174" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:184" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:8" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-1.php:3" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-2.php:3" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:6" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:13" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:12" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:11" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:4" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:9" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:87" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:98" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:109" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:120" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:131" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:142" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:153" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:177" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:193" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:209" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:225" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:122" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:130" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:138" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:150" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:290" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:303" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:317" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:331" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:96" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:88" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:8" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:18" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:4" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:13" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:66" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:163" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:13" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:108" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:4" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:12" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:5" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:10" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:8" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:14" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:9" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:8" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:5" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:10" & @CRLF & _ "#: framework-customizations/theme/options/advertisement-settings.php:72" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:116" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:130" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:268" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:282" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:296" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:310" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:485" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:21" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:29" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:98" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:135" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:247" & @CRLF & _ "msgid "Yes"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:825" & @CRLF & _ "msgid "Ticket Price"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:828" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:835" & @CRLF & _ "msgid "Price to sale the ticket of the event"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:832" & @CRLF & _ "msgid "Ticket Promotion Price"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:839" & @CRLF & _ "msgid "Number Ticket"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:842" & @CRLF & _ "msgid "Number of the ticket of the event"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:846" & @CRLF & _ "msgid "Button Buy Ticket Text"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:848" & @CRLF & _ "#: framework-customizations/extensions/events/includes/class-slz-event.php:496" & @CRLF & _ "msgid "Buy Ticket"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:849" & @CRLF & _ "msgid "Input text for Buy Ticket button"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:852" & @CRLF & _ "msgid "Button Buy Ticket URL"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:854" & @CRLF & _ "msgid "Input URL for payment method on button Buy Ticket"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:860" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:125" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:7" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:11" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:312" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:216" & @CRLF & _ "msgid "General"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/hooks.php:865" & @CRLF & _ "msgid "Ticket"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/includes/class-slz-event.php:231" & @CRLF & _ "#: framework-customizations/extensions/events/views/single.php:258" & @CRLF & _ "#: framework-customizations/extensions/portfolio/views/course-info.php:65" & @CRLF & _ "msgid "Price:"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/includes/class-slz-event.php:231" & @CRLF & _ "msgid "from "" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/includes/class-slz-event.php:234" & @CRLF & _ "msgid "Donation Now"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/includes/class-slz-event.php:490" & @CRLF & _ "#: framework-customizations/extensions/events/includes/class-slz-event.php:983" & @CRLF & _ "msgid "Buy ticket"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/includes/class-slz-event.php:511" & @CRLF & _ "msgid "Ticket Prices"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/includes/class-slz-event.php:1080" & @CRLF & _ "msgid "Event Host"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/includes/class-slz-event.php:1143" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/views/layout-2.php:29" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/views/view.php:14" & @CRLF & _ "msgid "days"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/includes/class-slz-event.php:1150" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/views/layout-2.php:38" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/views/view.php:22" & @CRLF & _ "msgid "hours"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/includes/class-slz-event.php:1157" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/views/layout-2.php:47" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/views/view.php:30" & @CRLF & _ "msgid "mins"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/includes/class-slz-event.php:1164" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/views/layout-2.php:56" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/views/view.php:38" & @CRLF & _ "msgid "secs"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/includes/class-slz-event.php:1202" & @CRLF & _ "#: framework-customizations/extensions/events/includes/class-slz-event.php:1271" & @CRLF & _ "msgid "Donate now"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/includes/class-slz-event.php:1249" & @CRLF & _ "msgid "Events Donation"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/includes/class-slz-event.php:1254" & @CRLF & _ "msgid "How much would you like to donate?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/config.php:8" & @CRLF & _ "msgid "SLZ Events Block"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/config.php:9" & @CRLF & _ "msgid "List of events"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/config.php:16" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/config.php:18" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:13" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/logo.php:13" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/menu.php:15" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/config.php:39" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/config.php:41" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/config.php:42" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:57" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/config.php:16" & @CRLF & _ "#: framework-customizations/extensions/portfolio/shortcodes/portfolio-carousel/config.php:24" & @CRLF & _ "#: framework-customizations/extensions/portfolio/shortcodes/portfolio-list/config.php:24" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/config.php:22" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/config.php:16" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/config.php:18" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/config.php:27" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/config.php:12" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/config.php:18" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/config.php:18" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/config.php:10" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/config.php:20" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:59" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/config.php:25" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/config.php:18" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/config.php:16" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/config.php:14" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/config.php:27" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/config.php:18" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/button/config.php:13" & @CRLF & _ "#: framework-customizations/theme/options/page-404-settings.php:29" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:25" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:78" & @CRLF & _ "msgid "United States"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/config.php:17" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/config.php:19" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/config.php:40" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/config.php:42" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/config.php:43" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:58" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/config.php:17" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/config.php:23" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/config.php:17" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/config.php:19" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/config.php:28" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/config.php:19" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/config.php:19" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/config.php:11" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:60" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/config.php:19" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/config.php:17" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/config.php:15" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/config.php:28" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/config.php:19" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/button/config.php:14" & @CRLF & _ "#: framework-customizations/theme/options/page-404-settings.php:30" & @CRLF & _ "msgid "India"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/config.php:18" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/config.php:16" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/config.php:20" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/config.php:41" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/config.php:20" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/config.php:29" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/config.php:20" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:61" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/config.php:20" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/config.php:29" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/button/config.php:15" & @CRLF & _ "msgid "United Kingdom"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/config.php:35" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:102" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:112" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:113" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:123" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:124" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:134" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:144" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:154" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:164" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:174" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:184" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:8" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:215" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:225" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:226" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:236" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:237" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:247" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:257" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:267" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:277" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:287" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:297" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:307" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:152" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:285" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:415" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:434" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:449" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:474" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:568" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:588" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:602" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:627" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:721" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:741" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:755" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:780" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:151" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:278" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:408" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:427" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:442" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:467" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:560" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:580" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:594" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:619" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:712" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:732" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:746" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:771" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:151" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:266" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:396" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:415" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:430" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:455" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:548" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:568" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:582" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:607" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:700" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:720" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:734" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:759" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:151" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:270" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:400" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:419" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:434" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:459" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:552" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:572" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:586" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:611" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:704" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:724" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:738" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:763" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:55" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:27" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:72" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:83" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:94" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:116" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:28" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:318" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:181" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:439" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:511" & @CRLF & _ "msgid "Show"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/config.php:36" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:9" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:156" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:289" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:419" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:439" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:453" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:478" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:572" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:592" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:606" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:631" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:725" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:745" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:759" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:784" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:155" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:282" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:412" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:432" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:446" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:471" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:564" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:584" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:598" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:623" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:716" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:736" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:750" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:775" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:155" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:270" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:400" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:420" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:434" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:459" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:552" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:572" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:586" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:611" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:704" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:724" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:738" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:763" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:155" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:274" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:404" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:424" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:438" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:463" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:556" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:576" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:590" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:615" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:708" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:728" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:742" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:767" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:54" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:26" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:32" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:73" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:84" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:95" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:117" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:29" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:314" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:185" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:392" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:443" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:515" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-faq.php:95" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:565" & @CRLF & _ "msgid "Hide"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/config.php:40" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:52" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/config.php:27" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:18" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:104" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:20" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:34" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:47" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:154" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:214" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:39" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:52" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:138" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:198" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:38" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:51" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:130" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:190" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:30" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:8" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:64" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:15" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:62" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:15" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:144" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:222" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:154" & @CRLF & _ "msgid "Category"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/config.php:41" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/config.php:28" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:19" & @CRLF & _ "#: framework-customizations/theme/config.php:541" & @CRLF & _ "msgid "Event"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/config.php:45" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:14" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:8" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-1.php:4" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-2.php:4" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:7" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:14" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:13" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:12" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:5" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:10" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:88" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:99" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:110" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:121" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:132" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:143" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:154" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:178" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:194" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:210" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:226" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:97" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:89" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:9" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:17" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:5" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:14" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:67" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:164" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:12" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:5" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:13" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:6" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:11" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:7" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:13" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:8" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:7" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:6" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:11" & @CRLF & _ "#: framework-customizations/theme/options/advertisement-settings.php:68" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:112" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:126" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:272" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:286" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:300" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:314" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:489" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:24" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:33" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:107" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:139" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:247" & @CRLF & _ "msgid "No"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/options/layout-1.php:6" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-1.php:7" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/config.php:17" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:18" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:23" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/logo.php:23" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/menu.php:25" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/search_box.php:9" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-1.php:5" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:69" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:43" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/options/layout-1.php:6" & @CRLF & _ "#: framework-customizations/extensions/portfolio/shortcodes/portfolio-list/options/layout-1.php:4" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/options/layout-1.php:6" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-1.php:6" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:4" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:38" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:3" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:7" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/options/layout-1.php:3" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/config.php:20" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/config.php:24" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:25" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:31" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:36" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/options/layout-1.php:3" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:4" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:10" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/config.php:20" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-1.php:3" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:3" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/partner/config.php:13" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:36" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:89" & @CRLF & _ "msgid "Florida"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/options/layout-1.php:7" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-1.php:8" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/config.php:18" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:19" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/logo.php:24" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/search_box.php:10" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-1.php:6" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:70" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:44" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/options/layout-1.php:7" & @CRLF & _ "#: framework-customizations/extensions/portfolio/shortcodes/portfolio-list/options/layout-1.php:5" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/options/layout-1.php:7" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-1.php:7" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:5" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:39" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:4" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:8" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/options/layout-1.php:4" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/config.php:21" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/config.php:25" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:26" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:32" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:37" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/options/layout-1.php:4" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:5" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:11" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/config.php:21" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-1.php:4" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:4" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/partner/config.php:14" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:37" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:90" & @CRLF & _ "msgid "California"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/options/layout-1.php:8" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/config.php:19" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:20" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/menu.php:26" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/search_box.php:11" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:71" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:45" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-1.php:8" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:6" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:5" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:9" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/options/layout-1.php:5" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/config.php:22" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/config.php:26" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:27" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:33" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:38" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:6" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/config.php:22" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-1.php:5" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/partner/config.php:15" & @CRLF & _ "msgid "Georgia"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/options/layout-1.php:15" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/options/layout-1.php:14" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/options/layout-3.php:12" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-1.php:14" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-2.php:15" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-6.php:10" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:63" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:66" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:21" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/logo.php:21" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/menu.php:23" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/search_box.php:6" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-1.php:25" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:13" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:64" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:66" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:40" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/options/layout-1.php:13" & @CRLF & _ "#: framework-customizations/extensions/portfolio/shortcodes/portfolio-list/options/layout-1.php:10" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:36" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/options/layout-1.php:15" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-1.php:15" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-2.php:15" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:19" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:18" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:17" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-4.php:12" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/options/layout-1.php:15" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:11" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:32" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-4.php:7" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:33" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/options/layout-1.php:9" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:16" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:8" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/options/layout-2.php:14" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-1.php:17" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-2.php:11" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-3.php:15" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:14" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:20" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:15" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:14" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-6.php:13" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/partner/options.php:11" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:33" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:86" & @CRLF & _ "msgid "Style"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/options/layout-1.php:18" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-1.php:29" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:17" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-1.php:20" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-2.php:14" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-3.php:18" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:17" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:23" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:18" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:17" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-6.php:20" & @CRLF & _ "msgid "Select style for blocks"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/options/layout-1.php:23" & @CRLF & _ "msgid "Label Position"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/options/layout-1.php:26" & @CRLF & _ "msgid "Top"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/options/layout-1.php:27" & @CRLF & _ "msgid "Bottom"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/options/layout-1.php:29" & @CRLF & _ "msgid "Select positon for display label."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/options/layout-3.php:7" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-1.php:12" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:76" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:95" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:75" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:68" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/options/layout-2.php:8" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:62" & @CRLF & _ "msgid "Columns On Row"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/options/layout-3.php:10" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:10" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-1.php:15" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:79" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:98" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:78" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:71" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/options/layout-2.php:11" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:65" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:19" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:25" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:22" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:3" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:71" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:5" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:25" & @CRLF & _ "msgid "One"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/options/layout-3.php:11" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:11" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:7" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:6" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-1.php:16" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:80" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:99" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:79" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:72" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/options/layout-2.php:12" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:66" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:20" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:26" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:23" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:4" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:72" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:6" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:26" & @CRLF & _ "msgid "Two"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/options/layout-3.php:12" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:12" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:8" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:7" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:6" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-1.php:17" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:81" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:100" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:80" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:73" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/options/layout-2.php:13" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:67" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:21" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:27" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:24" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:5" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:73" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:7" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:27" & @CRLF & _ "msgid "Three"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/options/layout-3.php:13" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:13" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:9" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:8" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:7" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-1.php:18" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:82" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:101" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:81" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:74" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/options/layout-2.php:14" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:68" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:22" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:28" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:25" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:6" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:74" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:8" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:28" & @CRLF & _ "msgid "Four"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/options/layout-3.php:15" & @CRLF & _ "msgid "Select item columns on row ."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:20" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:26" & @CRLF & _ "msgid "-All Event Categories-"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:24" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:30" & @CRLF & _ "msgid "-All Event-"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:33" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:36" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:42" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:11" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/logo.php:11" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/menu.php:13" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:18" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:22" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:25" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:54" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:56" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:50" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:10" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:38" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:11" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:29" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:49" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:21" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:22" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:8" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:26" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/vc_options.php:10" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:20" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:41" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:40" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:45" & @CRLF & _ "#: framework-customizations/theme/options/page-404-settings.php:25" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:22" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:75" & @CRLF & _ "msgid "Layout"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:37" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:41" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:23" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:26" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:30" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:47" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:76" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:27" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:46" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:45" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:50" & @CRLF & _ "msgid "Choose layout will be displayed."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:44" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:96" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:142" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:202" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:126" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:186" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:118" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:178" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:56" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:54" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:136" & @CRLF & _ "msgid "Display By"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:47" & @CRLF & _ "msgid "Choose team category or special events to display"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:48" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:70" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:92" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:100" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:122" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:144" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:135" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:146" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:172" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:195" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:206" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:232" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:255" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:130" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:156" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:179" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:190" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:216" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:239" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:122" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:148" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:171" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:182" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:208" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:231" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:180" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:193" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:138" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:147" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:111" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:120" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:60" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:82" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:104" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:58" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:80" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:102" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:140" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:162" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:185" & @CRLF & _ "msgid "Filter"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:58" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:110" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:160" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:220" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:144" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:204" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:136" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:196" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:36" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:70" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:68" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:150" & @CRLF & _ "msgid "Add Category"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:61" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:163" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:223" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:147" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:207" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:139" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:199" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:39" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:73" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:71" & @CRLF & _ "msgid "Choose special category to filter"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:65" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:117" & @CRLF & _ "msgid "Choose Event Category."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:74" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:126" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:441" & @CRLF & _ "msgid "Events"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:80" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:132" & @CRLF & _ "msgid "Add Event"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:83" & @CRLF & _ "msgid "Choose special event to show"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:87" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:139" & @CRLF & _ "msgid """ & @CRLF & _ ""Default display All Event if no event is selected and Number event is empty."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:100" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:213" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:138" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:34" & @CRLF & _ "msgid "Show Feature Image?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:104" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:217" & @CRLF & _ "msgid "Choose to show or hide image."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:105" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:116" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:127" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:137" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:147" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:157" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:167" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:177" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:187" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:195" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:218" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:229" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:240" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:250" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:260" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:270" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:280" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:290" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:300" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:314" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:322" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:181" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:188" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:195" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:202" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:209" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:216" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:227" & @CRLF & _ "msgid "Custom Options"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:110" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:223" & @CRLF & _ "msgid "Show Event Label?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:115" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:228" & @CRLF & _ "msgid "Choose to show or hide event label."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:121" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:234" & @CRLF & _ "msgid "Show Event Description?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:126" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:239" & @CRLF & _ "msgid "Choose to show or hide event description."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:132" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:245" & @CRLF & _ "msgid "Show Event Speaker?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:136" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:249" & @CRLF & _ "msgid "Choose to show or hide event speaker."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:142" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:255" & @CRLF & _ "msgid "Show Event Location?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:146" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:259" & @CRLF & _ "msgid "Choose to show or hide event location."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:152" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:265" & @CRLF & _ "msgid "Show Event Time?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:156" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:269" & @CRLF & _ "msgid "Choose to show or hide event time."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:162" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:275" & @CRLF & _ "msgid "Show Event Ticket Number?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:166" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:279" & @CRLF & _ "msgid "Choose to show or hide event ticket number."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:172" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:285" & @CRLF & _ "msgid "Show Event Ticket Price?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:176" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:289" & @CRLF & _ "msgid "Choose to show or hide event ticket price."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:182" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:295" & @CRLF & _ "msgid "Show Meta Info?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:186" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:299" & @CRLF & _ "msgid "Choose to show or hide event meta info."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:192" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:319" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:74" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:392" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:359" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:398" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:33" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:117" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:136" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:94" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:101" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:56" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:192" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:330" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:126" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:92" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:84" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:126" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:52" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:101" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:49" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:40" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:178" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:194" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:205" & @CRLF & _ "msgid "Title Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:194" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:321" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:76" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:51" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:42" & @CRLF & _ "msgid "Choose a custom color for title."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:202" & @CRLF & _ "msgid "Shortcode Title"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:205" & @CRLF & _ "msgid "Add title for shortcode."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:210" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:90" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:16" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:221" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:458" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:549" & @CRLF & _ "msgid "Columns"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:214" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:89" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:200" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:213" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:260" & @CRLF & _ "msgid "Choose number column will be displayed."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:223" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:74" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:79" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:102" & @CRLF & _ "msgid "Excerpt Length"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:226" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:77" & @CRLF & _ "msgid "Enter number of excerpt length. Default: 15"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:231" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:43" & @CRLF & _ "msgid "Pagination"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:234" & @CRLF & _ "msgid "Choose pagination display."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:239" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:56" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:86" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:97" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:93" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:95" & @CRLF & _ "#: framework-customizations/extensions/portfolio/widgets/project/views/admin.php:14" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:268" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:159" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:104" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:452" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:543" & @CRLF & _ "msgid "Limit Posts"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:243" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:58" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:89" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:100" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:96" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:98" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:271" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:162" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:107" & @CRLF & _ "msgid """ & @CRLF & _ ""Add limit posts per page. Set -1 or empty to show all. The number of posts "" & @CRLF & _ ""to display. If it blank the number posts will be the number from Settings -> "" & @CRLF & _ ""Reading"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:248" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:62" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:100" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:102" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:94" & @CRLF & _ "#: framework-customizations/extensions/portfolio/widgets/project/views/admin.php:19" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:275" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:166" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:111" & @CRLF & _ "msgid "Offset Post"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:251" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:64" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:103" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:105" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:97" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:278" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:169" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:114" & @CRLF & _ "msgid """ & @CRLF & _ ""Enter offset to pass over posts. If you want to start on record 6, using "" & @CRLF & _ ""offset 5"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:256" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:66" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:107" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:109" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:101" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:115" & @CRLF & _ "#: framework-customizations/extensions/portfolio/widgets/project/views/admin.php:24" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:72" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:148" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:301" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:173" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:118" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/recent-post/views/admin.php:17" & @CRLF & _ "msgid "Sort By"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:259" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:69" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:176" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:121" & @CRLF & _ "msgid "Select order to display list properties."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:266" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:329" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:68" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:115" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:114" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:116" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:108" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:53" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/cart_icon.php:6" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/course_category.php:20" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/logo.php:44" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/menu.php:43" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/search_box.php:17" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/text_link.php:17" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:74" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:54" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:107" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:254" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:160" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-category.php:35" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:34" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:28" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course.php:58" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:71" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:95" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:78" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:83" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:114" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:80" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:238" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:162" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:128" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:42" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:72" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:234" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:200" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:132" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:178" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:70" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:75" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:257" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:97" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:155" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:48" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/vc_options.php:23" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:101" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:129" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:308" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:187" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:125" & @CRLF & _ "msgid "Extra Class"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:269" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:70" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:118" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:117" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:119" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:111" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:77" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:57" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:110" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:257" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:86" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:83" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:45" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:135" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:260" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:100" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:158" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:51" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:311" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:190" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:128" & @CRLF & _ "msgid "Add extra class to block"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/config.php:8" & @CRLF & _ "msgid "SLZ Events Carousel"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/config.php:9" & @CRLF & _ "msgid "Banner of events"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/config.php:17" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/config.php:21" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/config.php:21" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/config.php:21" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:62" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/config.php:21" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/config.php:31" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/config.php:20" & @CRLF & _ "msgid "Italy"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/config.php:18" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/config.php:22" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/config.php:26" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/config.php:32" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/config.php:22" & @CRLF & _ "msgid "Turkey"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/config.php:40" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:84" & @CRLF & _ "#: framework-customizations/extensions/portfolio/views/archive.php:47" & @CRLF & _ "#: framework-customizations/extensions/posts/posts/post-01/views/related_item.php:53" & @CRLF & _ "#: framework-customizations/extensions/posts/posts/post-02/views/related_item.php:53" & @CRLF & _ "#: framework-customizations/extensions/posts/posts/post-03/views/related_item.php:53" & @CRLF & _ "#: framework-customizations/extensions/posts/posts/post-04/views/related_item.php:53" & @CRLF & _ "#: framework-customizations/extensions/posts/posts/post-05/views/related_item.php:53" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:79" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:88" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/views/large_module.php:68" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/views/medium_module.php:45" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-mansory/views/layout-1.php:23" & @CRLF & _ "#: framework-customizations/theme/views/article.php:29" & @CRLF & _ "msgid "Read More"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/options/layout-1.php:6" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:42" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-3.php:3" & @CRLF & _ "msgid "London"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/options/layout-1.php:7" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:43" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-3.php:4" & @CRLF & _ "msgid "Harrogate"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/options/layout-1.php:8" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:44" & @CRLF & _ "msgid "Leeds"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/options/layout-1.php:17" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/options/layout-3.php:15" & @CRLF & _ "msgid "Select style for event block."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/options/layout-3.php:6" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-6.php:3" & @CRLF & _ "msgid "Istanbul"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:50" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-2.php:22" & @CRLF & _ "msgid "Title Block"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:53" & @CRLF & _ "msgid "Add title for shortcode block."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:58" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:88" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:108" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:100" & @CRLF & _ "msgid "Limit Post"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:61" & @CRLF & _ "msgid "Limit post display. Default: -1"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:82" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:86" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:180" & @CRLF & _ "msgid "Button \"Read More\" Text"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:89" & @CRLF & _ "msgid "Enter text for button \"Read More\""" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:99" & @CRLF & _ "msgid "Choose event category or special events to display."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:113" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:153" & @CRLF & _ "msgid "Choose special category to filter."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:135" & @CRLF & _ "msgid "Choose special event to show."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:152" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:60" & @CRLF & _ "msgid "Is Auto Play?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:154" & @CRLF & _ "msgid "Choose YES to slide auto play. Default: Yes"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:157" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:167" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:177" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:187" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:196" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:205" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:129" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:142" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:151" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:160" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:169" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:93" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:106" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:119" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:132" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:144" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:166" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:182" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:198" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:214" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:230" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:243" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:178" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:187" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:196" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:205" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:213" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:221" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:266" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:275" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:284" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:293" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:302" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:310" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:299" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:312" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:322" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:331" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:340" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:348" & @CRLF & _ "msgid "Slide Custom"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:162" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:68" & @CRLF & _ "msgid "Is Dots Navigation?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:163" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:197" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:70" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:72" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:355" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:283" & @CRLF & _ "msgid "Choose YES to show dot navigation."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:172" & @CRLF & _ "msgid "Is Arrows Navigation?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:176" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:213" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:78" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:85" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:368" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:292" & @CRLF & _ "msgid "Choose YES to show arrow navigation."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:182" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:164" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:123" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:222" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:84" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:94" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:200" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:297" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:335" & @CRLF & _ "msgid "Is Loop Infinite ?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:186" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:168" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:127" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:229" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:86" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:98" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:204" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:381" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:301" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:339" & @CRLF & _ "msgid "Choose YES to slide loop infinite."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:192" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:124" & @CRLF & _ "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:124" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:161" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:266" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:53" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:90" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:326" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:261" & @CRLF & _ "msgid "Slide To Show"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:195" & @CRLF & _ "msgid "Enter number of items to show. Default: 1"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:201" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:136" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:238" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:107" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:209" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:390" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:306" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:344" & @CRLF & _ "msgid "Speed Slide"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:204" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:139" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:242" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:110" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:212" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:393" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:309" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:347" & @CRLF & _ "msgid "Enter number value. Unit is millisecond. Example: 600."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:305" & @CRLF & _ "msgid "Show Countdown?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:313" & @CRLF & _ "msgid "Choose show or hide event countdown."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:332" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course.php:61" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:74" & @CRLF & _ "msgid "Add extra class to block shortcode."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/views/layout-2.php:26" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/views/layout-2.php:35" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/views/layout-2.php:44" & @CRLF & _ "#: framework-customizations/extensions/events/shortcodes/event-carousel/views/layout-2.php:53" & @CRLF & _ "msgid "00"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/views/single.php:50" & @CRLF & _ "msgid "Last updated:"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/views/single.php:79" & @CRLF & _ "msgid "Location"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/views/single.php:144" & @CRLF & _ "#: framework-customizations/extensions/events/views/single.php:151" & @CRLF & _ "msgid "FREE"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/views/single.php:161" & @CRLF & _ "msgid "/slot"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/views/single.php:166" & @CRLF & _ "msgid "Booked time"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/views/single.php:171" & @CRLF & _ "msgid "Booked slot"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/views/single.php:172" & @CRLF & _ "msgid "Unlimited"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/views/single.php:177" & @CRLF & _ "msgid "Quantity"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/views/single.php:181" & @CRLF & _ "#: setup/data-master/views/import_attachments.php:18" & @CRLF & _ "msgid "Total"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/views/single.php:184" & @CRLF & _ "msgid "BOOK TICKET NOW"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/views/single.php:207" & @CRLF & _ "msgid "You might also like..."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/views/single.php:259" & @CRLF & _ "msgid "Quantity:"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/views/single.php:260" & @CRLF & _ "msgid "Total:"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/views/single.php:274" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:115" & @CRLF & _ "msgid "Checkout"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/views/single.php:298" & @CRLF & _ "msgid "Payment Successful!"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/views/single.php:299" & @CRLF & _ "msgid "Please check your mail box to receive invoice."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/views/single.php:305" & @CRLF & _ "msgid "Payment Fail!"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/events/views/single.php:306" & @CRLF & _ "msgid "Please try again."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/config.php:10" & @CRLF & _ "msgid "SLZ FAQ Block"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/config.php:11" & @CRLF & _ "msgid "Show list of FAQ."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:11" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/class-slz-shortcode-course-collection.php:207" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:39" & @CRLF & _ "msgid "- All Categories -"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:23" & @CRLF & _ "msgid "Choose category to show."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:27" & @CRLF & _ "msgid "Display Title"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:31" & @CRLF & _ "msgid "Choose to show category title."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:35" & @CRLF & _ "msgid "Display Readmore"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:39" & @CRLF & _ "msgid "Choose to show readmore buton."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:47" & @CRLF & _ "msgid "Choose to show pagination."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:77" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:85" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:93" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:101" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:109" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:117" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:125" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:133" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:181" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:193" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:205" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:217" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:229" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:241" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:288" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:32" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:40" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:48" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:56" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:22" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:30" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:80" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:88" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:96" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:104" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:112" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:120" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:105" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:113" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:121" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:129" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:137" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:198" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:206" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:214" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:222" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:230" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:238" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:246" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:254" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:322" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:334" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:346" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:358" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:370" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:151" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:223" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:40" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:393" & @CRLF & _ "#: framework-customizations/theme/options/posts/page.php:146" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-faq.php:96" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:566" & @CRLF & _ "#: framework-customizations/theme/options/typography.php:35" & @CRLF & _ "#: framework-customizations/theme/options/typography.php:64" & @CRLF & _ "#: framework-customizations/theme/options/typography.php:142" & @CRLF & _ "msgid "Custom"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:82" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:202" & @CRLF & _ "msgid "Title Color Hover"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:84" & @CRLF & _ "msgid "Choose a custom color hover for title."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:90" & @CRLF & _ "msgid "Item Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:92" & @CRLF & _ "msgid "Choose a custom color for item."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:98" & @CRLF & _ "msgid "Item Color Hover"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:100" & @CRLF & _ "msgid "Choose a custom color hover for item."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:106" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:44" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:176" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:204" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:110" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:206" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:312" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:31" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:104" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:161" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:240" & @CRLF & _ "msgid "Icon Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:108" & @CRLF & _ "msgid "Choose a custom color for icon."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:114" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:118" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:321" & @CRLF & _ "msgid "Icon Color Hover"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:116" & @CRLF & _ "msgid "Choose a custom color hover for icon."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:122" & @CRLF & _ "msgid "Read More Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:124" & @CRLF & _ "msgid "Choose a custom color for read more button."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:130" & @CRLF & _ "msgid "Read More Color Hover"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:132" & @CRLF & _ "msgid "Choose a custom color hover for read more button."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/views/view.php:31" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:49" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:43" & @CRLF & _ "msgid "All Categories"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/shortcodes/faq-block/views/view.php:78" & @CRLF & _ "msgid "SEE ALL ARTICLES"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/views/single.php:17" & @CRLF & _ "msgid "Updated"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/views/single.php:17" & @CRLF & _ "msgid "ago"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/views/single.php:47" & @CRLF & _ "#: framework-customizations/extensions/posts/posts/post-01/views/view.php:97" & @CRLF & _ "#: framework-customizations/extensions/posts/posts/post-02/views/view.php:91" & @CRLF & _ "#: framework-customizations/extensions/posts/posts/post-03/views/view.php:96" & @CRLF & _ "#: framework-customizations/extensions/posts/posts/post-04/views/view.php:95" & @CRLF & _ "#: framework-customizations/extensions/posts/posts/post-05/views/view.php:86" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:167" & @CRLF & _ "msgid "Related Articles"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/widgets/faq-category/config.php:7" & @CRLF & _ "msgid "faq-category"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/widgets/faq-category/config.php:8" & @CRLF & _ "msgid "SLZ: FAQ Categories"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/widgets/faq-category/config.php:9" & @CRLF & _ "msgid "A list of FAQ categories."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/widgets/faq-category/config.php:13" & @CRLF & _ "msgid "FAQ Categories"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/widgets/faq-category/views/admin.php:18" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:31" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:68" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:154" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:61" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:19" & @CRLF & _ "#: framework-customizations/extensions/portfolio/widgets/project/views/admin.php:9" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:91" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:34" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:12" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:61" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:94" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:37" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:6" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:22" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:116" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:29" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:78" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:36" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:27" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/category/views/admin.php:19" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/partner/options.php:18" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/recent-post/views/admin.php:7" & @CRLF & _ "#: framework-customizations/theme/options/page-404-settings.php:67" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:237" & @CRLF & _ "msgid "Title"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/widgets/faq-category/views/admin.php:24" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/category/views/admin.php:32" & @CRLF & _ "msgid "Title Color:"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/widgets/faq-category/views/admin.php:33" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/category/views/admin.php:37" & @CRLF & _ "msgid "Optional - Choose a custom title text color for this block"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/widgets/faq-category/views/admin.php:36" & @CRLF & _ "msgid "FAQ Category:"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/faq/widgets/faq-category/views/admin.php:46" & @CRLF & _ "msgid "Choose FAQ category to show"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:7" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:7" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:7" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:7" & @CRLF & _ "#: framework-customizations/theme/options/footer-options.php:5" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:10" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:4" & @CRLF & _ "msgid "-- Select widget area --"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:9" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:9" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:9" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:9" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/menu.php:3" & @CRLF & _ "#: framework-customizations/theme/options/posts/page.php:61" & @CRLF & _ "msgid "-- Select Menu --"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:14" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:14" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:14" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:14" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/config.php:22" & @CRLF & _ "#: framework-customizations/theme/options/footer-options.php:70" & @CRLF & _ "msgid "Light"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:15" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:15" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:15" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:15" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/config.php:21" & @CRLF & _ "#: framework-customizations/theme/options/footer-options.php:71" & @CRLF & _ "msgid "Dark"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:30" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:29" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:29" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:29" & @CRLF & _ "#: framework-customizations/theme/options/posts/page.php:81" & @CRLF & _ "#: framework-customizations/theme/options/posts/post.php:34" & @CRLF & _ "#: framework-customizations/theme/options/posts/product.php:29" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-faq.php:29" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-portfolio.php:29" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-service.php:29" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-team.php:29" & @CRLF & _ "msgid "General Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:33" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:32" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:32" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:32" & @CRLF & _ "msgid "Footer Undercover"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:37" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:62" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:191" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:323" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:36" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:61" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:190" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:316" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:36" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:61" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:190" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:304" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:36" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:61" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:190" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:308" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:143" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:214" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:90" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:124" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:151" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:222" & @CRLF & _ "#: framework-customizations/theme/options/footer-options.php:20" & @CRLF & _ "#: framework-customizations/theme/options/footer-options.php:55" & @CRLF & _ "#: framework-customizations/theme/options/footer-options.php:98" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:162" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:176" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:290" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:304" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:338" & @CRLF & _ "#: framework-customizations/theme/options/page-boxed-layout.php:24" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:133" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:204" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:276" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:330" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:364" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:411" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:61" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:144" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:183" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:46" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:83" & @CRLF & _ "#: framework-customizations/theme/options/posts/page.php:50" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:143" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:157" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:200" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:226" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:244" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:293" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:335" & @CRLF & _ "msgid "Enable"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:41" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:66" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:195" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:327" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:40" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:65" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:194" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:320" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:40" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:65" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:194" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:308" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:40" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:65" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:194" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:312" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:147" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:218" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:94" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:120" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:147" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:218" & @CRLF & _ "#: framework-customizations/theme/options/advertisement-settings.php:38" & @CRLF & _ "#: framework-customizations/theme/options/footer-options.php:24" & @CRLF & _ "#: framework-customizations/theme/options/footer-options.php:59" & @CRLF & _ "#: framework-customizations/theme/options/footer-options.php:102" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:158" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:180" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:286" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:300" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:342" & @CRLF & _ "#: framework-customizations/theme/options/page-boxed-layout.php:20" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:129" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:200" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:272" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:326" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:360" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:407" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:57" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:140" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:179" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:42" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:79" & @CRLF & _ "#: framework-customizations/theme/options/posts/page.php:54" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:147" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:161" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:204" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:230" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:248" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:297" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:339" & @CRLF & _ "msgid "Disable"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:49" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:48" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:48" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:48" & @CRLF & _ "msgid "Footer Top Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:57" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:56" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:56" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:56" & @CRLF & _ "#: framework-customizations/theme/options/footer-options.php:15" & @CRLF & _ "#: framework-customizations/theme/options/posts/page.php:45" & @CRLF & _ "msgid "Enable Footer Top"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:58" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:57" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:57" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:57" & @CRLF & _ "#: framework-customizations/theme/options/footer-options.php:16" & @CRLF & _ "#: framework-customizations/theme/options/posts/page.php:46" & @CRLF & _ "msgid "Enable the footer top?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:76" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:75" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:75" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:75" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:256" & @CRLF & _ "#: framework-customizations/theme/options/footer-options.php:34" & @CRLF & _ "#: framework-customizations/theme/options/footer-options.php:77" & @CRLF & _ "msgid "Choose Widget Area"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:77" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:76" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:76" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:76" & @CRLF & _ "#: framework-customizations/theme/options/footer-options.php:35" & @CRLF & _ "msgid "Choose widget area will show in footer top"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:87" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:86" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:86" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:86" & @CRLF & _ "msgid "Change the style of footer top"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:93" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:92" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:92" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:92" & @CRLF & _ "msgid "Select background color for footer top"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:100" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:350" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:99" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:343" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:99" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:331" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:99" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:335" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:69" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:82" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:14" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:21" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:27" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:22" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:21" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:73" & @CRLF & _ "#: framework-customizations/theme/options/page-404-settings.php:50" & @CRLF & _ "#: framework-customizations/theme/options/page-boxed-layout.php:49" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:59" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:105" & @CRLF & _ "#: framework-customizations/theme/options/posts/page.php:127" & @CRLF & _ "msgid "Background Image"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:101" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:351" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:100" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:344" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:100" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:332" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:100" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:336" & @CRLF & _ "msgid "Upload the background image .png or .jpg"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:106" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:229" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:356" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:105" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:228" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:349" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:105" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:228" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:337" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:105" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:228" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:341" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:80" & @CRLF & _ "msgid "Background Attachment"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:111" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:234" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:361" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:110" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:233" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:354" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:110" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:233" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:342" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:110" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:233" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:346" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:85" & @CRLF & _ "msgid "Background Size"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:116" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:239" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:366" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:115" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:238" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:359" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:115" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:238" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:347" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:115" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:238" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:351" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:90" & @CRLF & _ "msgid "Background Position"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:121" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:120" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:120" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:120" & @CRLF & _ "msgid "Border Bottom Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:122" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:372" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:121" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:365" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:121" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:353" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:121" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:357" & @CRLF & _ "msgid "Choose border top color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:126" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:125" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:125" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:125" & @CRLF & _ "msgid "Select footer's top bar text color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:132" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:131" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:131" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:131" & @CRLF & _ "msgid "Text Alignment"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:133" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:132" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:132" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:132" & @CRLF & _ "msgid "Setting text alignment"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:138" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:137" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:137" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:137" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:17" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:16" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:15" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:9" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:6" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:13" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:12" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:6" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:38" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:5" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:11" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:21" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:5" & @CRLF & _ "msgid "Left"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:139" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:138" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:138" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:138" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:18" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:17" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:16" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:8" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:11" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:8" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:37" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:6" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:12" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:20" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:7" & @CRLF & _ "msgid "Center"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:140" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:139" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:139" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:139" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:19" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:18" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:17" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:8" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:7" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:12" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:13" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:7" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:39" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:7" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:13" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:22" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:6" & @CRLF & _ "msgid "Right"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:147" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:280" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:146" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:273" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:146" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:261" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:146" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:265" & @CRLF & _ "msgid "Show Other Content?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:148" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:281" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:147" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:274" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:147" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:262" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:147" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:266" & @CRLF & _ "msgid "Choose show or hide other content in footer."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:161" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:294" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:160" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:287" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:160" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:275" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:160" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:279" & @CRLF & _ "msgid "Other Content"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:162" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:295" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:161" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:288" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:161" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:276" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:161" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:280" & @CRLF & _ "msgid "Enter other content in footer."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:178" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:177" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:177" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:177" & @CRLF & _ "msgid "Footer Content Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:186" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:185" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:185" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:185" & @CRLF & _ "#: framework-customizations/theme/options/footer-options.php:50" & @CRLF & _ "msgid "Enable Footer Main"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:187" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:186" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:186" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:186" & @CRLF & _ "#: framework-customizations/theme/options/footer-options.php:51" & @CRLF & _ "msgid "Enable the footer main?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:204" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:203" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:203" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:203" & @CRLF & _ "#: framework-customizations/theme/options/footer-options.php:68" & @CRLF & _ "#: framework-customizations/theme/options/footer-settings.php:24" & @CRLF & _ "#: framework-customizations/theme/options/posts/page.php:213" & @CRLF & _ "msgid "Footer Style"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:211" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:210" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:210" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:210" & @CRLF & _ "msgid "Change the style of footer main"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:216" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:215" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:215" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:215" & @CRLF & _ "msgid "Footer Background Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:217" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:216" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:216" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:216" & @CRLF & _ "msgid "Choose background color for footer main."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:221" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:220" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:220" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:220" & @CRLF & _ "msgid "Footer Background Image"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:224" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:223" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:223" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:223" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:73" & @CRLF & _ "#: framework-customizations/theme/options/page-404-settings.php:53" & @CRLF & _ "msgid "Upload background image."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:246" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:245" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:245" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:245" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:50" & @CRLF & _ "msgid "Padding Top"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:247" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:246" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:246" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:246" & @CRLF & _ "msgid "Enter padding top for footer main\"."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:251" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:250" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:250" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:250" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:58" & @CRLF & _ "msgid "Padding Bottom"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:252" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:251" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:251" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:251" & @CRLF & _ "msgid "Enter padding bottom for footer main\"."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:256" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:255" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:255" & @CRLF & _ "msgid "Widget Area 01"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:257" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:256" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:256" & @CRLF & _ "msgid "Choose widget area will show in footer collumn 1"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:262" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:261" & @CRLF & _ "msgid "Widget Area 02"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:263" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:262" & @CRLF & _ "msgid "Choose widget area will show in footer collumn 2"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:268" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:267" & @CRLF & _ "msgid "Widget Area 03"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:269" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:268" & @CRLF & _ "msgid "Choose widget area will show in footer collumn 3"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:274" & @CRLF & _ "msgid "Widget Area 04"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:275" & @CRLF & _ "msgid "Choose widget area will show in footer collumn 4"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:310" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:303" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:291" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:295" & @CRLF & _ "msgid "Footer Bottom Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:318" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:311" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:299" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:303" & @CRLF & _ "#: framework-customizations/theme/options/footer-options.php:93" & @CRLF & _ "msgid "Enable Footer Bottom"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:319" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:312" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:300" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:304" & @CRLF & _ "#: framework-customizations/theme/options/footer-options.php:94" & @CRLF & _ "msgid "Enable the footer bottom?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:338" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:331" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:319" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:323" & @CRLF & _ "msgid "Change the style of footer bottom"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:344" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:337" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:325" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:329" & @CRLF & _ "msgid "Select the footer bottom background color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:371" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:364" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:352" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:356" & @CRLF & _ "msgid "Border Top Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:376" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:369" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:357" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:361" & @CRLF & _ "msgid "Select footer bottom text color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:381" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:374" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:362" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:366" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:226" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:242" & @CRLF & _ "msgid "Social Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:382" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:375" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:363" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:367" & @CRLF & _ "msgid "Select the social icons color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:388" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:381" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:369" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:373" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:234" & @CRLF & _ "msgid "Social Hover Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:389" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:382" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:370" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:374" & @CRLF & _ "msgid "Select the social icons hover color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:396" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:389" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:377" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:381" & @CRLF & _ "msgid "Social Icon Size"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:397" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:390" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:378" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:382" & @CRLF & _ "msgid "Enter icon size in pixels. Ex: 16"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:404" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:397" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:385" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:389" & @CRLF & _ "msgid "Left Area Content"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:410" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:563" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:716" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:403" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:555" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:707" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:391" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:543" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:695" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:395" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:547" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:699" & @CRLF & _ "msgid "Show/Hide This Area"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:412" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:405" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:393" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:397" & @CRLF & _ "msgid "Show or hide Left Area Content"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:425" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:578" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:731" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:418" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:570" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:722" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:406" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:558" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:710" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:410" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:562" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:714" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/text_link.php:6" & @CRLF & _ "msgid "Text"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:426" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:579" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:732" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:419" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:571" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:723" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:407" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:559" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:711" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:411" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:563" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:715" & @CRLF & _ "msgid "Write text will display in this area"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:430" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:583" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:736" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:423" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:575" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:727" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:411" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:563" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:715" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:415" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:567" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:719" & @CRLF & _ "msgid "Social"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:436" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:585" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:738" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:429" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:577" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:729" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:417" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:565" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:717" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:421" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:569" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:721" & @CRLF & _ "msgid """ & @CRLF & _ ""Show social icon in footer bottom? Change social in the \"General\" settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:444" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:597" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:750" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:437" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:589" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:741" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:425" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:577" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:729" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:429" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:581" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:733" & @CRLF & _ "msgid "Navigation"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:445" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:598" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:751" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:438" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:590" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:742" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:426" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:578" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:730" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:430" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:582" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:734" & @CRLF & _ "msgid """ & @CRLF & _ ""Show navigation in this area? Please choose locations is \"Bottom menu\" in "" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:445" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:598" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:751" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:438" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:590" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:742" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:426" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:578" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:730" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:430" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:582" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:734" & @CRLF & _ "#: framework-customizations/theme/options/posts/page.php:114" & @CRLF & _ "#: framework-customizations/theme/options/posts/post.php:73" & @CRLF & _ "#: framework-customizations/theme/options/posts/product.php:61" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-faq.php:61" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-portfolio.php:61" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-service.php:61" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-team.php:61" & @CRLF & _ "#: framework-customizations/theme/options/taxonomies/category.php:58" & @CRLF & _ "#: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:55" & @CRLF & _ "msgid "Appearance"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:445" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:598" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:751" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:438" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:590" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:742" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:426" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:578" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:730" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:430" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:582" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:734" & @CRLF & _ "msgid "Menus"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:458" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:611" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:764" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:451" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:603" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:755" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:439" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:591" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:743" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:443" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:595" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:747" & @CRLF & _ "msgid " Add Image"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:461" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:614" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:767" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:454" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:606" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:758" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:442" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:594" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:746" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:446" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:598" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:750" & @CRLF & _ "msgid "Upload an image to display in footer bottom."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:469" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:622" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:775" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:462" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:614" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:766" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:450" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:602" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:754" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:454" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:606" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:758" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:101" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:25" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:42" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/config.php:11" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:33" & @CRLF & _ "msgid "Button"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:470" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:623" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:776" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:463" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:615" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:767" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:451" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:603" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:755" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:455" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:607" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:759" & @CRLF & _ "msgid "Show button in this area"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:490" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:643" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:796" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:483" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:635" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:787" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:471" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:623" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:775" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:475" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:627" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:779" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:131" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:140" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:149" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:158" & @CRLF & _ "msgid "Button Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:491" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:644" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:797" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:484" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:636" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:788" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:472" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:624" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:776" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:476" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:628" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:780" & @CRLF & _ "msgid "Setting for button"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:492" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:645" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:798" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:485" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:637" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:789" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:473" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:625" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:777" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:477" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:629" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:781" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/views/login_register.php:36" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/views/login_register.php:42" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/views/login_register.php:46" & @CRLF & _ "msgid "Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:497" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:650" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:803" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:490" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:642" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:794" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:478" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:630" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:782" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:482" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:634" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:786" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:100" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:62" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:85" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:59" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:43" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:251" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/button/options.php:18" & @CRLF & _ "msgid "Button Text"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:501" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:654" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:807" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:494" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:646" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:798" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:482" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:634" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:786" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:486" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:638" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:790" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:73" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:94" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:260" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/button/options.php:23" & @CRLF & _ "#: framework-customizations/theme/options/page-404-settings.php:87" & @CRLF & _ "msgid "Button Link"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:505" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:658" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:498" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:650" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:802" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:486" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:638" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:490" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:642" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:794" & @CRLF & _ "msgid "Select background color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:512" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:818" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:505" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:657" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:809" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:493" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:645" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:797" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:497" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:649" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:801" & @CRLF & _ "msgid "Select text color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:518" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:671" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:824" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:511" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:663" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:815" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:499" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:651" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:803" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:503" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:655" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:807" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:46" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:52" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:47" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:38" & @CRLF & _ "msgid "Border Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:519" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:672" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:825" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:512" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:664" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:816" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:500" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:652" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:804" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:504" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:656" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:808" & @CRLF & _ "msgid "Select border color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:525" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:678" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:831" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:518" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:670" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:822" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:506" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:658" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:810" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:510" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:662" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:814" & @CRLF & _ "msgid "Background Hover Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:531" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:684" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:837" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:524" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:676" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:828" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:512" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:664" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:816" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:516" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:668" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:820" & @CRLF & _ "msgid "Text Hover Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:537" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:690" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:843" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:530" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:682" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:834" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:518" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:670" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:822" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:522" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:674" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:826" & @CRLF & _ "msgid "Border Hover Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:557" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:549" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:537" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:541" & @CRLF & _ "msgid "Center Area Content"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:565" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:557" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:545" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:549" & @CRLF & _ "msgid "Show or hide Center Area Content"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:580" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:572" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:560" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:564" & @CRLF & _ "msgid "&copy; Designed by RubikThemes."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:665" & @CRLF & _ "msgid "Select text color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:710" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:701" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:689" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:693" & @CRLF & _ "msgid "Right Area Content"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:718" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-02/options.php:709" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:697" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:701" & @CRLF & _ "msgid "Show or hide Right Area Content"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-01/options.php:811" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-03/options.php:790" & @CRLF & _ "msgid "Select background color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/footers/footers/footer-04/options.php:257" & @CRLF & _ "#: framework-customizations/theme/options/footer-options.php:78" & @CRLF & _ "msgid "Choose widget area will show in footer main"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/config.php:10" & @CRLF & _ "msgid "SLZ Gallery Carousel"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/config.php:11" & @CRLF & _ "msgid "Animated Carousel with gallery or portfolio."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/config.php:23" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/config.php:27" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/config.php:33" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/config.php:21" & @CRLF & _ "msgid "Brazil"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-1.php:18" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-2.php:19" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-6.php:14" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:47" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:68" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:71" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/options/layout-1.php:18" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:142" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:153" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:74" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:15" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-4.php:11" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:20" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/options/layout-2.php:17" & @CRLF & _ "msgid "Choose style to show"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-2.php:7" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:6" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:67" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:20" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-2.php:6" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:51" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:4" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:37" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/options/layout-2.php:4" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-2.php:4" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:3" & @CRLF & _ "msgid "Chennai"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-2.php:8" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:7" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:68" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:21" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-2.php:7" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:52" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:5" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:38" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/options/layout-2.php:5" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-2.php:5" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:4" & @CRLF & _ "msgid "Mumbai"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-2.php:23" & @CRLF & _ "msgid "Picture Frame"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-2.php:29" & @CRLF & _ "msgid "Upload one image to make frame for featured image."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-6.php:3" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:3" & @CRLF & _ "msgid "Sao Paulo"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-6.php:4" & @CRLF & _ "msgid "Rio"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-6.php:5" & @CRLF & _ "msgid "Brasilia"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-6.php:22" & @CRLF & _ "msgid "Main Title"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-6.php:25" & @CRLF & _ "msgid "Title of gallery"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:13" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:18" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:24" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:29" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:35" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:176" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:29" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:34" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:40" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:160" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:28" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:33" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:39" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:152" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:70" & @CRLF & _ "msgid "Gallery"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:14" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:25" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:48" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:236" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:30" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:53" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:220" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:29" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:52" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:212" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:59" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:60" & @CRLF & _ "#: framework-customizations/theme/config.php:536" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:231" & @CRLF & _ "msgid "Portfolio"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:24" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:221" & @CRLF & _ "msgid "Post Title"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:30" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:39" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:44" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:43" & @CRLF & _ "msgid "-All Gallery-"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:35" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:52" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:57" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:56" & @CRLF & _ "msgid "-All Portfolio-"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:55" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:72" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:76" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:75" & @CRLF & _ "msgid "Post Type"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:60" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:76" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:80" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:79" & @CRLF & _ "msgid "Choose post type to show"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:64" & @CRLF & _ "msgid "Choose Gallery"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:71" & @CRLF & _ "msgid "Choose special gallery to show list of gallery images in the post."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:75" & @CRLF & _ "msgid "Choose Portfolio"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:82" & @CRLF & _ "msgid "Choose special portfolio to show list of gallery images in the post."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:108" & @CRLF & _ "msgid "Limit Images"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:111" & @CRLF & _ "msgid """ & @CRLF & _ ""Add number of images to display. If it blank, display all gallery images"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:128" & @CRLF & _ "msgid "Please input number of item show in slider."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:137" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:110" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:174" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:55" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:191" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:270" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:326" & @CRLF & _ "msgid "Is Auto Play ?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:141" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:114" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:181" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:61" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:59" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:195" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:342" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:274" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:330" & @CRLF & _ "msgid "Choose YES to slide auto play."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:146" & @CRLF & _ "msgid "Show Dots Navigation ?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:150" & @CRLF & _ "msgid "Choose YES to show dots navigation."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:155" & @CRLF & _ "msgid "Show Arrows Navigation ?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:159" & @CRLF & _ "msgid "Choose YES to show arrows navigation."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:173" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:242" & @CRLF & _ "msgid "Arrows Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:176" & @CRLF & _ "msgid "Choose color to slide arrows."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:185" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:254" & @CRLF & _ "msgid "Arrows Hover Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:188" & @CRLF & _ "msgid "Choose hover color to slide arrows."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:197" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:266" & @CRLF & _ "msgid "Arrows Background Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:200" & @CRLF & _ "msgid "Choose background color to slide arrows."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:209" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:278" & @CRLF & _ "msgid "Arrows Background Hover Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:212" & @CRLF & _ "msgid "Choose background hover color to slide arrow."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:221" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:230" & @CRLF & _ "msgid "Dots Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:224" & @CRLF & _ "msgid "Choose color to slide dots."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:233" & @CRLF & _ "msgid "Dots Color Active"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:236" & @CRLF & _ "msgid "Choose color to slide dots when active, hover."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/views/layout-6.php:48" & @CRLF & _ "msgid "All gallery"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/views/layout-6.php:60" & @CRLF & _ "msgid "VIEW MORE"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/config.php:9" & @CRLF & _ "msgid "SLZ Gallery Grid"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/config.php:10" & @CRLF & _ "msgid "List of galleries in grid"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/config.php:20" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:21" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/menu.php:27" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/search_box.php:12" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:46" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:7" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/options/layout-1.php:6" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/config.php:23" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:41" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:7" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-1.php:6" & @CRLF & _ "msgid "New York"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/config.php:21" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:22" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/menu.php:28" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:42" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:7" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:10" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/options/layout-1.php:8" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:43" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:8" & @CRLF & _ "msgid "Illinois"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/config.php:22" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:23" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/menu.php:29" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:43" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:11" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/options/layout-1.php:9" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:42" & @CRLF & _ "msgid "Connecticut"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/config.php:23" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:24" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:45" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/options/layout-1.php:7" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:39" & @CRLF & _ "msgid "Texas"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/config.php:24" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:25" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:47" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:40" & @CRLF & _ "msgid "Arizona"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:10" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:9" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:8" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:102" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:82" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:75" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:7" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:29" & @CRLF & _ "msgid "Five"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:43" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:48" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:47" & @CRLF & _ "msgid "-All Gallery Categories-"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:56" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:61" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:60" & @CRLF & _ "msgid "-All Portfolio Categories-"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:59" & @CRLF & _ "msgid "-All Authors-"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:84" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:67" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:49" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:157" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:228" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:89" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:195" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:208" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:16" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:255" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:282" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:352" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:422" & @CRLF & _ "msgid "Column"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:110" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:112" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:104" & @CRLF & _ "msgid "Select order to display."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:121" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:153" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:239" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:60" & @CRLF & _ "#: includes/class-breadcrumb.php:250" & @CRLF & _ "msgid "Author"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:127" & @CRLF & _ "msgid "Add Author"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:130" & @CRLF & _ "msgid "Choose special author to filter"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:134" & @CRLF & _ "msgid "Choose author to filter."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:145" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:129" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:121" & @CRLF & _ "msgid "Choose gallery category or special gallery to display"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:167" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:151" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:143" & @CRLF & _ "msgid "Choose Gallery Category."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:182" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:166" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:158" & @CRLF & _ "msgid "Add Gallery"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:185" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:169" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:161" & @CRLF & _ "msgid "Choose special gallery to show"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:190" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:174" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:166" & @CRLF & _ "msgid """ & @CRLF & _ ""Default display All Gallery if no gallery is selected and Number gallery is "" & @CRLF & _ ""empty."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:205" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:189" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:181" & @CRLF & _ "msgid "Choose portfolio category or special portfolio to display"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:227" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:211" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:203" & @CRLF & _ "msgid "Choose Portfolio Category."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:242" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:226" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:218" & @CRLF & _ "msgid "Add Portfolio"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:245" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:229" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:221" & @CRLF & _ "msgid "Choose special portfolio to show"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:250" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:234" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:226" & @CRLF & _ "msgid """ & @CRLF & _ ""Default display All Portfolio if no portfolio is selected and Number "" & @CRLF & _ ""portfolio is empty."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:262" & @CRLF & _ "msgid "Show Tab Filter"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:266" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:250" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:242" & @CRLF & _ "msgid "Choose if you want to show category filter tab or not."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:267" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:275" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:289" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:301" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:314" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:323" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:336" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:349" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:251" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:260" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:273" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:282" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:295" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:303" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:316" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:115" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:124" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:133" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:142" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:151" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:160" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:171" & @CRLF & _ "msgid "Extra Options"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:271" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:260" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:93" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:85" & @CRLF & _ "msgid "Show Pagination"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:274" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:263" & @CRLF & _ "msgid "Choose if you want to show pagination."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:284" & @CRLF & _ "msgid "Filter Alignment"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:288" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:259" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:251" & @CRLF & _ "msgid "Choose alignment for category filter."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:297" & @CRLF & _ "msgid "Load More Button Content"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:300" & @CRLF & _ "msgid "Enter load more button content to display."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:309" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:120" & @CRLF & _ "msgid "Show Title"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:313" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:272" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:289" & @CRLF & _ "msgid "Choose if you want to show title or not."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:318" & @CRLF & _ "msgid "Show Category"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:322" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:281" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:302" & @CRLF & _ "msgid "Choose if you want to show category or not."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:331" & @CRLF & _ "msgid "Show Read More Button"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:335" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:294" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:341" & @CRLF & _ "msgid "Choose if you want to show read more button or not."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:344" & @CRLF & _ "msgid "Show Zoom Button"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:348" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:315" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:354" & @CRLF & _ "msgid "Choose if you want to show fancybox zoom in or not."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:356" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:323" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:362" & @CRLF & _ "msgid "Tab Filter Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:359" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:326" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:365" & @CRLF & _ "msgid "Choose a custom tab filter color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:360" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:372" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:384" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:396" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:404" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:413" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:425" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:437" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:449" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:327" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:339" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:351" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:363" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:371" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:383" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:395" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:407" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:415" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:366" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:378" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:390" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:402" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:414" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:426" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:438" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:450" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:462" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:474" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:486" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:498" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:120" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:127" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:134" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:141" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:148" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:155" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:140" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:148" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:156" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:164" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:172" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:180" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:188" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:196" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:204" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:87" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:94" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:101" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:108" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:115" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:122" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:129" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:136" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:143" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:75" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:82" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:26" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:37" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:49" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:32" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:43" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:55" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:27" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:38" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:50" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:26" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:33" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:41" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:196" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:208" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:216" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:224" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:237" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:249" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:261" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:273" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:286" & @CRLF & _ "msgid "Custom CSS"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:368" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:335" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:374" & @CRLF & _ "msgid "Tab Active Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:371" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:338" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:377" & @CRLF & _ "msgid "Choose a custom tab active color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:380" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:347" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:386" & @CRLF & _ "msgid "Category Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:383" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:350" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:389" & @CRLF & _ "msgid "Choose a custom category color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:395" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:362" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:401" & @CRLF & _ "msgid "Choose a custom title color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:400" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:367" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:410" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:41" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:124" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:102" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:109" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:186" & @CRLF & _ "msgid "Title Hover Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:403" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:370" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:413" & @CRLF & _ "msgid "Choose a custom title hover color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:409" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:379" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:458" & @CRLF & _ "msgid "Read More Button Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:412" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:382" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:461" & @CRLF & _ "msgid "Choose a custom read more button color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:421" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:391" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:470" & @CRLF & _ "msgid "Read More Button Hover Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:424" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:394" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:473" & @CRLF & _ "msgid "Choose a custom read more button hover color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:433" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:403" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:482" & @CRLF & _ "msgid "Zoom in Button Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:436" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:406" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:485" & @CRLF & _ "msgid "Choose a custom zoom in button color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:445" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:411" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:494" & @CRLF & _ "msgid "Zoom in Button Hover Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:448" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:414" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:497" & @CRLF & _ "msgid "Choose a custom zoom in button hover color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/config.php:10" & @CRLF & _ "msgid "SLZ Gallery Masonry"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/config.php:11" & @CRLF & _ "msgid "Gallery Masonry of post feature image from custom post type"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:21" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:20" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:24" & @CRLF & _ "msgid "Option 1"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:22" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:21" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:25" & @CRLF & _ "msgid "Option 2"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:23" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:22" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:26" & @CRLF & _ "msgid "Option 3"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:24" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:23" & @CRLF & _ "msgid "Option 4"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:72" & @CRLF & _ "msgid "Choose columns to show"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:88" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:87" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:21" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:65" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:79" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-1.php:24" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-3.php:22" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:244" & @CRLF & _ "msgid "Option Show"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:91" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:90" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:29" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:247" & @CRLF & _ "msgid "It is used for aligning the inner content of blocks"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:246" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:238" & @CRLF & _ "msgid "Show Tab Filter?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:255" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:247" & @CRLF & _ "msgid "Alignment Filter"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:268" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:285" & @CRLF & _ "msgid "Show Title?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:277" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:298" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:16" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:99" & @CRLF & _ "msgid "Show Category?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:290" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:337" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:68" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:151" & @CRLF & _ "msgid "Show Read More Button?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:299" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:273" & @CRLF & _ "msgid "Load More Button Text"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:302" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:276" & @CRLF & _ "msgid "Enter load more button text. If empty, not show buttony."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:311" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:350" & @CRLF & _ "msgid "Show Zoom Button?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:10" & @CRLF & _ "msgid "SLZ Isotope"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:11" & @CRLF & _ "msgid "Isotope of post feature image from custom post type"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:26" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/options/layout-1.php:9" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:46" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:13" & @CRLF & _ "msgid "Oregon"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:27" & @CRLF & _ "msgid "Kentucky"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:28" & @CRLF & _ "msgid "Missouri"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:29" & @CRLF & _ "msgid "Ohio"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:30" & @CRLF & _ "msgid "North Carolina"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:243" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:252" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:264" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:277" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:290" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:303" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:316" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:329" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:342" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:355" & @CRLF & _ "msgid "Custom Isotope"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:311" & @CRLF & _ "msgid "Show Meta Data?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:315" & @CRLF & _ "msgid "Choose if you want to show meta data or not."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:324" & @CRLF & _ "msgid "Show Description?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:328" & @CRLF & _ "msgid "Choose if you want to show description or not."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:422" & @CRLF & _ "msgid "Meta Data Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:425" & @CRLF & _ "msgid "Choose a custom meta data color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:434" & @CRLF & _ "msgid "Meta Data Hover Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:437" & @CRLF & _ "msgid "Choose a custom meta data hover color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:446" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:138" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:117" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:352" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:111" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:91" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:61" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:52" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:218" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:234" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:221" & @CRLF & _ "msgid "Description Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:449" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:140" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:114" & @CRLF & _ "msgid "Choose a custom description color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/shortcodes/isotope/views/view.php:60" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/views/layout-1.php:69" & @CRLF & _ "#: framework-customizations/extensions/portfolio/shortcodes/portfolio-carousel/views/layout-1.php:10" & @CRLF & _ "#: framework-customizations/extensions/portfolio/shortcodes/portfolio-list/views/layout-1.php:10" & @CRLF & _ "msgid "By"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/views/content.php:18" & @CRLF & _ "msgid "Google Calendar"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/views/content.php:19" & @CRLF & _ "msgid "Ical Export"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/views/content.php:22" & @CRLF & _ "msgid "Start"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/views/content.php:23" & @CRLF & _ "msgid "End"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/gallery/views/content.php:27" & @CRLF & _ "msgid "Speakers"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:90" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:14" & @CRLF & _ "msgid "Block"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:91" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:15" & @CRLF & _ "msgid "Choose block to display"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:93" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:17" & @CRLF & _ "msgid "- None -"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:94" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:18" & @CRLF & _ "msgid "Logo"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:95" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:19" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-category.php:7" & @CRLF & _ "msgid "Course Category"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:96" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:20" & @CRLF & _ "msgid "Course Search"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:97" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:21" & @CRLF & _ "msgid "Login - Register"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:98" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:22" & @CRLF & _ "msgid "Cart Icon"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:99" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:23" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/menu.php:37" & @CRLF & _ "msgid "Menu"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:100" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:24" & @CRLF & _ "msgid "Text Link"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:123" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:74" & @CRLF & _ "#: framework-customizations/theme/options/posts/page.php:187" & @CRLF & _ "msgid "Header Style"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:124" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:75" & @CRLF & _ "msgid "Choose header style."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:130" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:134" & @CRLF & _ "msgid "Header Top"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:139" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:143" & @CRLF & _ "msgid "Enable Header Top"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:140" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:144" & @CRLF & _ "msgid "Choose to enable header top."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:155" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:159" & @CRLF & _ "msgid "Header Top Style"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:156" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:160" & @CRLF & _ "msgid "Choose style for header top."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:169" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:240" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:173" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:244" & @CRLF & _ "msgid "Left Block"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:170" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:241" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:174" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:245" & @CRLF & _ "msgid "Choose shortcode to display in left block."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:173" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:182" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:191" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:244" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:253" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:262" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:177" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:186" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:195" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:248" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:257" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:266" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:109" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:72" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:81" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:91" & @CRLF & _ "msgid "Add"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:178" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:249" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:182" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:253" & @CRLF & _ "msgid "Center Block"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:179" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:250" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:183" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:254" & @CRLF & _ "msgid "Choose shortcode to display in center block."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:187" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:258" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:191" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:262" & @CRLF & _ "msgid "Right Block"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:188" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:259" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:192" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:263" & @CRLF & _ "msgid "Choose shortcode to display in right block."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:201" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:205" & @CRLF & _ "msgid "Header Main"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:210" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:214" & @CRLF & _ "msgid "Enable Header Main"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:211" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:215" & @CRLF & _ "msgid "Choose to enable header main."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:226" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:230" & @CRLF & _ "msgid "Header Main Style"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:227" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:231" & @CRLF & _ "msgid "Choose style for header main."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:280" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:33" & @CRLF & _ "msgid "Default Setting"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:284" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:187" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course.php:125" & @CRLF & _ "#: framework-customizations/theme/options/page-404-settings.php:3" & @CRLF & _ "#: framework-customizations/theme/options/page-404-settings.php:28" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:36" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:391" & @CRLF & _ "#: framework-customizations/theme/options/posts/page.php:142" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-faq.php:94" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:564" & @CRLF & _ "#: framework-customizations/theme/options/typography.php:31" & @CRLF & _ "#: framework-customizations/theme/options/typography.php:60" & @CRLF & _ "#: framework-customizations/theme/options/typography.php:138" & @CRLF & _ "msgid "Default"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/config.php:8" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/config.php:9" & @CRLF & _ "msgid "Header 09"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/config.php:23" & @CRLF & _ "msgid "Transparent"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:48" & @CRLF & _ "msgid "Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:49" & @CRLF & _ "msgid "Choose color for gradient line in header."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:59" & @CRLF & _ "msgid "Gradient Line Position"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:60" & @CRLF & _ "msgid "Choose position for gradient line in Header."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:62" & @CRLF & _ "msgid "After Top Header"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:63" & @CRLF & _ "msgid "Before Main Header"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:64" & @CRLF & _ "msgid "After Main Header"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:86" & @CRLF & _ "msgid "Enable Preloader"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:87" & @CRLF & _ "msgid "Choose to enable preloader on site."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:102" & @CRLF & _ "msgid "Preloader Image"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:103" & @CRLF & _ "msgid "Upload image for preloader."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:116" & @CRLF & _ "msgid "Gradient Line"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options.php:117" & @CRLF & _ "msgid "Choose to Enable gradient line in Header."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:32" & @CRLF & _ "msgid "Enter title for this button."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:36" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/login_register.php:15" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:108" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:61" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:124" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:422" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:485" & @CRLF & _ "msgid "Link"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:37" & @CRLF & _ "msgid """ & @CRLF & _ ""Link for this button. If blank, this will display only title without link."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:42" & @CRLF & _ "msgid "Target"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:43" & @CRLF & _ "msgid "Choose how to open link."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:45" & @CRLF & _ "msgid "Opens the link in the same frame as it was clicked."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:46" & @CRLF & _ "msgid "Opens the link in a new window or tab."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:47" & @CRLF & _ "msgid "Opens the link in the parent frame."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:48" & @CRLF & _ "msgid "Opens the link in the full body of the window"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:54" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/cart_icon.php:7" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/course_category.php:21" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/logo.php:45" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/menu.php:44" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/search_box.php:18" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/text_link.php:18" & @CRLF & _ "msgid "Add extra class to this block."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/course_category.php:6" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/login_register.php:6" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-category.php:21" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2643" & @CRLF & _ "msgid "Type"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/course_category.php:7" & @CRLF & _ "msgid "Choose type of Course Category"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/course_category.php:11" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-category.php:24" & @CRLF & _ "msgid "Box"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/course_category.php:15" & @CRLF & _ "msgid "Tabs"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/login_register.php:7" & @CRLF & _ "msgid "Choose type of login, register button."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/login_register.php:11" & @CRLF & _ "msgid "Popup"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/login_register.php:20" & @CRLF & _ "msgid "Login Text"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/login_register.php:21" & @CRLF & _ "msgid "Enter login text."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/login_register.php:25" & @CRLF & _ "msgid "Register Text"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/login_register.php:26" & @CRLF & _ "msgid "Enter register text."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/logo.php:32" & @CRLF & _ "msgid "Custom Logo"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/logo.php:33" & @CRLF & _ "msgid """ & @CRLF & _ ""Choose to use custom logo. If blank, this block will use default logo in "" & @CRLF & _ ""theme settings."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/logo.php:39" & @CRLF & _ "msgid "Select the background color for this block."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/menu.php:38" & @CRLF & _ "msgid """ & @CRLF & _ ""Choose custom menu. If blank, menu assign in Menu Location will use as "" & @CRLF & _ ""default."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/search_box.php:7" & @CRLF & _ "msgid "Choose style for this block."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/text_link.php:7" & @CRLF & _ "msgid "Enter text for this block."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/text_link.php:11" & @CRLF & _ "msgid "URL"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/options/text_link.php:12" & @CRLF & _ "msgid """ & @CRLF & _ ""Link for this block. If blank, this will display only text without link."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/views/login_register.php:13" & @CRLF & _ "msgid "Avatar of"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/views/login_register.php:35" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/views/login_register.php:39" & @CRLF & _ "msgid "Dashboard"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/views/login_register.php:37" & @CRLF & _ "msgid "Wishlist"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/views/login_register.php:54" & @CRLF & _ "msgid "Log out"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/views/login_register.php:64" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:6" & @CRLF & _ "#: page-templates/login-page.php:70" & @CRLF & _ "msgid "Login"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/views/login_register.php:65" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:7" & @CRLF & _ "#: page-templates/login-page.php:71" & @CRLF & _ "msgid "Register"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:19" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:49" & @CRLF & _ "#: page-templates/login-page.php:83 page-templates/login-page.php:113" & @CRLF & _ "msgid "or"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:23" & @CRLF & _ "#: page-templates/login-page.php:87" & @CRLF & _ "msgid "Email"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:26" & @CRLF & _ "#: page-templates/login-page.php:90" & @CRLF & _ "msgid "Password"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:29" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:88" & @CRLF & _ "#: page-templates/login-page.php:93 page-templates/login-page.php:152" & @CRLF & _ "msgid "LOGIN"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:33" & @CRLF & _ "#: page-templates/login-page.php:97" & @CRLF & _ "msgid "FORGOT MY PASSWORD"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:35" & @CRLF & _ "#: page-templates/login-page.php:99" & @CRLF & _ "msgid "Don't have an account?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:36" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:82" & @CRLF & _ "#: page-templates/login-page.php:100 page-templates/login-page.php:146" & @CRLF & _ "msgid "REGISTER"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:87" & @CRLF & _ "#: page-templates/login-page.php:151" & @CRLF & _ "msgid "I have an account!"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:92" & @CRLF & _ "#: page-templates/login-page.php:156" & @CRLF & _ "msgid "By signing up to create an account I accept EduChain's "" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:92" & @CRLF & _ "#: page-templates/login-page.php:156" & @CRLF & _ "msgid "Terms of Use"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:92" & @CRLF & _ "#: page-templates/login-page.php:156" & @CRLF & _ "msgid "Privacy Policy"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/headers/headers/header-09/views/search_box.php:8" & @CRLF & _ "msgid "Search your courses..."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/config.php:10" & @CRLF & _ "msgid "SLZ Instagram"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/config.php:11" & @CRLF & _ "msgid "Show Instagram Image"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:11" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:29" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:47" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:8" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:55" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:18" & @CRLF & _ "msgid "Block Title"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:14" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:32" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:11" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:58" & @CRLF & _ "msgid "Block title. If it blank the block will not have a title"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:18" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:36" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:53" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:18" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:62" & @CRLF & _ "msgid "Block Title Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:21" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:119" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:39" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:56" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:139" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:104" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:21" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:65" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:55" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:104" & @CRLF & _ "msgid "Choose a custom title text color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:25" & @CRLF & _ "msgid "Template"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:28" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:81" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:60" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:53" & @CRLF & _ "msgid "Grid"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:29" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:82" & @CRLF & _ "msgid "Slider"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:35" & @CRLF & _ "msgid "Instagram ID"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:42" & @CRLF & _ "msgid "Number images"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:52" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:22" & @CRLF & _ "msgid "3"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:53" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:23" & @CRLF & _ "msgid "4"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:63" & @CRLF & _ "msgid "Number items"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:84" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:173" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:307" & @CRLF & _ "msgid "Show Dots ?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:88" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:177" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:311" & @CRLF & _ "msgid "If choose Yes, block will be show dots."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:97" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:182" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:25" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:317" & @CRLF & _ "msgid "Show Arrow ?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:101" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:186" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:32" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:321" & @CRLF & _ "msgid "If choose Yes, block will be show arrow."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:58" & @CRLF & _ "msgid "Icon library"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:69" & @CRLF & _ "msgid "Select icon library."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:96" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:236" & @CRLF & _ "msgid "Select icon from library."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:127" & @CRLF & _ "msgid "Enter number of items to show.."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:136" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:277" & @CRLF & _ "msgid "Slide To Scroll"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:139" & @CRLF & _ "msgid "Enter number of items to scroll.."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:148" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:288" & @CRLF & _ "msgid "Show Dots"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:151" & @CRLF & _ "msgid "Show dots in carousel"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:161" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:301" & @CRLF & _ "msgid "Show Arrows"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:164" & @CRLF & _ "msgid "Show arrows in carousel"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:174" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:315" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:377" & @CRLF & _ "msgid "Loop Infinite"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:177" & @CRLF & _ "msgid "Is carousel loop infinite?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:187" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:329" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:338" & @CRLF & _ "msgid "Auto Play"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:190" & @CRLF & _ "msgid "Is carousel play?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/includes/class-slz-lema-course.php:19" & @CRLF & _ "#: framework-customizations/theme/options/posts/post.php:162" & @CRLF & _ "msgid "Gallery Images"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/includes/class-slz-lema-course.php:779" & @CRLF & _ "msgid "Zoom in"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/manifest.php:6" & @CRLF & _ "msgid "Lema"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/manifest.php:7" & @CRLF & _ "msgid "This extension use add to portfolio."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/class-slz-shortcode-course-collection.php:108" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/class-slz-shortcode-course-collection.php:186" & @CRLF & _ "msgid "CLICK TO SEE"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/class-slz-shortcode-course-collection.php:108" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/class-slz-shortcode-course-collection.php:186" & @CRLF & _ "msgid "COURSE"" & @CRLF & _ "msgid_plural "COURSES"" & @CRLF & _ "msgstr[0] """ & @CRLF & _ "msgstr[1] """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/config.php:10" & @CRLF & _ "msgid "SLZ Course Collection"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/config.php:11" & @CRLF & _ "msgid "List of course."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-1.php:21" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:84" & @CRLF & _ "msgid "Select item columns on row."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:36" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:128" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:86" & @CRLF & _ "msgid "Choose color for title."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:37" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:45" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:53" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:61" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:34" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:47" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:61" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:75" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:33" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:46" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:59" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:72" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:295" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:308" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:317" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:326" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:335" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:348" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:357" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:129" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:141" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:149" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:157" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:169" & @CRLF & _ "msgid "Custom Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:44" & @CRLF & _ "msgid "Choose hover color for title."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:49" & @CRLF & _ "msgid "Link Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:52" & @CRLF & _ "msgid "Choose color for link."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:57" & @CRLF & _ "msgid "Link Hover Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:60" & @CRLF & _ "msgid "Choose hover color for link."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:43" & @CRLF & _ "msgid "Choose Course Category."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:47" & @CRLF & _ "msgid "Limit Items"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:50" & @CRLF & _ "msgid "Number of items limit on page."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/config.php:10" & @CRLF & _ "msgid "SLZ Featured Course"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/config.php:11" & @CRLF & _ "msgid "Display a featured course."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:5" & @CRLF & _ "#: framework-customizations/extensions/portfolio/hooks.php:18" & @CRLF & _ "msgid "- Choose Course -"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:35" & @CRLF & _ "msgid "Featured Post"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:36" & @CRLF & _ "msgid "Choose post to featured post."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:43" & @CRLF & _ "msgid "Enter button. If blank title button will not display."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:51" & @CRLF & _ "msgid "Display Description"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:57" & @CRLF & _ "msgid "Select show/hide description."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:61" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:164" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:149" & @CRLF & _ "msgid "Description Length"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:64" & @CRLF & _ "msgid "Length of course description display. Default: 25."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:88" & @CRLF & _ "msgid "Label Text"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:91" & @CRLF & _ "msgid "Add label for this block. If blank, it will not display."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:103" & @CRLF & _ "msgid "Text of button. If blank, it will not display."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:126" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:112" & @CRLF & _ "msgid "Choose a custom title text hover color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:131" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:98" & @CRLF & _ "msgid "Label Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:133" & @CRLF & _ "msgid "Choose a custom label color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:145" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:28" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:18" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:125" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:269" & @CRLF & _ "msgid "Button Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:147" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:128" & @CRLF & _ "msgid "Choose a custom button color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:152" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:36" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:26" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:133" & @CRLF & _ "msgid "Button Hover Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:154" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:136" & @CRLF & _ "msgid "Choose a custom button hover color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/config.php:10" & @CRLF & _ "msgid "SLZ Instructor"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/config.php:11" & @CRLF & _ "msgid "List of instructor."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:10" & @CRLF & _ "msgid "- All Instructors -"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:34" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:55" & @CRLF & _ "msgid "List Instructors"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:39" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:60" & @CRLF & _ "msgid "Instructor Name"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:44" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:65" & @CRLF & _ "msgid "Choose instructor to display."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:84" & @CRLF & _ "msgid "Show Avatar"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:91" & @CRLF & _ "msgid "Choose to display avatar."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:95" & @CRLF & _ "msgid "Show Icon Avatar"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:102" & @CRLF & _ "msgid "Choose to display icon avatar."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:106" & @CRLF & _ "msgid "Show Statistic"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:113" & @CRLF & _ "msgid "Choose to display instructor's statistic."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:117" & @CRLF & _ "msgid "Show Role"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:124" & @CRLF & _ "msgid "Choose to display role."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:128" & @CRLF & _ "msgid "Show Social Icon"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:135" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:146" & @CRLF & _ "msgid "Choose to display social icon."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:139" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:128" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:155" & @CRLF & _ "msgid "Show Description"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:150" & @CRLF & _ "msgid "Show Course Popular"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:157" & @CRLF & _ "msgid "Choose to display course popular."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:165" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:329" & @CRLF & _ "msgid "Enter number of items to show."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:190" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:68" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:279" & @CRLF & _ "msgid "Is Dots Navigation ?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:206" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:76" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:81" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:288" & @CRLF & _ "msgid "Is Arrows Navigation ?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:13" & @CRLF & _ "msgid "Category List"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:14" & @CRLF & _ "msgid "Display course category list."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:15" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-category.php:8" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-best-selling.php:8" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:19" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:14" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course.php:33" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:9" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:17" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:7" & @CRLF & _ "#: framework-customizations/theme/manifest.php:211" & @CRLF & _ "msgid "Learn Master"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:60" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:70" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:84" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:14" & @CRLF & _ "msgid "Choose layout for this shortcode."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:78" & @CRLF & _ "msgid "Display Type"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:91" & @CRLF & _ "msgid "Enter number of category to show."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:105" & @CRLF & _ "msgid "Choose columns on row. Default: Three."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:113" & @CRLF & _ "msgid "Description Limit"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:116" & @CRLF & _ "msgid "Enter number of description's words limit."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:124" & @CRLF & _ "msgid "Choose to show title."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:132" & @CRLF & _ "msgid "Choose to show description."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:136" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:87" & @CRLF & _ "msgid "Show Icon"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:140" & @CRLF & _ "msgid "Choose to show icon."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:148" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:88" & @CRLF & _ "msgid "Show Image"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:152" & @CRLF & _ "msgid "Choose to show image."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:163" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-category.php:38" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:37" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:31" & @CRLF & _ "msgid "Add extra class to block shortcode"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:167" & @CRLF & _ "msgid "List Category"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:172" & @CRLF & _ "msgid "Category Name"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:176" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:146" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:119" & @CRLF & _ "msgid "Choose category to filter."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:179" & @CRLF & _ "msgid "Add category to filter."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:184" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:193" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:528" & @CRLF & _ "msgid "Filter By"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:188" & @CRLF & _ "msgid "Feature"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:189" & @CRLF & _ "msgid "Top Enroll"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:192" & @CRLF & _ "msgid "Choose to filter by."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:268" & @CRLF & _ "msgid "Enter number of items to show. Default is 1."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:279" & @CRLF & _ "msgid "Enter number of items to scroll. Default is 1."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:292" & @CRLF & _ "msgid "Show dots in carousel. Default is Yes."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:305" & @CRLF & _ "msgid "Show arrows in carousel. Default is Yes."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:319" & @CRLF & _ "msgid "Is carousel loop infinite? Default is Yes."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:333" & @CRLF & _ "msgid "Is carousel play? Default is Yes."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-category.php:9" & @CRLF & _ "msgid "Display course category."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-category.php:25" & @CRLF & _ "msgid "Tab"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-category.php:28" & @CRLF & _ "msgid "Select type of category."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-best-selling.php:7" & @CRLF & _ "msgid "Course List Best Selling"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-best-selling.php:9" & @CRLF & _ "msgid "Display course list best selling."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:18" & @CRLF & _ "msgid "Course List Filtered"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:20" & @CRLF & _ "msgid "Display course list with filter conditional."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:59" & @CRLF & _ "msgid "List"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:61" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:54" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:40" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:167" & @CRLF & _ "msgid "Slide"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:64" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:57" & @CRLF & _ "msgid "Select type of course list. Default: Grid."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:71" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:64" & @CRLF & _ "msgid "Enter title."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:85" & @CRLF & _ "msgid "Choose columns on row. Default: Four."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:100" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:92" & @CRLF & _ "msgid "Choose to display pagination."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:111" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:103" & @CRLF & _ "msgid "Enter post per page. Default: -1 (Unlimited)."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:119" & @CRLF & _ "msgid "Select field to sort courses."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:123" & @CRLF & _ "msgid "Sort Order"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:126" & @CRLF & _ "msgid "Ascending"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:127" & @CRLF & _ "msgid "Descending"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:130" & @CRLF & _ "msgid "Select type of sort. Default: Descending."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:134" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:107" & @CRLF & _ "msgid "Search Term"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:137" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:110" & @CRLF & _ "msgid "Enter keyword to search. Default: 1."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:142" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:115" & @CRLF & _ "msgid "Filter By Category"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:155" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:152" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:238" & @CRLF & _ "msgid "Date"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:156" & @CRLF & _ "msgid "Course Price"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:157" & @CRLF & _ "msgid "Rate"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:158" & @CRLF & _ "msgid "Review"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:13" & @CRLF & _ "msgid "Course List"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:15" & @CRLF & _ "msgid "Display course list."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:77" & @CRLF & _ "msgid "Choose columns on row. Default: One."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course.php:32" & @CRLF & _ "#: framework-customizations/extensions/portfolio/hooks.php:47" & @CRLF & _ "msgid "Course"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course.php:46" & @CRLF & _ "msgid "Course Name"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course.php:49" & @CRLF & _ "msgid "Enter course name"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course.php:138" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/category/views/admin.php:23" & @CRLF & _ "msgid "Choose Style"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course.php:161" & @CRLF & _ "msgid "Choose Template"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:7" & @CRLF & _ "msgid "Price Box"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:8" & @CRLF & _ "msgid "Buy Service Cource."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:21" & @CRLF & _ "msgid "Enter title for shortcode."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:27" & @CRLF & _ "msgid "Enter description old for shortcode."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:31" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:135" & @CRLF & _ "#: framework-customizations/theme/options/course-settings.php:56" & @CRLF & _ "#: framework-customizations/theme/options/course-settings.php:71" & @CRLF & _ "msgid "Price"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:33" & @CRLF & _ "msgid "Enter price for shortcode."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:37" & @CRLF & _ "msgid "Price Old"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:39" & @CRLF & _ "msgid "Enter price old for shortcode."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:43" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:164" & @CRLF & _ "msgid "Unit"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:45" & @CRLF & _ "msgid "Enter unit for shortcode."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:49" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:174" & @CRLF & _ "msgid "Price Subfix"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:51" & @CRLF & _ "msgid "Enter subfix for shortcode."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:55" & @CRLF & _ "msgid "Show Label"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:57" & @CRLF & _ "msgid "Show label for this shortcode"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:64" & @CRLF & _ "msgid "Enter button text for shortcode."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:16" & @CRLF & _ "msgid "Courses Search Box"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:18" & @CRLF & _ "msgid "Display course card search box."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:31" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:21" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:104" & @CRLF & _ "msgid "Set the background color of button."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:39" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:29" & @CRLF & _ "msgid "Set the background color of button when hover."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:47" & @CRLF & _ "msgid "Set the background color of button icon."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:52" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:216" & @CRLF & _ "msgid "Icon Hover Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:55" & @CRLF & _ "msgid "Set the background color of button icon when hover."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:72" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:44" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:12" & @CRLF & _ "msgid "NewYork"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:74" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:48" & @CRLF & _ "msgid "Select style of search box."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:78" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:52" & @CRLF & _ "msgid "Placeholder Text"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:81" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:88" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:98" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:55" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:62" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:81" & @CRLF & _ "msgid "Add extra class to search box."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:6" & @CRLF & _ "msgid "Course Search University"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:8" & @CRLF & _ "msgid "Searchbox for university."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:66" & @CRLF & _ "msgid "Limit posts"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:69" & @CRLF & _ "msgid "Number of post to display"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:113" & @CRLF & _ "msgid "Filters"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:123" & @CRLF & _ "msgid "filter"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/config.php:8" & @CRLF & _ "msgid "SLZ New Tweet"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/config.php:9" & @CRLF & _ "msgid "Show twitter new tweet"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/options/layout-2.php:17" & @CRLF & _ "msgid "Choose number of column on row."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:15" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:37" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:7" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:81" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:25" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:7" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:47" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/button/options.php:11" & @CRLF & _ "msgid "Layouts"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:20" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:15" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:33" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:40" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:51" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:30" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/vc_options.php:14" & @CRLF & _ "msgid "Choose layout to show"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:43" & @CRLF & _ "msgid "Number Tweets"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:46" & @CRLF & _ "msgid "The number of tweets to display."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:50" & @CRLF & _ "msgid "Show Tweet's media"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:53" & @CRLF & _ "msgid "Choose if you want to show Tweet's media or not."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:57" & @CRLF & _ "msgid "Show Re-Tweet"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:60" & @CRLF & _ "msgid "Choose if you want to show Re-Tweet."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:64" & @CRLF & _ "msgid "Is Carousel?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:68" & @CRLF & _ "msgid "Choose if you want display tweets list as carousel."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:72" & @CRLF & _ "msgid "Number Tweets per Slide"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:79" & @CRLF & _ "msgid "The number of tweets per slide to display."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:90" & @CRLF & _ "msgid "Account Name"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:93" & @CRLF & _ "msgid """ & @CRLF & _ ""Enter the ID as it appears after the twitter url (ex. https://twitter.com/"" & @CRLF & _ ""myID)."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:94" & @CRLF & _ "msgid "Channel"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:39" & @CRLF & _ "msgid "Project Options"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:42" & @CRLF & _ "msgid "- Latest -"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:43" & @CRLF & _ "msgid "A to Z"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:44" & @CRLF & _ "msgid "Z to A"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:45" & @CRLF & _ "msgid "Post is selected"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:46" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:240" & @CRLF & _ "msgid "Random"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:57" & @CRLF & _ "msgid "Portfolio base"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:58" & @CRLF & _ "msgid "Portfolio category base"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:61" & @CRLF & _ "msgid "Portfolio Category"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:62" & @CRLF & _ "msgid "Portfolio Categories"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:63" & @CRLF & _ "msgid "Portfolio Tag"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:64" & @CRLF & _ "msgid "Portfolio Tags"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:65" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:66" & @CRLF & _ "msgid "Portfolio Status"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:77" & @CRLF & _ "msgid "Images Gallery"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:78" & @CRLF & _ "msgid """ & @CRLF & _ ""Add images to gallery. Images should have minimum size: 800x600. Bigger size "" & @CRLF & _ ""images will be cropped automatically."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:86" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:93" & @CRLF & _ "msgid "Attributes"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:94" & @CRLF & _ "msgid "Add attributes for this post."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:98" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:60" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:384" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:447" & @CRLF & _ "msgid "Name"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:99" & @CRLF & _ "msgid "Enter attribute name."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:103" & @CRLF & _ "msgid "Value"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:104" & @CRLF & _ "msgid "Enter attribute value. Support HTML."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:116" & @CRLF & _ "msgid "Visible On Page"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:117" & @CRLF & _ "msgid "Check to show attributes on single page."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:118" & @CRLF & _ "msgid "Visible"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:132" & @CRLF & _ "msgid "Thumnail"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:133" & @CRLF & _ "msgid "Add thumbnail to the post."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:139" & @CRLF & _ "msgid "Short Description"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:140" & @CRLF & _ "msgid "Short description of post."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:146" & @CRLF & _ "msgid "Information"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:147" & @CRLF & _ "msgid "Information of post."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/config.php:156" & @CRLF & _ "msgid "Choose icon to post"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/hooks.php:32" & @CRLF & _ "msgid "- Choose Student -"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/hooks.php:48" & @CRLF & _ "msgid "Choose course for this project."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/hooks.php:54" & @CRLF & _ "msgid "Student"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/hooks.php:55" & @CRLF & _ "msgid "Choose student for this project."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/shortcodes/portfolio-carousel/config.php:9" & @CRLF & _ "msgid "SLZ Project Carousel"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/shortcodes/portfolio-carousel/config.php:10" & @CRLF & _ "msgid "Animated Carousel with projects"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/shortcodes/portfolio-carousel/config.php:47" & @CRLF & _ "#: framework-customizations/extensions/portfolio/shortcodes/portfolio-list/config.php:47" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:92" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/config.php:58" & @CRLF & _ "msgid "All"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/shortcodes/portfolio-list/config.php:9" & @CRLF & _ "msgid "SLZ Project List"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/shortcodes/portfolio-list/config.php:10" & @CRLF & _ "msgid "List of project"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/shortcodes/portfolio-list/options/layout-1.php:13" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:36" & @CRLF & _ "msgid "Choose style will be displayed."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/views/course-info.php:19" & @CRLF & _ "msgid "Portfolio for this course"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/views/course-info.php:24" & @CRLF & _ "msgid "Updated:"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/views/course-info.php:42" & @CRLF & _ "msgid "By Instructor:"" & @CRLF & _ "msgid_plural "By Instructors:"" & @CRLF & _ "msgstr[0] """ & @CRLF & _ "msgstr[1] """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/views/course-info.php:46" & @CRLF & _ "msgid "Course Rating:"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/views/course-info.php:61" & @CRLF & _ "msgid "Learners:"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/views/course-info.php:61" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "%d Student"" & @CRLF & _ "msgid_plural "%d Students"" & @CRLF & _ "msgstr[0] """ & @CRLF & _ "msgstr[1] """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/views/meta-info.php:77" & @CRLF & _ "msgid "Portfolio By:"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/views/meta-info.php:80" & @CRLF & _ "#: includes/helpers.php:289" & @CRLF & _ "msgid "Categories:"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/views/meta-info.php:83" & @CRLF & _ "msgid "Last Updated:"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/views/meta-info.php:86" & @CRLF & _ "msgid "Skills:"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/views/meta-info.php:89" & @CRLF & _ "msgid "Languages:"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/views/related-item.php:9" & @CRLF & _ "msgid "Related Courses"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/widgets/project/views/admin.php:4" & @CRLF & _ "msgid "-All pages-"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/widgets/project/views/admin.php:33" & @CRLF & _ "msgid "Project Category ID"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/widgets/project/views/admin.php:35" & @CRLF & _ "msgid "Enter categories ID of project(Ex 1,2,3)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/widgets/project/views/admin.php:39" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:18" & @CRLF & _ "msgid "Image Type"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/widgets/project/views/admin.php:48" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:106" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:101" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:111" & @CRLF & _ "msgid "Button Content"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/portfolio/widgets/project/views/admin.php:52" & @CRLF & _ "msgid "Button Link (Custom)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/posts/posts/post-01/views/view.php:27" & @CRLF & _ "#: framework-customizations/extensions/posts/posts/post-02/views/view.php:25" & @CRLF & _ "#: framework-customizations/extensions/posts/posts/post-03/views/view.php:27" & @CRLF & _ "#: framework-customizations/extensions/posts/posts/post-04/views/view.php:25" & @CRLF & _ "#: framework-customizations/extensions/posts/posts/post-05/views/view.php:22" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "Continue reading %s"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/config.php:12" & @CRLF & _ "msgid "SLZ About Me"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/config.php:13" & @CRLF & _ "msgid "Show about me block"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:22" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-2.php:8" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:6" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/options/layout-2.php:6" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:5" & @CRLF & _ "msgid "Pune"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:28" & @CRLF & _ "msgid "Social URL (Link)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:30" & @CRLF & _ "msgid "Add link to social network."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:39" & @CRLF & _ "msgid "Choose style for layout India."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:49" & @CRLF & _ "msgid "Enter block title."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:62" & @CRLF & _ "msgid "Enter your name."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:66" & @CRLF & _ "msgid "Web Url"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:69" & @CRLF & _ "msgid "Enter your web site."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:76" & @CRLF & _ "msgid "Add custom button link."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:84" & @CRLF & _ "msgid "Position"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:86" & @CRLF & _ "msgid "Enter your position."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:90" & @CRLF & _ "msgid "Short Information"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:92" & @CRLF & _ "msgid "Enter your short information."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:96" & @CRLF & _ "msgid "Avatar"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:98" & @CRLF & _ "msgid "Upload your avatar (100x100px)."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:104" & @CRLF & _ "msgid "Introduce yourself."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:108" & @CRLF & _ "msgid "Social Profile"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:116" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:203" & @CRLF & _ "msgid "Add extra class to block."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/config.php:8" & @CRLF & _ "msgid "SLZ Accordion"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/config.php:9" & @CRLF & _ "msgid "Accordion of info list"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/options/layout-1.php:8" & @CRLF & _ "msgid "Georia"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/options/layout-1.php:20" & @CRLF & _ "msgid "Please choose style to show"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:13" & @CRLF & _ "msgid "Plus Icon"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:14" & @CRLF & _ "msgid "Arrow Icon"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:15" & @CRLF & _ "msgid "Custom Icon"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:19" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:18" & @CRLF & _ "msgid "Small Spacing"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:20" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:19" & @CRLF & _ "msgid "Large Spacing"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:21" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:33" & @CRLF & _ "msgid "No Spacing"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:43" & @CRLF & _ "msgid "Please choose layout to show"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:53" & @CRLF & _ "msgid "Style Icon"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:58" & @CRLF & _ "msgid "Please choose style icon to show"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:68" & @CRLF & _ "msgid "It is used for aligning the inner content of accordion item"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:72" & @CRLF & _ "msgid "Position of Dropdown Icon"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:76" & @CRLF & _ "msgid "Please choose postion of dropdown icon"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:95" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:33" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:82" & @CRLF & _ "msgid "Title. If it blank the block will not have a title"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:99" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:44" & @CRLF & _ "msgid "Content"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:102" & @CRLF & _ "msgid "Description. If it blank the block will not have a title"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:109" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:104" & @CRLF & _ "msgid "Enter button content."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:113" & @CRLF & _ "msgid "Link Button"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:116" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:111" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:64" & @CRLF & _ "msgid "Add custom link."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:125" & @CRLF & _ "msgid "Accordion Lists"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:144" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:86" & @CRLF & _ "msgid "Content Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:147" & @CRLF & _ "msgid "Choose a custom content text color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:152" & @CRLF & _ "msgid "Content Background Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:155" & @CRLF & _ "msgid "Choose a custom content background color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:160" & @CRLF & _ "msgid "Panel Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:163" & @CRLF & _ "msgid "Choose a custom panel background color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:168" & @CRLF & _ "msgid "Panel Active Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:171" & @CRLF & _ "msgid "Choose a custom panel active background color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:179" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:34" & @CRLF & _ "msgid "Choose a custom icon color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:184" & @CRLF & _ "msgid "Icon Color Active"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:187" & @CRLF & _ "msgid "Choose a custom icon color active."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:192" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:213" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:25" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:24" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:131" & @CRLF & _ "msgid "Icon Background Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:195" & @CRLF & _ "msgid "Choose a custom icon background color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:200" & @CRLF & _ "msgid "Icon Background Color Active"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:203" & @CRLF & _ "msgid "Choose a custom icon background color active."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/views/view.php:32" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/views/view.php:41" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/views/view.php:38" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/views/view.php:125" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/views/view.php:34" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/views/view.php:21" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/views/view.php:6" & @CRLF & _ "msgid "Please Active Visual Composer"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/config.php:10" & @CRLF & _ "msgid "SLZ Button"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:17" & @CRLF & _ "msgid "Large Size"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:18" & @CRLF & _ "msgid "Small Size"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:24" & @CRLF & _ "msgid " Button Alignment"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:28" & @CRLF & _ "msgid "Choose alignment of button."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:35" & @CRLF & _ "msgid "Button Layout"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:39" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:53" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:25" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:24" & @CRLF & _ "msgid "Choose layout to show."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:50" & @CRLF & _ "msgid "Enter text on button."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:54" & @CRLF & _ "msgid "Button size"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:57" & @CRLF & _ "msgid "Select size of button."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:65" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:122" & @CRLF & _ "msgid "Border Radius"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:68" & @CRLF & _ "msgid "Add rounded corners. Unit is px ( ex:50 )."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:76" & @CRLF & _ "msgid "Button Has Shadow?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:78" & @CRLF & _ "msgid "Add a shadow to button."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:83" & @CRLF & _ "msgid "Disable button?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:85" & @CRLF & _ "msgid "Make button disabled."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:97" & @CRLF & _ "msgid "Enter the desination URL."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:101" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:126" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:119" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:287" & @CRLF & _ "msgid "Button Background Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:113" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:135" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:126" & @CRLF & _ "msgid "Button Background Color Hover"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:116" & @CRLF & _ "msgid "Set the background color of button when mouse over."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:125" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:144" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:105" & @CRLF & _ "msgid "Button Text Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:128" & @CRLF & _ "msgid "Set color of button text."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:137" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:153" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:112" & @CRLF & _ "msgid "Button Text Color Hover"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:140" & @CRLF & _ "msgid "Set color of button text when mouse over."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:149" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:133" & @CRLF & _ "msgid "Button Border Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:152" & @CRLF & _ "msgid "Set color of button border."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:161" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:140" & @CRLF & _ "msgid "Button Border Color Hover"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:164" & @CRLF & _ "msgid "Set color of button border when mouse over."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:182" & @CRLF & _ "msgid "Icon Position"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:190" & @CRLF & _ "msgid "Select the display position of icon."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:194" & @CRLF & _ "msgid "Icon Box Shadow?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:200" & @CRLF & _ "msgid "Add a shadow to icon of button."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:207" & @CRLF & _ "msgid "Set color of icon."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:219" & @CRLF & _ "msgid "Set color of icon when mouse over."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:228" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:122" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:61" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:107" & @CRLF & _ "msgid "Upload Image"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:234" & @CRLF & _ "msgid "Upload one image to make background for button."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:241" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:237" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:73" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/vc_options.php:26" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:104" & @CRLF & _ "msgid "Add extra class to button"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:248" & @CRLF & _ "msgid "Add New Button"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/config.php:10" & @CRLF & _ "msgid "SLZ Contact Form 7"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/config.php:11" & @CRLF & _ "msgid "Create an block contain contact form 7"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:5" & @CRLF & _ "msgid "-None-"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:18" & @CRLF & _ "msgid "Heading Text"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:21" & @CRLF & _ "msgid "Add heading text to contact form."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:25" & @CRLF & _ "msgid "Height Textarea"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:28" & @CRLF & _ "msgid "Add height textarea for contact form(Unit is px)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:37" & @CRLF & _ "msgid "Choose Contact Form"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:40" & @CRLF & _ "msgid "Choose contact form to display."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:44" & @CRLF & _ "msgid "Box Shadow?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:46" & @CRLF & _ "msgid "Add a box-shadow to contact form"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:53" & @CRLF & _ "msgid "Add padding top for contact form(Unit is px)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:61" & @CRLF & _ "msgid "Add padding bottom for contact form(Unit is px)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:66" & @CRLF & _ "msgid "Padding Right"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:69" & @CRLF & _ "msgid "Add padding right for contact form(Unit is px)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:74" & @CRLF & _ "msgid "Padding Left"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:77" & @CRLF & _ "msgid "Add padding left for contact form(Unit is px)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:84" & @CRLF & _ "msgid "Upload an background image for contact form."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:90" & @CRLF & _ "msgid "Choose background color for contact form."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:94" & @CRLF & _ "msgid "Heading Icon Background Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:97" & @CRLF & _ "msgid "Choose a custom heading icon background color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:102" & @CRLF & _ "msgid "Heading Icon Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:105" & @CRLF & _ "msgid "Choose a custom heading icon color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:110" & @CRLF & _ "msgid "Heading Text Background Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:113" & @CRLF & _ "msgid "Choose a custom heading text background color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:118" & @CRLF & _ "msgid "Heading Text Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:121" & @CRLF & _ "msgid "Choose a custom heading text color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:129" & @CRLF & _ "msgid "Choose a custom background color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:138" & @CRLF & _ "msgid "Choose a custom background color hover."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:147" & @CRLF & _ "msgid "Choose a custom color for button text."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:156" & @CRLF & _ "msgid "Choose a custom color hover for button text."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:165" & @CRLF & _ "msgid "Add extra class to image"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/config.php:8" & @CRLF & _ "msgid "SLZ Contact"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/config.php:9" & @CRLF & _ "msgid "Contact information"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-1.php:18" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-2.php:18" & @CRLF & _ "msgid "Choose style for this shortcode."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-2.php:24" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:36" & @CRLF & _ "msgid "Title for this block."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:23" & @CRLF & _ "msgid "Display title"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:29" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:70" & @CRLF & _ "msgid "Enter number of column contact display on row."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:46" & @CRLF & _ "msgid "Content for this block."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:56" & @CRLF & _ "msgid "Add Contact Block"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:81" & @CRLF & _ "msgid "Select color for background."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:89" & @CRLF & _ "msgid "Select color for contact content."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:97" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:96" & @CRLF & _ "msgid "Select color for title."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:105" & @CRLF & _ "msgid "Select color for title when mouse hover."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:113" & @CRLF & _ "msgid "Select color for icon."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:121" & @CRLF & _ "msgid "Select color for icon when mouse enter."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:130" & @CRLF & _ "msgid "Add extra class for block"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/config.php:5" & @CRLF & _ "msgid "SLZ Content Carousel"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/config.php:6" & @CRLF & _ "msgid "Show the content block as slider on your page."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:7" & @CRLF & _ "msgid "Contents"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:8" & @CRLF & _ "msgid "Add new content block."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:15" & @CRLF & _ "msgid "Title of content."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:22" & @CRLF & _ "msgid "Description of content."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:26" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:84" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:96" & @CRLF & _ "#: framework-customizations/theme/options/advertisement-settings.php:36" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:70" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:116" & @CRLF & _ "msgid "Image"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:29" & @CRLF & _ "msgid "Image of content."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:36" & @CRLF & _ "msgid "Button of content."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:54" & @CRLF & _ "msgid "Enter number of items to show. Default: 1."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:55" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:63" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:71" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:79" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:87" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:94" & @CRLF & _ "msgid "Slider Custom"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:92" & @CRLF & _ "msgid "Slider Speed"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:93" & @CRLF & _ "msgid "Enter number value. Unit is millisecond. Default: 600."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:120" & @CRLF & _ "msgid "Choose a custom description text color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/config.php:10" & @CRLF & _ "msgid "SLZ Count Down"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/config.php:11" & @CRLF & _ "msgid "Add Count Down with custom option."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:23" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:47" & @CRLF & _ "msgid "Choose style to be displayed."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:27" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:242" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:61" & @CRLF & _ "msgid "Block Align"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:30" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:245" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:64" & @CRLF & _ "msgid "It is used for aligning the inner content of blocks."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:34" & @CRLF & _ "msgid "Time Finish"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:36" & @CRLF & _ "msgid "Enter finish time."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:40" & @CRLF & _ "msgid "Items Background Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:43" & @CRLF & _ "msgid "Choose background color for items."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:44" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:52" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:60" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:68" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:82" & @CRLF & _ "msgid "Customs CSS"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:48" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:85" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:199" & @CRLF & _ "msgid "Number Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:51" & @CRLF & _ "msgid "Choose color for number."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:59" & @CRLF & _ "msgid "Choose color for text under number."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:64" & @CRLF & _ "msgid "Colon Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:67" & @CRLF & _ "msgid "Choose color for colon."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:74" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:77" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:132" & @CRLF & _ "msgid "Enter extra class name."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:78" & @CRLF & _ "msgid "Animation Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:81" & @CRLF & _ "msgid "Choose color for Animation."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/config.php:10" & @CRLF & _ "msgid "SLZ Counter"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/config.php:11" & @CRLF & _ "msgid "Create counter block."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:13" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:68" & @CRLF & _ "msgid "Image Upload"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:18" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:27" & @CRLF & _ "msgid "None"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:40" & @CRLF & _ "msgid "Georgia 1"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:41" & @CRLF & _ "msgid "Georgia 2"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:63" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:38" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:29" & @CRLF & _ "msgid "Title. If it blank the will not have a title"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:68" & @CRLF & _ "msgid "Number"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:70" & @CRLF & _ "msgid "Title. If it blank the will not have a number"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:76" & @CRLF & _ "msgid "Choose custom color for background item."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:87" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:201" & @CRLF & _ "msgid "Choose custom color for number."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:96" & @CRLF & _ "msgid "Number Prefix"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:98" & @CRLF & _ "msgid "Add prefix for number"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:102" & @CRLF & _ "msgid "Number Suffix"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:104" & @CRLF & _ "msgid "Add suffix for number"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:108" & @CRLF & _ "msgid "Choose Type of Icon"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:111" & @CRLF & _ "msgid "Choose style to display block."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:128" & @CRLF & _ "msgid "Upload Image."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:135" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:146" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:71" & @CRLF & _ "msgid "Styles"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:161" & @CRLF & _ "msgid "Choose number of columns to show"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:165" & @CRLF & _ "msgid "Block Alignment"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:172" & @CRLF & _ "msgid "Counter Items"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:175" & @CRLF & _ "msgid "List of counter items"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:179" & @CRLF & _ "msgid "Number Animation?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:185" & @CRLF & _ "msgid "Show Number Line?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:187" & @CRLF & _ "msgid "Show line under number"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:194" & @CRLF & _ "msgid "Choose custom color for title."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:208" & @CRLF & _ "msgid "Choose custom color for icon."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:215" & @CRLF & _ "msgid "Choose custom background color for icon."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:220" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:133" & @CRLF & _ "msgid "Line Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:222" & @CRLF & _ "msgid "Choose line custom color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/config.php:10" & @CRLF & _ "msgid "SLZ Icons Block"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/config.php:11" & @CRLF & _ "msgid "Icons Block of info"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:6" & @CRLF & _ "msgid "Newyork"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:11" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:17" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-1.php:10" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-3.php:8" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:32" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:322" & @CRLF & _ "msgid "Normal"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:12" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-1.php:11" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-3.php:9" & @CRLF & _ "msgid "Alternate"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:21" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:20" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-4.php:15" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/options/layout-1.php:18" & @CRLF & _ "msgid "Select style for blocks."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:32" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:31" & @CRLF & _ "msgid "Choose background color for icon of blocks."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:38" & @CRLF & _ "msgid "Icon Background Color (hover)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:45" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:44" & @CRLF & _ "msgid "Choose background color for icon when you mouse over it."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:51" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:50" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:140" & @CRLF & _ "msgid "Icon Border Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:59" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:58" & @CRLF & _ "msgid "Choose border color for icon of blocks."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:65" & @CRLF & _ "msgid "Icon Border Color (hover)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:73" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:71" & @CRLF & _ "msgid "Choose border color for icon when you mouse over it."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:82" & @CRLF & _ "msgid "It is used for Layout United States - Style Large Spacing"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:87" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:246" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:262" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:270" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:277" & @CRLF & _ "msgid "Options"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:7" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/options/layout-2.php:7" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:6" & @CRLF & _ "msgid "Jaipur"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:8" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:7" & @CRLF & _ "msgid "Noida"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:9" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:8" & @CRLF & _ "msgid "New Delhi"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:10" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:9" & @CRLF & _ "msgid "Bengaluru"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:37" & @CRLF & _ "msgid "Icon Background Color Hover"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:63" & @CRLF & _ "msgid "Icon Border Color Hover"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-4.php:4" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:3" & @CRLF & _ "msgid "Milan"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-4.php:5" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:4" & @CRLF & _ "msgid "Rome"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:10" & @CRLF & _ "msgid "0.5 s"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:11" & @CRLF & _ "msgid "1 s"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:12" & @CRLF & _ "msgid "1.5 s"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:13" & @CRLF & _ "msgid "2 s"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:20" & @CRLF & _ "msgid "No Spacing 01"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:21" & @CRLF & _ "msgid "No Spacing 02"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:33" & @CRLF & _ "msgid "Underline"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:64" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:17" & @CRLF & _ "msgid "Icon Type"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:70" & @CRLF & _ "msgid "Choose type of icon of block."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:90" & @CRLF & _ "msgid "You can use image instead of icon."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:97" & @CRLF & _ "msgid "Title. If it blank the block will not have a title."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:127" & @CRLF & _ "msgid "Description. If it blank the block will not have a description."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:134" & @CRLF & _ "msgid "Choose background color for icon."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:143" & @CRLF & _ "msgid "Choose border color for icon."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:156" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:116" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:40" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:35" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:30" & @CRLF & _ "msgid "Block Background Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:159" & @CRLF & _ "msgid "Choose background color for blocks."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:164" & @CRLF & _ "msgid "Block Background Color Hover"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:167" & @CRLF & _ "msgid "Choose background color for blocks when you mouse over it."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:172" & @CRLF & _ "msgid "Block Background Image"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:175" & @CRLF & _ "msgid "Choose background image for blocks."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:179" & @CRLF & _ "msgid "Block Background Image Hover"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:182" & @CRLF & _ "msgid "Choose background image for blocks when you mouse over it."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:189" & @CRLF & _ "msgid "Add Block Icon"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:212" & @CRLF & _ "msgid "Blocks Animation"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:216" & @CRLF & _ "msgid "Add animation for blocks."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:220" & @CRLF & _ "msgid "Animation Delay Time"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:224" & @CRLF & _ "msgid "Choose delay time for animation."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:233" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:94" & @CRLF & _ "msgid "Select number of single block elements per row."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:254" & @CRLF & _ "msgid "Spacing Style"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:257" & @CRLF & _ "msgid "Choose style for spacing bettween blocks."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:266" & @CRLF & _ "msgid "Title Line?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:269" & @CRLF & _ "msgid "Show/Hide line of title."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:274" & @CRLF & _ "msgid "Icon Size"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:276" & @CRLF & _ "msgid "Enter icon size (unit is px)."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:286" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:108" & @CRLF & _ "msgid "Block Border Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:289" & @CRLF & _ "msgid "Choose border color for blocks."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:299" & @CRLF & _ "msgid "Block Border Color Hover"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:302" & @CRLF & _ "msgid "Choose border color for blocks when you mouse over it."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:316" & @CRLF & _ "msgid "Choose color for icon of blocks."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:325" & @CRLF & _ "msgid "Choose color for icon of blocks when you mouse over it ."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:333" & @CRLF & _ "msgid "Choose color for title of blocks."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:339" & @CRLF & _ "msgid "Title Line Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:343" & @CRLF & _ "msgid "Choose color for title line of blocks."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:355" & @CRLF & _ "msgid "Choose color for description of blocks."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/config.php:10" & @CRLF & _ "msgid "SLZ Item List"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/config.php:11" & @CRLF & _ "msgid "list of text info"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:38" & @CRLF & _ "msgid "Text Info"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:42" & @CRLF & _ "msgid "Please input text to show."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:46" & @CRLF & _ "msgid "Text Description"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:50" & @CRLF & _ "msgid "Please input text description to show."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:57" & @CRLF & _ "msgid "Choose a custom text color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:78" & @CRLF & _ "msgid "Show Number"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:85" & @CRLF & _ "msgid "Choose to show number replace for icon"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:98" & @CRLF & _ "msgid "Add New Item"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:107" & @CRLF & _ "msgid "Set color for all item."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:118" & @CRLF & _ "msgid "Margin Top"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:121" & @CRLF & _ "msgid """ & @CRLF & _ ""Please input margin top between items. Exp: If want to margin 8px then input "" & @CRLF & _ ""8"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:125" & @CRLF & _ "msgid "Margin Bottom"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:128" & @CRLF & _ "msgid """ & @CRLF & _ ""Please input margin bottom between items. Exp: If want to margin 8px then "" & @CRLF & _ ""input 8"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:12" & @CRLF & _ "msgid "No Line"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:13" & @CRLF & _ "msgid "Has Line"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:39" & @CRLF & _ "msgid "Title. If it blank will not have a title."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:43" & @CRLF & _ "msgid "Extra Title"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:46" & @CRLF & _ "msgid "Extra Title . If it blank will not have a extra title."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:50" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:193" & @CRLF & _ "#: framework-customizations/theme/options/page-404-settings.php:63" & @CRLF & _ "msgid "Sub Title"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:53" & @CRLF & _ "msgid "Subtitle . If it blank will not have a subtitle."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:57" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:97" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/button/options.php:28" & @CRLF & _ "msgid "Align"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:61" & @CRLF & _ "msgid "Block alignment."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:65" & @CRLF & _ "msgid "Show Line?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:68" & @CRLF & _ "msgid "Show/Hide line for this shortcode."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:83" & @CRLF & _ "msgid "Show Icon or Image"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:86" & @CRLF & _ "msgid "Display None"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:90" & @CRLF & _ "msgid "Show Icon or Show Image."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:91" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:103" & @CRLF & _ "msgid "Icon Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:98" & @CRLF & _ "msgid "Upload your image."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:115" & @CRLF & _ "msgid "CSS box"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:117" & @CRLF & _ "msgid "Design Options"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:136" & @CRLF & _ "msgid "Choose color for line."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:145" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:203" & @CRLF & _ "msgid "Sub Title Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:148" & @CRLF & _ "msgid "Choose color for sub title."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:153" & @CRLF & _ "msgid "Extra Title Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:156" & @CRLF & _ "msgid "Choose color for extra title."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:168" & @CRLF & _ "msgid "Choose color for icon."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:181" & @CRLF & _ "msgid "Add extra class to button."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/config.php:15" & @CRLF & _ "msgid "SLZ Map"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/config.php:16" & @CRLF & _ "msgid "Map data from google map"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:8" & @CRLF & _ "msgid "Enter title for this session."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:15" & @CRLF & _ "msgid "Contact Information"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:22" & @CRLF & _ "msgid "Address"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:24" & @CRLF & _ "msgid "Enter Address."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:28" & @CRLF & _ "msgid "Add New Information"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:44" & @CRLF & _ "msgid "Add New Place"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:50" & @CRLF & _ "msgid "Show Block Information?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:52" & @CRLF & _ "msgid "Show/Hide block information next to map."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:56" & @CRLF & _ "msgid "Contact Form ID"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:59" & @CRLF & _ "msgid "Add shortcode id of contact form 7 plugin"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:63" & @CRLF & _ "msgid "Map Height"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:66" & @CRLF & _ "msgid "Unit is px (ex:200)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:77" & @CRLF & _ "msgid "Map Marker Image"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:80" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:88" & @CRLF & _ "msgid "Map Setting"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:84" & @CRLF & _ "msgid "Zoom"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:87" & @CRLF & _ "msgid """ & @CRLF & _ ""Enter zoom number of map. Number between 0 (farthest) and 22 that sets the "" & @CRLF & _ ""zoom level of the map."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:95" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:103" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:111" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:119" & @CRLF & _ "msgid "Custom Css"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:100" & @CRLF & _ "msgid "Information Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:104" & @CRLF & _ "msgid "Select color for contact information."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:112" & @CRLF & _ "msgid "Select color for horizontal separator betwen items."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:120" & @CRLF & _ "msgid "Select background color for block."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/config.php:11" & @CRLF & _ "msgid "SLZ Newsletter"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/config.php:12" & @CRLF & _ "msgid "Extend from plugin newsletter"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:25" & @CRLF & _ "msgid "Please input title if want to show."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:32" & @CRLF & _ "msgid "Please input descripton if want to show."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:36" & @CRLF & _ "msgid "Show Input Name?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:39" & @CRLF & _ "msgid "Choose if want to show input name."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:47" & @CRLF & _ "msgid "Name Input Place Holder"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:50" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:61" & @CRLF & _ "msgid "Enter place holder for input"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:58" & @CRLF & _ "msgid "Email Input Place Holder"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:65" & @CRLF & _ "msgid "Text Button Submit"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:68" & @CRLF & _ "msgid "Enter text for button submit."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:93" & @CRLF & _ "msgid "Choose color for description."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:98" & @CRLF & _ "msgid "Input Text Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:100" & @CRLF & _ "msgid "Choose color for input text."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:107" & @CRLF & _ "msgid "Choose color for button."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:114" & @CRLF & _ "msgid "Choose color for button when hover."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:121" & @CRLF & _ "msgid "Choose background color for button."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:128" & @CRLF & _ "msgid "Choose background color for button when hover."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:135" & @CRLF & _ "msgid "Choose border color for button."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:142" & @CRLF & _ "msgid "Choose border color for button when hover."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/config.php:9" & @CRLF & _ "msgid "SLZ Partner"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/config.php:10" & @CRLF & _ "msgid "List of partner"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:8" & @CRLF & _ "msgid "Six"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:9" & @CRLF & _ "msgid "Seven"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:10" & @CRLF & _ "msgid "Eight"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:44" & @CRLF & _ "msgid "Choose slide for shortcode."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:60" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:73" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:86" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:99" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:111" & @CRLF & _ "msgid "Carousel Custom"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:120" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:402" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:314" & @CRLF & _ "msgid "Slide Arrow Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:123" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:405" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:317" & @CRLF & _ "msgid "Choose color slide arrow for slide."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:128" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:140" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:152" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:164" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:176" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:188" & @CRLF & _ "msgid "Color Custom"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:132" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:326" & @CRLF & _ "msgid "Slide Arrow Color Hover"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:135" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:417" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:329" & @CRLF & _ "msgid "Choose color slide arrow for slide when hover."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:144" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:426" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:338" & @CRLF & _ "msgid "Slide Arrow Background Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:147" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:429" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:341" & @CRLF & _ "msgid "Choose background color slide arrow for slide."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:156" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:350" & @CRLF & _ "msgid "Slide Arrow Background Color Hover"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:159" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:441" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:353" & @CRLF & _ "msgid "Choose background color slide arrow for slide when hover."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:168" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:450" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:362" & @CRLF & _ "msgid "Slide Dots Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:171" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:453" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:365" & @CRLF & _ "msgid "Choose color slide dots for slide."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:180" & @CRLF & _ "msgid "Slide Dots Color Active"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:183" & @CRLF & _ "msgid "Choose color slide dots for slide when active, hover."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:221" & @CRLF & _ "msgid "Is Padding ?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:225" & @CRLF & _ "msgid "Choose YES to block is padding."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:229" & @CRLF & _ "msgid "List of Partner"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:234" & @CRLF & _ "msgid "Item Title"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:237" & @CRLF & _ "msgid "Enter title of block"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:241" & @CRLF & _ "msgid "Item Image"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:243" & @CRLF & _ "msgid "Upload Image. Recommend uploading the pictures the same size."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:247" & @CRLF & _ "msgid "Item Link"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:250" & @CRLF & _ "msgid "Enter link of item."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:10" & @CRLF & _ "msgid "SLZ Posts Block"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:11" & @CRLF & _ "msgid "Show posts with layouts"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:45" & @CRLF & _ "msgid "Portsmouth"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:46" & @CRLF & _ "msgid "Chester"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:47" & @CRLF & _ "msgid "Huddersfield"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:48" & @CRLF & _ "msgid "Bath"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:52" & @CRLF & _ "msgid "Cascina"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:11" & @CRLF & _ "msgid "Choose main layout to show"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:12" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:21" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:34" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:47" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:60" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:73" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:12" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:21" & @CRLF & _ "msgid "Main Layout"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:20" & @CRLF & _ "msgid "Choose if want to show category"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:29" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:112" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:68" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:80" & @CRLF & _ "msgid "Show Top Post Info?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:33" & @CRLF & _ "msgid "Choose if want to show top post info"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:42" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:125" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:16" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:55" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:91" & @CRLF & _ "msgid "Show Bottom Post Info?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:46" & @CRLF & _ "msgid "Choose if want to show bottom post info"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:55" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:7" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:47" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:42" & @CRLF & _ "msgid "Show Excerpt?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:59" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:11" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:51" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:46" & @CRLF & _ "msgid "Choose if want to show excerpt"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:72" & @CRLF & _ "msgid "Choose if want to show read more button"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:85" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:29" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:11" & @CRLF & _ "msgid "Choose list layout to show"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:86" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:95" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:104" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:117" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:130" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:143" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:156" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:30" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:39" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:52" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:12" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:21" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:34" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:47" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:60" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:73" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:85" & @CRLF & _ "msgid "List Layout"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:94" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:20" & @CRLF & _ "msgid "Choose number of column."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:103" & @CRLF & _ "msgid "Choose if want to show category."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:116" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:72" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:87" & @CRLF & _ "msgid "Choose if want to show top post info."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:129" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:20" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:59" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:98" & @CRLF & _ "msgid "Choose if want to show bottom post info."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:142" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:38" & @CRLF & _ "msgid "Choose if want to show feature image"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:155" & @CRLF & _ "msgid "Choose if want to show read more button."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:29" & @CRLF & _ "msgid "Show Left and Right layout?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:33" & @CRLF & _ "msgid "Choose if want to show left and right layout"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:81" & @CRLF & _ "msgid "Show User Info?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:84" & @CRLF & _ "msgid "Choose if want to show user info."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-4.php:15" & @CRLF & _ "msgid "Arrow Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-4.php:18" & @CRLF & _ "msgid "Choose a custom arrow color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-4.php:27" & @CRLF & _ "msgid "Arrow Hover Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-4.php:30" & @CRLF & _ "msgid "Choose a custom arrow hover color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:26" & @CRLF & _ "msgid "Author Post Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:29" & @CRLF & _ "msgid "Choose a author post color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:34" & @CRLF & _ "msgid "Title Post Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:37" & @CRLF & _ "msgid "Choose a title post color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:58" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:134" & @CRLF & _ "msgid "Number Posts"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:61" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:137" & @CRLF & _ "msgid """ & @CRLF & _ ""The number of posts to display. If it blank the number posts will be the "" & @CRLF & _ ""number from Settings -> Reading"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:65" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:141" & @CRLF & _ "msgid "Offset Posts"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:68" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:144" & @CRLF & _ "msgid """ & @CRLF & _ ""Enter offset to display. If you want to start on record 6, using offset 5"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:75" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:151" & @CRLF & _ "msgid "Choose criteria to display."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:82" & @CRLF & _ "msgid "Enter number of excerpt length"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:93" & @CRLF & _ "msgid "Enter text for button \"read more\""" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/config.php:10" & @CRLF & _ "msgid "SLZ Posts Carousel"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/config.php:11" & @CRLF & _ "msgid "Block Carousel of posts"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:12" & @CRLF & _ "msgid "Choose a layout to show."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:19" & @CRLF & _ "msgid "One Column"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:20" & @CRLF & _ "msgid "Two Column"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:21" & @CRLF & _ "msgid "Three Column"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:22" & @CRLF & _ "msgid "Four Column"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:25" & @CRLF & _ "msgid "Choose a column for display block."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:69" & @CRLF & _ "msgid "Show Excerpt"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:76" & @CRLF & _ "msgid "Show or hide post excerpt"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:105" & @CRLF & _ "msgid "Input number of excerpt length."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:113" & @CRLF & _ "msgid "Show Readmore Button"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:120" & @CRLF & _ "msgid "Show or hide readmore button"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:126" & @CRLF & _ "msgid "Add custom link for readmore buttonaa."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:168" & @CRLF & _ "msgid "Fade"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:217" & @CRLF & _ "msgid "Animation?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:220" & @CRLF & _ "msgid "Choose a animation"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/views/large_module.php:18" & @CRLF & _ "msgid "Read more"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/config.php:10" & @CRLF & _ "msgid "SLZ Pricing Box"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/config.php:11" & @CRLF & _ "msgid "Box of pricing info"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/options/layout-1.php:12" & @CRLF & _ "msgid "Select style for pricing box"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:39" & @CRLF & _ "msgid "Number of Pricing Box"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:44" & @CRLF & _ "msgid "Choose number of pricing box to display"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:58" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "Pricing Box %s"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:70" & @CRLF & _ "msgid "Active?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:74" & @CRLF & _ "msgid "Choose yes if you want it show as active."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:80" & @CRLF & _ "msgid "Pricing Header Background Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:82" & @CRLF & _ "msgid "Choose background color for header of pricing box."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:89" & @CRLF & _ "msgid "Mark Label"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:92" & @CRLF & _ "msgid "Please input mark label."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:100" & @CRLF & _ "msgid "Choose label text color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:107" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:363" & @CRLF & _ "msgid "Label Background Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:109" & @CRLF & _ "msgid "Choose label background color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:119" & @CRLF & _ "msgid "Please input box title."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:128" & @CRLF & _ "msgid "Choose title color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:138" & @CRLF & _ "msgid "Please input price number."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:145" & @CRLF & _ "msgid "Old Price"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:148" & @CRLF & _ "msgid "Please input Old price number."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:155" & @CRLF & _ "msgid "Price Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:157" & @CRLF & _ "msgid "Choose price color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:167" & @CRLF & _ "msgid "Enter measurement units. Example: $, GBP, EUR, etc."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:177" & @CRLF & _ "msgid "Please input price subfix. Exp: Month, Hour,.."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:184" & @CRLF & _ "msgid "Price Subfix Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:186" & @CRLF & _ "msgid "Choose price subfix color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:196" & @CRLF & _ "msgid "Please input sub title."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:205" & @CRLF & _ "msgid "Choose sub title color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:212" & @CRLF & _ "msgid "Features"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:217" & @CRLF & _ "msgid "Feature Item"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:221" & @CRLF & _ "msgid "Please input feature item."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:225" & @CRLF & _ "msgid "Feature Item Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:227" & @CRLF & _ "msgid "Choose feature item color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:242" & @CRLF & _ "msgid "Choose icon feature item color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:254" & @CRLF & _ "msgid "Please input button text."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:263" & @CRLF & _ "msgid "Choose button link and info."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:271" & @CRLF & _ "msgid "Choose button text color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:278" & @CRLF & _ "msgid "Button Color (hover)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:280" & @CRLF & _ "msgid "Choose button text color when you mouse over it."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:289" & @CRLF & _ "msgid "Choose button background color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:296" & @CRLF & _ "msgid "Button Background Color (hover)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:298" & @CRLF & _ "msgid "Choose button background color when you mouse over it."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:305" & @CRLF & _ "msgid "Background Color (hover)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:307" & @CRLF & _ "msgid "Choose background color when you mouse over it."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:315" & @CRLF & _ "msgid "Background Image Hover"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:316" & @CRLF & _ "msgid "Upload pricing box background image hover."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:9" & @CRLF & _ "msgid "Conneticut"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:24" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:73" & @CRLF & _ "msgid "List of Progress Bar"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:37" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:86" & @CRLF & _ "msgid "Number show"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:41" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:90" & @CRLF & _ "msgid """ & @CRLF & _ ""Please input percent of progress bar, Exp: if you want to show 80, please "" & @CRLF & _ ""input 80, maximum number is 100"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:45" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:94" & @CRLF & _ "msgid "Progress Bar Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:48" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:97" & @CRLF & _ "msgid "Choose a custom progress bar color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:59" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:108" & @CRLF & _ "msgid "Percent Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:62" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:111" & @CRLF & _ "msgid "Choose a custom percent text color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:115" & @CRLF & _ "msgid "Marker Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:118" & @CRLF & _ "msgid "Choose a custom marker color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/config.php:8" & @CRLF & _ "msgid "SLZ Timeline"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/config.php:9" & @CRLF & _ "msgid "Timeline of events"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:13" & @CRLF & _ "msgid "Choose style for shortcode"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:17" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:8" & @CRLF & _ "msgid "Add info to timeline"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:23" & @CRLF & _ "msgid "Timeline"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:25" & @CRLF & _ "msgid "Timeline. If it blank the will not have timeline"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:29" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:20" & @CRLF & _ "msgid "Timeline Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:31" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:22" & @CRLF & _ "msgid "Choose a custom color for timeline."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:42" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:33" & @CRLF & _ "msgid "Url"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:45" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:36" & @CRLF & _ "msgid "Please input link to timeline."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:57" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:48" & @CRLF & _ "msgid "Description. If it blank the will not have a description"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:63" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:54" & @CRLF & _ "msgid "Choose a custom color for description."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:72" & @CRLF & _ "msgid "Milestone Point"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:74" & @CRLF & _ "msgid "Choose a custom color for milestone point."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:79" & @CRLF & _ "msgid "Timeline Line"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:81" & @CRLF & _ "msgid "Choose a custom color for timeline line."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:14" & @CRLF & _ "msgid "Year"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:16" & @CRLF & _ "msgid "Year of timeline. If it blank will not have timeline."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/config.php:10" & @CRLF & _ "msgid "SLZ Video Carousel"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/config.php:11" & @CRLF & _ "msgid "Show list of video as carousel"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/config.php:26" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:6" & @CRLF & _ "#: framework-customizations/theme/options/posts/post.php:104" & @CRLF & _ "msgid "Youtube"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/config.php:27" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:7" & @CRLF & _ "#: framework-customizations/theme/options/posts/post.php:108" & @CRLF & _ "msgid "Vimeo"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:11" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:59" & @CRLF & _ "msgid "Choose style to display."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:21" & @CRLF & _ "msgid "Add Title for shortcode Video Carousel"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:36" & @CRLF & _ "msgid "Add Video"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:41" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:33" & @CRLF & _ "msgid "Video Title"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:44" & @CRLF & _ "msgid "Add title for video"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:48" & @CRLF & _ "msgid "Video Description"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:51" & @CRLF & _ "msgid "Add description for video"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:55" & @CRLF & _ "msgid "Type Of Video"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:63" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:56" & @CRLF & _ "#: framework-customizations/theme/options/posts/post.php:125" & @CRLF & _ "msgid "Youtube ID"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:66" & @CRLF & _ "#: framework-customizations/theme/options/posts/post.php:126" & @CRLF & _ "msgid """ & @CRLF & _ ""Example the Video ID for http://www.youtube.com/v/8OBfr46Y0cQ is 8OBfr46Y0cQ"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:74" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:69" & @CRLF & _ "#: framework-customizations/theme/options/posts/post.php:117" & @CRLF & _ "msgid "Vimeo ID"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:77" & @CRLF & _ "#: framework-customizations/theme/options/posts/post.php:118" & @CRLF & _ "msgid "Example the Video ID for http://vimeo.com/86323053 is 86323053"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:93" & @CRLF & _ "msgid "Set navigation slide to show."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/config.php:6" & @CRLF & _ "msgid "SLZ Video"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/config.php:7" & @CRLF & _ "msgid "Create video block."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:36" & @CRLF & _ "msgid "Set title for video."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:43" & @CRLF & _ "msgid "Description for this video."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:48" & @CRLF & _ "msgid "Video Type"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:51" & @CRLF & _ "msgid "Choose Type of Video."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:59" & @CRLF & _ "msgid """ & @CRLF & _ ""Example: the Video ID for https://www.youtube.com/watch?v=PDWvcsTloJo is "" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:72" & @CRLF & _ "msgid "Example: the Video ID for https://vimeo.com/162913890 is "" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:81" & @CRLF & _ "msgid "Add Video Background Image"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:84" & @CRLF & _ "msgid "Choose background image to add."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:89" & @CRLF & _ "msgid "Video height"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:92" & @CRLF & _ "msgid """ & @CRLF & _ ""Set height for video. Example: 75% - means video height by 75% video width."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:101" & @CRLF & _ "msgid "Choose align for video box"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:106" & @CRLF & _ "msgid "Is Popup?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:109" & @CRLF & _ "msgid "Choose to show video as popup."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:114" & @CRLF & _ "msgid "Play Text"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:117" & @CRLF & _ "msgid "Enter play text for video."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:125" & @CRLF & _ "msgid "Set border radius for video."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/views/layout-1.php:148" & @CRLF & _ "#: framework-customizations/extensions/shortcodes/shortcodes/video/views/layout-2.php:153" & @CRLF & _ "msgid "Video not found."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/config.php:8" & @CRLF & _ "msgid "SLZ Teams Block"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/config.php:9" & @CRLF & _ "msgid "List of teams"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-1.php:27" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-3.php:25" & @CRLF & _ "msgid "It is used for ..."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:9" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:16" & @CRLF & _ "#: framework-customizations/theme/config.php:537" & @CRLF & _ "msgid "Team"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:17" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:27" & @CRLF & _ "msgid "-All Team-"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:21" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:31" & @CRLF & _ "msgid "-All Team Categories-"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:59" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:57" & @CRLF & _ "msgid "Choose team category or special teams to display"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:77" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:75" & @CRLF & _ "msgid "Choose Team Category."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:86" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:84" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:301" & @CRLF & _ "msgid "Teams"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:92" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:90" & @CRLF & _ "msgid "Add Team"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:95" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:93" & @CRLF & _ "msgid "Choose special team to show"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:99" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:97" & @CRLF & _ "msgid """ & @CRLF & _ ""Default display All Team if no team is selected and Number team is empty."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:114" & @CRLF & _ "msgid "Enter content to display button."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:119" & @CRLF & _ "msgid "Show Thumbnail"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:123" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:113" & @CRLF & _ "msgid "If choose Yes, block will be show thumbnail image."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:128" & @CRLF & _ "msgid "Show Position"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:132" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:121" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:84" & @CRLF & _ "msgid "If choose Yes, block will be show position."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:137" & @CRLF & _ "msgid "Show Contact Info"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:141" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:129" & @CRLF & _ "msgid "If choose Yes, block will show contact info."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:146" & @CRLF & _ "msgid "Show Social"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:150" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:137" & @CRLF & _ "msgid "If choose Yes, block will be show social."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:159" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:145" & @CRLF & _ "msgid "If choose Yes, block will be show description."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:166" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:151" & @CRLF & _ "msgid "Limit words to display."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:181" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:197" & @CRLF & _ "msgid "Choose color title for block."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:182" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:190" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:198" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:206" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:214" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:222" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:230" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:238" & @CRLF & _ "msgid "Color Options"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:189" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:205" & @CRLF & _ "msgid "Choose color title for block when hover."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:194" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:210" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:213" & @CRLF & _ "msgid "Position Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:197" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:213" & @CRLF & _ "msgid "Choose color position for block."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:202" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:218" & @CRLF & _ "msgid "Info Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:205" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:221" & @CRLF & _ "msgid "Choose color for contact info."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:210" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:226" & @CRLF & _ "msgid "Info Hover Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:213" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:229" & @CRLF & _ "msgid "Choose hover color for contact info."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:221" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:237" & @CRLF & _ "msgid "Choose color description for block."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:229" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:245" & @CRLF & _ "msgid "Choose color social for block."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:237" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:253" & @CRLF & _ "msgid "Choose color social for block when hover."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:282" & @CRLF & _ "msgid "Show Pagination ?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:286" & @CRLF & _ "msgid "If choose Yes, block will be show pagination."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:290" & @CRLF & _ "msgid "Max Posts"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:293" & @CRLF & _ "msgid "Add total posts when paging."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:304" & @CRLF & _ "msgid "Select order to display list of teams."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:317" & @CRLF & _ "msgid "Show Slider"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:321" & @CRLF & _ "msgid "If choose Yes, block will be display with slider style."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:322" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:334" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:347" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:360" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:373" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:386" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:398" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:410" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:422" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:434" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:446" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:458" & @CRLF & _ "msgid "Slide Options"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:351" & @CRLF & _ "msgid "Show Dots Navigation"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:364" & @CRLF & _ "msgid "Show Arrows Navigation"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:414" & @CRLF & _ "msgid "Slide Arrow Hover Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:438" & @CRLF & _ "msgid "Slide Arrow Background Hover Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/config.php:8" & @CRLF & _ "msgid "SLZ Team Carousel"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/config.php:9" & @CRLF & _ "msgid "List of teams in carousel"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/config.php:34" & @CRLF & _ "msgid "Germany"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:20" & @CRLF & _ "msgid "1"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:21" & @CRLF & _ "msgid "2"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:109" & @CRLF & _ "msgid "Show Thumbnail ?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:117" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:80" & @CRLF & _ "msgid "Show Position ?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:125" & @CRLF & _ "msgid "Show Contact Info ?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:133" & @CRLF & _ "msgid "Show Social ?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:141" & @CRLF & _ "msgid "Show Description ?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:183" & @CRLF & _ "msgid "Enter text to button. If it blank will not have a button."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:250" & @CRLF & _ "msgid "Social Color Hover"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:265" & @CRLF & _ "msgid "Choose number of items to show."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/config.php:10" & @CRLF & _ "msgid "SLZ Testimonial"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/config.php:11" & @CRLF & _ "msgid "Slider of testimonials"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:25" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:31" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:26" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:25" & @CRLF & _ "msgid "Using featured image in post as background image."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:36" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:48" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:42" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:37" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:32" & @CRLF & _ "msgid "Please choose background color for block"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:54" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:49" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:40" & @CRLF & _ "msgid "Please choose border color for block"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-6.php:4" & @CRLF & _ "msgid "Ankara"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-6.php:5" & @CRLF & _ "msgid "Bilecik"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-6.php:6" & @CRLF & _ "msgid "Bolu"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:16" & @CRLF & _ "msgid "Testimonial"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:25" & @CRLF & _ "msgid "Show Feature Image"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:26" & @CRLF & _ "msgid "Show Thumbnail Image"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:31" & @CRLF & _ "msgid "-All Testimonial-"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:35" & @CRLF & _ "msgid "-All Testimonial Categories-"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:72" & @CRLF & _ "msgid "Show Icon Quote ?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:76" & @CRLF & _ "msgid "If choose Yes, block will be show icon quote."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:88" & @CRLF & _ "msgid "Show Ratings?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:92" & @CRLF & _ "msgid "If choose Yes, block will be show ratings."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:96" & @CRLF & _ "msgid "Avatar Image"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:100" & @CRLF & _ "msgid "Select image type for Avatar."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:139" & @CRLF & _ "msgid "Choose testimonial category or special testimonials to display."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:157" & @CRLF & _ "msgid "Choose Testimonial Category."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:166" & @CRLF & _ "msgid "Testimonials"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:172" & @CRLF & _ "msgid "Add Testimonial"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:175" & @CRLF & _ "msgid "Choose special testimonial to show"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:180" & @CRLF & _ "msgid "Default display all testimonials."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:193" & @CRLF & _ "msgid "Quote Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:195" & @CRLF & _ "msgid "Please choose quote color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:207" & @CRLF & _ "msgid "Please choose title color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:215" & @CRLF & _ "msgid "Please choose position color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:223" & @CRLF & _ "msgid "Please choose description color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:236" & @CRLF & _ "msgid "Please choose dots color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:248" & @CRLF & _ "msgid "Please choose arrows color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:260" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:272" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:285" & @CRLF & _ "msgid "Please choose arrows background color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:295" & @CRLF & _ "msgid "Slides To Show"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:298" & @CRLF & _ "msgid """ & @CRLF & _ ""Please input number of item show in slider. Except for Layout India Style "" & @CRLF & _ ""Pune."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/button/config.php:7" & @CRLF & _ "msgid "slz_btn"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/button/config.php:8" & @CRLF & _ "msgid "SLZ: Button"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/button/config.php:9" & @CRLF & _ "msgid "Add button."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/button/options.php:12" & @CRLF & _ "msgid "Choose layout."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/button/options.php:19" & @CRLF & _ "msgid "Enter button text"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/button/options.php:24" & @CRLF & _ "msgid "Enter button link"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/button/options.php:29" & @CRLF & _ "msgid "Choose align button."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/category/views/admin.php:25" & @CRLF & _ "msgid "Style 1"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/category/views/admin.php:26" & @CRLF & _ "msgid "Style 2"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/category/views/admin.php:27" & @CRLF & _ "msgid "Style 3"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/category/views/admin.php:28" & @CRLF & _ "msgid "Style 4"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/category/views/admin.php:40" & @CRLF & _ "msgid "Category:"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/category/views/admin.php:46" & @CRLF & _ "msgid "Choose category to show"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/partner/config.php:7" & @CRLF & _ "msgid "slz_partner"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/partner/config.php:8" & @CRLF & _ "msgid "SLZ: Partner"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/partner/config.php:9" & @CRLF & _ "msgid "Add Partner."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/partner/options.php:12" & @CRLF & _ "msgid "Choose style."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/partner/options.php:22" & @CRLF & _ "msgid "Upload Images"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/recent-post/config.php:8" & @CRLF & _ "msgid "slz_recent_post"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/recent-post/config.php:9" & @CRLF & _ "msgid "SLZ: Recent Post"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/recent-post/config.php:10" & @CRLF & _ "msgid "A recent posts list"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/recent-post/config.php:14" & @CRLF & _ "msgid "Display Thumbnail"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/recent-post/config.php:15" & @CRLF & _ "msgid "Display Post Date"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/recent-post/config.php:16" & @CRLF & _ "msgid "Display Author"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/recent-post/config.php:17" & @CRLF & _ "msgid "Display View"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/recent-post/config.php:18" & @CRLF & _ "msgid "Display Comment"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/extensions/widgets/widgets/recent-post/views/admin.php:12" & @CRLF & _ "msgid "Number Post"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/class-welcome.php:19" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2697" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "Install %2$s"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/class-welcome.php:19" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2811" & @CRLF & _ "msgid "Install"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/class-welcome.php:43" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2708" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "Activate %2$s"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/class-welcome.php:43" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2820" & @CRLF & _ "msgid "Activate"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/class-welcome.php:62" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2702" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "Update %2$s"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/class-welcome.php:62" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2817" & @CRLF & _ "msgid "Update"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/class-welcome.php:85" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "Deactivate %2$s"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/class-welcome.php:85" & @CRLF & _ "msgid "Deactivate"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/config.php:47" & @CRLF & _ "msgid "d"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/config.php:48" & @CRLF & _ "msgid "M"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/config.php:49" & @CRLF & _ "msgid "Y"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/config.php:526" & @CRLF & _ "msgid "Portfolio Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/config.php:527" & @CRLF & _ "msgid "Team Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/config.php:528" & @CRLF & _ "msgid "Service Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/config.php:529" & @CRLF & _ "msgid "Recruitment Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/config.php:530" & @CRLF & _ "msgid "Cause Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/config.php:531" & @CRLF & _ "msgid "Event Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/config.php:532" & @CRLF & _ "msgid "FAQ Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/config.php:533" & @CRLF & _ "msgid "Product Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/config.php:538" & @CRLF & _ "msgid "Service"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/config.php:539" & @CRLF & _ "msgid "Recruitment"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/config.php:540" & @CRLF & _ "msgid "Cause"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/config.php:542" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:505" & @CRLF & _ "msgid "FAQ"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/config.php:543" & @CRLF & _ "msgid "Product"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/config.php:549" & @CRLF & _ "msgid "Font EduChain"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/config.php:556" & @CRLF & _ "msgid "Font Ionicons"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/config.php:607" & @CRLF & _ "msgid "Main Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/config.php:607" & @CRLF & _ "msgid "Select the main color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/config.php:608" & @CRLF & _ "msgid "Gradient Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/config.php:608" & @CRLF & _ "msgid "Select the gradient color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/manifest.php:80" & @CRLF & _ "msgid "EduChain"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/manifest.php:85" & @CRLF & _ "msgid "A basic start that fits all general requirements for almost courses."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/manifest.php:107" & @CRLF & _ "msgid "Market Place"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/manifest.php:112" & @CRLF & _ "msgid "You can create successful market place like udemy, coursera, lynda ..."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/manifest.php:134" & @CRLF & _ "msgid "Less Courses"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/manifest.php:139" & @CRLF & _ "msgid """ & @CRLF & _ ""Market place Less Course Suitable for small market place, or lecturers with "" & @CRLF & _ ""specialized courses."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/manifest.php:161" & @CRLF & _ "msgid "Affiliate"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/manifest.php:166" & @CRLF & _ "msgid """ & @CRLF & _ ""Use the impressive interface of EduChain to easily attract students' "" & @CRLF & _ ""attention to click to link of a market place course."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/manifest.php:191" & @CRLF & _ "msgid "WPBakery Visual Composer"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/manifest.php:198" & @CRLF & _ "msgid """ & @CRLF & _ ""Drag and drop page builder for WordPress. Take full control over your "" & @CRLF & _ ""WordPress site, build any layout you can imagine - no programming knowledge "" & @CRLF & _ ""required."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/manifest.php:201" & @CRLF & _ "msgid "Solazu Unyson"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/manifest.php:208" & @CRLF & _ "msgid """ & @CRLF & _ ""A free drag & drop framework that comes with a bunch of built in extensions "" & @CRLF & _ ""that will help you develop premium themes fast & easy."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/manifest.php:218" & @CRLF & _ "msgid """ & @CRLF & _ ""This is a short description of what the plugin does. It's displayed in the "" & @CRLF & _ ""WordPress admin area."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/manifest.php:221" & @CRLF & _ "msgid "Lema Subscription"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/manifest.php:228" & @CRLF & _ "#: framework-customizations/theme/manifest.php:238" & @CRLF & _ "msgid "One plugin of Learn Master."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/manifest.php:231" & @CRLF & _ "msgid "Lema Affiliate"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/manifest.php:241" & @CRLF & _ "#: framework-customizations/theme/options/posts/page.php:168" & @CRLF & _ "msgid "Revolution Slider"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/manifest.php:248" & @CRLF & _ "msgid "Slider Revolution - Premium responsive slider"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/manifest.php:251" & @CRLF & _ "msgid "Newsletter"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/manifest.php:257" & @CRLF & _ "msgid """ & @CRLF & _ ""Newsletter is a cool plugin to create your own subscriber list, to send "" & @CRLF & _ ""newsletters, to build your business."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/manifest.php:260" & @CRLF & _ "msgid "Contact Form 7"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/manifest.php:266" & @CRLF & _ "msgid "Just another contact form plugin. Simple but flexible."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/advertisement-settings.php:7" & @CRLF & _ "#: framework-customizations/theme/options/advertisement-settings.php:11" & @CRLF & _ "#: framework-customizations/theme/options/advertisement-settings.php:15" & @CRLF & _ "msgid "Advertisement"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/advertisement-settings.php:17" & @CRLF & _ "msgid """ & @CRLF & _ ""Click to add new advertisement area. Advertisement area help you to create "" & @CRLF & _ ""and manager the banner"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/advertisement-settings.php:18" & @CRLF & _ "msgid "Add Advertisement Area"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/advertisement-settings.php:22" & @CRLF & _ "msgid "Area Name"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/advertisement-settings.php:24" & @CRLF & _ "msgid "Input the advertisement area name"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/advertisement-settings.php:32" & @CRLF & _ "msgid "Display Banner"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/advertisement-settings.php:37" & @CRLF & _ "msgid "Custom Code"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/advertisement-settings.php:47" & @CRLF & _ "msgid "Banner Image"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/advertisement-settings.php:48" & @CRLF & _ "msgid "Upload the banner image .png or .jpg"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/advertisement-settings.php:53" & @CRLF & _ "msgid "Banner Link"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/advertisement-settings.php:54" & @CRLF & _ "msgid "Set the banner link."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/advertisement-settings.php:58" & @CRLF & _ "msgid "Banner Alt Attribute"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/advertisement-settings.php:59" & @CRLF & _ "msgid """ & @CRLF & _ ""Appears inside the image container when the banner image can not be "" & @CRLF & _ ""displayed. It helps search engines understand what an banner image is about."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/advertisement-settings.php:64" & @CRLF & _ "msgid "Open Link In New Tab"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/advertisement-settings.php:65" & @CRLF & _ "msgid "Open Link In New Tab?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/advertisement-settings.php:80" & @CRLF & _ "msgid "Textarea Option Code"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/advertisement-settings.php:81" & @CRLF & _ "msgid "Custom HTML allowed. Paste your ad code here."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/course-settings.php:19" & @CRLF & _ "#: framework-customizations/theme/options/course-settings.php:23" & @CRLF & _ "msgid "Course Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/course-settings.php:42" & @CRLF & _ "msgid "Choose device"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/course-settings.php:45" & @CRLF & _ "msgid "Laptop"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/course-settings.php:46" & @CRLF & _ "msgid "Phone"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/course-settings.php:49" & @CRLF & _ "msgid "Help tip"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/course-settings.php:60" & @CRLF & _ "msgid "Memory"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/course-settings.php:62" & @CRLF & _ "msgid "16Gb"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/course-settings.php:63" & @CRLF & _ "msgid "32Gb"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/course-settings.php:64" & @CRLF & _ "msgid "64Gb"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/course-settings.php:75" & @CRLF & _ "msgid "Webcam"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/custom-scripts.php:11" & @CRLF & _ "#: framework-customizations/theme/options/custom-scripts.php:17" & @CRLF & _ "msgid "Custom Scripts"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/custom-scripts.php:18" & @CRLF & _ "msgid "Custom Scripts changes that will be applied to the theme"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/custom-styles.php:15" & @CRLF & _ "#: framework-customizations/theme/options/custom-styles.php:21" & @CRLF & _ "msgid "Custom Styles"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/custom-styles.php:22" & @CRLF & _ "msgid "Custom Styles changes that will be applied to the theme"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/footer-settings.php:11" & @CRLF & _ "msgid "Footer"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/footer-settings.php:15" & @CRLF & _ "#: framework-customizations/theme/options/posts/page.php:205" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-faq.php:82" & @CRLF & _ "msgid "Footer Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:15" & @CRLF & _ "msgid "Global Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:24" & @CRLF & _ "msgid "Site Layout"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:25" & @CRLF & _ "msgid "This option will change layout for all pages of theme."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:62" & @CRLF & _ "#: framework-customizations/theme/options/page-boxed-layout.php:38" & @CRLF & _ "msgid "Boxed Width"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:63" & @CRLF & _ "#: framework-customizations/theme/options/page-boxed-layout.php:39" & @CRLF & _ "msgid "Select the website width"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:67" & @CRLF & _ "#: framework-customizations/theme/options/page-boxed-layout.php:43" & @CRLF & _ "msgid "Select the boxed background color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:77" & @CRLF & _ "#: framework-customizations/theme/options/page-boxed-layout.php:90" & @CRLF & _ "msgid "Select background image or try to upload new image."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:80" & @CRLF & _ "#: framework-customizations/theme/options/page-boxed-layout.php:94" & @CRLF & _ "msgid "Website Alignment"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:81" & @CRLF & _ "#: framework-customizations/theme/options/page-boxed-layout.php:95" & @CRLF & _ "msgid "Choose the website alignment."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:107" & @CRLF & _ "msgid "Has Box Shadow?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:108" & @CRLF & _ "msgid "Choose YES to enable box shadow."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:121" & @CRLF & _ "msgid "Has Box Border?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:122" & @CRLF & _ "msgid "Choose YES to enable box border."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:139" & @CRLF & _ "msgid "Site Favicon"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:140" & @CRLF & _ "msgid "Upload the site favicon. Size recommend: 16x16 px."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:146" & @CRLF & _ "msgid "Site Logo Image"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:147" & @CRLF & _ "msgid "Upload the site logo .png or .jpg"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:154" & @CRLF & _ "msgid "Sticky Sidebar"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:155" & @CRLF & _ "msgid "Enable sticky sidebar"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:173" & @CRLF & _ "msgid "Logo Transparent"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:188" & @CRLF & _ "msgid "Site Logo Transparent"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:189" & @CRLF & _ "msgid "Upload the site logo .png or .jpg use for header transparent"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:200" & @CRLF & _ "msgid "Site Logo Text"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:201" & @CRLF & _ "msgid "You can use this field instead of above field \"Site Logo Image\"."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:206" & @CRLF & _ "msgid "Logo Alt Attribute"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:207" & @CRLF & _ "msgid """ & @CRLF & _ ""Appears inside the image container when the image can not be displayed. It "" & @CRLF & _ ""helps search engines understand what an image is about."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:211" & @CRLF & _ "msgid "Logo Title Attribute"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:212" & @CRLF & _ "msgid """ & @CRLF & _ ""Used to provide a title for your image. It is displayed in a popup when a "" & @CRLF & _ ""user takes their mouse over to an image."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:235" & @CRLF & _ "msgid "Select icon type"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:240" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:400" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:463" & @CRLF & _ "msgid "Font Awesome"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:241" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:401" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:464" & @CRLF & _ "msgid "Custom Upload"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:257" & @CRLF & _ "msgid "For best results upload a square image, larger then 30px x 30px."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:282" & @CRLF & _ "msgid "Button To Top"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:283" & @CRLF & _ "msgid "Enable scroll to top?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:296" & @CRLF & _ "msgid "WooCommerce Account"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:297" & @CRLF & _ "msgid "Show WooCommerce account on header top right."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:310" & @CRLF & _ "msgid "Language Switcher"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:311" & @CRLF & _ "msgid "Show language switcher of WPML plugin on header top"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:324" & @CRLF & _ "msgid "Google Map - API Key"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:325" & @CRLF & _ "msgid """ & @CRLF & _ ""This key is used to run a some feature of Google Map. Please refer document "" & @CRLF & _ ""to create a key"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:334" & @CRLF & _ "msgid "Enable reCaptcha"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:335" & @CRLF & _ "msgid "Choose to enable reCaptcha when user register."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:350" & @CRLF & _ "msgid "ReCaptcha API Site Key"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:351" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:357" & @CRLF & _ "msgid """ & @CRLF & _ ""This key is used to run reCaptcha. Please refer document to create a key"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:356" & @CRLF & _ "msgid "ReCaptcha API Secret Key"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:370" & @CRLF & _ "msgid "Social Profiles"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:374" & @CRLF & _ "msgid "Social Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:379" & @CRLF & _ "msgid "Social Links"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:380" & @CRLF & _ "msgid "Add your social profiles"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:385" & @CRLF & _ "msgid """ & @CRLF & _ ""Enter a name (it is for internal use and will not appear on the front end)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:395" & @CRLF & _ "msgid "Select social icon type"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:423" & @CRLF & _ "msgid "Enter your social URL link"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:433" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:437" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:442" & @CRLF & _ "msgid "Customize Icon"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:443" & @CRLF & _ "msgid "Add your customizable icon"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:448" & @CRLF & _ "msgid "Enter a name (it will show in front end)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:458" & @CRLF & _ "msgid "Select customize icon type"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/general-settings.php:486" & @CRLF & _ "msgid "Enter your customize icon URL link"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/header-settings.php:11" & @CRLF & _ "msgid "Header"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/header-settings.php:15" & @CRLF & _ "#: framework-customizations/theme/options/posts/page.php:179" & @CRLF & _ "msgid "Header Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/header-settings.php:24" & @CRLF & _ "msgid "Header Layout"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/import-export.php:7" & @CRLF & _ "msgid "Import / Export"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/import-export.php:12" & @CRLF & _ "msgid "Import Options"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/import-export.php:13" & @CRLF & _ "msgid """ & @CRLF & _ ""WARNING! This will overwrite all existing option values, please proceed with "" & @CRLF & _ ""caution!"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/import-export.php:17" & @CRLF & _ "msgid "Export Options"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/import-export.php:18" & @CRLF & _ "msgid """ & @CRLF & _ ""Here you can copy/download your current option settings. Keep this safe as "" & @CRLF & _ ""you can use it as a backup should anything go wrong, or you can use it to "" & @CRLF & _ ""restore your settings on this site (or any other site)."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-404-settings.php:16" & @CRLF & _ "#: framework-customizations/theme/options/page-404-settings.php:20" & @CRLF & _ "msgid "404 Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-404-settings.php:26" & @CRLF & _ "msgid "Choose layout for page 404."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-404-settings.php:40" & @CRLF & _ "msgid "Page 404"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-404-settings.php:41" & @CRLF & _ "msgid "Choose page to display as page 404."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-404-settings.php:56" & @CRLF & _ "msgid "Illustration Image"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-404-settings.php:59" & @CRLF & _ "msgid "Upload illustration image."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-404-settings.php:80" & @CRLF & _ "msgid "Back To Home Text"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-404-settings.php:84" & @CRLF & _ "msgid "Button 02 Text"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-404-settings.php:88" & @CRLF & _ "msgid "Enter link for button 02"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-boxed-layout.php:6" & @CRLF & _ "#: framework-customizations/theme/options/page-boxed-layout.php:17" & @CRLF & _ "msgid "Boxed Layout"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:12" & @CRLF & _ "msgid "Area Setting"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:23" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:76" & @CRLF & _ "msgid "Choose layout for page header area."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:34" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:87" & @CRLF & _ "msgid "Choose style for page header area."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:45" & @CRLF & _ "msgid "Select the page header background color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:62" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:108" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:212" & @CRLF & _ "msgid "Featured Image"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:73" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:119" & @CRLF & _ "msgid "Upload an image to make background image"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:95" & @CRLF & _ "msgid "Page Header Align"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:100" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:126" & @CRLF & _ "msgid "Page Header Padding Top"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:101" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:127" & @CRLF & _ "msgid "Enter padding top in pixels. Ex:80 "" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:106" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:131" & @CRLF & _ "msgid "Page Header Padding Bottom"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:107" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:132" & @CRLF & _ "msgid "Enter padding bottom in pixels. Ex:80 "" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:115" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:186" & @CRLF & _ "msgid "Title Setting"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:126" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:197" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:137" & @CRLF & _ "msgid "Title On Page Header"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:148" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:219" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:156" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:259" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:329" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:399" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:469" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:533" & @CRLF & _ "msgid "Choose Title"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:150" & @CRLF & _ "msgid "Page Title"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:159" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:231" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:165" & @CRLF & _ "#: framework-customizations/theme/options/taxonomies/category.php:63" & @CRLF & _ "#: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:60" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:267" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:337" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:407" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:477" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:541" & @CRLF & _ "msgid "Custom Title"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:162" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:234" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:168" & @CRLF & _ "#: framework-customizations/theme/options/taxonomies/category.php:66" & @CRLF & _ "#: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:63" & @CRLF & _ "msgid "Enter custom title to display in page header"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:258" & @CRLF & _ "msgid "Breadcrumb Setting"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:269" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:176" & @CRLF & _ "msgid "Breadcrumb On Page Header"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:284" & @CRLF & _ "msgid "Breadcrumb Styling"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:295" & @CRLF & _ "msgid "Breadcrumb Active Styling"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:323" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:357" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:404" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:54" & @CRLF & _ "msgid "Page Header Area"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:346" & @CRLF & _ "msgid "Posts"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-header-settings.php:430" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:22" & @CRLF & _ "msgid "Page Header"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:5" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:14" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:26" & @CRLF & _ "msgid " Default"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:6" & @CRLF & _ "msgid " Post Title"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:7" & @CRLF & _ "msgid " Category"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:8" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:16" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:27" & @CRLF & _ "msgid " Custom"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:15" & @CRLF & _ "msgid " Page Title"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/page-options.php:158" & @CRLF & _ "msgid """ & @CRLF & _ ""Choose title to display in page header. To get setting from \"Theme Setting"" & @CRLF & _ ""\", choose \"Default\""" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:38" & @CRLF & _ "msgid "Social Share"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:39" & @CRLF & _ "msgid "Enable social share links in single pages ?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:53" & @CRLF & _ "msgid "Add Social"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:58" & @CRLF & _ "msgid "Facebook"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:59" & @CRLF & _ "msgid "Twitter"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:60" & @CRLF & _ "msgid "Google Plus"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:61" & @CRLF & _ "msgid "Pinterest"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:62" & @CRLF & _ "msgid "LinkedIn"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:63" & @CRLF & _ "msgid "Digg"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:75" & @CRLF & _ "msgid "Share Count"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:76" & @CRLF & _ "msgid "Enable social share count in single pages ?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:91" & @CRLF & _ "msgid "Facebook App ID"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:92" & @CRLF & _ "msgid "Enter App ID to get the share count of Facebook."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:96" & @CRLF & _ "msgid "Facebook Secret Key"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:97" & @CRLF & _ "msgid "Enter Secret Key to get the share count of Facebook."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:113" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:573" & @CRLF & _ "msgid "Post Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:117" & @CRLF & _ "msgid "Post Layout"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:122" & @CRLF & _ "msgid "Blog Style"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:123" & @CRLF & _ "msgid "Select the blog display style"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:128" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:346" & @CRLF & _ "#: framework-customizations/theme/options/posts/page.php:85" & @CRLF & _ "#: framework-customizations/theme/options/posts/post.php:44" & @CRLF & _ "#: framework-customizations/theme/options/posts/product.php:32" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-faq.php:32" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-portfolio.php:32" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-service.php:32" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-team.php:32" & @CRLF & _ "#: framework-customizations/theme/options/taxonomies/category.php:30" & @CRLF & _ "#: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:27" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:43" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:72" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:97" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:122" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:147" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:172" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:197" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:239" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:309" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:379" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:449" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:513" & @CRLF & _ "msgid "Sidebar Layout"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:129" & @CRLF & _ "msgid "Set how to display sidebar in single pages."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:136" & @CRLF & _ "msgid "Post Sidebar"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:137" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:355" & @CRLF & _ "#: framework-customizations/theme/options/posts/page.php:114" & @CRLF & _ "#: framework-customizations/theme/options/posts/post.php:73" & @CRLF & _ "#: framework-customizations/theme/options/posts/product.php:61" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-faq.php:61" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-portfolio.php:61" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-service.php:61" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-team.php:61" & @CRLF & _ "#: framework-customizations/theme/options/taxonomies/category.php:58" & @CRLF & _ "#: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:55" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:52" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:81" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:106" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:131" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:156" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:181" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:206" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:248" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:318" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:388" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:458" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:522" & @CRLF & _ "msgid "You can create new sidebar in"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:137" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:355" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:52" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:81" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:106" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:131" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:156" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:181" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:206" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:248" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:318" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:388" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:458" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:522" & @CRLF & _ "msgid "Appearance > Widgets"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:143" & @CRLF & _ "msgid "Post Info"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:147" & @CRLF & _ "msgid "Select Post Info"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:155" & @CRLF & _ "msgid "Tag"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:156" & @CRLF & _ "msgid "Comment Count"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:157" & @CRLF & _ "msgid "View Count"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:158" & @CRLF & _ "msgid "Like Count"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:162" & @CRLF & _ "msgid "Select post info to show in single pages and blocks."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:176" & @CRLF & _ "msgid "Show Related Articles"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:177" & @CRLF & _ "msgid "Show related articles in single pages ?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:194" & @CRLF & _ "msgid "Filter related articles by ?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:198" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:533" & @CRLF & _ "msgid "By Category"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:202" & @CRLF & _ "msgid "By Tag"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:207" & @CRLF & _ "msgid "Display Options"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:213" & @CRLF & _ "msgid "Meta Info(Date, View, Comment,...)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:217" & @CRLF & _ "msgid "Select options to show in related posts."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:222" & @CRLF & _ "msgid "Enter number of columns to display related articles. Ex: 3"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:227" & @CRLF & _ "msgid "Article Post Limit"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:228" & @CRLF & _ "msgid "Total post of related article will be show. Ex: 6"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:233" & @CRLF & _ "msgid "Article Order By"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:234" & @CRLF & _ "msgid "Order the post in related article by ?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:236" & @CRLF & _ "msgid "ID"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:245" & @CRLF & _ "msgid "Article Order"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:246" & @CRLF & _ "msgid "Order the post in related article with ascending or descending mode ?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:248" & @CRLF & _ "msgid "Desc"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:249" & @CRLF & _ "msgid "Asc"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:259" & @CRLF & _ "msgid "Other Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:263" & @CRLF & _ "msgid "Post Tags"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:264" & @CRLF & _ "msgid "Show list of post tags in single pages?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:277" & @CRLF & _ "msgid "Post Categories"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:278" & @CRLF & _ "msgid "Show list of post categories in single pages ?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:291" & @CRLF & _ "msgid "Author Box"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:292" & @CRLF & _ "msgid "Show author box in single pages?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:305" & @CRLF & _ "msgid "Post Navigation"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:306" & @CRLF & _ "msgid "Show post navigation in single pages ?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:320" & @CRLF & _ "msgid "Date Type"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:323" & @CRLF & _ "msgid "Ribbon"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:347" & @CRLF & _ "msgid "Set how to display sidebar in service single pages."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:354" & @CRLF & _ "#: framework-customizations/theme/options/posts/page.php:113" & @CRLF & _ "#: framework-customizations/theme/options/posts/post.php:72" & @CRLF & _ "#: framework-customizations/theme/options/posts/product.php:60" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-faq.php:60" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-portfolio.php:60" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-service.php:60" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-team.php:60" & @CRLF & _ "#: framework-customizations/theme/options/taxonomies/category.php:57" & @CRLF & _ "#: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:54" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:51" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:80" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:105" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:130" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:155" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:180" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:205" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:247" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:317" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:387" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:457" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:521" & @CRLF & _ "msgid "Choose Sidebar"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:364" & @CRLF & _ "msgid "Select default event label background color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:370" & @CRLF & _ "msgid "Label Text Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:371" & @CRLF & _ "msgid "Select default event label text color."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:388" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-faq.php:91" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:561" & @CRLF & _ "msgid "Footer Top Other Content"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:389" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-faq.php:92" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:562" & @CRLF & _ "msgid "Choose to display footer top other content."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:401" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-faq.php:104" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:574" & @CRLF & _ "msgid "Custom Content"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:402" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-faq.php:105" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:575" & @CRLF & _ "msgid "Enter footer top other content."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:425" & @CRLF & _ "msgid "Related Products"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:434" & @CRLF & _ "msgid "Show Related Products"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:435" & @CRLF & _ "msgid "Show related products in product pages ?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:453" & @CRLF & _ "msgid "Total posts of related posts will be show."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:459" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:550" & @CRLF & _ "msgid "Enter number of columns to show."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:476" & @CRLF & _ "msgid "Portfolio Info"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:480" & @CRLF & _ "msgid "Review Rating"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:481" & @CRLF & _ "msgid "Show review rating in portfolio blocks?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:497" & @CRLF & _ "msgid "Related Posts"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:506" & @CRLF & _ "msgid "Show Related Posts"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:507" & @CRLF & _ "msgid "Show related posts in portfolio single pages ?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:523" & @CRLF & _ "msgid "Related Box Title"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:524" & @CRLF & _ "msgid "Enter title for related box in portfolio single pages."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:529" & @CRLF & _ "msgid "Filter related posts by ?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:537" & @CRLF & _ "msgid "By Author"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/post-settings.php:544" & @CRLF & _ "msgid "Total posts of related post will be show."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/posts/page.php:16" & @CRLF & _ "#: framework-customizations/theme/options/posts/post.php:4" & @CRLF & _ "#: framework-customizations/theme/options/posts/product.php:5" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-faq.php:5" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-portfolio.php:5" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-service.php:5" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-team.php:5" & @CRLF & _ "#: framework-customizations/theme/options/taxonomies/category.php:20" & @CRLF & _ "#: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:18" & @CRLF & _ "msgid "-- Default --"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/posts/page.php:86" & @CRLF & _ "msgid "Set how to display page sidebar."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/posts/page.php:114" & @CRLF & _ "#: framework-customizations/theme/options/posts/post.php:73" & @CRLF & _ "#: framework-customizations/theme/options/posts/product.php:61" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-faq.php:61" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-portfolio.php:61" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-service.php:61" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-team.php:61" & @CRLF & _ "#: framework-customizations/theme/options/taxonomies/category.php:58" & @CRLF & _ "#: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:55" & @CRLF & _ "msgid "Widgets"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/posts/page.php:120" & @CRLF & _ "msgid "Select background color for this page"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/posts/page.php:128" & @CRLF & _ "msgid "Upload background image for this page."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/posts/page.php:139" & @CRLF & _ "#: framework-customizations/theme/options/typography.php:28" & @CRLF & _ "msgid "Custom Colors"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/posts/page.php:156" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-faq.php:67" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-portfolio.php:67" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-service.php:67" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-team.php:67" & @CRLF & _ "msgid "Content Padding Top"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/posts/page.php:157" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-faq.php:68" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-portfolio.php:68" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-service.php:68" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-team.php:68" & @CRLF & _ "msgid "Custom padding top for content (px)."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/posts/page.php:162" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-faq.php:73" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-portfolio.php:73" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-service.php:73" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-team.php:73" & @CRLF & _ "msgid "Content Padding Bottom"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/posts/page.php:163" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-faq.php:74" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-portfolio.php:74" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-service.php:74" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-team.php:74" & @CRLF & _ "msgid "Custom padding bottom for content (px)."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/posts/page.php:169" & @CRLF & _ "msgid "You can add revolution slider in header."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/posts/page.php:230" & @CRLF & _ "msgid " Page Options"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/posts/post.php:30" & @CRLF & _ "msgid " Post Options"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/posts/post.php:37" & @CRLF & _ "msgid "Post Template"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/posts/post.php:45" & @CRLF & _ "#: framework-customizations/theme/options/taxonomies/category.php:31" & @CRLF & _ "#: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:28" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:44" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:73" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:98" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:123" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:148" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:173" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:198" & @CRLF & _ "msgid "Set how to display blog sidebar."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/posts/post.php:81" & @CRLF & _ "msgid "Feature Video"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/posts/post.php:90" & @CRLF & _ "msgid "Video Thumbnail"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/posts/post.php:91" & @CRLF & _ "msgid "Create thumbnail from video and using it as featured image?."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/posts/post.php:101" & @CRLF & _ "msgid "Type of Video"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/posts/post.php:136" & @CRLF & _ "msgid "Feature Audio"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/posts/post.php:145" & @CRLF & _ "msgid "Audio Link"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/posts/post.php:146" & @CRLF & _ "msgid "Input full link of audio."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/posts/post.php:153" & @CRLF & _ "msgid "Feature Gallery"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/posts/post.php:163" & @CRLF & _ "msgid "Choose Images to upload"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/posts/post.php:171" & @CRLF & _ "msgid "Feature Quote"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/posts/post.php:180" & @CRLF & _ "msgid "Quote Text"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/posts/post.php:181" & @CRLF & _ "msgid "Input quote content. Accept some htmls as div, p, cite, ..."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/posts/product.php:25" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-faq.php:25" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-portfolio.php:25" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-service.php:25" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-team.php:25" & @CRLF & _ "msgid "Page Options"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/posts/product.php:33" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-portfolio.php:33" & @CRLF & _ "msgid "Set how to display portfolio sidebar."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-faq.php:33" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-service.php:33" & @CRLF & _ "#: framework-customizations/theme/options/posts/slz-team.php:33" & @CRLF & _ "msgid "Set how to display team sidebar."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:31" & @CRLF & _ "msgid "Rejected Page Types"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:32" & @CRLF & _ "msgid """ & @CRLF & _ ""Do not cache the following page types. See the Conditional Tags "" & @CRLF & _ ""documentation for a complete discussion on each type."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:34" & @CRLF & _ "msgid "Single Posts (is_single)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:35" & @CRLF & _ "msgid "Pages (is_page)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:36" & @CRLF & _ "msgid "Front Page (is_front_page)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:37" & @CRLF & _ "msgid "Home (is_home)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:38" & @CRLF & _ "msgid "Archives (is_archive)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:39" & @CRLF & _ "msgid "Tags (is_tag)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:40" & @CRLF & _ "msgid "Category (is_category)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:41" & @CRLF & _ "msgid "Feeds (is_feed)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:42" & @CRLF & _ "msgid "Search Pages (is_search)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:43" & @CRLF & _ "msgid "Author Pages (is_author)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:47" & @CRLF & _ "msgid "Rejected Post ID"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:50" & @CRLF & _ "msgid """ & @CRLF & _ ""Enter here the post IDs separated by commas (ex: 10,23,50) to disable cache "" & @CRLF & _ ""in this page."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:55" & @CRLF & _ "msgid "Rejected User Roles"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:56" & @CRLF & _ "msgid "Select user roles that should not receive cached pages."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:58" & @CRLF & _ "msgid "Administrator"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:59" & @CRLF & _ "msgid "Editor"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:61" & @CRLF & _ "msgid "Contributor"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:62" & @CRLF & _ "msgid "Subscriber)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:66" & @CRLF & _ "msgid "Rejected User Agents"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:69" & @CRLF & _ "msgid "Never send cache pages for these user agents."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:76" & @CRLF & _ "msgid "Rejected User Cookies"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:79" & @CRLF & _ "msgid "Never cache pages that use the specified cookies."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:86" & @CRLF & _ "msgid "Accepted Query Strings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:89" & @CRLF & _ "msgid "Always cache URLs with these query strings."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:106" & @CRLF & _ "msgid "Rejected WooCommerce Pages"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:107" & @CRLF & _ "msgid "Do not cache the above pages."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:113" & @CRLF & _ "msgid "My Account"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:114" & @CRLF & _ "msgid "Cart"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:116" & @CRLF & _ "msgid "Shop"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:125" & @CRLF & _ "msgid "Optimize Performance"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:129" & @CRLF & _ "msgid "Minify Resource"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:133" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:216" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:281" & @CRLF & _ "msgid "General Configuration"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:139" & @CRLF & _ "msgid "JavaScript Minification"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:140" & @CRLF & _ "msgid "Enable / Disable javaScript minification"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:153" & @CRLF & _ "msgid "Stylesheet Minification"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:154" & @CRLF & _ "msgid "Enable / Disable stylesheet minification"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:166" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:167" & @CRLF & _ "msgid "Delete Minify Files"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:168" & @CRLF & _ "msgid """ & @CRLF & _ ""Minify files are stored on your server as .js and .css files. If you need to "" & @CRLF & _ ""delete them, use the button below."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:173" & @CRLF & _ "msgid "Advanced Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:178" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:348" & @CRLF & _ "msgid "Cache Time"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:179" & @CRLF & _ "msgid "Cache Time (seconds)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:185" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:186" & @CRLF & _ "msgid "JavaScript Placement"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:188" & @CRLF & _ "msgid "Both header and footer"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:189" & @CRLF & _ "msgid "All in header"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:190" & @CRLF & _ "msgid "All in footer"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:196" & @CRLF & _ "msgid "Using Async Tag"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:197" & @CRLF & _ "msgid "Using async tag in javascript tag"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:212" & @CRLF & _ "msgid "Browser Cache"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:222" & @CRLF & _ "msgid "Gzip Compression"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:223" & @CRLF & _ "msgid "Enable / Disable gzip compression"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:241" & @CRLF & _ "msgid "Leverage Browser Caching"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:257" & @CRLF & _ "msgid "HTML Expire Time"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:262" & @CRLF & _ "msgid "CSS JS Expire Time"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:267" & @CRLF & _ "msgid "Other Expire Time"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:277" & @CRLF & _ "msgid "Page Cache"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:289" & @CRLF & _ "msgid "Page Cache Status"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:290" & @CRLF & _ "msgid "Enable / Disable page cache"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:303" & @CRLF & _ "msgid "Delete Cached Pages"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:304" & @CRLF & _ "msgid """ & @CRLF & _ ""Cached pages are stored on your server as html and PHP files. If you need to "" & @CRLF & _ ""delete them, use the button below."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:307" & @CRLF & _ "msgid "Compress Content"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:310" & @CRLF & _ "msgid """ & @CRLF & _ ""Compress pages so they are served more quickly to visitors (Recommended)."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:311" & @CRLF & _ "msgid """ & @CRLF & _ ""Compression is disabled by default because some hosts have problems with "" & @CRLF & _ ""compressed files. Switching it on and off clears the cache."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:315" & @CRLF & _ "msgid "Cache Content"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:318" & @CRLF & _ "msgid """ & @CRLF & _ ""Unauthenticated users may view a cached version of the last authenticated "" & @CRLF & _ ""users view of a given page. Disabling this option is not recommended."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:319" & @CRLF & _ "msgid "Do not cache pages for logged in users"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:331" & @CRLF & _ "msgid "Cache Preload"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:332" & @CRLF & _ "msgid "Automatically prime the page cache."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:349" & @CRLF & _ "msgid """ & @CRLF & _ ""How long should cached pages remain fresh? Set to 0 to disable garbage "" & @CRLF & _ ""collection. A good starting point is 3600 seconds."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:355" & @CRLF & _ "msgid "Scheduler Clear Cache"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:356" & @CRLF & _ "msgid """ & @CRLF & _ ""Check for stale cached files at this time (UTC) or starting at this time "" & @CRLF & _ ""every interval below."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:367" & @CRLF & _ "msgid "Scheduler Clear Cache Interval"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:376" & @CRLF & _ "msgid "Cache Update Configuration"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:380" & @CRLF & _ "msgid "When Update Post"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:383" & @CRLF & _ "msgid "Auto update when edit, delete, publish, trash post."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:390" & @CRLF & _ "msgid "Update edited posts"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:391" & @CRLF & _ "msgid "Update front page and posts page"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:392" & @CRLF & _ "msgid "Update category page"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:396" & @CRLF & _ "msgid "When Post Comment"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:399" & @CRLF & _ "msgid "Auto refresh cache when post, edit, approve user comment."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:403" & @CRLF & _ "msgid "When Switch Theme"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:406" & @CRLF & _ "msgid "Auto refresh all cache. Include all cache content you selected"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:410" & @CRLF & _ "msgid "When Update Nav Menu"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:413" & @CRLF & _ "msgid "Auto clear all cache. Where used this nav menu"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:417" & @CRLF & _ "msgid "When Update User Profile"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:420" & @CRLF & _ "msgid "Update cache when user update profile."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:422" & @CRLF & _ "msgid "Update page author"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:423" & @CRLF & _ "msgid "Update posts belong to this user"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/speed-optimize.php:429" & @CRLF & _ "msgid "Reject Cache Configuration"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/taxonomies/cat_course.php:9" & @CRLF & _ "msgid "Choose if this category is feature category."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/taxonomies/cat_course.php:10" & @CRLF & _ "#: includes/hooks.php:432" & @CRLF & _ "msgid "Is Feature?"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/taxonomies/cat_course.php:16" & @CRLF & _ "#: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:24" & @CRLF & _ "msgid "Choose a icon for FAQ category."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/taxonomies/cat_course.php:20" & @CRLF & _ "#: includes/hooks.php:440" & @CRLF & _ "msgid "Attach Image"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/taxonomies/cat_course.php:21" & @CRLF & _ "msgid "Upload image for category."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/taxonomies/category.php:24" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:66" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:91" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:116" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:141" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:166" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:191" & @CRLF & _ "msgid "Article Style"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:39" & @CRLF & _ "msgid "Page Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:62" & @CRLF & _ "msgid "Blog Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:87" & @CRLF & _ "msgid "Search Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:112" & @CRLF & _ "msgid "Author Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:137" & @CRLF & _ "msgid "Category Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:162" & @CRLF & _ "msgid "Archive Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:187" & @CRLF & _ "msgid "Tag Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:235" & @CRLF & _ "msgid "Portfolio Archive"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:240" & @CRLF & _ "msgid "Set how to display sidebar in portfolio archive pages."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:270" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:340" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:410" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:480" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:544" & @CRLF & _ "msgid "Add custom title for archive"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:277" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:347" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:417" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:487" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:551" & @CRLF & _ "msgid "Post Per Page"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:278" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:348" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:418" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:488" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:552" & @CRLF & _ "msgid "Add limit posts per page. Set -1 or empty to show all."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:283" & @CRLF & _ "msgid "Enter number of columns to display list of portfolio."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:305" & @CRLF & _ "msgid "Team Archive"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:310" & @CRLF & _ "msgid "Set how to display sidebar in team archive pages."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:353" & @CRLF & _ "msgid "Enter number of columns to display list of teams."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:371" & @CRLF & _ "msgid "Services"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:375" & @CRLF & _ "msgid "Service Archive"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:380" & @CRLF & _ "msgid "Set how to display sidebar in service archive pages."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:423" & @CRLF & _ "msgid "Enter number of columns to display list of services."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:445" & @CRLF & _ "msgid "Events Archive"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:450" & @CRLF & _ "msgid "Set how to display sidebar in event archive pages."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:509" & @CRLF & _ "msgid "FAQ Archive"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:514" & @CRLF & _ "msgid "Set how to display sidebar in FAQ archive pages."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/template-settings.php:594" & @CRLF & _ "msgid "Template Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:12" & @CRLF & _ "#: setup/class-educhain-setup.php:1083" & @CRLF & _ "msgid "The version of WordPress installed on your site."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:12" & @CRLF & _ "msgid """ & @CRLF & _ ""We recommend you update WordPress to the latest version. The minimum "" & @CRLF & _ ""required version for this theme is:"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:12" & @CRLF & _ "msgid "Do that right now"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:16" & @CRLF & _ "msgid "The version of WordPress installed on your site"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:30" & @CRLF & _ "msgid """ & @CRLF & _ ""Displays whether or not WordPress is in Debug Mode. This mode is used by "" & @CRLF & _ ""developers to test the theme. We recommend you turn it off for an optimal "" & @CRLF & _ ""user experience on your website."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:30" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:42" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:67" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:79" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:89" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:126" & @CRLF & _ "#: setup/class-educhain-setup.php:1097" & @CRLF & _ "msgid "Learn how to do it"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:34" & @CRLF & _ "msgid "Displays whether or not WordPress is in Debug Mode"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:42" & @CRLF & _ "#: setup/class-educhain-setup.php:1101" & @CRLF & _ "msgid "The maximum amount of memory (RAM) that your site can use at one time."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:42" & @CRLF & _ "msgid """ & @CRLF & _ ""We recommend setting memory to at least <strong>256MB</strong>. Please "" & @CRLF & _ ""define memory limit in <strong>wp-config.php</strong> file."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:45" & @CRLF & _ "msgid "The maximum amount of memory (RAM) that your site can use at one time"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:52" & @CRLF & _ "#: setup/class-educhain-setup.php:1114" & @CRLF & _ "msgid "The version of PHP installed on your hosting server."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:52" & @CRLF & _ "msgid """ & @CRLF & _ ""We recommend you update PHP to the latest version. The minimum required "" & @CRLF & _ ""version for this theme is:"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:52" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:115" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:245" & @CRLF & _ "msgid "Contact your hosting provider, they can install it for you."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:56" & @CRLF & _ "msgid "The version of PHP installed on your hosting server"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:60" & @CRLF & _ "msgid "No PHP Installed"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:67" & @CRLF & _ "#: setup/class-educhain-setup.php:1120" & @CRLF & _ "msgid "The largest file size that can be contained in one post."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:67" & @CRLF & _ "msgid "We recommend setting the post maximum size to at least:"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:71" & @CRLF & _ "msgid "The largest file size that can be contained in one post"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:79" & @CRLF & _ "msgid """ & @CRLF & _ ""The amount of time (in seconds) that your site will spend on a single "" & @CRLF & _ ""operation before timing out (to avoid server lockups)."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:79" & @CRLF & _ "msgid "We recommend setting the maximum execution time to at least"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:81" & @CRLF & _ "#: setup/class-educhain-setup.php:1126" & @CRLF & _ "msgid """ & @CRLF & _ ""The amount of time (in seconds) that your site will spend on a single "" & @CRLF & _ ""operation before timing out (to avoid server lockups)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:89" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:92" & @CRLF & _ "#: setup/class-educhain-setup.php:1132" & @CRLF & _ "msgid """ & @CRLF & _ ""The maximum number of variables your server can use for a single function to "" & @CRLF & _ ""avoid overloads."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:89" & @CRLF & _ "msgid "Please increase the maximum input variables limit to:"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:99" & @CRLF & _ "msgid """ & @CRLF & _ ""Suhosin is an advanced protection system for PHP installations and may need "" & @CRLF & _ ""to be configured to increase its data submission limits"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:103" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid """ & @CRLF & _ ""%s - Recommended Value is: %s. <a href=\"%s\" target=\"_blank\">Increasing "" & @CRLF & _ ""max input vars limit.</a>"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:108" & @CRLF & _ "#: setup/class-educhain-setup.php:1138" & @CRLF & _ "msgid "Suhosin is an advanced protection system for PHP installations."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:115" & @CRLF & _ "#: setup/class-educhain-setup.php:1150" & @CRLF & _ "msgid "The version of MySQL installed on your hosting server."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:115" & @CRLF & _ "msgid """ & @CRLF & _ ""We recommend you update MySQL to the latest version. The minimum required "" & @CRLF & _ ""version for this theme is:"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:119" & @CRLF & _ "msgid "The version of MySQL installed on your hosting server"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:126" & @CRLF & _ "#: setup/class-educhain-setup.php:1156" & @CRLF & _ "msgid """ & @CRLF & _ ""The largest file size that can be uploaded to your WordPress installation."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:126" & @CRLF & _ "msgid "We recommend setting the maximum upload file size to at least:"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:136" & @CRLF & _ "msgid """ & @CRLF & _ ""Payment gateways can use cURL to communicate with remote servers to "" & @CRLF & _ ""authorize payments, other plugins may also use it when communicating with "" & @CRLF & _ ""remote services"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:140" & @CRLF & _ "msgid """ & @CRLF & _ ""Payment gateways can use cURL to communicate with remote servers to "" & @CRLF & _ ""authorize payments, other plugins may also use it when communicating with "" & @CRLF & _ ""remote services. Your server does not have <strong>fsockopen</strong> or "" & @CRLF & _ ""<strong>cURL</strong> enabled thus PayPal IPN and other scripts which "" & @CRLF & _ ""communicate with other servers will not work. Contact your hosting provider, "" & @CRLF & _ ""they can install it for you."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:145" & @CRLF & _ "msgid "Requirements"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:149" & @CRLF & _ "#: setup/class-educhain-setup.php:1070" & @CRLF & _ "msgid "WordPress Environment"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:154" & @CRLF & _ "#: setup/class-educhain-setup.php:1072" & @CRLF & _ "msgid "Home URL"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:155" & @CRLF & _ "msgid "The URL of your site's homepage"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:161" & @CRLF & _ "#: setup/class-educhain-setup.php:1077" & @CRLF & _ "msgid "Site URL"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:162" & @CRLF & _ "msgid "The root URL of your site"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:168" & @CRLF & _ "#: setup/class-educhain-setup.php:1082" & @CRLF & _ "msgid "WP Version"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:175" & @CRLF & _ "#: setup/class-educhain-setup.php:1088" & @CRLF & _ "msgid "WP Multisite"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:177" & @CRLF & _ "msgid "Whether or not you have WordPress Multisite enabled"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:182" & @CRLF & _ "#: setup/class-educhain-setup.php:1094" & @CRLF & _ "msgid "WP Debug Mode"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:189" & @CRLF & _ "#: setup/class-educhain-setup.php:1100" & @CRLF & _ "msgid "WP Memory Limit"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:197" & @CRLF & _ "#: setup/class-educhain-setup.php:1106" & @CRLF & _ "msgid "Server Environment"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:202" & @CRLF & _ "#: setup/class-educhain-setup.php:1108" & @CRLF & _ "msgid "Server Info"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:203" & @CRLF & _ "#: setup/class-educhain-setup.php:1109" & @CRLF & _ "msgid "Information about the web server that is currently hosting your site"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:209" & @CRLF & _ "#: setup/class-educhain-setup.php:1113" & @CRLF & _ "msgid "PHP Version"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:216" & @CRLF & _ "#: setup/class-educhain-setup.php:1119" & @CRLF & _ "msgid "PHP Post Max Size"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:223" & @CRLF & _ "#: setup/class-educhain-setup.php:1125" & @CRLF & _ "msgid "PHP Time Limit"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:230" & @CRLF & _ "#: setup/class-educhain-setup.php:1131" & @CRLF & _ "msgid "PHP Max Input Vars"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:237" & @CRLF & _ "#: setup/class-educhain-setup.php:1137" & @CRLF & _ "msgid "SUHOSIN Installed"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:244" & @CRLF & _ "msgid "ZipArchive"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:245" & @CRLF & _ "msgid """ & @CRLF & _ ""ZipArchive is required for importing demos. They are used to import and "" & @CRLF & _ ""export zip files specifically for sliders"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:245" & @CRLF & _ "msgid """ & @CRLF & _ ""ZipArchive is required for importing demos. They are used to import and "" & @CRLF & _ ""export zip files specifically for sliders."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:251" & @CRLF & _ "#: setup/class-educhain-setup.php:1149" & @CRLF & _ "msgid "MySQL Version"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:258" & @CRLF & _ "#: setup/class-educhain-setup.php:1155" & @CRLF & _ "msgid "Max Upload Size"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:265" & @CRLF & _ "#: setup/class-educhain-setup.php:1161" & @CRLF & _ "msgid "fsockopen/cURL"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:274" & @CRLF & _ "#: setup/steps/check-requirement.php:35" & @CRLF & _ "msgid "Meets minimum requirements"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/theme-requirements.php:274" & @CRLF & _ "#: setup/steps/check-requirement.php:39" & @CRLF & _ "msgid "We have some improvements to suggest"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/typography.php:17" & @CRLF & _ "msgid "Styling Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/typography.php:46" & @CRLF & _ "msgid "Link Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/typography.php:57" & @CRLF & _ "msgid "Custom Link Colors"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/typography.php:71" & @CRLF & _ "msgid "Regular Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/typography.php:74" & @CRLF & _ "msgid "Select a color for link"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/typography.php:77" & @CRLF & _ "msgid "Hover Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/typography.php:78" & @CRLF & _ "msgid "Select a color for link hover"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/typography.php:83" & @CRLF & _ "msgid "Active Color"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/typography.php:84" & @CRLF & _ "msgid "Select a color for link active"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/typography.php:94" & @CRLF & _ "msgid "Typography"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/typography.php:116" & @CRLF & _ "msgid "Body Text"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/typography.php:117" & @CRLF & _ "msgid "Paragraph"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/typography.php:118" & @CRLF & _ "msgid "H1 Text"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/typography.php:119" & @CRLF & _ "msgid "H2 Text"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/typography.php:120" & @CRLF & _ "msgid "H3 Text"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/typography.php:121" & @CRLF & _ "msgid "H4 Text"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/typography.php:122" & @CRLF & _ "msgid "H5 Text"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/typography.php:123" & @CRLF & _ "msgid "H6 Text"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/typography.php:154" & @CRLF & _ "msgid "Typography Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/options/typography.php:159" & @CRLF & _ "msgid "Styling / Typography"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/views/welcome-header.php:7" & @CRLF & _ "msgid "Welcome to"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/views/welcome-header.php:11" & @CRLF & _ "msgid "Please kindly DO NOT update Unyson Plugin separately!"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/views/welcome-header.php:12" & @CRLF & _ "msgid """ & @CRLF & _ ""We had customized its coding structure and create it a our own unique "" & @CRLF & _ ""technique, if you update it, it will turn your site into \"Forbidden\" state "" & @CRLF & _ ""and let your site DOWN."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/views/welcome-header.php:19" & @CRLF & _ "msgid "Plugins"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/views/welcome-header.php:24" & @CRLF & _ "msgid "Changes Log"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/views/welcome-header.php:29" & @CRLF & _ "msgid "Extension Manager"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/views/welcome-header.php:34" & @CRLF & _ "msgid "Theme Settings"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/views/welcome-header.php:40" & @CRLF & _ "msgid "Backup Data"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/views/welcome-header.php:47" & @CRLF & _ "msgid "Demo Install"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/views/welcome.php:28" & @CRLF & _ "msgid """ & @CRLF & _ ""These are the plugins we include with EduChain. Currently Solazu Unyson is "" & @CRLF & _ ""the only required plugin that is needed to use EduChain. You can activate, "" & @CRLF & _ ""deactivate or update the plugins from this tab."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/views/welcome.php:52" & @CRLF & _ "#: framework-customizations/theme/views/welcome.php:104" & @CRLF & _ "msgid "Active:"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/views/welcome.php:65" & @CRLF & _ "msgid "Update Available: Version"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/views/welcome.php:70" & @CRLF & _ "#: framework-customizations/theme/views/welcome.php:122" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "Version %s | %s"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/views/welcome.php:75" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2362" & @CRLF & _ "#: setup/steps/import-theme-setting.php:90" & @CRLF & _ "msgid "Required"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/views/welcome.php:81" & @CRLF & _ "#: setup/steps/active-plugin.php:113" & @CRLF & _ "msgid "Recommend Plugins"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/views/welcome.php:82" & @CRLF & _ "msgid """ & @CRLF & _ ""These are the plugins we tested with EduChain and they are compatible with "" & @CRLF & _ ""together. If you want to use these plugins, you can activate, deactivate or "" & @CRLF & _ ""update them in this tab."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/views/welcome.php:117" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "Update Available: Version %s"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: framework-customizations/theme/views/welcome.php:126" & @CRLF & _ "msgid "Recommend"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-breadcrumb.php:98 includes/helpers.php:659" & @CRLF & _ "#: includes/helpers.php:1705" & @CRLF & _ "msgid "Error 404"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-breadcrumb.php:205" & @CRLF & _ "msgid "Posts tagged"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-breadcrumb.php:275" & @CRLF & _ "msgid "Search results for"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-breadcrumb.php:284" & @CRLF & _ "msgid "Page"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-editor-format.php:28" & @CRLF & _ "msgid "Drop Cap"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-editor-format.php:32" & @CRLF & _ "msgid "Regular"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-editor-format.php:39" & @CRLF & _ "msgid "Italic"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-editor-format.php:46" & @CRLF & _ "msgid "Bold"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-editor-format.php:54" & @CRLF & _ "msgid "Blockquote"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-editor-format.php:58" & @CRLF & _ "msgid "US - Florida"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-editor-format.php:64" & @CRLF & _ "msgid "US - California"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-editor-format.php:71" & @CRLF & _ "msgid "US - Georgia"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-editor-format.php:78" & @CRLF & _ "msgid "US - New York"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-editor-format.php:86" & @CRLF & _ "msgid "Bulleted List"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-editor-format.php:90" & @CRLF & _ "msgid "1 Column"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-editor-format.php:96" & @CRLF & _ "msgid "2 Columns"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-editor-format.php:102" & @CRLF & _ "msgid "3 Columns"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-editor-format.php:108" & @CRLF & _ "msgid "4 Columns"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:334 includes/hooks.php:121" & @CRLF & _ "msgid "Install Required Plugins"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:335 includes/hooks.php:122" & @CRLF & _ "msgid "Install Plugins"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:337 includes/hooks.php:123" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "Installing Plugin: %s"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:339" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "Updating Plugin: %s"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:340 includes/hooks.php:124" & @CRLF & _ "msgid "Something went wrong with the plugin API."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:343" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "This theme requires the following plugin: %1$s."" & @CRLF & _ "msgid_plural "This theme requires the following plugins: %1$s."" & @CRLF & _ "msgstr[0] """ & @CRLF & _ "msgstr[1] """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:349" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "This theme recommends the following plugin: %1$s."" & @CRLF & _ "msgid_plural "This theme recommends the following plugins: %1$s."" & @CRLF & _ "msgstr[0] """ & @CRLF & _ "msgstr[1] """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:355 includes/hooks.php:131" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid """ & @CRLF & _ ""The following plugin needs to be updated to its latest version to ensure "" & @CRLF & _ ""maximum compatibility with this theme: %1$s."" & @CRLF & _ "msgid_plural """ & @CRLF & _ ""The following plugins need to be updated to their latest version to ensure "" & @CRLF & _ ""maximum compatibility with this theme: %1$s."" & @CRLF & _ "msgstr[0] """ & @CRLF & _ "msgstr[1] """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:361" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "There is an update available for: %1$s."" & @CRLF & _ "msgid_plural "There are updates available for the following plugins: %1$s."" & @CRLF & _ "msgstr[0] """ & @CRLF & _ "msgstr[1] """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:367 includes/hooks.php:128" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "The following required plugin is currently inactive: %1$s."" & @CRLF & _ "msgid_plural "The following required plugins are currently inactive: %1$s."" & @CRLF & _ "msgstr[0] """ & @CRLF & _ "msgstr[1] """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:373 includes/hooks.php:129" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "The following recommended plugin is currently inactive: %1$s."" & @CRLF & _ "msgid_plural "The following recommended plugins are currently inactive: %1$s."" & @CRLF & _ "msgstr[0] """ & @CRLF & _ "msgstr[1] """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:378 includes/hooks.php:133" & @CRLF & _ "msgid "Begin installing plugin"" & @CRLF & _ "msgid_plural "Begin installing plugins"" & @CRLF & _ "msgstr[0] """ & @CRLF & _ "msgstr[1] """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:383" & @CRLF & _ "msgid "Begin updating plugin"" & @CRLF & _ "msgid_plural "Begin updating plugins"" & @CRLF & _ "msgstr[0] """ & @CRLF & _ "msgstr[1] """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:388" & @CRLF & _ "msgid "Begin activating plugin"" & @CRLF & _ "msgid_plural "Begin activating plugins"" & @CRLF & _ "msgstr[0] """ & @CRLF & _ "msgstr[1] """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:392 includes/hooks.php:135" & @CRLF & _ "msgid "Return to Required Plugins Installer"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:393" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:912" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2622" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:3677" & @CRLF & _ "msgid "Return to the Dashboard"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:394" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:3253 includes/hooks.php:136" & @CRLF & _ "msgid "Plugin activated successfully."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:395" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:3046" & @CRLF & _ "msgid "The following plugin was activated successfully:"" & @CRLF & _ "msgid_plural "The following plugins were activated successfully:"" & @CRLF & _ "msgstr[0] """ & @CRLF & _ "msgstr[1] """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:397" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "No action taken. Plugin %1$s was already active."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:399" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid """ & @CRLF & _ ""Plugin not activated. A higher version of %s is needed for this theme. "" & @CRLF & _ ""Please update the plugin."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:401" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "All plugins installed and activated successfully. %1$s"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:402" & @CRLF & _ "msgid "Dismiss this notice"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:403" & @CRLF & _ "msgid """ & @CRLF & _ ""There are one or more required or recommended plugins to install, update or "" & @CRLF & _ ""activate."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:404" & @CRLF & _ "msgid "Please contact the administrator of this site for help."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:608" & @CRLF & _ "msgid "Update Required"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:1023" & @CRLF & _ "msgid """ & @CRLF & _ ""The remote plugin package does not contain a folder with the desired slug "" & @CRLF & _ ""and renaming did not work."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:1023" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:1026" & @CRLF & _ "msgid """ & @CRLF & _ ""Please contact the plugin provider and ask them to package their plugin "" & @CRLF & _ ""according to the WordPress guidelines."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:1026" & @CRLF & _ "msgid """ & @CRLF & _ ""The remote plugin package consists of more than one file, but the files are "" & @CRLF & _ ""not packaged in a folder."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:1210" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:3042" & @CRLF & _ "msgid "and"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2071" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "TGMPA v%s"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2365" & @CRLF & _ "#: setup/steps/import-theme-setting.php:90" & @CRLF & _ "msgid "Recommended"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2381" & @CRLF & _ "msgid "WordPress Repository"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2384" & @CRLF & _ "msgid "External Source"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2387" & @CRLF & _ "msgid "Pre-Packaged"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2404" & @CRLF & _ "#: setup/steps/active-plugin.php:89 setup/steps/active-plugin.php:127" & @CRLF & _ "#: setup/steps/import-theme-setting.php:85" & @CRLF & _ "msgid "Not Installed"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2408" & @CRLF & _ "msgid "Installed But Not Activated"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2410" & @CRLF & _ "msgid "Active"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2416" & @CRLF & _ "msgid "Required Update not Available"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2419" & @CRLF & _ "msgid "Requires Update"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2422" & @CRLF & _ "msgid "Update recommended"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2477" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "All <span class=\"count\">(%s)</span>"" & @CRLF & _ "msgid_plural "All <span class=\"count\">(%s)</span>"" & @CRLF & _ "msgstr[0] """ & @CRLF & _ "msgstr[1] """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2481" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "To Install <span class=\"count\">(%s)</span>"" & @CRLF & _ "msgid_plural "To Install <span class=\"count\">(%s)</span>"" & @CRLF & _ "msgstr[0] """ & @CRLF & _ "msgstr[1] """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2485" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "Update Available <span class=\"count\">(%s)</span>"" & @CRLF & _ "msgid_plural "Update Available <span class=\"count\">(%s)</span>"" & @CRLF & _ "msgstr[0] """ & @CRLF & _ "msgstr[1] """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2489" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "To Activate <span class=\"count\">(%s)</span>"" & @CRLF & _ "msgid_plural "To Activate <span class=\"count\">(%s)</span>"" & @CRLF & _ "msgstr[0] """ & @CRLF & _ "msgstr[1] """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2579" & @CRLF & _ "msgid "Installed version:"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2587" & @CRLF & _ "msgid "Minimum required version:"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2599" & @CRLF & _ "msgid "Available version:"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2622" & @CRLF & _ "msgid "No plugins to install, update or activate."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2641" & @CRLF & _ "msgid "Plugin"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2642" & @CRLF & _ "msgid "Source"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2647" & @CRLF & _ "msgid "Version"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2648" & @CRLF & _ "#: setup/steps/import-theme-setting.php:68" & @CRLF & _ "msgid "Status"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2778" & @CRLF & _ "msgid "Upgrade message from the plugin author:"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2851" & @CRLF & _ "msgid "No plugins were selected to be installed. No action taken."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2853" & @CRLF & _ "msgid "No plugins were selected to be updated. No action taken."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2894" & @CRLF & _ "msgid "No plugins are available to be installed at this time."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:2896" & @CRLF & _ "msgid "No plugins are available to be updated at this time."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:3002" & @CRLF & _ "msgid "No plugins were selected to be activated. No action taken."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:3028" & @CRLF & _ "msgid "No plugins are available to be activated at this time."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:3252" & @CRLF & _ "msgid "Plugin activation failed."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:3592" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "Updating Plugin %1$s (%2$d/%3$d)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:3595" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "An error occurred while installing %1$s: <strong>%2$s</strong>."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:3597" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "The installation of %1$s failed."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:3601" & @CRLF & _ "msgid """ & @CRLF & _ ""The installation and activation process is starting. This process may take a "" & @CRLF & _ ""while on some hosts, so please be patient."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:3603" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "%1$s installed and activated successfully."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:3603" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:3611" & @CRLF & _ "msgid "Show Details"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:3603" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:3611" & @CRLF & _ "msgid "Hide Details"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:3604" & @CRLF & _ "msgid "All installations and activations have been completed."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:3606" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:3609" & @CRLF & _ "msgid """ & @CRLF & _ ""The installation process is starting. This process may take a while on some "" & @CRLF & _ ""hosts, so please be patient."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:3611" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "%1$s installed successfully."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:3612" & @CRLF & _ "msgid "All installations have been completed."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/class-tgm-plugin-activation.php:3614" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "Installing Plugin %1$s (%2$d/%3$d)"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/helpers.php:262 includes/helpers.php:281" & @CRLF & _ "msgid " "" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/helpers.php:269" & @CRLF & _ "msgid "Tags:"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/helpers.php:458" & @CRLF & _ "msgid "Helpful Links"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/helpers.php:508 includes/helpers.php:511 includes/helpers.php:1603" & @CRLF & _ "#: includes/helpers.php:1608" & @CRLF & _ "msgid "Home"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/helpers.php:628 includes/helpers.php:1702" & @CRLF & _ "msgid "Search results"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/helpers.php:631 includes/helpers.php:1710" & @CRLF & _ "msgid "F Y"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/helpers.php:633 includes/helpers.php:1714" & @CRLF & _ "msgid "F j, Y"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/helpers.php:642 includes/helpers.php:1815" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "Category: %s"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/helpers.php:811" & @CRLF & _ "msgid "Please enter your name."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/helpers.php:812" & @CRLF & _ "msgid "Name "" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/helpers.php:824" & @CRLF & _ "msgid "Please enter your email address."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/helpers.php:825" & @CRLF & _ "msgid "Please enter a valid email address."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/helpers.php:827" & @CRLF & _ "msgid "Email "" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/helpers.php:836" & @CRLF & _ "msgid "Please enter comment."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/helpers.php:837" & @CRLF & _ "msgid "Your Comment "" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/helpers.php:846" & @CRLF & _ "msgid "Website "" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/helpers.php:850" & @CRLF & _ "msgid "Cancel"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/helpers.php:858" & @CRLF & _ "msgid "Post Comment "" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/helpers.php:861" & @CRLF & _ "msgid "Leave your comment"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/helpers.php:876" & @CRLF & _ "msgid "Oops! Page Not Found!"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/helpers.php:877" & @CRLF & _ "msgid """ & @CRLF & _ ""Sorry, we could not find the page you are looking for. Please click below "" & @CRLF & _ ""button to back to the Home page."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/helpers.php:878" & @CRLF & _ "msgid "Back To Home"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/helpers.php:880" & @CRLF & _ "msgid "404"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/helpers.php:1011" & @CRLF & _ "msgid "User Avatar"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/helpers.php:1332" & @CRLF & _ "msgid "Import Data For Course Setting"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/hooks.php:60" & @CRLF & _ "msgid "Custom Widget Area"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/hooks.php:62" & @CRLF & _ "msgid "Appears on sidebar of posts and pages"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/hooks.php:125" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "This theme requires the following plugin installed or update: %1$s."" & @CRLF & _ "msgid_plural """ & @CRLF & _ ""This theme requires the following plugins installed or updated: %1$s."" & @CRLF & _ "msgstr[0] """ & @CRLF & _ "msgstr[1] """ & @CRLF & _ "" & @CRLF & _ "#: includes/hooks.php:126" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "This theme recommends the following plugin installed or updated: %1$s."" & @CRLF & _ "msgid_plural """ & @CRLF & _ ""This theme recommends the following plugins installed or updated: %1$s."" & @CRLF & _ "msgstr[0] """ & @CRLF & _ "msgstr[1] """ & @CRLF & _ "" & @CRLF & _ "#: includes/hooks.php:127" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid """ & @CRLF & _ ""Sorry, but you do not have the correct permissions to install the %s plugin. "" & @CRLF & _ ""Contact the administrator of this site for help on getting the plugin "" & @CRLF & _ ""installed."" & @CRLF & _ "msgid_plural """ & @CRLF & _ ""Sorry, but you do not have the correct permissions to install the %s "" & @CRLF & _ ""plugins. Contact the administrator of this site for help on getting the "" & @CRLF & _ ""plugins installed."" & @CRLF & _ "msgstr[0] """ & @CRLF & _ "msgstr[1] """ & @CRLF & _ "" & @CRLF & _ "#: includes/hooks.php:130" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid """ & @CRLF & _ ""Sorry, but you do not have the correct permissions to activate the %s "" & @CRLF & _ ""plugin. Contact the administrator of this site for help on getting the "" & @CRLF & _ ""plugin activated."" & @CRLF & _ "msgid_plural """ & @CRLF & _ ""Sorry, but you do not have the correct permissions to activate the %s "" & @CRLF & _ ""plugins. Contact the administrator of this site for help on getting the "" & @CRLF & _ ""plugins activated."" & @CRLF & _ "msgstr[0] """ & @CRLF & _ "msgstr[1] """ & @CRLF & _ "" & @CRLF & _ "#: includes/hooks.php:132" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid """ & @CRLF & _ ""Sorry, but you do not have the correct permissions to update the %s plugin. "" & @CRLF & _ ""Contact the administrator of this site for help on getting the plugin "" & @CRLF & _ ""updated."" & @CRLF & _ "msgid_plural """ & @CRLF & _ ""Sorry, but you do not have the correct permissions to update the %s plugins. "" & @CRLF & _ ""Contact the administrator of this site for help on getting the plugins "" & @CRLF & _ ""updated."" & @CRLF & _ "msgstr[0] """ & @CRLF & _ "msgstr[1] """ & @CRLF & _ "" & @CRLF & _ "#: includes/hooks.php:134" & @CRLF & _ "msgid "Activate installed plugin"" & @CRLF & _ "msgid_plural "Activate installed plugins"" & @CRLF & _ "msgstr[0] """ & @CRLF & _ "msgstr[1] """ & @CRLF & _ "" & @CRLF & _ "#: includes/hooks.php:137" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "All plugins installed and activated successfully. %s"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/hooks.php:520" & @CRLF & _ "msgid "Add Begin Gradient"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/hooks.php:523" & @CRLF & _ "msgid "Add start point color for background gradient."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/hooks.php:528" & @CRLF & _ "msgid "Add End Gradient"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/hooks.php:531" & @CRLF & _ "msgid "Add end point color for background gradient."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/hooks.php:536" & @CRLF & _ "msgid "Add Rotate"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/hooks.php:539" & @CRLF & _ "msgid "Rotate background gradient (degrees)."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/hooks.php:544" & @CRLF & _ "msgid "Add Background Image"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/hooks.php:546" & @CRLF & _ "msgid "Background Image."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/hooks.php:964" & @CRLF & _ "msgid """ & @CRLF & _ ""Sorry we could not log you in. The credentials supplied were not recognised."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/hooks.php:977" & @CRLF & _ "msgid "Your account is not correct !"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/hooks.php:997" & @CRLF & _ "msgid "Email and Display name are required !"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/hooks.php:1005" & @CRLF & _ "msgid "Captcha not found !"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/hooks.php:1022" & @CRLF & _ "msgid "Email already exists !"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/hooks.php:1033" & @CRLF & _ "msgid "Your account was created ! Please confirm at email "" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/hooks.php:1036" & @CRLF & _ "msgid "Can not create User !"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/hooks.php:1145" & @CRLF & _ "msgid """ & @CRLF & _ ""The setup progress of EduChain theme has not yet been completed and can not "" & @CRLF & _ ""work properly."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/hooks.php:1479 includes/hooks.php:1480" & @CRLF & _ "msgid "Setup Educhain"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/menus.php:10" & @CRLF & _ "msgid "Top Left Menu"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/menus.php:11" & @CRLF & _ "msgid "Top Center Menu"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/menus.php:12" & @CRLF & _ "msgid "Top Right Menu"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/menus.php:13" & @CRLF & _ "msgid "Main Left Menu"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/menus.php:14" & @CRLF & _ "msgid "Main Center Menu"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/menus.php:15" & @CRLF & _ "msgid "Main Right Menu"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/menus.php:16" & @CRLF & _ "msgid "Bottom menu"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: includes/menus.php:21" & @CRLF & _ "msgid "Main menu"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: page-templates/login-page.php:17" & @CRLF & _ "msgid "Login page"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: searchform.php:5 searchform.php:60" & @CRLF & _ "msgid "Search"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/class-educhain-setup.php:540" & @CRLF & _ "msgid "Activated plugin : "" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/class-educhain-setup.php:540" & @CRLF & _ "msgid " successfully!"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/class-educhain-setup.php:574 setup/class-educhain-setup.php:899" & @CRLF & _ "msgid "Active failed!"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/class-educhain-setup.php:578" & @CRLF & _ "msgid "Install failed. Reason:"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/class-educhain-setup.php:902" & @CRLF & _ "msgid "Alreadt Activated!"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/class-educhain-setup.php:1073" & @CRLF & _ "msgid "The URL of your site's homepage."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/class-educhain-setup.php:1078" & @CRLF & _ "msgid "The root URL of your site."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/class-educhain-setup.php:1085" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "Please update your wordpress to version newer than %s."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/class-educhain-setup.php:1089" & @CRLF & _ "msgid "Whether or not you have WordPress Multisite enabled."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/class-educhain-setup.php:1091" & @CRLF & _ "msgid "Please disable multisite mode."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/class-educhain-setup.php:1095" & @CRLF & _ "msgid "Displays whether or not WordPress is in Debug Mode."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/class-educhain-setup.php:1097" & @CRLF & _ "msgid """ & @CRLF & _ ""Please disable debug mode. This mode is used by developers to test the "" & @CRLF & _ ""theme. We recommend you turn it off for an optimal user experience on your "" & @CRLF & _ ""website."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/class-educhain-setup.php:1103" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "Please config memory limit larger than %sB."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/class-educhain-setup.php:1116" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "Please update PHP to version newer %s."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/class-educhain-setup.php:1122" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "Please config Post Max Size larger than %sB."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/class-educhain-setup.php:1128" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "Please config Time Limit larger than %s."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/class-educhain-setup.php:1134" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "Please config Max Input Vars larger than %s."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/class-educhain-setup.php:1140" & @CRLF & _ "msgid "Please disable or uninstall SUHOSIN."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/class-educhain-setup.php:1143" & @CRLF & _ "msgid "Zip Archive"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/class-educhain-setup.php:1144" & @CRLF & _ "msgid """ & @CRLF & _ ""Zip Archive is required for importing demos. They are used to import and "" & @CRLF & _ ""export zip files specifically for sliders."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/class-educhain-setup.php:1146" & @CRLF & _ "msgid "Please enable Zip Archive."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/class-educhain-setup.php:1152" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "Please update MySQL to version newer than %s."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/class-educhain-setup.php:1158" & @CRLF & _ "#, php-format" & @CRLF & _ "msgid "Please config Max Upload Size larger than %sB."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/class-educhain-setup.php:1162" & @CRLF & _ "msgid """ & @CRLF & _ ""Payment gateways can use cURL to communicate with remote servers to "" & @CRLF & _ ""authorize payments, other plugins may also use it when communicating with "" & @CRLF & _ ""remote services."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/class-educhain-setup.php:1164" & @CRLF & _ "msgid "Please enable fsockopen/cURL."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/class-educhain-setup.php:1195 setup/class-educhain-setup.php:1196" & @CRLF & _ "msgid "YES"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/class-educhain-setup.php:1195 setup/class-educhain-setup.php:1196" & @CRLF & _ "msgid "NO"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/data-master/views/import_attachments.php:14" & @CRLF & _ "msgid "Attachments Import"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/data-master/views/import_attachments.php:19" & @CRLF & _ "msgid "From Server"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/data-master/views/import_attachments.php:23" & @CRLF & _ "#: setup/data-master/views/import_pages.php:28" & @CRLF & _ "msgid "Import"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/data-master/views/import_pages.php:8" & @CRLF & _ "msgid "Pages Import"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/layout.php:50 setup/steps/import-theme-setting.php:113" & @CRLF & _ "msgid "Continue"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/layout.php:51 setup/steps/welcome.php:19" & @CRLF & _ "msgid "Not right now"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/layout.php:60" & @CRLF & _ "msgid "Loading..."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/steps/active-plugin.php:67" & @CRLF & _ "msgid "Your site will have these features"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/steps/active-plugin.php:69" & @CRLF & _ "msgid """ & @CRLF & _ ""These are the plugins we include with this theme. Currently Solazu Unyson is "" & @CRLF & _ ""the only required plugin that is needed to use it. You can activate, "" & @CRLF & _ ""deactivate or update the plugins from this step."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/steps/active-plugin.php:76" & @CRLF & _ "msgid "Required Plugins"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/steps/active-plugin.php:83 setup/steps/active-plugin.php:121" & @CRLF & _ "#: setup/steps/import-theme-setting.php:79" & @CRLF & _ "msgid "Installed"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/steps/active-plugin.php:86 setup/steps/active-plugin.php:124" & @CRLF & _ "#: setup/steps/import-theme-setting.php:82" & @CRLF & _ "msgid "Activated"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/steps/check-requirement.php:32" & @CRLF & _ "msgid "System check"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/steps/check-requirement.php:33" & @CRLF & _ "msgid "Please make sure all requirement are passed"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/steps/check-requirement.php:66" & @CRLF & _ "msgid "Required:"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/steps/check-requirement.php:72" & @CRLF & _ "msgid "Current:"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/steps/generate-demo.php:19" & @CRLF & _ "msgid "Levels"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/steps/generate-demo.php:20" & @CRLF & _ "msgid "Tags"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/steps/generate-demo.php:21" & @CRLF & _ "msgid "Categories"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/steps/generate-demo.php:22" & @CRLF & _ "msgid "Languages"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/steps/generate-demo.php:23" & @CRLF & _ "msgid "Instructors"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/steps/generate-demo.php:24" & @CRLF & _ "msgid "Courses"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/steps/generate-demo.php:33" & @CRLF & _ "msgid "Generate demo"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/steps/generate-demo.php:38" & @CRLF & _ "msgid "Check all"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/steps/generate-demo.php:53" & @CRLF & _ "msgid "Total items"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/steps/generate-demo.php:53" & @CRLF & _ "msgid "( Max 20 items )"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/steps/import-theme-setting.php:45" & @CRLF & _ "msgid "Theme setting completed!"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/steps/import-theme-setting.php:46" & @CRLF & _ "msgid "Almost of setting tasks have been done with activated plugins below"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/steps/import-theme-setting.php:48" & @CRLF & _ "msgid "Theme"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/steps/import-theme-setting.php:62" & @CRLF & _ "msgid "Functions / Plugins"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/steps/import-theme-setting.php:66" & @CRLF & _ "msgid "Detail"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/steps/import-theme-setting.php:67" & @CRLF & _ "msgid "Requirement"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/steps/import-theme-setting.php:112" & @CRLF & _ "msgid "Skip this step"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/steps/welcome.php:13" & @CRLF & _ "msgid "RubikThemes Setup Wizard"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/steps/welcome.php:14" & @CRLF & _ "msgid """ & @CRLF & _ ""Welcome to the setup wizard for RubikThemes Theme. You're using RubikThemes "" & @CRLF & _ ""theme."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/steps/welcome.php:15" & @CRLF & _ "msgid """ & @CRLF & _ ""Thank you for choosing the RubikThemes from ThemeForest. This quick setup "" & @CRLF & _ ""wizard will help you configure your new website. This wizard will install "" & @CRLF & _ ""the required WordPress plugins, default content, logo and tell you a little "" & @CRLF & _ ""about Help &amp; Support options. It should only take 5 minutes."" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/steps/welcome.php:16" & @CRLF & _ "msgid """ & @CRLF & _ ""No time right now? If you don't want to go through the wizard, you can skip "" & @CRLF & _ ""and return to the WordPress dashboard. Come back anytime if you change your "" & @CRLF & _ ""mind!"" & @CRLF & _ "msgstr """ & @CRLF & _ "" & @CRLF & _ "#: setup/steps/welcome.php:20" & @CRLF & _ "msgid "Let's Go!"" & @CRLF & _ "msgstr """ & @CRLF & _ "" Local $aArray = StringRegExp($sString, $sRegex, $STR_REGEXPARRAYGLOBALFULLMATCH) Local $aFullArray[0] For $i = 0 To UBound($aArray) -1 _ArrayConcatenate($aFullArray, $aArray[$i]) Next $aArray = $aFullArray ; Present the entire match result _ArrayDisplay($aArray, "Result")

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 AutoIt, please visit: https://www.autoitscript.com/autoit3/docs/functions/StringRegExp.htm