D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
everqlsh
/
www
/
wp-admin
/
user
/
577040
/
Filename :
uicore-framework.zip
back
Copy
PK ��}\�M&��@ �@ plugin.phpnu �[��� <?php /* Plugin Name: UiCore Framework Plugin URI: https://uicore.co Description: Core plugin for UiCore themes. Version: 6.1.3 Author: UiCore Author URI: https://uicore.co License: GPL3 Text Domain: uicore-framework Domain Path: /languages * Elementor requires at least: 3.5.0 * Elementor tested up to: 3.29.0 */ namespace UiCore; defined('ABSPATH') || exit(); /** * Core class * * @class Core The class that holds the entire UiCore plugin */ final class Core { /** * Plugin version * * @var string */ public $version = '6.1.3'; /** * Plugin Name * * @var string */ public $themename; /** * Plugin Name * * @var string */ public $apipath; /** * Migrated to v2 on Framework V.3.2.4 * * @var string */ public $library = 'https://library.uicore.co/wp-json/uicore/v2/'; /** * Holds various class instances * * @var array */ private $container = []; private $is_theme = true; /** * Constructor for the UiCore class * * Sets up all the appropriate hooks and actions * within our plugin. */ public function __construct() { if(!defined('BDTEP_LO')) { define('BDTEP_LO', true); } $this->define_constants(); // $this->include_modules(); //Include modules //there is a problem with the rest api on multisite so we need to load the plugin data here if(self::is_rest() && !is_multisite()){ //wp 6.7.0 temp fix for wrong notice add_filter( 'doing_it_wrong_trigger_error', '__return_false' ); $this->init_plugin_data(); }else{ add_action('after_setup_theme', [$this, 'init_plugin_data'],1); } add_action('plugins_loaded', [$this, 'init_plugin']); } /** * Initializes the UiCore() class * * Checks for an existing UiCore() instance * and if it doesn't find one, creates it. */ public static function init() { static $instance = false; if (!$instance) { $instance = new Core(); } return $instance; } /** * Magic getter to bypass referencing plugin. * * @param $prop * * @return mixed */ public function __get($prop) { if (array_key_exists($prop, $this->container)) { return $this->container[$prop]; } return $this->{$prop}; } /** * Magic isset to bypass referencing plugin. * * @param $prop * * @return mixed */ public function __isset($prop) { return isset($this->{$prop}) || isset($this->container[$prop]); } /** * Define the constants * * @return void */ public function define_constants() { define('UICORE_VERSION', $this->version); define('UICORE_FILE', __FILE__); define('UICORE_PATH', dirname(UICORE_FILE)); define('UICORE_INCLUDES', UICORE_PATH . '/includes'); define('UICORE_URL', plugins_url('', UICORE_FILE)); define('UICORE_ASSETS', UICORE_URL . '/assets'); define('UICORE_LIBRARY', $this->library); define('UICORE_SETTINGS', 'uicore_theme_options'); define('UICORE_BADGE', '<span class="ui-e-badge"></span>'); } /** * Load the plugin after all plugis are loaded * * @return void */ public function init_plugin() { register_activation_hook(__FILE__, [$this, 'activate']); register_deactivation_hook(__FILE__, [$this, 'deactivate']); //plugin update hook add_action('upgrader_process_complete', [$this, 'upgrader_process_complete'], 10, 2); } function init_plugin_data() { $this->includes(); $this->init_hooks(); $themes = ['brisk','affirm','landio','level-wp','convertio','rise','framey','vault', 'lumi', 'finflow','pagebolt', 'nubi', 'outgrid', 'upshift', 'sayan', 'quylo']; $my_theme = wp_get_theme(); $this->themename = str_replace('-child', '', $my_theme->get('TextDomain')); $this->apipath = 'https://api.uicore.co/v1/'. $this->themename; if (!in_array($this->themename, $themes)) { if(function_exists('_uicore_pro') && \_uicore_pro()){ $this->themename = 'uicore-pro'; $this->is_theme = true; $this->apipath = 'https://api.uicore.co/v1/'. $this->themename; }else{ $this->themename = 'UiCore'; $this->is_theme = false; } } define('UICORE_NAME', str_replace('-wp','',ucfirst($this->themename) )); define('UICORE_API', $this->apipath); } /** * Run on plugin activation. Set the time of installation and get the demos list. * * @return void * @author Andrei Voica <andrei@uicore.co> * @since 1.0.0 */ public function activate() { $installed = get_option('uicore_installed'); if (!$installed) { $installed_data = [ "time"=>time(), "version" => $this->version ]; update_option('uicore_installed', $installed_data); } //if theme name is UiCore => theme isn't seted so we can't continue //since we don't know for witch theme we awnt the demo list if( $this->themename != 'UiCore'){ $api_response = wp_remote_get(UICORE_API . '/demos'); $demos = wp_remote_retrieve_body($api_response); set_transient('uicore_demos', $demos, 20 * DAY_IN_SECONDS); Settings::clear_cache(); } update_option('uicore_v3_migrated', true); } /** * Placeholder for deactivation function * * Nothing being called here yet. */ public function deactivate() { Helper::delete_frontend_transients(); } /** * Include the required files * * @return void */ public function includes() { require UICORE_INCLUDES . '/core/settings_helper.php'; //Settings Helper Class if(\get_option('uicore_beta_debug')){ require UICORE_INCLUDES . '/extra/class-debug.php'; //Debug Helper Class } require UICORE_INCLUDES . '/extra/helper.php'; //General Helper functions require UICORE_INCLUDES . '/extra/class-data.php'; //Generate data require UICORE_INCLUDES . '/extra/class-theme-options.php'; //Theme Options Settings require UICORE_INCLUDES . '/extra/class-settings.php'; //Theme Options Settings Manager + Legacy require UICORE_INCLUDES . '/woocommerce/class-settings.php'; //WooCommerce Settings module require UICORE_INCLUDES . '/extra/class-block-editor-style.php'; //Generate Styles from settings for Block Editor require_once UICORE_INCLUDES . '/extra/class-css.php'; //Frontend Theme Skin require_once UICORE_INCLUDES . '/extra/class-js.php'; //Frontend Theme Skin if($this->is_request('rest')){ require_once UICORE_INCLUDES . '/extra/class-rest-api.php'; //Rest API Functions } require UICORE_INCLUDES . '/class-common.php'; //General functions for both frontend and admin require UICORE_INCLUDES . '/class-assets.php'; //Define assets for frontend and admin // require UICORE_INCLUDES . '/class-studio.php'; //UiCore Studio related functions if ($this->is_request('admin')) { require_once UICORE_INCLUDES . '/class-admin.php'; //Admin related functions require_once UICORE_INCLUDES . '/extra/class-admin-customizer.php'; //Admin Customizer functions } if (class_exists('WooCommerce')) { require_once UICORE_INCLUDES . '/woocommerce/class-frontend.php'; //WooCommerce related functions if ( $this->is_request('frontend') || $this->is_request('admin') ) { // Build framework options for extra components require_once UICORE_INCLUDES . '/woocommerce/components/class-swatches.php'; require_once UICORE_INCLUDES . '/woocommerce/components/class-gallery.php'; require_once UICORE_INCLUDES . '/woocommerce/components/class-share-links.php'; require_once UICORE_INCLUDES . '/woocommerce/components/class-tabs.php'; } } if ($this->is_request('frontend') && $this->is_theme) { require_once UICORE_INCLUDES . '/class-frontend.php'; //Frontend related functions if (class_exists('\UiCoreBlocks\Base')) { require UICORE_INCLUDES . '/blocks/class-frontend.php'; //UiCore Blocks Frontend } if (Helper::get_option('disable_blog') === 'false' ){ require_once UICORE_INCLUDES . '/blog/class-frontend.php'; //Frontend related functions require_once UICORE_INCLUDES . '/blog/class-template.php'; //Blog -> Used in Grid Element and frontend } if(function_exists('tutor_lms')){ require_once UICORE_INCLUDES . '/extra/class-tutor.php'; //adds Tutor LMS Support } if(function_exists('tribe_events')){ require_once UICORE_INCLUDES . '/extra/class-tribe-events.php'; //adds Tribe Events Support } } if (Helper::get_option('disable_portfolio') === 'false' ){ require_once UICORE_INCLUDES . '/portfolio/class-common.php'; //Frontend related functions require_once UICORE_INCLUDES . '/portfolio/class-frontend.php'; //Frontend related functions require_once UICORE_INCLUDES . '/portfolio/class-template.php'; //Portfolio -> Used in Grid Element and frontend } //WIP UiCore Studio require_once UICORE_INCLUDES . '/class-studio.php'; //UiCore Studio related functions // require_once UICORE_INCLUDES . '/studio/class-frontend.php'; //UiCore Studio related functions if (class_exists('\Elementor\Plugin')) { require UICORE_INCLUDES . '/elementor/class-core.php'; //Elementor Incubator } if (class_exists('\UiCoreBlocks\Base')) { require UICORE_INCLUDES . '/blocks/class-core.php'; //UiCore Blocks Incubator } //ThemeBuilder works only with Elementor or UiCore Blocks if (class_exists('\Elementor\Plugin') || class_exists('\UiCoreBlocks\Base')) { if($this->is_theme && (Helper::get_option('disable_tb') === 'false') ){ require UICORE_INCLUDES . '/theme-builder/class-common.php'; //Theme Builder generic functions require UICORE_INCLUDES . '/theme-builder/class-rule.php'; //Theme Builder generic functions if (class_exists('\Elementor\Plugin')) { require UICORE_INCLUDES . '/theme-builder/elementor/documents/class-base.php';//Elementor Document Type require UICORE_INCLUDES . '/theme-builder/elementor/documents/class-single.php';//Elementor Document Type } if ($this->is_request('admin')) { require_once UICORE_INCLUDES . '/theme-builder/class-admin.php'; } if ($this->is_request('frontend')) { require_once UICORE_INCLUDES . '/theme-builder/class-frontend.php'; //Frontend related functions } if($this->is_request('rest')){ require UICORE_INCLUDES . '/theme-builder/class-rest-api.php'; } } } } /** * Initialize the hooks * * @return void */ public function init_hooks() { add_action('init', [$this, 'init_classes']); add_action('init', [$this, 'migration']); // Localize our plugin add_action('init', [$this, 'localization_setup']); } /** * Check if is after update and run the migrations needed * * @return void * @author Andrei Voica <andrei@uicore.co> * @since 1.0.4 */ public function migration() { $installed_data = [ "time"=>time(), "version" => $this->version ]; $installed = get_option('uicore_installed'); //Migrate if ($installed && isset($installed['version'])) { if($installed['version'] != $this->version ){ Settings::clear_cache(true); update_option('uicore_installed', $installed_data); Helper::activate_ep(); } //First Time }else{ Helper::activate_ep(); Settings::clear_cache(true); update_option('uicore_installed', $installed_data); } } /** * Instantiate the required classes * * @return void */ public function init_classes() { $this->container['assets'] = new Assets(); if ($this->is_request('admin')) { $this->container['admin'] = new Admin(); } if ($this->is_request('frontend') && $this->is_theme) { $this->container['frontend'] = new Frontend(); } if ( $this->is_request('rest') ) { $this->container['rest'] = new Api(); } } /** * Initialize plugin for localization * * @uses load_plugin_textdomain() */ public function localization_setup() { load_plugin_textdomain('uicore-framework', false, dirname(plugin_basename(__FILE__)) . '/languages/'); } /** * What type of request is this? * * @param string $type admin, ajax, cron or frontend. * * @return bool */ private function is_request($type) { switch ($type) { case 'admin': return (is_admin() || self::is_wplogin()); case 'rest': return self::is_rest(); case 'cron': return defined('DOING_CRON'); case 'frontend': return (!is_admin() && !defined('DOING_CRON')); } } /** * Check if is the login screen * * @return bool */ static function is_wplogin() { if(\apply_filters('uicore_framework/is_wplogin', false)){ return true; } $ABSPATH_MY = str_replace(array('\\','/'), DIRECTORY_SEPARATOR, ABSPATH); return ((in_array($ABSPATH_MY.'wp-login.php', get_included_files()) || in_array($ABSPATH_MY.'wp-register.php', get_included_files()) ) || (isset($_GLOBALS['pagenow']) && $GLOBALS['pagenow'] === 'wp-login.php') || $_SERVER['PHP_SELF']== '/wp-login.php'); } /** * Check if is Rest API request * * @return bool */ static function is_rest() { if (defined('REST_REQUEST') && REST_REQUEST // (#1) || isset($_GET['rest_route']) // (#2) && strpos( $_GET['rest_route'], '/', 0 ) === 0) return true; // (#3) global $wp_rewrite; if ($wp_rewrite === null) $wp_rewrite = new \WP_Rewrite(); // (#4) $rest_url = wp_parse_url( trailingslashit( rest_url( ) ) ); $current_url = wp_parse_url( add_query_arg( array( ) ) ); return strpos( $current_url['path'] ?? '/', $rest_url['path'], 0 ) === 0; } /** * Perform actions when the plugin is upgraded * @param object $upgrader_object * @param array $options * @return void * @since 5.0.0 * */ function upgrader_process_complete( $upgrader_object, $options ) { if ( $options['action'] == 'update' && $options['type'] == 'plugin' && isset($options['plugins']) && $options['plugins'][0] == 'uicore-framework/plugin.php' ) { // just clean the cache when a plugin is updated Settings::clear_cache(true); //element pack Helper::activate_ep(); } } } Core::init();PK ��}\�f�Vd d wpml-config.xmlnu �[��� <wpml-config> <admin-texts> <key name="uicore_theme_options"> <key name="header_ctatext"/> <key name="header_ctalink"/> <key name="header_topone_content"/> <key name="header_toptwo_content"/> <key name="copyrights_content"/> <key name="social_*"/> <key name="header_sd_text"/> <key name="logo"/> <key name="logo*"/> </key> </admin-texts> <custom-types> <custom-type translate="1" display-as-translated="1">uicore-tb</custom-type> <custom-type translate="1">portfolio</custom-type> </custom-types> <widget name="highlighted-text"> <fields-in-item items_of="content"> <field type="Accordion: Title" editor_type="LINE">text</field> </fields-in-item> </widget> </wpml-config>PK ��}\o=j $� $� languages/uicore-framework.potnu �[��� # Copyright (C) 2025 uicore-framework # This file is distributed under the same license as the uicore-framework package. msgid "" msgstr "" "Project-Id-Version: uicore-framework\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "POT-Creation-Date: 2025-05-07 11:29+0000\n" "Project-Id-Version: undefined\n" "X-Poedit-Basepath: ..\n" "X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SearchPathExcluded-0: *.js\n" "X-Poedit-SourceCharset: UTF-8\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../includes/class-admin.php:84 msgid "Get Started" msgstr "" #: ../includes/class-admin.php:85 msgid "Theme Options" msgstr "" #: ../includes/class-admin.php:86 msgid "System" msgstr "" #: ../includes/class-admin.php:637, ../includes/class-admin.php:635 msgid "Portfolio Page" msgstr "" #: ../includes/class-admin.php:888 msgid "Url" msgstr "" #: ../includes/class-admin.php:903 msgid "Simple Megamenu" msgstr "" #: ../includes/class-admin.php:907 msgid "Auto Width" msgstr "" #: ../includes/class-admin.php:908 msgid "Full Width" msgstr "" #: ../includes/class-admin.php:909 msgid "Full Width Contained" msgstr "" #: ../includes/class-admin.php:914, ../includes/woocommerce/components/class-swatches.php:127, ../includes/woocommerce/components/class-swatches.php:198, ../includes/woocommerce/components/class-swatches.php:224, ../includes/woocommerce/components/class-swatches.php:249 msgid "Image" msgstr "" #: ../includes/class-admin.php:918, ../includes/woocommerce/components/class-swatches.php:130, ../includes/woocommerce/components/class-swatches.php:203 msgid "Select Image" msgstr "" #: ../includes/class-admin.php:919, ../includes/woocommerce/components/class-swatches.php:131, ../includes/woocommerce/components/class-swatches.php:204 msgid "Remove Image" msgstr "" #: ../includes/class-admin.php:924, ../includes/elementor/generic/meta-component.php:86 msgid "Icon" msgstr "" #: ../includes/class-admin.php:928 msgid "Left Aligned" msgstr "" #: ../includes/class-admin.php:929 msgid "Right Aligned" msgstr "" #: ../includes/class-admin.php:932 msgid "Select Icon" msgstr "" #: ../includes/class-admin.php:933 msgid "Remove Icon" msgstr "" #: ../includes/class-admin.php:936, ../includes/class-admin.php:949, ../includes/woocommerce/components/class-swatches.php:111, ../includes/woocommerce/components/class-swatches.php:119, ../includes/woocommerce/components/class-swatches.php:176, ../includes/woocommerce/components/class-swatches.php:188 msgid "Select Color" msgstr "" #: ../includes/class-admin.php:944 msgid "Badge" msgstr "" #: ../includes/class-admin.php:950 msgid "Remove Badge" msgstr "" #: ../includes/class-common.php:75 msgid "Clear Theme Cache" msgstr "" #: ../includes/class-common.php:76 msgid "Show Available Hooks" msgstr "" #: ../includes/class-common.php:77 msgid "General Settings" msgstr "" #: ../includes/class-common.php:78 msgid "Branding" msgstr "" #: ../includes/class-common.php:79 msgid "Top Banner" msgstr "" #: ../includes/class-common.php:80, ../includes/theme-builder/class-admin.php:201 msgid "Header" msgstr "" #: ../includes/class-common.php:81, ../includes/theme-builder/class-admin.php:202 msgid "Footer" msgstr "" #: ../includes/class-common.php:82, ../includes/theme-builder/class-admin.php:206 msgid "Page Title" msgstr "" #: ../includes/class-common.php:83 msgid "Blog" msgstr "" #: ../includes/class-common.php:84, ../includes/portfolio/class-common.php:31 msgid "Portfolio" msgstr "" #: ../includes/class-common.php:85 msgid "WooCommerce" msgstr "" #: ../includes/class-common.php:86 msgid "Social" msgstr "" #: ../includes/class-common.php:87, ../includes/elementor/generic/class-post-filter-control.php:141 msgid "Custom" msgstr "" #: ../includes/class-common.php:285 msgid "Top Bar Column One" msgstr "" #: ../includes/class-common.php:286 msgid "Top Bar Column Two" msgstr "" #: ../includes/blog/class-template.php:206 msgctxt "Frontend - Blog" msgid "View Post:" msgstr "" #. translators: %s: Name of current post. Only visible to screen readers #: ../includes/blog/class-template.php:380 msgctxt "Frontend - Blog" msgid "Continue reading<span class=\"screen-reader-text\"> \"%s\"</span>" msgstr "" #: ../includes/blog/class-template.php:392 msgctxt "Frontend - Blog" msgid "Pages:" msgstr "" #: ../includes/blog/class-template.php:431 msgctxt "Frontend - Blog" msgid "Previous Article" msgstr "" #: ../includes/blog/class-template.php:431 msgctxt "Frontend - Blog" msgid "Next Article" msgstr "" #: ../includes/blog/class-template.php:513, ../includes/templates/page-title.php:261 msgctxt "Frontend - Blog Meta" msgid "Posted On:" msgstr "" #: ../includes/blog/class-template.php:524, ../includes/templates/page-title.php:272 msgctxt "Frontend - Blog Meta" msgid "Updated On:" msgstr "" #: ../includes/blog/class-template.php:576 msgctxt "Frontend - Search" msgid "No results" msgstr "" #: ../includes/blog/class-template.php:577 msgctxt "Frontend - Search" msgid "We did not find any article that matches this search. Try using other search criteria:" msgstr "" #. translators: %s: Author's display name. #: ../includes/blog/class-template.php:615, ../includes/elementor/generic/meta-component.php:276 msgid "View %s’s posts" msgstr "" #. translators: %s: Author's display name. #: ../includes/blog/class-template.php:626 msgid "Visit %s’s website" msgstr "" #: ../includes/blog/class-template.php:660 msgid "You may also like" msgstr "" #: ../includes/elementor/class-core.php:259 msgid "Typography" msgstr "" #: ../includes/elementor/class-core.php:290 msgid "Enable Marquee" msgstr "" #: ../includes/elementor/class-core.php:303 msgid "Reverse Marquee Direction" msgstr "" #: ../includes/elementor/class-core.php:360 msgid "Nav Background Color" msgstr "" #: ../includes/elementor/class-core.php:370 msgctxt "uicore-framework" msgid "Background Blur" msgstr "" #: ../includes/elementor/class-core.php:389 msgid "Border" msgstr "" #: ../includes/elementor/class-core.php:399, ../includes/elementor/generic/meta-component.php:155, ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:228, ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:391, ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:540, ../includes/theme-builder/elementor/woo-widgets/product-grid.php:384, ../includes/theme-builder/elementor/woo-widgets/product-rating.php:138, ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:254, ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:404, ../includes/theme-builder/elementor/woo-widgets/sale-badge.php:120 msgid "Border Radius" msgstr "" #: ../includes/elementor/class-core.php:841 msgid "UiCore Custom" msgstr "" #: ../includes/elementor/class-core.php:842 msgid "UiCore Typekit" msgstr "" #: ../includes/elementor/class-core.php:939 msgid "Themify Icons" msgstr "" #: ../includes/elementor/class-extender.php:32 msgid "Align to Container" msgstr "" #: ../includes/elementor/class-extender.php:33 msgid "Align the column to website container. Only works on top-level, full-width sections." msgstr "" #: ../includes/elementor/class-extender.php:36, ../includes/elementor/class-widget-base.php:300, ../includes/elementor/generic/meta-component.php:18 msgid "None" msgstr "" #: ../includes/elementor/class-extender.php:37, ../includes/theme-builder/elementor/woo-widgets/product-content.php:65, ../includes/theme-builder/elementor/woo-widgets/product-grid.php:210, ../includes/theme-builder/elementor/woo-widgets/product-price.php:76, ../includes/theme-builder/elementor/woo-widgets/short-description.php:62 msgid "Left" msgstr "" #: ../includes/elementor/class-extender.php:38, ../includes/theme-builder/elementor/woo-widgets/product-content.php:73, ../includes/theme-builder/elementor/woo-widgets/product-grid.php:218, ../includes/theme-builder/elementor/woo-widgets/product-price.php:84, ../includes/theme-builder/elementor/woo-widgets/short-description.php:70 msgid "Right" msgstr "" #: ../includes/elementor/class-widget-base.php:219 msgid "Preview %s" msgstr "" #: ../includes/elementor/class-widget-base.php:225 msgid "Has no impact on frontend. Returns a %s here in the editor for preview and editing purposes." msgstr "" #: ../includes/elementor/class-widget-base.php:263 msgid "Please enable WooCommerce to use this widget." msgstr "" #: ../includes/extra/class-data.php:625 msgctxt "Admin - Theme Options Menu" msgid "GET STARTED" msgstr "" #: ../includes/extra/class-data.php:626 msgctxt "Admin - Theme Options Menu" msgid "Dashboard" msgstr "" #: ../includes/extra/class-data.php:627 msgctxt "Admin - Theme Options Menu" msgid "Demo Import" msgstr "" #: ../includes/extra/class-data.php:628 msgctxt "Admin - Theme Options Menu" msgid "DESIGN SYSTEM" msgstr "" #: ../includes/extra/class-data.php:629 msgctxt "Admin - Theme Options Menu" msgid "Global Colors" msgstr "" #: ../includes/extra/class-data.php:630 msgctxt "Admin - Theme Options Menu" msgid "Global Fonts" msgstr "" #: ../includes/extra/class-data.php:631 msgctxt "Admin - Theme Options Menu" msgid "THEME STYLE" msgstr "" #: ../includes/extra/class-data.php:632 msgctxt "Admin - Theme Options Menu" msgid "Typography" msgstr "" #: ../includes/extra/class-data.php:633 msgctxt "Admin - Theme Options Menu" msgid "Buttons" msgstr "" #: ../includes/extra/class-data.php:634 msgctxt "Admin - Theme Options Menu" msgid "Animations" msgstr "" #: ../includes/extra/class-data.php:635 msgctxt "Admin - Theme Options Menu" msgid "Theme Skin" msgstr "" #: ../includes/extra/class-data.php:636 msgctxt "Admin - Theme Options Menu" msgid "SETTINGS" msgstr "" #: ../includes/extra/class-data.php:637 msgctxt "Admin - Theme Options Menu" msgid "Branding" msgstr "" #: ../includes/extra/class-data.php:638 msgctxt "Admin - Theme Options Menu" msgid "General" msgstr "" #: ../includes/extra/class-data.php:639 msgctxt "Admin - Theme Options Menu" msgid "Top Banner" msgstr "" #: ../includes/extra/class-data.php:640 msgctxt "Admin - Theme Options Menu" msgid "Header" msgstr "" #: ../includes/extra/class-data.php:641 msgctxt "Admin - Theme Options Menu" msgid "Footer" msgstr "" #: ../includes/extra/class-data.php:642 msgctxt "Admin - Theme Options Menu" msgid "Page Title" msgstr "" #: ../includes/extra/class-data.php:643 msgctxt "Admin - Theme Options Menu" msgid "Blog" msgstr "" #: ../includes/extra/class-data.php:644 msgctxt "Admin - Theme Options Menu" msgid "Portfolio" msgstr "" #: ../includes/extra/class-data.php:645 msgctxt "Admin - Theme Options Menu" msgid "WooCommerce" msgstr "" #: ../includes/extra/class-data.php:646 msgctxt "Admin - Theme Options Menu" msgid "Social" msgstr "" #: ../includes/extra/class-data.php:647 msgctxt "Admin - Theme Options Menu" msgid "Custom" msgstr "" #: ../includes/extra/class-data.php:648 msgctxt "Admin - Theme Options Menu" msgid "MISC" msgstr "" #: ../includes/extra/class-data.php:649 msgctxt "Admin - Theme Options Menu" msgid "Performance" msgstr "" #: ../includes/extra/class-data.php:650 msgctxt "Admin - Theme Options Menu" msgid "System" msgstr "" #: ../includes/extra/class-data.php:651 msgctxt "Admin - Theme Options Menu" msgid "Debug" msgstr "" #: ../includes/extra/class-data.php:652 msgctxt "Admin - Theme Options Menu" msgid "Updates" msgstr "" #: ../includes/extra/class-data.php:653 msgctxt "Admin - Theme Options Menu" msgid "Plugins" msgstr "" #: ../includes/extra/class-data.php:654 msgctxt "Admin - Theme Options Menu" msgid "Preset Manager" msgstr "" #: ../includes/extra/class-data.php:655 msgctxt "Admin - Theme Options Menu" msgid "Admin Customizer" msgstr "" #: ../includes/extra/class-data.php:658 msgctxt "Admin - Theme Options General" msgid "Search for settings" msgstr "" #: ../includes/extra/class-data.php:659 msgctxt "Admin - Theme Options General" msgid "No Settings Found for this search." msgstr "" #: ../includes/extra/class-data.php:660 msgctxt "Admin - Theme Options General" msgid "Simplified View" msgstr "" #: ../includes/extra/class-data.php:661 msgctxt "Admin - Theme Options General" msgid "Switch to Dark Mode" msgstr "" #: ../includes/extra/class-data.php:662 msgctxt "Admin - Theme Options General" msgid "Switch to Light Mode" msgstr "" #: ../includes/extra/class-data.php:663 msgctxt "Admin - Theme Options General" msgid "See Documentation" msgstr "" #: ../includes/extra/class-data.php:664 msgctxt "Admin - Theme Options General" msgid "Save" msgstr "" #: ../includes/extra/class-data.php:665 msgctxt "Admin - Theme Options General" msgid "Saved" msgstr "" #: ../includes/extra/class-data.php:666 msgctxt "Admin - Theme Options General" msgid "Error!" msgstr "" #: ../includes/extra/class-data.php:667 msgctxt "Admin - Theme Options General" msgid "Done!" msgstr "" #: ../includes/extra/class-data.php:668 msgctxt "Admin - Theme Options General" msgid "Please Wait" msgstr "" #: ../includes/extra/class-data.php:669 msgctxt "Admin - Theme Options General" msgid "Install" msgstr "" #: ../includes/extra/class-data.php:670 msgctxt "Admin - Theme Options General" msgid "Active" msgstr "" #: ../includes/extra/class-data.php:671 msgctxt "Admin - Theme Options General" msgid "Activate" msgstr "" #: ../includes/extra/class-data.php:672 msgctxt "Admin - Theme Options General" msgid "Saving" msgstr "" #: ../includes/extra/class-data.php:673 msgctxt "Admin - Theme Options General" msgid "Cancel" msgstr "" #: ../includes/extra/class-data.php:674 msgctxt "Admin - Theme Options General" msgid "Add New" msgstr "" #: ../includes/extra/class-data.php:675 msgctxt "Admin - Theme Options General" msgid "No Results" msgstr "" #: ../includes/extra/class-data.php:676 msgctxt "Admin - Theme Options General" msgid "Sidebars style is disabled from Performance" msgstr "" #: ../includes/extra/class-data.php:677 msgctxt "Admin - Theme Options General" msgid "For better performance, it's recommended you limit typography to two font families." msgstr "" #: ../includes/extra/class-data.php:680 msgctxt "Admin - Theme Options Import" msgid "Import Demo Templates" msgstr "" #: ../includes/extra/class-data.php:682 msgctxt "Admin - Theme Options Import" msgid "" "Before running Demo Import, make sure %s Server Status %s is all green. If any values \n" " don’t meet the minimum requirements, process might not run properly." msgstr "" #: ../includes/extra/class-data.php:687 msgctxt "Admin - Theme Options Import" msgid "Run Demo Import" msgstr "" #: ../includes/extra/class-data.php:688 msgctxt "Admin - Theme Options Import" msgid "Import Inner Pages" msgstr "" #: ../includes/extra/class-data.php:689 msgctxt "Admin - Theme Options Import" msgid "comes with a complete set of ready-made inner pages. This process will import all pages with no theme options settings." msgstr "" #: ../includes/extra/class-data.php:690 msgctxt "Admin - Theme Options Import" msgid "Run Pages Import" msgstr "" #: ../includes/extra/class-data.php:691 msgctxt "Admin - Theme Options Import" msgid "ReImport Pages" msgstr "" #: ../includes/extra/class-data.php:692 msgctxt "Admin - Theme Options Import" msgid "Getting data from Server" msgstr "" #: ../includes/extra/class-data.php:693 msgctxt "Admin - Theme Options Import" msgid "Downloading and importing Media" msgstr "" #: ../includes/extra/class-data.php:694 msgctxt "Admin - Theme Options Import" msgid "Importing Pages" msgstr "" #: ../includes/extra/class-data.php:696 msgctxt "Admin - Theme Options Import" msgid "Importing Forms" msgstr "" #: ../includes/extra/class-data.php:697 msgctxt "Admin - Theme Options Import" msgid "Importing Portfolio" msgstr "" #: ../includes/extra/class-data.php:698 msgctxt "Admin - Theme Options Import" msgid "Importing Products" msgstr "" #: ../includes/extra/class-data.php:699 msgctxt "Admin - Theme Options Import" msgid "Importing Theme Options" msgstr "" #: ../includes/extra/class-data.php:700 msgctxt "Admin - Theme Options Import" msgid "Importing Menu" msgstr "" #: ../includes/extra/class-data.php:701, ../includes/extra/class-data.php:710 msgctxt "Admin - Theme Options Import" msgid "Importing Widgets" msgstr "" #: ../includes/extra/class-data.php:702 msgctxt "Admin - Theme Options Import" msgid "Importing Headers" msgstr "" #: ../includes/extra/class-data.php:703 msgctxt "Admin - Theme Options Import" msgid "Importing Footers" msgstr "" #: ../includes/extra/class-data.php:704 msgctxt "Admin - Theme Options Import" msgid "Importing Mega Menu" msgstr "" #: ../includes/extra/class-data.php:705 msgctxt "Admin - Theme Options Import" msgid "Importing Blocks" msgstr "" #: ../includes/extra/class-data.php:706 msgctxt "Admin - Theme Options Import" msgid "Importing Popup" msgstr "" #: ../includes/extra/class-data.php:707 msgctxt "Admin - Theme Options Import" msgid "Importing Archive" msgstr "" #: ../includes/extra/class-data.php:708 msgctxt "Admin - Theme Options Import" msgid "Importing Single" msgstr "" #: ../includes/extra/class-data.php:709 msgctxt "Admin - Theme Options Import" msgid "Importing Page Title" msgstr "" #: ../includes/extra/class-data.php:712 msgctxt "Admin - Theme Options Import" msgid "Import process Done!" msgstr "" #: ../includes/extra/class-data.php:713 msgctxt "Admin - Theme Options Import" msgid "There was an issue with the import" msgstr "" #: ../includes/extra/class-data.php:714 msgctxt "Admin - Theme Options Import" msgid "Looking to import a single page or section?" msgstr "" #: ../includes/extra/class-data.php:715 msgctxt "Admin - Theme Options Import" msgid "" "You can import any of the pages/sections available in Demo Import, directly into Elementor Page Builder, \n" " using UiCore template library." msgstr "" #: ../includes/extra/class-data.php:717 msgctxt "Admin - Theme Options Import" msgid "Learn about" msgstr "" #: ../includes/extra/class-data.php:718 msgctxt "Admin - Theme Options Import" msgid "Demo Import not working properly?" msgstr "" #: ../includes/extra/class-data.php:720 msgctxt "Admin - Theme Options Import" msgid "" " Demo Import is a complex process that usually fails (or doesn't work as intended) due to low default limits on your server. \n" " Whenever this happens, you will see an error message after the import and the last error will be stored in %s Error Log %s. \n" " Luckily, most of these errors can be fixed by changing your server configuration." msgstr "" #: ../includes/extra/class-data.php:726 msgctxt "Admin - Theme Options Import" msgid "Demo Import Troubleshooting" msgstr "" #: ../includes/extra/class-data.php:728 msgctxt "Admin - Theme Options Import" msgid "Import" msgstr "" #: ../includes/extra/class-data.php:729 msgctxt "Admin - Theme Options Import" msgid "Preview" msgstr "" #: ../includes/extra/class-data.php:730 msgctxt "Admin - Theme Options Import" msgid "Demo list is updating" msgstr "" #: ../includes/extra/class-data.php:731, ../includes/extra/class-data.php:733 msgctxt "Admin - Theme Options Import" msgid "Demo content is loading." msgstr "" #: ../includes/extra/class-data.php:732 msgctxt "Admin - Theme Options Import" msgid "THE FOLLOWING PLUGINS ARE REQUIRED AND WILL BE INSTALLED:" msgstr "" #: ../includes/extra/class-data.php:734 msgctxt "Admin - Theme Options Import" msgid "Import Content:" msgstr "" #: ../includes/extra/class-data.php:735 msgctxt "Admin - Theme Options Import" msgid "Pages" msgstr "" #: ../includes/extra/class-data.php:736 msgctxt "Admin - Theme Options Import" msgid "Posts" msgstr "" #: ../includes/extra/class-data.php:737 msgctxt "Admin - Theme Options Import" msgid "Portfolio" msgstr "" #: ../includes/extra/class-data.php:738 msgctxt "Admin - Theme Options Import" msgid "Products" msgstr "" #: ../includes/extra/class-data.php:739 msgctxt "Admin - Theme Options Import" msgid "Media" msgstr "" #: ../includes/extra/class-data.php:740 msgctxt "Admin - Theme Options Import" msgid "Header" msgstr "" #: ../includes/extra/class-data.php:741 msgctxt "Admin - Theme Options Import" msgid "Footer" msgstr "" #: ../includes/extra/class-data.php:742 msgctxt "Admin - Theme Options Import" msgid "Mega Menu" msgstr "" #: ../includes/extra/class-data.php:743 msgctxt "Admin - Theme Options Import" msgid "Block" msgstr "" #: ../includes/extra/class-data.php:744 msgctxt "Admin - Theme Options Import" msgid "Popup" msgstr "" #: ../includes/extra/class-data.php:745 msgctxt "Admin - Theme Options Import" msgid "Archive" msgstr "" #: ../includes/extra/class-data.php:746 msgctxt "Admin - Theme Options Import" msgid "Single" msgstr "" #: ../includes/extra/class-data.php:747 msgctxt "Admin - Theme Options Import" msgid "Page Title" msgstr "" #: ../includes/extra/class-data.php:748 msgctxt "Admin - Theme Options Import" msgid "Widgets" msgstr "" #: ../includes/extra/class-data.php:749 msgctxt "Admin - Theme Options Import" msgid "Navigation Menu Items" msgstr "" #: ../includes/extra/class-data.php:750 msgctxt "Admin - Theme Options Import" msgid "Theme Options" msgstr "" #: ../includes/extra/class-data.php:751 msgctxt "Admin - Theme Options Import" msgid "Require Update" msgstr "" #: ../includes/extra/class-data.php:752 msgctxt "Admin - Theme Options Import" msgid "New" msgstr "" #: ../includes/extra/class-data.php:753 msgctxt "Admin - Theme Options Import" msgid "Installing and Activating Required Plugins" msgstr "" #: ../includes/extra/class-data.php:754 msgctxt "Admin - Theme Options Import" msgid "Installing" msgstr "" #: ../includes/extra/class-data.php:755 msgctxt "Admin - Theme Options Import" msgid "Activating" msgstr "" #: ../includes/extra/class-data.php:756 msgctxt "Admin - Theme Options Import" msgid "Errors occurred during import. See Error Log." msgstr "" #: ../includes/extra/class-data.php:757 msgctxt "Admin - Theme Options Import" msgid "Back to Dashboard" msgstr "" #: ../includes/extra/class-data.php:758 msgctxt "Admin - Theme Options Import" msgid "View Site" msgstr "" #: ../includes/extra/class-data.php:759 msgctxt "Admin - Theme Options Import" msgid "Please chose at least 1 content type to continue" msgstr "" #: ../includes/extra/class-data.php:762 msgctxt "Admin - Theme Options Fonts" msgid "Custom Fonts" msgstr "" #: ../includes/extra/class-data.php:763 msgctxt "Admin - Theme Options Fonts" msgid "Font Family" msgstr "" #: ../includes/extra/class-data.php:764 msgctxt "Admin - Theme Options Fonts" msgid "Font Style" msgstr "" #: ../includes/extra/class-data.php:765 msgctxt "Admin - Theme Options Fonts" msgid "Text Transform" msgstr "" #: ../includes/extra/class-data.php:766 msgctxt "Admin - Theme Options Fonts" msgid "Font Size" msgstr "" #: ../includes/extra/class-data.php:767 msgctxt "Admin - Theme Options Fonts" msgid "Line Height" msgstr "" #: ../includes/extra/class-data.php:768 msgctxt "Admin - Theme Options Fonts" msgid "Letter Spacing" msgstr "" #: ../includes/extra/class-data.php:769 msgctxt "Admin - Theme Options Fonts" msgid "For better performance, it's recommended you limit typography to two font families." msgstr "" #: ../includes/extra/class-data.php:772 msgctxt "Admin - Theme Options Colors" msgid "Main Color" msgstr "" #: ../includes/extra/class-data.php:773 msgctxt "Admin - Theme Options Colors" msgid "Color" msgstr "" #: ../includes/extra/class-data.php:774 msgctxt "Admin - Theme Options Colors" msgid "Hover Color" msgstr "" #: ../includes/extra/class-data.php:775 msgctxt "Admin - Theme Options Colors" msgid "Font Size" msgstr "" #: ../includes/extra/class-data.php:776 msgctxt "Admin - Theme Options Colors" msgid "Line Height" msgstr "" #: ../includes/extra/class-data.php:777 msgctxt "Admin - Theme Options Colors" msgid "Letter Spacing" msgstr "" #: ../includes/extra/class-data.php:780 msgctxt "Admin - Theme Options Animations" msgid "Animations are disabled globally from Performance." msgstr "" #: ../includes/extra/class-data.php:781 msgctxt "Admin - Theme Options Animations" msgid "Page Transition" msgstr "" #: ../includes/extra/class-data.php:784 msgctxt "Admin - Theme Options Header" msgid "Header Style" msgstr "" #: ../includes/extra/class-data.php:785 msgctxt "Admin - Theme Options Header" msgid "Classic" msgstr "" #: ../includes/extra/class-data.php:786 msgctxt "Admin - Theme Options Header" msgid "Classic Center" msgstr "" #: ../includes/extra/class-data.php:787 msgctxt "Admin - Theme Options Header" msgid "Center Creative" msgstr "" #: ../includes/extra/class-data.php:788 msgctxt "Admin - Theme Options Header" msgid "Left Header" msgstr "" #: ../includes/extra/class-data.php:789 msgctxt "Admin - Theme Options Header" msgid "Hamburger Classic" msgstr "" #: ../includes/extra/class-data.php:790 msgctxt "Admin - Theme Options Header" msgid "Hamburger Center" msgstr "" #: ../includes/extra/class-data.php:791 msgctxt "Admin - Theme Options Header" msgid "Hamburger Creative" msgstr "" #: ../includes/extra/class-data.php:792 msgctxt "Admin - Theme Options Header" msgid "Header Extras" msgstr "" #: ../includes/extra/class-data.php:793 msgctxt "Admin - Theme Options Header" msgid "Menu" msgstr "" #: ../includes/extra/class-data.php:794 msgctxt "Admin - Theme Options Header" msgid "Mobile Menu" msgstr "" #: ../includes/extra/class-data.php:797 msgctxt "Admin - Theme Options Footer" msgid "Footer Style" msgstr "" #: ../includes/extra/class-data.php:798 msgctxt "Admin - Theme Options Footer" msgid "Column" msgstr "" #: ../includes/extra/class-data.php:799 msgctxt "Admin - Theme Options Footer" msgid "Columns" msgstr "" #: ../includes/extra/class-data.php:800 msgctxt "Admin - Theme Options Footer" msgid "Left" msgstr "" #: ../includes/extra/class-data.php:801 msgctxt "Admin - Theme Options Footer" msgid "Right" msgstr "" #: ../includes/extra/class-data.php:802 msgctxt "Admin - Theme Options Footer" msgid "Center" msgstr "" #: ../includes/extra/class-data.php:803 msgctxt "Admin - Theme Options Footer" msgid "Copyright Style" msgstr "" #: ../includes/extra/class-data.php:806 msgctxt "Admin - Theme Options Blog" msgid "Blog Page (Archive)" msgstr "" #: ../includes/extra/class-data.php:807 msgctxt "Admin - Theme Options Blog" msgid "Blog Classic" msgstr "" #: ../includes/extra/class-data.php:808 msgctxt "Admin - Theme Options Blog" msgid "Blog Grid" msgstr "" #: ../includes/extra/class-data.php:809 msgctxt "Admin - Theme Options Blog" msgid "Blog Horizontal" msgstr "" #: ../includes/extra/class-data.php:810 msgctxt "Admin - Theme Options Blog" msgid "Blog Masonry" msgstr "" #: ../includes/extra/class-data.php:811 msgctxt "Admin - Theme Options Blog" msgid "Blog Post" msgstr "" #: ../includes/extra/class-data.php:812 msgctxt "Admin - Theme Options Blog" msgid "Blog Post Typography" msgstr "" #: ../includes/extra/class-data.php:815 msgctxt "Admin - Theme Options Porfolio" msgid "Porfolio Page (Archive)" msgstr "" #: ../includes/extra/class-data.php:816 msgctxt "Admin - Theme Options Porfolio" msgid "Porfolio Post (Single)" msgstr "" #: ../includes/extra/class-data.php:817 msgctxt "Admin - Theme Options Porfolio" msgid "Grid" msgstr "" #: ../includes/extra/class-data.php:818 msgctxt "Admin - Theme Options Porfolio" msgid "Grid Tiles" msgstr "" #: ../includes/extra/class-data.php:819 msgctxt "Admin - Theme Options Porfolio" msgid "Masonry" msgstr "" #: ../includes/extra/class-data.php:820 msgctxt "Admin - Theme Options Porfolio" msgid "Masonry Tiles" msgstr "" #: ../includes/extra/class-data.php:821 msgctxt "Admin - Theme Options Porfolio" msgid "Justified Tiles" msgstr "" #: ../includes/extra/class-data.php:824 msgctxt "Admin - Theme Options WooCommerce" msgid "Shop Page (Archive)" msgstr "" #: ../includes/extra/class-data.php:825 msgctxt "Admin - Theme Options WooCommerce" msgid "Product (Single)" msgstr "" #: ../includes/extra/class-data.php:828 msgctxt "Admin - Theme Options Performance" msgid "Disable Unused Features" msgstr "" #: ../includes/extra/class-data.php:829 msgctxt "Admin - Theme Options Performance" msgid "Disable Theme Features" msgstr "" #: ../includes/extra/class-data.php:830 msgctxt "Admin - Theme Options Performance" msgid "Performance Optimization" msgstr "" #: ../includes/extra/class-data.php:831 msgctxt "Admin - Theme Options Performance" msgid "Preload Resources" msgstr "" #: ../includes/extra/class-data.php:832 msgctxt "Admin - Theme Options Performance" msgid "Remove Preload" msgstr "" #: ../includes/extra/class-data.php:833 msgctxt "Admin - Theme Options Performance" msgid "+ Add Preload" msgstr "" #: ../includes/extra/class-data.php:836 msgctxt "Admin - Theme Options System" msgid "Use this page to control the normal function and features of Theme options panel." msgstr "" #: ../includes/extra/class-data.php:837 msgctxt "Admin - Theme Options System" msgid "Server Status" msgstr "" #: ../includes/extra/class-data.php:838 msgctxt "Admin - Theme Options System" msgid "API Connection" msgstr "" #: ../includes/extra/class-data.php:839 msgctxt "Admin - Theme Options System" msgid "WEBP Support" msgstr "" #: ../includes/extra/class-data.php:840 msgctxt "Admin - Theme Options System" msgid "Home Url" msgstr "" #: ../includes/extra/class-data.php:841 msgctxt "Admin - Theme Options System" msgid "Site Url" msgstr "" #: ../includes/extra/class-data.php:842 msgctxt "Admin - Theme Options System" msgid "WP Version" msgstr "" #: ../includes/extra/class-data.php:843 msgctxt "Admin - Theme Options System" msgid "Multisite" msgstr "" #: ../includes/extra/class-data.php:844 msgctxt "Admin - Theme Options System" msgid "Server Memory" msgstr "" #: ../includes/extra/class-data.php:845 msgctxt "Admin - Theme Options System" msgid "WP Debug" msgstr "" #: ../includes/extra/class-data.php:846 msgctxt "Admin - Theme Options System" msgid "Language" msgstr "" #: ../includes/extra/class-data.php:847 msgctxt "Admin - Theme Options System" msgid "Server Info" msgstr "" #: ../includes/extra/class-data.php:848 msgctxt "Admin - Theme Options System" msgid "PHP Version" msgstr "" #: ../includes/extra/class-data.php:849 msgctxt "Admin - Theme Options System" msgid "Post Max Size" msgstr "" #: ../includes/extra/class-data.php:850 msgctxt "Admin - Theme Options System" msgid "PHP Time Limit" msgstr "" #: ../includes/extra/class-data.php:851 msgctxt "Admin - Theme Options System" msgid "PHP Max Input" msgstr "" #: ../includes/extra/class-data.php:852 msgctxt "Admin - Theme Options System" msgid "MySQL Version" msgstr "" #: ../includes/extra/class-data.php:853 msgctxt "Admin - Theme Options System" msgid "Max Upload" msgstr "" #: ../includes/extra/class-data.php:854 msgctxt "Admin - Theme Options System" msgid "Tools" msgstr "" #: ../includes/extra/class-data.php:855 msgctxt "Admin - Theme Options System" msgid "Export Settings" msgstr "" #: ../includes/extra/class-data.php:856 msgctxt "Admin - Theme Options System" msgid "Download the current configuration in a Json file." msgstr "" #: ../includes/extra/class-data.php:857 msgctxt "Admin - Theme Options System" msgid "Download Json" msgstr "" #: ../includes/extra/class-data.php:858 msgctxt "Admin - Theme Options System" msgid "Import Settings" msgstr "" #: ../includes/extra/class-data.php:859 msgctxt "Admin - Theme Options System" msgid "Import settings by uploading a Json file." msgstr "" #: ../includes/extra/class-data.php:860 msgctxt "Admin - Theme Options System" msgid "API Connection Proxy" msgstr "" #: ../includes/extra/class-data.php:861 msgctxt "Admin - Theme Options System" msgid "Use a proxy to connect to our API server. Click to enable/disable." msgstr "" #: ../includes/extra/class-data.php:863 msgctxt "Admin - Theme Options System" msgid "Install & Activate Child Theme" msgstr "" #: ../includes/extra/class-data.php:864 msgctxt "Admin - Theme Options System" msgid "Automatically install child theme." msgstr "" #: ../includes/extra/class-data.php:865 msgctxt "Admin - Theme Options System" msgid "Import Json" msgstr "" #: ../includes/extra/class-data.php:866 msgctxt "Admin - Theme Options System" msgid "Refresh UiCore Data" msgstr "" #: ../includes/extra/class-data.php:867 msgctxt "Admin - Theme Options System" msgid "Refetch all data from UiCore API." msgstr "" #: ../includes/extra/class-data.php:868 msgctxt "Admin - Theme Options System" msgid "Refreshing" msgstr "" #: ../includes/extra/class-data.php:869 msgctxt "Admin - Theme Options System" msgid "Refresh Data" msgstr "" #: ../includes/extra/class-data.php:870 msgctxt "Admin - Theme Options System" msgid "Recomended Value" msgstr "" #: ../includes/extra/class-data.php:873 msgctxt "Admin - Theme Options Updates" msgid "Updates" msgstr "" #: ../includes/extra/class-data.php:874 msgctxt "Admin - Theme Options Updates" msgid "Congrats! You're using the latest version." msgstr "" #: ../includes/extra/class-data.php:875 msgctxt "Admin - Theme Options Updates" msgid "Check for Updates" msgstr "" #: ../includes/extra/class-data.php:876 msgctxt "Admin - Theme Options Updates" msgid "Looking for updates" msgstr "" #: ../includes/extra/class-data.php:877 msgctxt "Admin - Theme Options Updates" msgid "Rollback to Previous Version" msgstr "" #: ../includes/extra/class-data.php:878 msgctxt "Admin - Theme Options Updates" msgid "Changelog" msgstr "" #: ../includes/extra/class-data.php:881 msgctxt "Admin - Theme Options Plugins" msgid "Plugins" msgstr "" #: ../includes/extra/class-data.php:882 msgctxt "Admin - Theme Options Plugins" msgid "The following plugins were thoroughly tested with our theme." msgstr "" #: ../includes/extra/class-data.php:883 msgctxt "Admin - Theme Options Plugins" msgid "RECOMMENDED PLUGINS" msgstr "" #: ../includes/extra/class-data.php:884 msgctxt "Admin - Theme Options Plugins" msgid "Requires Free Version!" msgstr "" #: ../includes/extra/class-settings.php:975, ../includes/extra/class-settings.php:1609 msgctxt "Admin - Theme Options" msgid "Enable Header" msgstr "" #: ../includes/extra/class-settings.php:976, ../includes/extra/class-settings.php:1610 msgctxt "Admin - Theme Options" msgid "Enable / disable the header sitewide." msgstr "" #: ../includes/extra/class-settings.php:977, ../includes/extra/class-settings.php:985, ../includes/extra/class-settings.php:994, ../includes/extra/class-settings.php:1014, ../includes/extra/class-settings.php:1023, ../includes/extra/class-settings.php:1034, ../includes/extra/class-settings.php:1042, ../includes/extra/class-settings.php:1051, ../includes/extra/class-settings.php:1064, ../includes/extra/class-settings.php:1076, ../includes/extra/class-settings.php:1095, ../includes/extra/class-settings.php:1104, ../includes/extra/class-settings.php:1117, ../includes/extra/class-settings.php:1130, ../includes/extra/class-settings.php:1155, ../includes/extra/class-settings.php:1172, ../includes/extra/class-settings.php:1186, ../includes/extra/class-settings.php:1202, ../includes/extra/class-settings.php:1210, ../includes/extra/class-settings.php:1219, ../includes/extra/class-settings.php:1230, ../includes/extra/class-settings.php:1239, ../includes/extra/class-settings.php:1611, ../includes/extra/class-settings.php:1622, ../includes/extra/class-settings.php:1633, ../includes/extra/class-settings.php:1644, ../includes/extra/class-settings.php:1655, ../includes/extra/class-settings.php:1669, ../includes/extra/class-settings.php:1683, ../includes/extra/class-settings.php:1694, ../includes/extra/class-settings.php:1867, ../includes/extra/class-settings.php:1878, ../includes/extra/class-settings.php:1892, ../includes/extra/class-settings.php:1906, ../includes/extra/class-settings.php:1920, ../includes/extra/class-settings.php:1931, ../includes/extra/class-settings.php:1942, ../includes/extra/class-settings.php:1956, ../includes/extra/class-settings.php:1969, ../includes/extra/class-settings.php:1980, ../includes/extra/class-settings.php:1994, ../includes/extra/class-settings.php:2007, ../includes/extra/class-settings.php:2020, ../includes/extra/class-settings.php:2034, ../includes/extra/class-settings.php:2047, ../includes/extra/class-settings.php:2060, ../includes/extra/class-settings.php:2070, ../includes/extra/class-settings.php:2081, ../includes/extra/class-settings.php:2092, ../includes/extra/class-settings.php:2103, ../includes/extra/class-settings.php:2117, ../includes/extra/class-settings.php:2128, ../includes/extra/class-settings.php:2139, ../includes/extra/class-settings.php:2150, ../includes/extra/class-settings.php:2161, ../includes/extra/class-settings.php:2172, ../includes/extra/class-settings.php:2183, ../includes/extra/class-settings.php:2194, ../includes/extra/class-settings.php:2204, ../includes/extra/class-settings.php:3369, ../includes/extra/class-settings.php:3754, ../includes/extra/class-settings.php:3765, ../includes/extra/class-settings.php:3776, ../includes/extra/class-settings.php:4007, ../includes/extra/class-settings.php:4018, ../includes/extra/class-settings.php:4029, ../includes/extra/class-settings.php:4040, ../includes/extra/class-settings.php:4051, ../includes/extra/class-settings.php:4062, ../includes/extra/class-settings.php:4163, ../includes/extra/class-settings.php:4608, ../includes/extra/class-settings.php:4622, ../includes/extra/class-settings.php:4636, ../includes/extra/class-settings.php:4647, ../includes/extra/class-settings.php:4661, ../includes/extra/class-settings.php:4675, ../includes/extra/class-settings.php:4894, ../includes/extra/class-settings.php:4985, ../includes/extra/class-settings.php:5103, ../includes/extra/class-settings.php:5129, ../includes/extra/class-settings.php:5173, ../includes/extra/class-settings.php:5273, ../includes/extra/class-settings.php:5292, ../includes/extra/class-settings.php:5332, ../includes/extra/class-settings.php:5364, ../includes/extra/class-settings.php:5395, ../includes/extra/class-settings.php:5415, ../includes/extra/class-settings.php:5434, ../includes/extra/class-settings.php:5630, ../includes/extra/class-settings.php:5762, ../includes/extra/class-settings.php:5797, ../includes/extra/class-settings.php:5852, ../includes/extra/class-settings.php:5874 msgctxt "Admin - Theme Options" msgid "Header" msgstr "" #: ../includes/extra/class-settings.php:978, ../includes/extra/class-settings.php:1612 msgctxt "Admin - Theme Options Search" msgid "enable header" msgstr "" #: ../includes/extra/class-settings.php:983, ../includes/extra/class-settings.php:1716, ../includes/extra/class-settings.php:3566 msgctxt "Admin - Theme Options" msgid "Background" msgstr "" #: ../includes/extra/class-settings.php:984, ../includes/extra/class-settings.php:1632 msgctxt "Admin - Theme Options" msgid "Set the header background." msgstr "" #: ../includes/extra/class-settings.php:986, ../includes/extra/class-settings.php:1634 msgctxt "Admin - Theme Options Search" msgid "header background" msgstr "" #: ../includes/extra/class-settings.php:992, ../includes/extra/class-settings.php:3621 msgctxt "Admin - Theme Options" msgid "Padding" msgstr "" #: ../includes/extra/class-settings.php:993, ../includes/extra/class-settings.php:1668 msgctxt "Admin - Theme Options" msgid "Set top/bottom spacing for header bar." msgstr "" #: ../includes/extra/class-settings.php:995, ../includes/extra/class-settings.php:1670 msgctxt "Admin - Theme Options Search" msgid "header padding" msgstr "" #: ../includes/extra/class-settings.php:1012, ../includes/extra/class-settings.php:1062, ../includes/extra/class-settings.php:2314 msgctxt "Admin - Theme Options" msgid "Border" msgstr "" #: ../includes/extra/class-settings.php:1013 msgctxt "Admin - Theme Options" msgid "Add a 1px border bottom to header." msgstr "" #: ../includes/extra/class-settings.php:1015, ../includes/extra/class-settings.php:1645 msgctxt "Admin - Theme Options Search" msgid "header border" msgstr "" #: ../includes/extra/class-settings.php:1021, ../includes/extra/class-settings.php:1074, ../includes/extra/class-settings.php:2328, ../includes/extra/class-settings.php:3599 msgctxt "Admin - Theme Options" msgid "Border Color" msgstr "" #: ../includes/extra/class-settings.php:1022, ../includes/extra/class-settings.php:1654 msgctxt "Admin - Theme Options" msgid "Set the header border color." msgstr "" #: ../includes/extra/class-settings.php:1024, ../includes/extra/class-settings.php:1656 msgctxt "Admin - Theme Options Search" msgid "header border color" msgstr "" #: ../includes/extra/class-settings.php:1032, ../includes/extra/class-settings.php:6393 msgctxt "Admin - Theme Options" msgid "Shadow" msgstr "" #: ../includes/extra/class-settings.php:1033 msgctxt "Admin - Theme Options" msgid "Add a shadow to header." msgstr "" #: ../includes/extra/class-settings.php:1035, ../includes/extra/class-settings.php:3370 msgctxt "Admin - Theme Options Search" msgid "header shadow" msgstr "" #: ../includes/extra/class-settings.php:1040, ../includes/extra/class-settings.php:1865 msgctxt "Admin - Theme Options" msgid "Transparent Header" msgstr "" #: ../includes/extra/class-settings.php:1041, ../includes/extra/class-settings.php:1866 msgctxt "Admin - Theme Options" msgid "Set header to transparent background before scroll." msgstr "" #: ../includes/extra/class-settings.php:1043, ../includes/extra/class-settings.php:1868 msgctxt "Admin - Theme Options Search" msgid "transparent header" msgstr "" #: ../includes/extra/class-settings.php:1049 msgctxt "Admin - Theme Options" msgid "Color" msgstr "" #: ../includes/extra/class-settings.php:1050, ../includes/extra/class-settings.php:1877 msgctxt "Admin - Theme Options" msgid "Set the menu color for transparent header." msgstr "" #: ../includes/extra/class-settings.php:1052, ../includes/extra/class-settings.php:1879 msgctxt "Admin - Theme Options Search" msgid "transparent header menu color" msgstr "" #: ../includes/extra/class-settings.php:1063, ../includes/extra/class-settings.php:1891 msgctxt "Admin - Theme Options" msgid "Add a 1px border bottom to transparent header." msgstr "" #: ../includes/extra/class-settings.php:1065, ../includes/extra/class-settings.php:1893 msgctxt "Admin - Theme Options Search" msgid "transparent header border" msgstr "" #: ../includes/extra/class-settings.php:1075 msgctxt "Admin - Theme Options" msgid "Set the transparent header border color." msgstr "" #: ../includes/extra/class-settings.php:1077, ../includes/extra/class-settings.php:1907 msgctxt "Admin - Theme Options Search" msgid "transparent header border color" msgstr "" #: ../includes/extra/class-settings.php:1093, ../includes/extra/class-settings.php:1967 msgctxt "Admin - Theme Options" msgid "Call to Action Button" msgstr "" #: ../includes/extra/class-settings.php:1094 msgctxt "Admin - Theme Options" msgid "Add a call to action button to header." msgstr "" #: ../includes/extra/class-settings.php:1096 msgctxt "Admin - Theme Options Search" msgid "header cta" msgstr "" #: ../includes/extra/class-settings.php:1102, ../includes/extra/class-settings.php:2005 msgctxt "Admin - Theme Options" msgid "Button Text" msgstr "" #: ../includes/extra/class-settings.php:1103, ../includes/extra/class-settings.php:2006 msgctxt "Admin - Theme Options" msgid "Set the call to action button text." msgstr "" #: ../includes/extra/class-settings.php:1105 msgctxt "Admin - Theme Options Search" msgid "header cta text" msgstr "" #: ../includes/extra/class-settings.php:1115, ../includes/extra/class-settings.php:2018 msgctxt "Admin - Theme Options" msgid "Button Link" msgstr "" #: ../includes/extra/class-settings.php:1116, ../includes/extra/class-settings.php:2019, ../includes/extra/class-settings.php:2033 msgctxt "Admin - Theme Options" msgid "Set the call to action button link." msgstr "" #: ../includes/extra/class-settings.php:1118 msgctxt "Admin - Theme Options Search" msgid "header cta link" msgstr "" #: ../includes/extra/class-settings.php:1128 msgctxt "Admin - Theme Options" msgid "Button Target" msgstr "" #: ../includes/extra/class-settings.php:1129 msgctxt "Admin - Theme Options" msgid "Set the call to action button target." msgstr "" #: ../includes/extra/class-settings.php:1131 msgctxt "Admin - Theme Options Search" msgid "header cta target" msgstr "" #: ../includes/extra/class-settings.php:1153, ../includes/extra/class-settings.php:1266, ../includes/extra/class-settings.php:1785, ../includes/extra/class-settings.php:2575, ../includes/extra/class-settings.php:2986, ../includes/extra/class-settings.php:6744 msgctxt "Admin - Theme Options" msgid "Layout" msgstr "" #: ../includes/extra/class-settings.php:1154, ../includes/extra/class-settings.php:1621 msgctxt "Admin - Theme Options" msgid "Set the base layout for header." msgstr "" #: ../includes/extra/class-settings.php:1156, ../includes/extra/class-settings.php:1623 msgctxt "Admin - Theme Options Search" msgid "header layout" msgstr "" #: ../includes/extra/class-settings.php:1170, ../includes/extra/class-settings.php:1681 msgctxt "Admin - Theme Options" msgid "Logo Height" msgstr "" #: ../includes/extra/class-settings.php:1171 msgctxt "Admin - Theme Options" msgid "Set the logo height." msgstr "" #: ../includes/extra/class-settings.php:1173, ../includes/extra/class-settings.php:1684 msgctxt "Admin - Theme Options Search" msgid "logo height" msgstr "" #: ../includes/extra/class-settings.php:1184 msgctxt "Admin - Theme Options" msgid "Content Align" msgstr "" #: ../includes/extra/class-settings.php:1185 msgctxt "Admin - Theme Options" msgid "Set the content align." msgstr "" #: ../includes/extra/class-settings.php:1187 msgctxt "Admin - Theme Options Search" msgid "content align" msgstr "" #: ../includes/extra/class-settings.php:1200, ../includes/extra/class-settings.php:3088 msgctxt "Admin - Theme Options" msgid "Full Width" msgstr "" #: ../includes/extra/class-settings.php:1201 msgctxt "Admin - Theme Options" msgid "Set the header to full width." msgstr "" #: ../includes/extra/class-settings.php:1203 msgctxt "Admin - Theme Options Search" msgid "full width header" msgstr "" #: ../includes/extra/class-settings.php:1208 msgctxt "Admin - Theme Options" msgid "Sticky" msgstr "" #: ../includes/extra/class-settings.php:1209 msgctxt "Admin - Theme Options" msgid "Set the header to sticky." msgstr "" #: ../includes/extra/class-settings.php:1211, ../includes/extra/class-settings.php:1932 msgctxt "Admin - Theme Options Search" msgid "sticky header" msgstr "" #: ../includes/extra/class-settings.php:1217, ../includes/extra/class-settings.php:4606 msgctxt "Admin - Theme Options" msgid "Smart Sticky" msgstr "" #: ../includes/extra/class-settings.php:1218, ../includes/extra/class-settings.php:4607 msgctxt "Admin - Theme Options" msgid "Sticky header appears when scrolling up." msgstr "" #: ../includes/extra/class-settings.php:1220 msgctxt "Admin - Theme Options Search" msgid "smart sticky header" msgstr "" #: ../includes/extra/class-settings.php:1228 msgctxt "Admin - Theme Options" msgid "Shrink on scroll" msgstr "" #: ../includes/extra/class-settings.php:1229 msgctxt "Admin - Theme Options" msgid "Change header padding after scroll" msgstr "" #: ../includes/extra/class-settings.php:1231 msgctxt "Admin - Theme Options Search" msgid "shrink change height header" msgstr "" #: ../includes/extra/class-settings.php:1237, ../includes/extra/class-settings.php:1954 msgctxt "Admin - Theme Options" msgid "Padding Before Scroll" msgstr "" #: ../includes/extra/class-settings.php:1238 msgctxt "Admin - Theme Options" msgid "Set the header padding before scroll." msgstr "" #: ../includes/extra/class-settings.php:1240 msgctxt "Admin - Theme Options Search" msgid "header padding before scroll" msgstr "" #: ../includes/extra/class-settings.php:1267 msgctxt "Admin - Theme Options" msgid "Set the website layout." msgstr "" #: ../includes/extra/class-settings.php:1268, ../includes/extra/class-settings.php:1278, ../includes/extra/class-settings.php:1292, ../includes/extra/class-settings.php:1306, ../includes/extra/class-settings.php:1317, ../includes/extra/class-settings.php:1329, ../includes/extra/class-settings.php:1340, ../includes/extra/class-settings.php:1351, ../includes/extra/class-settings.php:1364, ../includes/extra/class-settings.php:1374, ../includes/extra/class-settings.php:1384, ../includes/extra/class-settings.php:1398, ../includes/extra/class-settings.php:1409, ../includes/extra/class-settings.php:1423, ../includes/extra/class-settings.php:1434, ../includes/extra/class-settings.php:1448, ../includes/extra/class-settings.php:4905, ../includes/extra/class-settings.php:4915, ../includes/extra/class-settings.php:4925, ../includes/extra/class-settings.php:4935, ../includes/extra/class-settings.php:4945, ../includes/extra/class-settings.php:4955, ../includes/extra/class-settings.php:4965, ../includes/extra/class-settings.php:5023, ../includes/extra/class-settings.php:5033, ../includes/extra/class-settings.php:5043, ../includes/extra/class-settings.php:5053, ../includes/extra/class-settings.php:5063, ../includes/extra/class-settings.php:5073, ../includes/extra/class-settings.php:5083, ../includes/extra/class-settings.php:5651, ../includes/extra/class-settings.php:5692, ../includes/extra/class-settings.php:5712, ../includes/extra/class-settings.php:5746, ../includes/extra/class-settings.php:5814, ../includes/extra/class-settings.php:5831, ../includes/extra/class-settings.php:6740 msgctxt "Admin - Theme Options" msgid "General" msgstr "" #: ../includes/extra/class-settings.php:1269, ../includes/extra/class-settings.php:6746 msgctxt "Admin - Theme Options Search" msgid "site layout" msgstr "" #: ../includes/extra/class-settings.php:1277, ../includes/extra/class-settings.php:6755 msgctxt "Admin - Theme Options" msgid "Boxed Container Width" msgstr "" #: ../includes/extra/class-settings.php:1279 msgctxt "Admin - Theme Options" msgid "Set the boxed outer container width." msgstr "" #: ../includes/extra/class-settings.php:1280 msgctxt "Admin - Theme Options Search" msgid "site boxed width" msgstr "" #: ../includes/extra/class-settings.php:1291 msgctxt "Admin - Theme Options" msgid "Boxed Background Color" msgstr "" #: ../includes/extra/class-settings.php:1293 msgctxt "Admin - Theme Options" msgid "Set the boxed inner container background color." msgstr "" #: ../includes/extra/class-settings.php:1294 msgctxt "Admin - Theme Options Search" msgid "site background color boxed" msgstr "" #: ../includes/extra/class-settings.php:1305 msgctxt "Admin - Theme Options" msgid "Body Background" msgstr "" #: ../includes/extra/class-settings.php:1307 msgctxt "Admin - Theme Options" msgid "Set the <body> background." msgstr "" #: ../includes/extra/class-settings.php:1308 msgctxt "Admin - Theme Options Search" msgid "body background" msgstr "" #: ../includes/extra/class-settings.php:1316 msgctxt "Admin - Theme Options" msgid "Container Width" msgstr "" #: ../includes/extra/class-settings.php:1318 msgctxt "Admin - Theme Options" msgid "Set the container maximum width." msgstr "" #: ../includes/extra/class-settings.php:1319 msgctxt "Admin - Theme Options Search" msgid "container width" msgstr "" #: ../includes/extra/class-settings.php:1328 msgctxt "Admin - Theme Options" msgid "RTL" msgstr "" #: ../includes/extra/class-settings.php:1330 msgctxt "Admin - Theme Options" msgid "Enable right to left writing for arabic languages." msgstr "" #: ../includes/extra/class-settings.php:1331 msgctxt "Admin - Theme Options Search" msgid "" msgstr "" #: ../includes/extra/class-settings.php:1339, ../includes/extra/class-settings.php:4353 msgctxt "Admin - Theme Options" msgid "Back to Top" msgstr "" #: ../includes/extra/class-settings.php:1341 msgctxt "Admin - Theme Options" msgid "Add a back to top button on bottom right corner." msgstr "" #: ../includes/extra/class-settings.php:1342 msgctxt "Admin - Theme Options Search" msgid "back top scroll" msgstr "" #: ../includes/extra/class-settings.php:1350 msgctxt "Admin - Theme Options" msgid "Back to Top: Show on Mobile" msgstr "" #: ../includes/extra/class-settings.php:1352 msgctxt "Admin - Theme Options" msgid "Show the back to top button on mobile devices." msgstr "" #: ../includes/extra/class-settings.php:1353 msgctxt "Admin - Theme Options Search" msgid "back top scroll mobile" msgstr "" #: ../includes/extra/class-settings.php:1363 msgctxt "Admin - Theme Options" msgid "404 Page" msgstr "" #: ../includes/extra/class-settings.php:1365 msgctxt "Admin - Theme Options" msgid "Select a custom 404 page to overwrite the default one." msgstr "" #: ../includes/extra/class-settings.php:1366 msgctxt "Admin - Theme Options Search" msgid "404 page error" msgstr "" #: ../includes/extra/class-settings.php:1373 msgctxt "Admin - Theme Options" msgid "Maintenance Mode" msgstr "" #: ../includes/extra/class-settings.php:1375 msgctxt "Admin - Theme Options" msgid "Enable maintenance mode sitewide." msgstr "" #: ../includes/extra/class-settings.php:1376 msgctxt "Admin - Theme Options Search" msgid "maintenance mode" msgstr "" #: ../includes/extra/class-settings.php:1383 msgctxt "Admin - Theme Options" msgid "Maintenance Page" msgstr "" #: ../includes/extra/class-settings.php:1385 msgctxt "Admin - Theme Options" msgid "Select a custom maintenance page." msgstr "" #: ../includes/extra/class-settings.php:1386 msgctxt "Admin - Theme Options Search" msgid "maintenance mode page" msgstr "" #: ../includes/extra/class-settings.php:1397, ../includes/extra/class-settings.php:1408 msgctxt "Admin - Theme Options" msgid "Browser Theme Color" msgstr "" #: ../includes/extra/class-settings.php:1399 msgctxt "Admin - Theme Options" msgid "Set the browser toolbar color. Available on Chrome 39+ for Android." msgstr "" #: ../includes/extra/class-settings.php:1400, ../includes/extra/class-settings.php:1411 msgctxt "Admin - Theme Options Search" msgid "browser theme color toolbar" msgstr "" #: ../includes/extra/class-settings.php:1410 msgctxt "Admin - Theme Options" msgid "Set the toolbar color." msgstr "" #: ../includes/extra/class-settings.php:1422 msgctxt "Admin - Theme Options" msgid "Site Border (Passepartout)" msgstr "" #: ../includes/extra/class-settings.php:1424 msgctxt "Admin - Theme Options" msgid "Set a colored border around the website." msgstr "" #: ../includes/extra/class-settings.php:1425 msgctxt "Admin - Theme Options Search" msgid "site border" msgstr "" #: ../includes/extra/class-settings.php:1433 msgctxt "Admin - Theme Options" msgid "Site Border Color" msgstr "" #: ../includes/extra/class-settings.php:1435 msgctxt "Admin - Theme Options" msgid "Set the site border color." msgstr "" #: ../includes/extra/class-settings.php:1436 msgctxt "Admin - Theme Options Search" msgid "site border color" msgstr "" #: ../includes/extra/class-settings.php:1447 msgctxt "Admin - Theme Options" msgid "Site Border Width" msgstr "" #: ../includes/extra/class-settings.php:1449 msgctxt "Admin - Theme Options" msgid "Set the site border width." msgstr "" #: ../includes/extra/class-settings.php:1450 msgctxt "Admin - Theme Options Search" msgid "site border width" msgstr "" #: ../includes/extra/class-settings.php:1460 msgctxt "Admin - Theme Options" msgid "Primary Logo" msgstr "" #: ../includes/extra/class-settings.php:1461, ../includes/extra/class-settings.php:1471, ../includes/extra/class-settings.php:1482, ../includes/extra/class-settings.php:1493, ../includes/extra/class-settings.php:1503 msgctxt "Admin - Theme Options" msgid "Branding" msgstr "" #: ../includes/extra/class-settings.php:1462 msgctxt "Admin - Theme Options" msgid "Set the default logo." msgstr "" #: ../includes/extra/class-settings.php:1463 msgctxt "Admin - Theme Options Search" msgid "primary logo" msgstr "" #: ../includes/extra/class-settings.php:1470 msgctxt "Admin - Theme Options" msgid "Secondary Logo" msgstr "" #: ../includes/extra/class-settings.php:1472 msgctxt "Admin - Theme Options" msgid "Set logo for transparent headers." msgstr "" #: ../includes/extra/class-settings.php:1473 msgctxt "Admin - Theme Options Search" msgid "secondary logo transparent" msgstr "" #: ../includes/extra/class-settings.php:1481 msgctxt "Admin - Theme Options" msgid "Mobile Logo" msgstr "" #: ../includes/extra/class-settings.php:1483 msgctxt "Admin - Theme Options" msgid "Set logo for mobile devices. If left blank, Primary Logo will be used." msgstr "" #: ../includes/extra/class-settings.php:1484 msgctxt "Admin - Theme Options Search" msgid "mobile logo" msgstr "" #: ../includes/extra/class-settings.php:1492 msgctxt "Admin - Theme Options" msgid "Secondary Mobile Logo" msgstr "" #: ../includes/extra/class-settings.php:1494 msgctxt "Admin - Theme Options" msgid "Set logo for mobile devices on transparent headers. If left blank, Secondary Logo will be used." msgstr "" #: ../includes/extra/class-settings.php:1495 msgctxt "Admin - Theme Options Search" msgid "secondary mobile logo transparent" msgstr "" #: ../includes/extra/class-settings.php:1502 msgctxt "Admin - Theme Options" msgid "Favicon" msgstr "" #: ../includes/extra/class-settings.php:1504 msgctxt "Admin - Theme Options" msgid "Set the icon for browser tab and home screen. Recommended size: 196px x 196 px." msgstr "" #: ../includes/extra/class-settings.php:1505 msgctxt "Admin - Theme Options Search" msgid "favicon" msgstr "" #: ../includes/extra/class-settings.php:1513, ../includes/extra/class-settings.php:1523, ../includes/extra/class-settings.php:3451, ../includes/extra/class-settings.php:3461, ../includes/extra/class-settings.php:3471, ../includes/extra/class-settings.php:3481, ../includes/extra/class-settings.php:3491, ../includes/extra/class-settings.php:3501, ../includes/extra/class-settings.php:3511, ../includes/extra/class-settings.php:3521, ../includes/extra/class-settings.php:3531, ../includes/extra/class-settings.php:4772 msgctxt "Admin - Theme Options" msgid "Design System" msgstr "" #: ../includes/extra/class-settings.php:1514 msgctxt "Admin - Theme Options" msgid "Your main brand color. Used by most elements throughout the website." msgstr "" #: ../includes/extra/class-settings.php:1515 msgctxt "Admin - Theme Options Search" msgid "main primary color" msgstr "" #: ../includes/extra/class-settings.php:1524 msgctxt "Admin - Theme Options" msgid "Your secondary brand color. Used mainly as hover color or by secondary elements." msgstr "" #: ../includes/extra/class-settings.php:1525 msgctxt "Admin - Theme Options Search" msgid "hover secondary color" msgstr "" #: ../includes/extra/class-settings.php:1533, ../includes/extra/class-settings.php:2910 msgctxt "Admin - Theme Options" msgid "H1" msgstr "" #: ../includes/extra/class-settings.php:1534, ../includes/extra/class-settings.php:1545, ../includes/extra/class-settings.php:1556, ../includes/extra/class-settings.php:1567, ../includes/extra/class-settings.php:1578, ../includes/extra/class-settings.php:1589, ../includes/extra/class-settings.php:1600, ../includes/extra/class-settings.php:3555 msgctxt "Admin - Theme Options" msgid "Typography" msgstr "" #: ../includes/extra/class-settings.php:1535 msgctxt "Admin - Theme Options" msgid "Set Heading 1 options." msgstr "" #: ../includes/extra/class-settings.php:1536, ../includes/extra/class-settings.php:2913 msgctxt "Admin - Theme Options Search" msgid "h1 H1" msgstr "" #: ../includes/extra/class-settings.php:1544, ../includes/extra/class-settings.php:2921 msgctxt "Admin - Theme Options" msgid "H2" msgstr "" #: ../includes/extra/class-settings.php:1546 msgctxt "Admin - Theme Options" msgid "Set Heading 2 options." msgstr "" #: ../includes/extra/class-settings.php:1547, ../includes/extra/class-settings.php:2924 msgctxt "Admin - Theme Options Search" msgid "h2 H2" msgstr "" #: ../includes/extra/class-settings.php:1555, ../includes/extra/class-settings.php:2932 msgctxt "Admin - Theme Options" msgid "H3" msgstr "" #: ../includes/extra/class-settings.php:1557 msgctxt "Admin - Theme Options" msgid "Set Heading 3 options." msgstr "" #: ../includes/extra/class-settings.php:1558, ../includes/extra/class-settings.php:2935 msgctxt "Admin - Theme Options Search" msgid "h3 H3" msgstr "" #: ../includes/extra/class-settings.php:1566, ../includes/extra/class-settings.php:2943 msgctxt "Admin - Theme Options" msgid "H4" msgstr "" #: ../includes/extra/class-settings.php:1568 msgctxt "Admin - Theme Options" msgid "Set Heading 4 options." msgstr "" #: ../includes/extra/class-settings.php:1569, ../includes/extra/class-settings.php:2945 msgctxt "Admin - Theme Options Search" msgid "h4 H4" msgstr "" #: ../includes/extra/class-settings.php:1577, ../includes/extra/class-settings.php:2953 msgctxt "Admin - Theme Options" msgid "H5" msgstr "" #: ../includes/extra/class-settings.php:1579 msgctxt "Admin - Theme Options" msgid "Set Heading 5 options." msgstr "" #: ../includes/extra/class-settings.php:1580, ../includes/extra/class-settings.php:2956 msgctxt "Admin - Theme Options Search" msgid "h5 H5" msgstr "" #: ../includes/extra/class-settings.php:1588, ../includes/extra/class-settings.php:2964 msgctxt "Admin - Theme Options" msgid "H6" msgstr "" #: ../includes/extra/class-settings.php:1590 msgctxt "Admin - Theme Options" msgid "Set Heading 6 options." msgstr "" #: ../includes/extra/class-settings.php:1591, ../includes/extra/class-settings.php:2967 msgctxt "Admin - Theme Options Search" msgid "h6 H6" msgstr "" #: ../includes/extra/class-settings.php:1599, ../includes/extra/class-settings.php:2975 msgctxt "Admin - Theme Options" msgid "Body" msgstr "" #: ../includes/extra/class-settings.php:1601 msgctxt "Admin - Theme Options" msgid "Set <body> and <p> options." msgstr "" #: ../includes/extra/class-settings.php:1602, ../includes/extra/class-settings.php:2978 msgctxt "Admin - Theme Options Search" msgid "body paragraph" msgstr "" #: ../includes/extra/class-settings.php:1620 msgctxt "Admin - Theme Options" msgid "Header: Layout" msgstr "" #: ../includes/extra/class-settings.php:1631 msgctxt "Admin - Theme Options" msgid "Header Background" msgstr "" #: ../includes/extra/class-settings.php:1642 msgctxt "Admin - Theme Options" msgid "Header Border" msgstr "" #: ../includes/extra/class-settings.php:1643 msgctxt "Admin - Theme Options" msgid "Set a 1px border bottom to header." msgstr "" #: ../includes/extra/class-settings.php:1653 msgctxt "Admin - Theme Options" msgid "Header Border Color" msgstr "" #: ../includes/extra/class-settings.php:1667 msgctxt "Admin - Theme Options" msgid "Header Padding" msgstr "" #: ../includes/extra/class-settings.php:1682 msgctxt "Admin - Theme Options" msgid "Set the header logo height." msgstr "" #: ../includes/extra/class-settings.php:1692 msgctxt "Admin - Theme Options" msgid "Content Alignment" msgstr "" #: ../includes/extra/class-settings.php:1693 msgctxt "Admin - Theme Options" msgid "Set the inner content alignment for Left Header" msgstr "" #: ../includes/extra/class-settings.php:1695 msgctxt "Admin - Theme Options Search" msgid "header align" msgstr "" #: ../includes/extra/class-settings.php:1705 msgctxt "Admin - Theme Options" msgid "Enable Top Banner" msgstr "" #: ../includes/extra/class-settings.php:1706 msgctxt "Admin - Theme Options" msgid "Enable a top bar above the header. Hides on scroll automatically." msgstr "" #: ../includes/extra/class-settings.php:1707, ../includes/extra/class-settings.php:1718, ../includes/extra/class-settings.php:1732, ../includes/extra/class-settings.php:1746, ../includes/extra/class-settings.php:1760, ../includes/extra/class-settings.php:1774, ../includes/extra/class-settings.php:1787, ../includes/extra/class-settings.php:1800, ../includes/extra/class-settings.php:1814, ../includes/extra/class-settings.php:1826, ../includes/extra/class-settings.php:1839, ../includes/extra/class-settings.php:1853, ../includes/extra/class-settings.php:3633, ../includes/extra/class-settings.php:3644, ../includes/extra/class-settings.php:3655, ../includes/extra/class-settings.php:3710, ../includes/extra/class-settings.php:4153, ../includes/extra/class-settings.php:4254 msgctxt "Admin - Theme Options" msgid "Top Banner" msgstr "" #: ../includes/extra/class-settings.php:1708, ../includes/extra/class-settings.php:4156 msgctxt "Admin - Theme Options Search" msgid "top banner" msgstr "" #: ../includes/extra/class-settings.php:1717 msgctxt "Admin - Theme Options" msgid "Set the background for top banner." msgstr "" #: ../includes/extra/class-settings.php:1719 msgctxt "Admin - Theme Options Search" msgid "top banner background" msgstr "" #: ../includes/extra/class-settings.php:1730 msgctxt "Admin - Theme Options" msgid "Text Color" msgstr "" #: ../includes/extra/class-settings.php:1731 msgctxt "Admin - Theme Options" msgid "Set the text color for top banner." msgstr "" #: ../includes/extra/class-settings.php:1733 msgctxt "Admin - Theme Options Search" msgid "top banner text color" msgstr "" #: ../includes/extra/class-settings.php:1744 msgctxt "Admin - Theme Options" msgid "Text Size" msgstr "" #: ../includes/extra/class-settings.php:1745 msgctxt "Admin - Theme Options" msgid "Set the text size for top banner." msgstr "" #: ../includes/extra/class-settings.php:1747 msgctxt "Admin - Theme Options Search" msgid "top banner text size" msgstr "" #: ../includes/extra/class-settings.php:1758 msgctxt "Admin - Theme Options" msgid "Link Colors" msgstr "" #: ../includes/extra/class-settings.php:1759 msgctxt "Admin - Theme Options" msgid "Set the link colors for top banner." msgstr "" #: ../includes/extra/class-settings.php:1761 msgctxt "Admin - Theme Options Search" msgid "top banner link color" msgstr "" #: ../includes/extra/class-settings.php:1772 msgctxt "Admin - Theme Options" msgid "Top Bar Padding" msgstr "" #: ../includes/extra/class-settings.php:1773 msgctxt "Admin - Theme Options" msgid "Set the top/bottom spacing for top banner." msgstr "" #: ../includes/extra/class-settings.php:1775 msgctxt "Admin - Theme Options Search" msgid "top banner padding" msgstr "" #: ../includes/extra/class-settings.php:1786 msgctxt "Admin - Theme Options" msgid "Set the top banner column layout." msgstr "" #: ../includes/extra/class-settings.php:1788 msgctxt "Admin - Theme Options Search" msgid "top banner layout" msgstr "" #: ../includes/extra/class-settings.php:1798 msgctxt "Admin - Theme Options" msgid "First Column Content Type" msgstr "" #: ../includes/extra/class-settings.php:1799 msgctxt "Admin - Theme Options" msgid "Choose the content type for the first column." msgstr "" #: ../includes/extra/class-settings.php:1801, ../includes/extra/class-settings.php:1827 msgctxt "Admin - Theme Options Search" msgid "top banner first column content" msgstr "" #: ../includes/extra/class-settings.php:1812 msgctxt "Admin - Theme Options" msgid "First Column Alignment" msgstr "" #: ../includes/extra/class-settings.php:1813 msgctxt "Admin - Theme Options" msgid "Set the alignment for the first column." msgstr "" #: ../includes/extra/class-settings.php:1815 msgctxt "Admin - Theme Options Search" msgid "top banner first column alignment" msgstr "" #: ../includes/extra/class-settings.php:1825 msgctxt "Admin - Theme Options" msgid "First Column Custom Content" msgstr "" #: ../includes/extra/class-settings.php:1837 msgctxt "Admin - Theme Options" msgid "Second Column Content Type" msgstr "" #: ../includes/extra/class-settings.php:1838 msgctxt "Admin - Theme Options" msgid "Choose the content type for the second column." msgstr "" #: ../includes/extra/class-settings.php:1840 msgctxt "Admin - Theme Options Search" msgid "top bar second column content" msgstr "" #: ../includes/extra/class-settings.php:1851 msgctxt "Admin - Theme Options" msgid "Second Column Alignment" msgstr "" #: ../includes/extra/class-settings.php:1852 msgctxt "Admin - Theme Options" msgid "Set the alignment for the second column." msgstr "" #: ../includes/extra/class-settings.php:1854 msgctxt "Admin - Theme Options Search" msgid "top bar second column alignment" msgstr "" #: ../includes/extra/class-settings.php:1876 msgctxt "Admin - Theme Options" msgid "Transparent Header: Menu Color" msgstr "" #: ../includes/extra/class-settings.php:1890 msgctxt "Admin - Theme Options" msgid "Transparent Header: Border" msgstr "" #: ../includes/extra/class-settings.php:1904 msgctxt "Admin - Theme Options" msgid "Transparent Header: Border Color" msgstr "" #: ../includes/extra/class-settings.php:1905 msgctxt "Admin - Theme Options" msgid "Set the border color for transparent header." msgstr "" #: ../includes/extra/class-settings.php:1918 msgctxt "Admin - Theme Options" msgid "Wide Header" msgstr "" #: ../includes/extra/class-settings.php:1919 msgctxt "Admin - Theme Options" msgid "Stretches the header container to full screen width." msgstr "" #: ../includes/extra/class-settings.php:1921 msgctxt "Admin - Theme Options Search" msgid "wide header" msgstr "" #: ../includes/extra/class-settings.php:1929 msgctxt "Admin - Theme Options" msgid "Sticky Header" msgstr "" #: ../includes/extra/class-settings.php:1930 msgctxt "Admin - Theme Options" msgid "Set the header to fixed on top after scroll." msgstr "" #: ../includes/extra/class-settings.php:1940 msgctxt "Admin - Theme Options" msgid "Change Height On Scroll" msgstr "" #: ../includes/extra/class-settings.php:1941 msgctxt "Admin - Theme Options" msgid "Change header padding after scroll." msgstr "" #: ../includes/extra/class-settings.php:1943 msgctxt "Admin - Theme Options Search" msgid "change height" msgstr "" #: ../includes/extra/class-settings.php:1955 msgctxt "Admin - Theme Options" msgid "Set the top/bottom padding of the header." msgstr "" #: ../includes/extra/class-settings.php:1957 msgctxt "Admin - Theme Options Search" msgid "padding before scroll" msgstr "" #: ../includes/extra/class-settings.php:1968 msgctxt "Admin - Theme Options" msgid "Add a call to action button on the right side of the header." msgstr "" #: ../includes/extra/class-settings.php:1970 msgctxt "Admin - Theme Options Search" msgid "call to action button" msgstr "" #: ../includes/extra/class-settings.php:1978 msgctxt "Admin - Theme Options" msgid "Invert Colors on transparent header" msgstr "" #: ../includes/extra/class-settings.php:1979, ../includes/extra/class-settings.php:1993 msgctxt "Admin - Theme Options" msgid "Set the call to action button style." msgstr "" #: ../includes/extra/class-settings.php:1981 msgctxt "Admin - Theme Options Search" msgid "call to action button style" msgstr "" #: ../includes/extra/class-settings.php:1992, ../includes/extra/class-settings.php:3610 msgctxt "Admin - Theme Options" msgid "Border Radius" msgstr "" #: ../includes/extra/class-settings.php:1995 msgctxt "Admin - Theme Options Search" msgid "call to action button border radius" msgstr "" #: ../includes/extra/class-settings.php:2008 msgctxt "Admin - Theme Options Search" msgid "call to action button text" msgstr "" #: ../includes/extra/class-settings.php:2021 msgctxt "Admin - Theme Options Search" msgid "call to action button link" msgstr "" #: ../includes/extra/class-settings.php:2032 msgctxt "Admin - Theme Options" msgid "Link Target" msgstr "" #: ../includes/extra/class-settings.php:2035 msgctxt "Admin - Theme Options Search" msgid "call to action button link target" msgstr "" #: ../includes/extra/class-settings.php:2045, ../includes/extra/class-settings.php:5305 msgctxt "Admin - Theme Options" msgid "Search" msgstr "" #: ../includes/extra/class-settings.php:2046 msgctxt "Admin - Theme Options" msgid "Add a search icon on the right side of the header." msgstr "" #: ../includes/extra/class-settings.php:2048 msgctxt "Admin - Theme Options Search" msgid "search" msgstr "" #: ../includes/extra/class-settings.php:2058 msgctxt "Admin - Theme Options" msgid "Social Icons" msgstr "" #: ../includes/extra/class-settings.php:2059 msgctxt "Admin - Theme Options" msgid "Add social icons on the right side of the header (classic header) or bottom (left header)." msgstr "" #: ../includes/extra/class-settings.php:2061 msgctxt "Admin - Theme Options Search" msgid "social icons" msgstr "" #: ../includes/extra/class-settings.php:2068 msgctxt "Admin - Theme Options" msgid "Enable Widget Area (Desktop Screens Only)" msgstr "" #: ../includes/extra/class-settings.php:2069 msgctxt "Admin - Theme Options" msgid "Add a custom widget area on the right side of the menu." msgstr "" #: ../includes/extra/class-settings.php:2071 msgctxt "Admin - Theme Options Search" msgid "widget area desktop" msgstr "" #: ../includes/extra/class-settings.php:2079 msgctxt "Admin - Theme Options" msgid "Menu Typography" msgstr "" #: ../includes/extra/class-settings.php:2080 msgctxt "Admin - Theme Options" msgid "Set menu text options." msgstr "" #: ../includes/extra/class-settings.php:2082 msgctxt "Admin - Theme Options Search" msgid "menu typography" msgstr "" #: ../includes/extra/class-settings.php:2090 msgctxt "Admin - Theme Options" msgid "Menu Item Spacing" msgstr "" #: ../includes/extra/class-settings.php:2091 msgctxt "Admin - Theme Options" msgid "Set the left/right padding for menu items." msgstr "" #: ../includes/extra/class-settings.php:2093 msgctxt "Admin - Theme Options Search" msgid "menu item spacing" msgstr "" #: ../includes/extra/class-settings.php:2101 msgctxt "Admin - Theme Options" msgid "Menu Alignment" msgstr "" #: ../includes/extra/class-settings.php:2102 msgctxt "Admin - Theme Options" msgid "Set the menu alignment on header." msgstr "" #: ../includes/extra/class-settings.php:2104 msgctxt "Admin - Theme Options Search" msgid "menu alignment" msgstr "" #: ../includes/extra/class-settings.php:2115 msgctxt "Admin - Theme Options" msgid "Dropdown Background Color" msgstr "" #: ../includes/extra/class-settings.php:2116 msgctxt "Admin - Theme Options" msgid "Set the dropdown menu background color." msgstr "" #: ../includes/extra/class-settings.php:2118 msgctxt "Admin - Theme Options Search" msgid "dropdown background color" msgstr "" #: ../includes/extra/class-settings.php:2126 msgctxt "Admin - Theme Options" msgid "Dropdown Menu Typography" msgstr "" #: ../includes/extra/class-settings.php:2127 msgctxt "Admin - Theme Options" msgid "Set the dropdown menu text options." msgstr "" #: ../includes/extra/class-settings.php:2129 msgctxt "Admin - Theme Options Search" msgid "dropdown menu typography" msgstr "" #: ../includes/extra/class-settings.php:2137 msgctxt "Admin - Theme Options" msgid "Mobile Logo Height" msgstr "" #: ../includes/extra/class-settings.php:2138 msgctxt "Admin - Theme Options" msgid "Set the logo height on mobile header." msgstr "" #: ../includes/extra/class-settings.php:2140 msgctxt "Admin - Theme Options Search" msgid "mobile logo height" msgstr "" #: ../includes/extra/class-settings.php:2148 msgctxt "Admin - Theme Options" msgid "Mobile Menu Background" msgstr "" #: ../includes/extra/class-settings.php:2149 msgctxt "Admin - Theme Options" msgid "Set the mobile menu background." msgstr "" #: ../includes/extra/class-settings.php:2151 msgctxt "Admin - Theme Options Search" msgid "mobile menu background" msgstr "" #: ../includes/extra/class-settings.php:2159 msgctxt "Admin - Theme Options" msgid "Use Secondary Logo" msgstr "" #: ../includes/extra/class-settings.php:2160 msgctxt "Admin - Theme Options" msgid "Use secondary mobile logo on menu dropdown. If Secondary Mobile Logo is not set, Secondary Logo will be used instead." msgstr "" #: ../includes/extra/class-settings.php:2162 msgctxt "Admin - Theme Options Search" msgid "mobile secondary logo" msgstr "" #: ../includes/extra/class-settings.php:2170 msgctxt "Admin - Theme Options" msgid "Mobile Menu Animation" msgstr "" #: ../includes/extra/class-settings.php:2171 msgctxt "Admin - Theme Options" msgid "Set the entrance animation for mobile popover menu." msgstr "" #: ../includes/extra/class-settings.php:2173 msgctxt "Admin - Theme Options Search" msgid "mobile menu animation" msgstr "" #: ../includes/extra/class-settings.php:2181 msgctxt "Admin - Theme Options" msgid "Mobile Menu Typography" msgstr "" #: ../includes/extra/class-settings.php:2182 msgctxt "Admin - Theme Options" msgid "Set mobile menu text options." msgstr "" #: ../includes/extra/class-settings.php:2184 msgctxt "Admin - Theme Options Search" msgid "mobile menu typography" msgstr "" #: ../includes/extra/class-settings.php:2192 msgctxt "Admin - Theme Options" msgid "Mobile Menu Alignment" msgstr "" #: ../includes/extra/class-settings.php:2193 msgctxt "Admin - Theme Options" msgid "Set mobile menu text alignment." msgstr "" #: ../includes/extra/class-settings.php:2195 msgctxt "Admin - Theme Options Search" msgid "mobile menu alignment" msgstr "" #: ../includes/extra/class-settings.php:2202 msgctxt "Admin - Theme Options" msgid "Enable Widget Area (Mobile Screens Only)" msgstr "" #: ../includes/extra/class-settings.php:2203 msgctxt "Admin - Theme Options" msgid "Add a custom widget area on the bottom on mobile menu popover." msgstr "" #: ../includes/extra/class-settings.php:2205 msgctxt "Admin - Theme Options Search" msgid "mobile widget area" msgstr "" #: ../includes/extra/class-settings.php:2213 msgctxt "Admin - Theme Options" msgid "Footer: Layout" msgstr "" #: ../includes/extra/class-settings.php:2214 msgctxt "Admin - Theme Options" msgid "Set the footer column layout." msgstr "" #: ../includes/extra/class-settings.php:2215, ../includes/extra/class-settings.php:2226, ../includes/extra/class-settings.php:2237, ../includes/extra/class-settings.php:2248, ../includes/extra/class-settings.php:2259, ../includes/extra/class-settings.php:2270, ../includes/extra/class-settings.php:2281, ../includes/extra/class-settings.php:2291, ../includes/extra/class-settings.php:2302, ../includes/extra/class-settings.php:2316, ../includes/extra/class-settings.php:2330, ../includes/extra/class-settings.php:2344, ../includes/extra/class-settings.php:2358, ../includes/extra/class-settings.php:2372, ../includes/extra/class-settings.php:2386, ../includes/extra/class-settings.php:2400, ../includes/extra/class-settings.php:2413, ../includes/extra/class-settings.php:4173, ../includes/extra/class-settings.php:4309 msgctxt "Admin - Theme Options" msgid "Footer" msgstr "" #: ../includes/extra/class-settings.php:2216 msgctxt "Admin - Theme Options Search" msgid "layout" msgstr "" #: ../includes/extra/class-settings.php:2224 msgctxt "Admin - Theme Options" msgid "Footer Background" msgstr "" #: ../includes/extra/class-settings.php:2225 msgctxt "Admin - Theme Options" msgid "Set the footer background." msgstr "" #: ../includes/extra/class-settings.php:2227 msgctxt "Admin - Theme Options Search" msgid "footer background" msgstr "" #: ../includes/extra/class-settings.php:2235 msgctxt "Admin - Theme Options" msgid "Footer Vertical Padding" msgstr "" #: ../includes/extra/class-settings.php:2236 msgctxt "Admin - Theme Options" msgid "Set the footer top/bottom spacing." msgstr "" #: ../includes/extra/class-settings.php:2238 msgctxt "Admin - Theme Options Search" msgid "footer vertical padding" msgstr "" #: ../includes/extra/class-settings.php:2246 msgctxt "Admin - Theme Options" msgid "Footer Title Style" msgstr "" #: ../includes/extra/class-settings.php:2247 msgctxt "Admin - Theme Options" msgid "Set the text options for all titles in footer." msgstr "" #: ../includes/extra/class-settings.php:2249 msgctxt "Admin - Theme Options Search" msgid "footer title" msgstr "" #: ../includes/extra/class-settings.php:2257 msgctxt "Admin - Theme Options" msgid "Footer Text Style" msgstr "" #: ../includes/extra/class-settings.php:2258 msgctxt "Admin - Theme Options" msgid "Set the text options for all footer text." msgstr "" #: ../includes/extra/class-settings.php:2260 msgctxt "Admin - Theme Options Search" msgid "footer text" msgstr "" #: ../includes/extra/class-settings.php:2268 msgctxt "Admin - Theme Options" msgid "Footer Link Colors" msgstr "" #: ../includes/extra/class-settings.php:2269 msgctxt "Admin - Theme Options" msgid "Set the main and hover colors for footer links." msgstr "" #: ../includes/extra/class-settings.php:2271 msgctxt "Admin - Theme Options Search" msgid "footer link color" msgstr "" #: ../includes/extra/class-settings.php:2279 msgctxt "Admin - Theme Options" msgid "Wide Footer" msgstr "" #: ../includes/extra/class-settings.php:2280 msgctxt "Admin - Theme Options" msgid "Stretch the footer to full screen width." msgstr "" #: ../includes/extra/class-settings.php:2282 msgctxt "Admin - Theme Options Search" msgid "wide footer" msgstr "" #: ../includes/extra/class-settings.php:2289 msgctxt "Admin - Theme Options" msgid "Enable Copyright" msgstr "" #: ../includes/extra/class-settings.php:2290 msgctxt "Admin - Theme Options" msgid "Enable copyright bar below the footer." msgstr "" #: ../includes/extra/class-settings.php:2292 msgctxt "Admin - Theme Options Search" msgid "enable copyright" msgstr "" #: ../includes/extra/class-settings.php:2300 msgctxt "Admin - Theme Options" msgid "Copyright Background Color" msgstr "" #: ../includes/extra/class-settings.php:2301 msgctxt "Admin - Theme Options" msgid "Set the background color for copyright bar." msgstr "" #: ../includes/extra/class-settings.php:2303 msgctxt "Admin - Theme Options Search" msgid "copyright background color" msgstr "" #: ../includes/extra/class-settings.php:2315 msgctxt "Admin - Theme Options" msgid "Set a border between footer and copyright bar." msgstr "" #: ../includes/extra/class-settings.php:2317 msgctxt "Admin - Theme Options Search" msgid "copyright border" msgstr "" #: ../includes/extra/class-settings.php:2329 msgctxt "Admin - Theme Options" msgid "Set the copyright bar border color." msgstr "" #: ../includes/extra/class-settings.php:2331 msgctxt "Admin - Theme Options Search" msgid "copyright border color" msgstr "" #: ../includes/extra/class-settings.php:2342 msgctxt "Admin - Theme Options" msgid "Wide Border" msgstr "" #: ../includes/extra/class-settings.php:2343 msgctxt "Admin - Theme Options" msgid "Stretch the copyright border to full screen width." msgstr "" #: ../includes/extra/class-settings.php:2345 msgctxt "Admin - Theme Options Search" msgid "copyright border wide" msgstr "" #: ../includes/extra/class-settings.php:2356 msgctxt "Admin - Theme Options" msgid "Copyright Vertical Padding" msgstr "" #: ../includes/extra/class-settings.php:2357 msgctxt "Admin - Theme Options" msgid "Set top/bottom spacing for copyright bar." msgstr "" #: ../includes/extra/class-settings.php:2359 msgctxt "Admin - Theme Options Search" msgid "copyright vertical padding" msgstr "" #: ../includes/extra/class-settings.php:2370 msgctxt "Admin - Theme Options" msgid "Copyright Text Color" msgstr "" #: ../includes/extra/class-settings.php:2371 msgctxt "Admin - Theme Options" msgid "Set the copyright text color." msgstr "" #: ../includes/extra/class-settings.php:2373 msgctxt "Admin - Theme Options Search" msgid "copyright text color" msgstr "" #: ../includes/extra/class-settings.php:2384 msgctxt "Admin - Theme Options" msgid "Copyright Font Size" msgstr "" #: ../includes/extra/class-settings.php:2385 msgctxt "Admin - Theme Options" msgid "Set the copyright font size." msgstr "" #: ../includes/extra/class-settings.php:2387 msgctxt "Admin - Theme Options Search" msgid "copyright font size" msgstr "" #: ../includes/extra/class-settings.php:2398 msgctxt "Admin - Theme Options" msgid "Copyright Link Color" msgstr "" #: ../includes/extra/class-settings.php:2399 msgctxt "Admin - Theme Options" msgid "Set the main and hover colors for copyright bar links." msgstr "" #: ../includes/extra/class-settings.php:2401 msgctxt "Admin - Theme Options Search" msgid "copyright link color" msgstr "" #: ../includes/extra/class-settings.php:2411 msgctxt "Admin - Theme Options" msgid "Copyright Social Icons" msgstr "" #: ../includes/extra/class-settings.php:2412 msgctxt "Admin - Theme Options" msgid "Add social icons on the copyright bar." msgstr "" #: ../includes/extra/class-settings.php:2414 msgctxt "Admin - Theme Options Search" msgid "copyright social icons" msgstr "" #: ../includes/extra/class-settings.php:2424 msgctxt "Admin - Theme Options" msgid "Enable Page Title" msgstr "" #: ../includes/extra/class-settings.php:2425 msgctxt "Admin - Theme Options" msgid "Enable / disable page title sitewide." msgstr "" #: ../includes/extra/class-settings.php:2426, ../includes/extra/class-settings.php:2437, ../includes/extra/class-settings.php:2451, ../includes/extra/class-settings.php:2465, ../includes/extra/class-settings.php:2479, ../includes/extra/class-settings.php:2493, ../includes/extra/class-settings.php:2507, ../includes/extra/class-settings.php:2521, ../includes/extra/class-settings.php:2535, ../includes/extra/class-settings.php:2549, ../includes/extra/class-settings.php:2563, ../includes/extra/class-settings.php:4287 msgctxt "Admin - Theme Options" msgid "Page Title" msgstr "" #: ../includes/extra/class-settings.php:2427 msgctxt "Admin - Theme Options Search" msgid "enable page title" msgstr "" #: ../includes/extra/class-settings.php:2435 msgctxt "Admin - Theme Options" msgid "Page Title Background" msgstr "" #: ../includes/extra/class-settings.php:2436 msgctxt "Admin - Theme Options" msgid "Set the page title background." msgstr "" #: ../includes/extra/class-settings.php:2438 msgctxt "Admin - Theme Options Search" msgid "page title background" msgstr "" #: ../includes/extra/class-settings.php:2449 msgctxt "Admin - Theme Options" msgid "Page Title Background Overlay" msgstr "" #: ../includes/extra/class-settings.php:2450 msgctxt "Admin - Theme Options" msgid "Set the overlay layer for page title background." msgstr "" #: ../includes/extra/class-settings.php:2452 msgctxt "Admin - Theme Options Search" msgid "page title background overlay" msgstr "" #: ../includes/extra/class-settings.php:2463 msgctxt "Admin - Theme Options" msgid "Featured Image as Background" msgstr "" #: ../includes/extra/class-settings.php:2464 msgctxt "Admin - Theme Options" msgid "Use page / post featured image as background. If no featured image is set, the above background will be used instead." msgstr "" #: ../includes/extra/class-settings.php:2466, ../includes/extra/class-settings.php:2788 msgctxt "Admin - Theme Options Search" msgid "featured image" msgstr "" #: ../includes/extra/class-settings.php:2477, ../includes/extra/class-settings.php:2721, ../includes/extra/class-settings.php:3066 msgctxt "Admin - Theme Options" msgid "Vertical Padding" msgstr "" #: ../includes/extra/class-settings.php:2478 msgctxt "Admin - Theme Options" msgid "Set the top/bottom spacing for page title." msgstr "" #: ../includes/extra/class-settings.php:2480 msgctxt "Admin - Theme Options Search" msgid "page title vertical padding" msgstr "" #: ../includes/extra/class-settings.php:2491 msgctxt "Admin - Theme Options" msgid "Title Tag Style" msgstr "" #: ../includes/extra/class-settings.php:2492 msgctxt "Admin - Theme Options" msgid "Select the heading style for page title. The tag will always be h1 for SEO purposes." msgstr "" #: ../includes/extra/class-settings.php:2494 msgctxt "Admin - Theme Options Search" msgid "page title tag" msgstr "" #: ../includes/extra/class-settings.php:2505 msgctxt "Admin - Theme Options" msgid "Title Color" msgstr "" #: ../includes/extra/class-settings.php:2506 msgctxt "Admin - Theme Options" msgid "Select the color for page title. Recommended tags: H1 or H2." msgstr "" #: ../includes/extra/class-settings.php:2508 msgctxt "Admin - Theme Options Search" msgid "page title color" msgstr "" #: ../includes/extra/class-settings.php:2519 msgctxt "Admin - Theme Options" msgid "Title Text Transform" msgstr "" #: ../includes/extra/class-settings.php:2520 msgctxt "Admin - Theme Options" msgid "Set the text transform option for page title." msgstr "" #: ../includes/extra/class-settings.php:2522 msgctxt "Admin - Theme Options Search" msgid "page title text transform" msgstr "" #: ../includes/extra/class-settings.php:2533 msgctxt "Admin - Theme Options" msgid "Title Text Align" msgstr "" #: ../includes/extra/class-settings.php:2534 msgctxt "Admin - Theme Options" msgid "Set the text alignment for page title." msgstr "" #: ../includes/extra/class-settings.php:2536 msgctxt "Admin - Theme Options Search" msgid "page title text align" msgstr "" #: ../includes/extra/class-settings.php:2547, ../includes/extra/class-settings.php:2799 msgctxt "Admin - Theme Options" msgid "Container Max Width" msgstr "" #: ../includes/extra/class-settings.php:2548, ../includes/extra/class-settings.php:2800 msgctxt "Admin - Theme Options" msgid "Set the page title container maximum width for desktop screens. Mobile screens will use full container width." msgstr "" #: ../includes/extra/class-settings.php:2550, ../includes/extra/class-settings.php:2802 msgctxt "Admin - Theme Options Search" msgid "container max width" msgstr "" #: ../includes/extra/class-settings.php:2561 msgctxt "Admin - Theme Options" msgid "Breadcrumbs" msgstr "" #: ../includes/extra/class-settings.php:2562 msgctxt "Admin - Theme Options" msgid "Add breadcrumb links on the right side of page title." msgstr "" #: ../includes/extra/class-settings.php:2564 msgctxt "Admin - Theme Options Search" msgid "breadcrumbs" msgstr "" #: ../includes/extra/class-settings.php:2576 msgctxt "Admin - Theme Options" msgid "Set the blog page and archive layout." msgstr "" #: ../includes/extra/class-settings.php:2577, ../includes/extra/class-settings.php:2588, ../includes/extra/class-settings.php:2599, ../includes/extra/class-settings.php:2610, ../includes/extra/class-settings.php:2621, ../includes/extra/class-settings.php:2635, ../includes/extra/class-settings.php:2646, ../includes/extra/class-settings.php:2657, ../includes/extra/class-settings.php:2668, ../includes/extra/class-settings.php:2679, ../includes/extra/class-settings.php:2690, ../includes/extra/class-settings.php:2701, ../includes/extra/class-settings.php:2712, ../includes/extra/class-settings.php:2723, ../includes/extra/class-settings.php:2734, ../includes/extra/class-settings.php:2744, ../includes/extra/class-settings.php:2754, ../includes/extra/class-settings.php:2765, ../includes/extra/class-settings.php:2776, ../includes/extra/class-settings.php:2787, ../includes/extra/class-settings.php:2801, ../includes/extra/class-settings.php:2815, ../includes/extra/class-settings.php:2826, ../includes/extra/class-settings.php:2837, ../includes/extra/class-settings.php:2848, ../includes/extra/class-settings.php:2859, ../includes/extra/class-settings.php:2870, ../includes/extra/class-settings.php:2880, ../includes/extra/class-settings.php:2890, ../includes/extra/class-settings.php:2901, ../includes/extra/class-settings.php:2912, ../includes/extra/class-settings.php:2923, ../includes/extra/class-settings.php:2934, ../includes/extra/class-settings.php:2955, ../includes/extra/class-settings.php:2966, ../includes/extra/class-settings.php:2977, ../includes/extra/class-settings.php:3542, ../includes/extra/class-settings.php:4073, ../includes/extra/class-settings.php:4084, ../includes/extra/class-settings.php:4320, ../includes/extra/class-settings.php:4700, ../includes/extra/class-settings.php:4712, ../includes/extra/class-settings.php:4723, ../includes/extra/class-settings.php:4736, ../includes/extra/class-settings.php:4747, ../includes/extra/class-settings.php:4760, ../includes/extra/class-settings.php:4975, ../includes/extra/class-settings.php:5004, ../includes/extra/class-settings.php:5185, ../includes/extra/class-settings.php:5249, ../includes/extra/class-settings.php:5259, ../includes/extra/class-settings.php:5533, ../includes/extra/class-settings.php:5547, ../includes/extra/class-settings.php:5562, ../includes/extra/class-settings.php:5589, ../includes/extra/class-settings.php:5729 msgctxt "Admin - Theme Options" msgid "Blog" msgstr "" #: ../includes/extra/class-settings.php:2578 msgctxt "Admin - Theme Options Search" msgid "blog layout" msgstr "" #: ../includes/extra/class-settings.php:2586, ../includes/extra/class-settings.php:2997, ../includes/extra/class-settings.php:3182, ../includes/extra/class-settings.php:5052 msgctxt "Admin - Theme Options" msgid "Grid Columns" msgstr "" #: ../includes/extra/class-settings.php:2587 msgctxt "Admin - Theme Options" msgid "Set the number of columns for blog grid." msgstr "" #: ../includes/extra/class-settings.php:2589, ../includes/extra/class-settings.php:3185 msgctxt "Admin - Theme Options Search" msgid "grid columns" msgstr "" #: ../includes/extra/class-settings.php:2597 msgctxt "Admin - Theme Options" msgid "Grid Items Spacing" msgstr "" #: ../includes/extra/class-settings.php:2598 msgctxt "Admin - Theme Options" msgid "Set the item spacing for blog grid." msgstr "" #: ../includes/extra/class-settings.php:2600, ../includes/extra/class-settings.php:3025 msgctxt "Admin - Theme Options Search" msgid "grid item spacing" msgstr "" #: ../includes/extra/class-settings.php:2608, ../includes/extra/class-settings.php:3033 msgctxt "Admin - Theme Options" msgid "Item Hover Effect" msgstr "" #: ../includes/extra/class-settings.php:2609 msgctxt "Admin - Theme Options" msgid "Set the item hover effect for blog grid." msgstr "" #: ../includes/extra/class-settings.php:2611 msgctxt "Admin - Theme Options Search" msgid "item hover effect" msgstr "" #: ../includes/extra/class-settings.php:2619, ../includes/extra/class-settings.php:3044 msgctxt "Admin - Theme Options" msgid "Image Ratio" msgstr "" #: ../includes/extra/class-settings.php:2620 msgctxt "Admin - Theme Options" msgid "Set the item image ratio for blog grid." msgstr "" #: ../includes/extra/class-settings.php:2622 msgctxt "Admin - Theme Options Search" msgid "item image ratio" msgstr "" #: ../includes/extra/class-settings.php:2633, ../includes/extra/class-settings.php:3055 msgctxt "Admin - Theme Options" msgid "Image Border Radius" msgstr "" #: ../includes/extra/class-settings.php:2634 msgctxt "Admin - Theme Options" msgid "Set the item image border radius for blog grid." msgstr "" #: ../includes/extra/class-settings.php:2636 msgctxt "Admin - Theme Options Search" msgid "item image border radius" msgstr "" #: ../includes/extra/class-settings.php:2644 msgctxt "Admin - Theme Options" msgid "Post Title Style" msgstr "" #: ../includes/extra/class-settings.php:2645 msgctxt "Admin - Theme Options" msgid "Set the text options for post title in blog grid." msgstr "" #: ../includes/extra/class-settings.php:2647 msgctxt "Admin - Theme Options Search" msgid "post title" msgstr "" #: ../includes/extra/class-settings.php:2655 msgctxt "Admin - Theme Options" msgid "Show Excerpt on Blog Page" msgstr "" #: ../includes/extra/class-settings.php:2656 msgctxt "Admin - Theme Options" msgid "Enable / disable excerpt in blog grid." msgstr "" #: ../includes/extra/class-settings.php:2658 msgctxt "Admin - Theme Options Search" msgid "post excerpt" msgstr "" #: ../includes/extra/class-settings.php:2666 msgctxt "Admin - Theme Options" msgid "Excerpt Length" msgstr "" #: ../includes/extra/class-settings.php:2667 msgctxt "Admin - Theme Options" msgid "Set the excerpt length (number of words) in blog grid." msgstr "" #: ../includes/extra/class-settings.php:2669 msgctxt "Admin - Theme Options Search" msgid "post excerpt length" msgstr "" #: ../includes/extra/class-settings.php:2677 msgctxt "Admin - Theme Options" msgid "Post Excerpt Style" msgstr "" #: ../includes/extra/class-settings.php:2678 msgctxt "Admin - Theme Options" msgid "Set the post excerpt options for blog grid." msgstr "" #: ../includes/extra/class-settings.php:2680 msgctxt "Admin - Theme Options Search" msgid "post excerpt style" msgstr "" #: ../includes/extra/class-settings.php:2688 msgctxt "Admin - Theme Options" msgid "Show Author on Blog Page" msgstr "" #: ../includes/extra/class-settings.php:2689 msgctxt "Admin - Theme Options" msgid "Show / hide author name in blog grid." msgstr "" #: ../includes/extra/class-settings.php:2691, ../includes/extra/class-settings.php:2816 msgctxt "Admin - Theme Options Search" msgid "author" msgstr "" #: ../includes/extra/class-settings.php:2699 msgctxt "Admin - Theme Options" msgid "Show Date on Blog Page" msgstr "" #: ../includes/extra/class-settings.php:2700 msgctxt "Admin - Theme Options" msgid "Show / hide post date in blog grid." msgstr "" #: ../includes/extra/class-settings.php:2702, ../includes/extra/class-settings.php:2827 msgctxt "Admin - Theme Options Search" msgid "date" msgstr "" #: ../includes/extra/class-settings.php:2710 msgctxt "Admin - Theme Options" msgid "Show Category on Blog Page" msgstr "" #: ../includes/extra/class-settings.php:2711 msgctxt "Admin - Theme Options" msgid "Show / hide post category in blog grid." msgstr "" #: ../includes/extra/class-settings.php:2713, ../includes/extra/class-settings.php:2838 msgctxt "Admin - Theme Options Search" msgid "category" msgstr "" #: ../includes/extra/class-settings.php:2722 msgctxt "Admin - Theme Options" msgid "Set the top/bottom spacing on blog page." msgstr "" #: ../includes/extra/class-settings.php:2724 msgctxt "Admin - Theme Options Search" msgid "blog vertical padding" msgstr "" #: ../includes/extra/class-settings.php:2732 msgctxt "Admin - Theme Options" msgid "Blog Items on Page" msgstr "" #: ../includes/extra/class-settings.php:2733 msgctxt "Admin - Theme Options" msgid "Set the number of posts displayed on a page." msgstr "" #: ../includes/extra/class-settings.php:2735 msgctxt "Admin - Theme Options Search" msgid "blog items" msgstr "" #: ../includes/extra/class-settings.php:2742 msgctxt "Admin - Theme Options" msgid "Blog Page Sidebar" msgstr "" #: ../includes/extra/class-settings.php:2743 msgctxt "Admin - Theme Options" msgid "Set the sidebar for blog page and archive." msgstr "" #: ../includes/extra/class-settings.php:2745, ../includes/extra/class-settings.php:2881 msgctxt "Admin - Theme Options Search" msgid "sidebar" msgstr "" #: ../includes/extra/class-settings.php:2752 msgctxt "Admin - Theme Options" msgid "Blog Page Sidebar Position" msgstr "" #: ../includes/extra/class-settings.php:2753 msgctxt "Admin - Theme Options" msgid "Set the sidebar position for blog page and archive." msgstr "" #: ../includes/extra/class-settings.php:2755, ../includes/extra/class-settings.php:2891 msgctxt "Admin - Theme Options Search" msgid "sidebar position" msgstr "" #: ../includes/extra/class-settings.php:2763 msgctxt "Admin - Theme Options" msgid "Blog Page Sticky Sidebar" msgstr "" #: ../includes/extra/class-settings.php:2764, ../includes/extra/class-settings.php:2900, ../includes/extra/class-settings.php:3120, ../includes/extra/class-settings.php:3161, ../includes/extra/class-settings.php:3236, ../includes/extra/class-settings.php:3267 msgctxt "Admin - Theme Options" msgid "Set the sidebar to sticky on page scroll." msgstr "" #: ../includes/extra/class-settings.php:2766, ../includes/extra/class-settings.php:2902 msgctxt "Admin - Theme Options Search" msgid "sticky sidebar" msgstr "" #: ../includes/extra/class-settings.php:2774 msgctxt "Admin - Theme Options" msgid "Blog Post Page Title" msgstr "" #: ../includes/extra/class-settings.php:2775 msgctxt "Admin - Theme Options" msgid "Set the blog post title layout. Default page title is set in Theme Options - Page Title." msgstr "" #: ../includes/extra/class-settings.php:2777 msgctxt "Admin - Theme Options Search" msgid "page title" msgstr "" #: ../includes/extra/class-settings.php:2785 msgctxt "Admin - Theme Options" msgid "Blog Post Featured Image" msgstr "" #: ../includes/extra/class-settings.php:2786 msgctxt "Admin - Theme Options" msgid "Show / hide the post featured image below the post title." msgstr "" #: ../includes/extra/class-settings.php:2813 msgctxt "Admin - Theme Options" msgid "Show Author on Blog Post" msgstr "" #: ../includes/extra/class-settings.php:2814 msgctxt "Admin - Theme Options" msgid "Show / hide author name on blog post." msgstr "" #: ../includes/extra/class-settings.php:2824 msgctxt "Admin - Theme Options" msgid "Show Date on Blog Post" msgstr "" #: ../includes/extra/class-settings.php:2825 msgctxt "Admin - Theme Options" msgid "Show / hide date on blog post." msgstr "" #: ../includes/extra/class-settings.php:2835 msgctxt "Admin - Theme Options" msgid "Show Category on Blog Post" msgstr "" #: ../includes/extra/class-settings.php:2836 msgctxt "Admin - Theme Options" msgid "Show / hide category on blog post." msgstr "" #: ../includes/extra/class-settings.php:2846 msgctxt "Admin - Theme Options" msgid "Show Tags on Blog Post" msgstr "" #: ../includes/extra/class-settings.php:2847 msgctxt "Admin - Theme Options" msgid "Show / hide tags on blog post." msgstr "" #: ../includes/extra/class-settings.php:2849 msgctxt "Admin - Theme Options Search" msgid "tags" msgstr "" #: ../includes/extra/class-settings.php:2857 msgctxt "Admin - Theme Options" msgid "Narrow Post Width" msgstr "" #: ../includes/extra/class-settings.php:2858 msgctxt "Admin - Theme Options" msgid "Set the post container width to 65% of default container width. Only applied on desktop screens." msgstr "" #: ../includes/extra/class-settings.php:2860 msgctxt "Admin - Theme Options Search" msgid "narrow width" msgstr "" #: ../includes/extra/class-settings.php:2868 msgctxt "Admin - Theme Options" msgid "Reading Progress" msgstr "" #: ../includes/extra/class-settings.php:2869 msgctxt "Admin - Theme Options" msgid "Show a reading progress bar below the header." msgstr "" #: ../includes/extra/class-settings.php:2871 msgctxt "Admin - Theme Options Search" msgid "reading progress" msgstr "" #: ../includes/extra/class-settings.php:2878 msgctxt "Admin - Theme Options" msgid "Blog Post Sidebar" msgstr "" #: ../includes/extra/class-settings.php:2879 msgctxt "Admin - Theme Options" msgid "Set the sidebar for blog post." msgstr "" #: ../includes/extra/class-settings.php:2888 msgctxt "Admin - Theme Options" msgid "Blog Post Sidebar Position" msgstr "" #: ../includes/extra/class-settings.php:2889 msgctxt "Admin - Theme Options" msgid "Set the sidebar position for blog post." msgstr "" #: ../includes/extra/class-settings.php:2899 msgctxt "Admin - Theme Options" msgid "Blog Post Sticky Sidebar" msgstr "" #: ../includes/extra/class-settings.php:2911 msgctxt "Admin - Theme Options" msgid "Set blog post Heading 1 options." msgstr "" #: ../includes/extra/class-settings.php:2922 msgctxt "Admin - Theme Options" msgid "Set blog post Heading 2 options." msgstr "" #: ../includes/extra/class-settings.php:2933 msgctxt "Admin - Theme Options" msgid "Set blog post Heading 3 options." msgstr "" #: ../includes/extra/class-settings.php:2944 msgctxt "Admin - Theme Options" msgid "Set blog post Heading 4 options." msgstr "" #: ../includes/extra/class-settings.php:2954 msgctxt "Admin - Theme Options" msgid "Set blog post Heading 5 options." msgstr "" #: ../includes/extra/class-settings.php:2965 msgctxt "Admin - Theme Options" msgid "Set blog post Heading 6 options." msgstr "" #: ../includes/extra/class-settings.php:2976 msgctxt "Admin - Theme Options" msgid "Set blog post <body> and <p> options." msgstr "" #: ../includes/extra/class-settings.php:2987 msgctxt "Admin - Theme Options" msgid "Set the portfolio page and archive layout." msgstr "" #: ../includes/extra/class-settings.php:2988, ../includes/extra/class-settings.php:2999, ../includes/extra/class-settings.php:3010, ../includes/extra/class-settings.php:3024, ../includes/extra/class-settings.php:3035, ../includes/extra/class-settings.php:3046, ../includes/extra/class-settings.php:3057, ../includes/extra/class-settings.php:3068, ../includes/extra/class-settings.php:3079, ../includes/extra/class-settings.php:3090, ../includes/extra/class-settings.php:3100, ../includes/extra/class-settings.php:3110, ../includes/extra/class-settings.php:3121, ../includes/extra/class-settings.php:3131, ../includes/extra/class-settings.php:3141, ../includes/extra/class-settings.php:3151, ../includes/extra/class-settings.php:3162, ../includes/extra/class-settings.php:3930, ../includes/extra/class-settings.php:3941, ../includes/extra/class-settings.php:3952, ../includes/extra/class-settings.php:4331, ../includes/extra/class-settings.php:4994 msgctxt "Admin - Theme Options" msgid "Portfolio" msgstr "" #: ../includes/extra/class-settings.php:2989 msgctxt "Admin - Theme Options Search" msgid "portfolio layout" msgstr "" #: ../includes/extra/class-settings.php:2998 msgctxt "Admin - Theme Options" msgid "Set the number of columns for portfolio grid." msgstr "" #: ../includes/extra/class-settings.php:3000 msgctxt "Admin - Theme Options Search" msgid "portfolio grid columns" msgstr "" #: ../includes/extra/class-settings.php:3008 msgctxt "Admin - Theme Options" msgid "Item Size" msgstr "" #: ../includes/extra/class-settings.php:3009 msgctxt "Admin - Theme Options" msgid "Set the item size for justified tiles grid." msgstr "" #: ../includes/extra/class-settings.php:3011 msgctxt "Admin - Theme Options Search" msgid "grid item size" msgstr "" #: ../includes/extra/class-settings.php:3022 msgctxt "Admin - Theme Options" msgid "Item Spacing" msgstr "" #: ../includes/extra/class-settings.php:3023 msgctxt "Admin - Theme Options" msgid "Set the item spacing for portfolio grid." msgstr "" #: ../includes/extra/class-settings.php:3034 msgctxt "Admin - Theme Options" msgid "Set the item hover effect for portfolio grid." msgstr "" #: ../includes/extra/class-settings.php:3036 msgctxt "Admin - Theme Options Search" msgid "grid item hover effect" msgstr "" #: ../includes/extra/class-settings.php:3045 msgctxt "Admin - Theme Options" msgid "Set the item image ratio for portfolio grid." msgstr "" #: ../includes/extra/class-settings.php:3047 msgctxt "Admin - Theme Options Search" msgid "grid item image ratio" msgstr "" #: ../includes/extra/class-settings.php:3056 msgctxt "Admin - Theme Options" msgid "Set the item image border radius for portfolio grid." msgstr "" #: ../includes/extra/class-settings.php:3058 msgctxt "Admin - Theme Options Search" msgid "grid item image border radius" msgstr "" #: ../includes/extra/class-settings.php:3067 msgctxt "Admin - Theme Options" msgid "Set top/bottom spacing for portfolio page." msgstr "" #: ../includes/extra/class-settings.php:3069, ../includes/extra/class-settings.php:3080, ../includes/extra/class-settings.php:3196 msgctxt "Admin - Theme Options Search" msgid "vertical padding" msgstr "" #: ../includes/extra/class-settings.php:3077 msgctxt "Admin - Theme Options" msgid "Portfolio Items on Page" msgstr "" #: ../includes/extra/class-settings.php:3078 msgctxt "Admin - Theme Options" msgid "Set the number of portfolio items displayed on a page." msgstr "" #: ../includes/extra/class-settings.php:3089 msgctxt "Admin - Theme Options" msgid "Stretch portfolio grid to full page width." msgstr "" #: ../includes/extra/class-settings.php:3091 msgctxt "Admin - Theme Options Search" msgid "portfolio full width" msgstr "" #: ../includes/extra/class-settings.php:3098 msgctxt "Admin - Theme Options" msgid "Portfolio Page Sidebar" msgstr "" #: ../includes/extra/class-settings.php:3099 msgctxt "Admin - Theme Options" msgid "Set the sidebar for portfolio page and archive." msgstr "" #: ../includes/extra/class-settings.php:3101 msgctxt "Admin - Theme Options Search" msgid "portfolio page sidebar" msgstr "" #: ../includes/extra/class-settings.php:3108 msgctxt "Admin - Theme Options" msgid "Portfolio Page Sidebar Position" msgstr "" #: ../includes/extra/class-settings.php:3109 msgctxt "Admin - Theme Options" msgid "Set the sidebar position for portfolio page and archive." msgstr "" #: ../includes/extra/class-settings.php:3111 msgctxt "Admin - Theme Options Search" msgid "portfolio page sidebar position" msgstr "" #: ../includes/extra/class-settings.php:3119 msgctxt "Admin - Theme Options" msgid "Portfolio Page Sticky Sidebar" msgstr "" #: ../includes/extra/class-settings.php:3122 msgctxt "Admin - Theme Options Search" msgid "portfolio page sidebar sticky" msgstr "" #: ../includes/extra/class-settings.php:3129 msgctxt "Admin - Theme Options" msgid "Portfolio Page" msgstr "" #: ../includes/extra/class-settings.php:3130 msgctxt "Admin - Theme Options" msgid "Select a custom portfolio page. If left blank, portfolio will be available at yoursite.com/portfolio." msgstr "" #: ../includes/extra/class-settings.php:3132 msgctxt "Admin - Theme Options Search" msgid "portfolio custom page" msgstr "" #: ../includes/extra/class-settings.php:3139 msgctxt "Admin - Theme Options" msgid "Portfolio Post Sidebar" msgstr "" #: ../includes/extra/class-settings.php:3140 msgctxt "Admin - Theme Options" msgid "Set the sidebar for portfolio post." msgstr "" #: ../includes/extra/class-settings.php:3142 msgctxt "Admin - Theme Options Search" msgid "portfolio post sidebar" msgstr "" #: ../includes/extra/class-settings.php:3149 msgctxt "Admin - Theme Options" msgid "Portfolio Post Sidebar Position" msgstr "" #: ../includes/extra/class-settings.php:3150 msgctxt "Admin - Theme Options" msgid "Set the sidebar position for portfolio posts." msgstr "" #: ../includes/extra/class-settings.php:3152 msgctxt "Admin - Theme Options Search" msgid "portfolio post sidebar position" msgstr "" #: ../includes/extra/class-settings.php:3160 msgctxt "Admin - Theme Options" msgid "Portfolio Post Sticky Sidebar" msgstr "" #: ../includes/extra/class-settings.php:3163 msgctxt "Admin - Theme Options Search" msgid "portfolio post sidebar sticky" msgstr "" #: ../includes/extra/class-settings.php:3171 msgctxt "Admin - Theme Options" msgid "Header Cart Icon" msgstr "" #: ../includes/extra/class-settings.php:3172 msgctxt "Admin - Theme Options" msgid "Show / hide a shopping cart icon on the right side of the header." msgstr "" #: ../includes/extra/class-settings.php:3173, ../includes/extra/class-settings.php:3184, ../includes/extra/class-settings.php:3195, ../includes/extra/class-settings.php:3206, ../includes/extra/class-settings.php:3216, ../includes/extra/class-settings.php:3226, ../includes/extra/class-settings.php:3237, ../includes/extra/class-settings.php:3247, ../includes/extra/class-settings.php:3257, ../includes/extra/class-settings.php:3268, ../includes/extra/class-settings.php:3963, ../includes/extra/class-settings.php:5114, ../includes/extra/class-settings.php:5896, ../includes/extra/class-settings.php:5911, ../includes/extra/class-settings.php:5949, ../includes/extra/class-settings.php:5964, ../includes/extra/class-settings.php:5979, ../includes/extra/class-settings.php:5994, ../includes/extra/class-settings.php:6009, ../includes/extra/class-settings.php:6025, ../includes/extra/class-settings.php:6066, ../includes/extra/class-settings.php:6097, ../includes/extra/class-settings.php:6128, ../includes/extra/class-settings.php:6144, ../includes/extra/class-settings.php:6176, ../includes/extra/class-settings.php:6210, ../includes/extra/class-settings.php:6243, ../includes/extra/class-settings.php:6264, ../includes/extra/class-settings.php:6287, ../includes/extra/class-settings.php:6307, ../includes/extra/class-settings.php:6328, ../includes/extra/class-settings.php:6344, ../includes/extra/class-settings.php:6360, ../includes/extra/class-settings.php:6380, ../includes/extra/class-settings.php:6411, ../includes/extra/class-settings.php:6446, ../includes/extra/class-settings.php:6478, ../includes/extra/class-settings.php:6510, ../includes/extra/class-settings.php:6543, ../includes/extra/class-settings.php:6559, ../includes/extra/class-settings.php:6575, ../includes/extra/class-settings.php:6591, ../includes/extra/class-settings.php:6607, ../includes/extra/class-settings.php:6624, ../includes/extra/class-settings.php:6663, ../includes/extra/class-settings.php:6679, ../includes/extra/class-settings.php:6695, ../includes/extra/class-settings.php:6711 msgctxt "Admin - Theme Options" msgid "WooCommerce" msgstr "" #: ../includes/extra/class-settings.php:3174 msgctxt "Admin - Theme Options Search" msgid "shop page" msgstr "" #: ../includes/extra/class-settings.php:3183 msgctxt "Admin - Theme Options" msgid "Set the number of columns for shop page grid." msgstr "" #: ../includes/extra/class-settings.php:3193 msgctxt "Admin - Theme Options" msgid "Shop Page Vertical Padding" msgstr "" #: ../includes/extra/class-settings.php:3194 msgctxt "Admin - Theme Options" msgid "Set the top/bottom spacing for shop page." msgstr "" #: ../includes/extra/class-settings.php:3204 msgctxt "Admin - Theme Options" msgid "Products on Page" msgstr "" #: ../includes/extra/class-settings.php:3205 msgctxt "Admin - Theme Options" msgid "Set number of products displayed on a page." msgstr "" #: ../includes/extra/class-settings.php:3207 msgctxt "Admin - Theme Options Search" msgid "products number" msgstr "" #: ../includes/extra/class-settings.php:3214 msgctxt "Admin - Theme Options" msgid "Shop Page Sidebar" msgstr "" #: ../includes/extra/class-settings.php:3215 msgctxt "Admin - Theme Options" msgid "Set the sidebar for shop page." msgstr "" #: ../includes/extra/class-settings.php:3217 msgctxt "Admin - Theme Options Search" msgid "shop page sidebar" msgstr "" #: ../includes/extra/class-settings.php:3224 msgctxt "Admin - Theme Options" msgid "Shop Page Sidebar Position" msgstr "" #: ../includes/extra/class-settings.php:3225 msgctxt "Admin - Theme Options" msgid "Set the sidebar position for shop page." msgstr "" #: ../includes/extra/class-settings.php:3227 msgctxt "Admin - Theme Options Search" msgid "shop sidebar position" msgstr "" #: ../includes/extra/class-settings.php:3235 msgctxt "Admin - Theme Options" msgid "Shop Page Sticky Sidebar" msgstr "" #: ../includes/extra/class-settings.php:3238 msgctxt "Admin - Theme Options Search" msgid "shop sidebar sticky" msgstr "" #: ../includes/extra/class-settings.php:3245 msgctxt "Admin - Theme Options" msgid "Product Page Sidebar" msgstr "" #: ../includes/extra/class-settings.php:3246 msgctxt "Admin - Theme Options" msgid "Set the sidebar for product page." msgstr "" #: ../includes/extra/class-settings.php:3248 msgctxt "Admin - Theme Options Search" msgid "product page sidebar" msgstr "" #: ../includes/extra/class-settings.php:3255 msgctxt "Admin - Theme Options" msgid "Product Page Sidebar Position" msgstr "" #: ../includes/extra/class-settings.php:3256 msgctxt "Admin - Theme Options" msgid "Set the sidebar position for product page." msgstr "" #: ../includes/extra/class-settings.php:3258 msgctxt "Admin - Theme Options Search" msgid "product sidebar position" msgstr "" #: ../includes/extra/class-settings.php:3266 msgctxt "Admin - Theme Options" msgid "Product Page Sticky Sidebar" msgstr "" #: ../includes/extra/class-settings.php:3269 msgctxt "Admin - Theme Options Search" msgid "product sidebar sticky" msgstr "" #: ../includes/extra/class-settings.php:3276 msgctxt "Admin - Theme Options" msgid "Facebook" msgstr "" #: ../includes/extra/class-settings.php:3277 msgctxt "Admin - Theme Options" msgid "Facebook page link." msgstr "" #: ../includes/extra/class-settings.php:3278, ../includes/extra/class-settings.php:3288, ../includes/extra/class-settings.php:3298, ../includes/extra/class-settings.php:3308, ../includes/extra/class-settings.php:3318, ../includes/extra/class-settings.php:3328, ../includes/extra/class-settings.php:3338, ../includes/extra/class-settings.php:3382, ../includes/extra/class-settings.php:3392, ../includes/extra/class-settings.php:3402, ../includes/extra/class-settings.php:3412, ../includes/extra/class-settings.php:3422, ../includes/extra/class-settings.php:3432, ../includes/extra/class-settings.php:3442, ../includes/extra/class-settings.php:4095, ../includes/extra/class-settings.php:4105, ../includes/extra/class-settings.php:4689 msgctxt "Admin - Theme Options" msgid "Social" msgstr "" #: ../includes/extra/class-settings.php:3279, ../includes/extra/class-settings.php:3383 msgctxt "Admin - Theme Options Search" msgid "facebook" msgstr "" #: ../includes/extra/class-settings.php:3286 msgctxt "Admin - Theme Options" msgid "X (Twitter)" msgstr "" #: ../includes/extra/class-settings.php:3287 msgctxt "Admin - Theme Options" msgid "X (Twitter) account link." msgstr "" #: ../includes/extra/class-settings.php:3289 msgctxt "Admin - Theme Options Search" msgid "twitter x" msgstr "" #: ../includes/extra/class-settings.php:3296 msgctxt "Admin - Theme Options" msgid "YouTube" msgstr "" #: ../includes/extra/class-settings.php:3297 msgctxt "Admin - Theme Options" msgid "Youtube channel link." msgstr "" #: ../includes/extra/class-settings.php:3299 msgctxt "Admin - Theme Options Search" msgid "youtube" msgstr "" #: ../includes/extra/class-settings.php:3306 msgctxt "Admin - Theme Options" msgid "Instagram" msgstr "" #: ../includes/extra/class-settings.php:3307 msgctxt "Admin - Theme Options" msgid "Instagram account link." msgstr "" #: ../includes/extra/class-settings.php:3309 msgctxt "Admin - Theme Options Search" msgid "instagram" msgstr "" #: ../includes/extra/class-settings.php:3316 msgctxt "Admin - Theme Options" msgid "LinkedIn" msgstr "" #: ../includes/extra/class-settings.php:3317 msgctxt "Admin - Theme Options" msgid "LinkedIn profile link." msgstr "" #: ../includes/extra/class-settings.php:3319 msgctxt "Admin - Theme Options Search" msgid "linkedin" msgstr "" #: ../includes/extra/class-settings.php:3326 msgctxt "Admin - Theme Options" msgid "Pinterest" msgstr "" #: ../includes/extra/class-settings.php:3327 msgctxt "Admin - Theme Options" msgid "Pinterest profile link." msgstr "" #: ../includes/extra/class-settings.php:3329, ../includes/extra/class-settings.php:3339 msgctxt "Admin - Theme Options Search" msgid "pinterest" msgstr "" #: ../includes/extra/class-settings.php:3336 msgctxt "Admin - Theme Options" msgid "Twitch" msgstr "" #: ../includes/extra/class-settings.php:3337 msgctxt "Admin - Theme Options" msgid "Twitch account link." msgstr "" #: ../includes/extra/class-settings.php:3346 msgctxt "Admin - Theme Options" msgid "Custom CSS" msgstr "" #: ../includes/extra/class-settings.php:3347 msgctxt "Admin - Theme Options" msgid "Set your custom CSS code. Loaded before </head> tag." msgstr "" #: ../includes/extra/class-settings.php:3348, ../includes/extra/class-settings.php:3358, ../includes/extra/class-settings.php:4861, ../includes/extra/class-settings.php:4872 msgctxt "Admin - Theme Options" msgid "Custom" msgstr "" #: ../includes/extra/class-settings.php:3349 msgctxt "Admin - Theme Options Search" msgid "custom css CSS" msgstr "" #: ../includes/extra/class-settings.php:3356 msgctxt "Admin - Theme Options" msgid "Custom JS" msgstr "" #: ../includes/extra/class-settings.php:3357 msgctxt "Admin - Theme Options" msgid "Set your custom JavaScript code. Loaded before </body> tag. <script> tags are automatically added." msgstr "" #: ../includes/extra/class-settings.php:3359 msgctxt "Admin - Theme Options Search" msgid "custom js JS javascript" msgstr "" #: ../includes/extra/class-settings.php:3367 msgctxt "Admin - Theme Options" msgid "Header Shadow" msgstr "" #: ../includes/extra/class-settings.php:3368 msgctxt "Admin - Theme Options" msgid "Add a box shadow on the header." msgstr "" #: ../includes/extra/class-settings.php:3380 msgctxt "Admin - Theme Options" msgid "Snapchat" msgstr "" #: ../includes/extra/class-settings.php:3381 msgctxt "Admin - Theme Options" msgid "Snapchat profile link." msgstr "" #: ../includes/extra/class-settings.php:3390 msgctxt "Admin - Theme Options" msgid "Reddit" msgstr "" #: ../includes/extra/class-settings.php:3391 msgctxt "Admin - Theme Options" msgid "Reddit profile link." msgstr "" #: ../includes/extra/class-settings.php:3393 msgctxt "Admin - Theme Options Search" msgid "reddit" msgstr "" #: ../includes/extra/class-settings.php:3400 msgctxt "Admin - Theme Options" msgid "TikTok" msgstr "" #: ../includes/extra/class-settings.php:3401 msgctxt "Admin - Theme Options" msgid "TikTok profile link." msgstr "" #: ../includes/extra/class-settings.php:3403 msgctxt "Admin - Theme Options Search" msgid "tiktok" msgstr "" #: ../includes/extra/class-settings.php:3410 msgctxt "Admin - Theme Options" msgid "Whatsapp" msgstr "" #: ../includes/extra/class-settings.php:3411 msgctxt "Admin - Theme Options" msgid "Whatsapp shortlink." msgstr "" #: ../includes/extra/class-settings.php:3413 msgctxt "Admin - Theme Options Search" msgid "whatsapp" msgstr "" #: ../includes/extra/class-settings.php:3420 msgctxt "Admin - Theme Options" msgid "Vimeo" msgstr "" #: ../includes/extra/class-settings.php:3421 msgctxt "Admin - Theme Options" msgid "Vimeo channel link." msgstr "" #: ../includes/extra/class-settings.php:3423 msgctxt "Admin - Theme Options Search" msgid "vimeo" msgstr "" #: ../includes/extra/class-settings.php:3430 msgctxt "Admin - Theme Options" msgid "WeChat" msgstr "" #: ../includes/extra/class-settings.php:3431 msgctxt "Admin - Theme Options" msgid "WeChat profile link." msgstr "" #: ../includes/extra/class-settings.php:3433 msgctxt "Admin - Theme Options Search" msgid "wechat" msgstr "" #: ../includes/extra/class-settings.php:3440 msgctxt "Admin - Theme Options" msgid "Messenger" msgstr "" #: ../includes/extra/class-settings.php:3441 msgctxt "Admin - Theme Options" msgid "Messenger username link." msgstr "" #: ../includes/extra/class-settings.php:3443 msgctxt "Admin - Theme Options Search" msgid "messenger" msgstr "" #: ../includes/extra/class-settings.php:3452 msgctxt "Admin - Theme Options" msgid "Usually a contrasting color used to draw attention to key pieces of your website." msgstr "" #: ../includes/extra/class-settings.php:3453 msgctxt "Admin - Theme Options Search" msgid "accent color" msgstr "" #: ../includes/extra/class-settings.php:3462 msgctxt "Admin - Theme Options" msgid "A dark, contrasting color, used by all headlines in your website." msgstr "" #: ../includes/extra/class-settings.php:3463 msgctxt "Admin - Theme Options Search" msgid "headline color" msgstr "" #: ../includes/extra/class-settings.php:3472 msgctxt "Admin - Theme Options" msgid "A neutral grey, easy to read color, used by all text elements." msgstr "" #: ../includes/extra/class-settings.php:3473 msgctxt "Admin - Theme Options Search" msgid "body color" msgstr "" #: ../includes/extra/class-settings.php:3482 msgctxt "Admin - Theme Options" msgid "Generally used as background color for footer, copyright and dark sections." msgstr "" #: ../includes/extra/class-settings.php:3483 msgctxt "Admin - Theme Options Search" msgid "dark neutral color" msgstr "" #: ../includes/extra/class-settings.php:3492 msgctxt "Admin - Theme Options" msgid "Generally used as background color for light, alternating sections." msgstr "" #: ../includes/extra/class-settings.php:3493 msgctxt "Admin - Theme Options Search" msgid "light neutral color" msgstr "" #: ../includes/extra/class-settings.php:3502 msgctxt "Admin - Theme Options" msgid "The main font of your website. Used by most headlines." msgstr "" #: ../includes/extra/class-settings.php:3503, ../includes/extra/class-settings.php:3513 msgctxt "Admin - Theme Options Search" msgid "primary font family" msgstr "" #: ../includes/extra/class-settings.php:3512 msgctxt "Admin - Theme Options" msgid "The secondary font of your website. Used by secondary headlines and smaller elements." msgstr "" #: ../includes/extra/class-settings.php:3522 msgctxt "Admin - Theme Options" msgid "The most readable font, used by all text elements." msgstr "" #: ../includes/extra/class-settings.php:3523 msgctxt "Admin - Theme Options Search" msgid "text font family" msgstr "" #: ../includes/extra/class-settings.php:3532 msgctxt "Admin - Theme Options" msgid "The odd one. Usually found in accent headlines." msgstr "" #: ../includes/extra/class-settings.php:3533 msgctxt "Admin - Theme Options Search" msgid "accent font family" msgstr "" #: ../includes/extra/class-settings.php:3541 msgctxt "Admin - Theme Options" msgid "Date Type" msgstr "" #: ../includes/extra/class-settings.php:3543 msgctxt "Admin - Theme Options" msgid "Choose the date display type." msgstr "" #: ../includes/extra/class-settings.php:3544 msgctxt "Admin - Theme Options Search" msgid "date type" msgstr "" #: ../includes/extra/class-settings.php:3556, ../includes/extra/class-settings.php:3567, ../includes/extra/class-settings.php:3578, ../includes/extra/class-settings.php:3589, ../includes/extra/class-settings.php:3600, ../includes/extra/class-settings.php:3611, ../includes/extra/class-settings.php:3622, ../includes/extra/class-settings.php:4375, ../includes/extra/class-settings.php:4883 msgctxt "Admin - Theme Options" msgid "Buttons" msgstr "" #: ../includes/extra/class-settings.php:3557 msgctxt "Admin - Theme Options" msgid "Set global typography options for buttons." msgstr "" #: ../includes/extra/class-settings.php:3558 msgctxt "Admin - Theme Options Search" msgid "button buttons typography" msgstr "" #: ../includes/extra/class-settings.php:3568 msgctxt "Admin - Theme Options" msgid "Set the global background colors for buttons." msgstr "" #: ../includes/extra/class-settings.php:3569 msgctxt "Admin - Theme Options Search" msgid "button buttons background color" msgstr "" #: ../includes/extra/class-settings.php:3577 msgctxt "Admin - Theme Options" msgid "Border Type" msgstr "" #: ../includes/extra/class-settings.php:3579 msgctxt "Admin - Theme Options" msgid "Set the global border type for buttons." msgstr "" #: ../includes/extra/class-settings.php:3580 msgctxt "Admin - Theme Options Search" msgid "button buttons border type" msgstr "" #: ../includes/extra/class-settings.php:3588 msgctxt "Admin - Theme Options" msgid "Border Width" msgstr "" #: ../includes/extra/class-settings.php:3590 msgctxt "Admin - Theme Options" msgid "Set the global border width for buttons." msgstr "" #: ../includes/extra/class-settings.php:3591 msgctxt "Admin - Theme Options Search" msgid "button buttons border width" msgstr "" #: ../includes/extra/class-settings.php:3601 msgctxt "Admin - Theme Options" msgid "Set the global border color for buttons." msgstr "" #: ../includes/extra/class-settings.php:3602 msgctxt "Admin - Theme Options Search" msgid "button buttons border color" msgstr "" #: ../includes/extra/class-settings.php:3612 msgctxt "Admin - Theme Options" msgid "Set the global border radius for buttons." msgstr "" #: ../includes/extra/class-settings.php:3613 msgctxt "Admin - Theme Options Search" msgid "button buttons border radius" msgstr "" #: ../includes/extra/class-settings.php:3623 msgctxt "Admin - Theme Options" msgid "Set the global padding for buttons." msgstr "" #: ../includes/extra/class-settings.php:3624 msgctxt "Admin - Theme Options Search" msgid "button buttons padding" msgstr "" #: ../includes/extra/class-settings.php:3632 msgctxt "Admin - Theme Options" msgid "Sticky on Top" msgstr "" #: ../includes/extra/class-settings.php:3634 msgctxt "Admin - Theme Options" msgid "Top Banner stays fixed on top on page scroll." msgstr "" #: ../includes/extra/class-settings.php:3635 msgctxt "Admin - Theme Options Search" msgid "top banner sticky fixed" msgstr "" #: ../includes/extra/class-settings.php:3643 msgctxt "Admin - Theme Options" msgid "Dismissable" msgstr "" #: ../includes/extra/class-settings.php:3645 msgctxt "Admin - Theme Options" msgid "Allow users to dismiss the banner using a close button." msgstr "" #: ../includes/extra/class-settings.php:3646 msgctxt "Admin - Theme Options Search" msgid "top banner dismissable" msgstr "" #: ../includes/extra/class-settings.php:3654 msgctxt "Admin - Theme Options" msgid "Token" msgstr "" #: ../includes/extra/class-settings.php:3656 msgctxt "Admin - Theme Options" msgid "Generate a new token to show the top bar again after dismissing it." msgstr "" #: ../includes/extra/class-settings.php:3657 msgctxt "Admin - Theme Options Search" msgid "top banner dismissable token" msgstr "" #: ../includes/extra/class-settings.php:3665 msgctxt "Admin - Theme Options" msgid "Enable Animations" msgstr "" #: ../includes/extra/class-settings.php:3666, ../includes/extra/class-settings.php:3677, ../includes/extra/class-settings.php:3688, ../includes/extra/class-settings.php:3699, ../includes/extra/class-settings.php:3721, ../includes/extra/class-settings.php:3732, ../includes/extra/class-settings.php:3743, ../includes/extra/class-settings.php:3787, ../includes/extra/class-settings.php:3798, ../includes/extra/class-settings.php:3809, ../includes/extra/class-settings.php:3820, ../includes/extra/class-settings.php:3831, ../includes/extra/class-settings.php:3842, ../includes/extra/class-settings.php:3853, ../includes/extra/class-settings.php:3864, ../includes/extra/class-settings.php:3875, ../includes/extra/class-settings.php:3886, ../includes/extra/class-settings.php:3897, ../includes/extra/class-settings.php:3908, ../includes/extra/class-settings.php:3919, ../includes/extra/class-settings.php:3974, ../includes/extra/class-settings.php:3985, ../includes/extra/class-settings.php:4193, ../includes/extra/class-settings.php:5093, ../includes/extra/class-settings.php:5229, ../includes/extra/class-settings.php:5239, ../includes/extra/class-settings.php:5375, ../includes/extra/class-settings.php:5385, ../includes/extra/class-settings.php:5449, ../includes/extra/class-settings.php:5465, ../includes/extra/class-settings.php:5482, ../includes/extra/class-settings.php:5498, ../includes/extra/class-settings.php:5516 msgctxt "Admin - Theme Options" msgid "Animations" msgstr "" #: ../includes/extra/class-settings.php:3667 msgctxt "Admin - Theme Options" msgid "Enable animations engine. Turning this feature off will increase your website performance in browser (client side)." msgstr "" #: ../includes/extra/class-settings.php:3668 msgctxt "Admin - Theme Options Search" msgid "animations enable" msgstr "" #: ../includes/extra/class-settings.php:3676 msgctxt "Admin - Theme Options" msgid "Animation Type" msgstr "" #: ../includes/extra/class-settings.php:3678, ../includes/extra/class-settings.php:3711, ../includes/extra/class-settings.php:3810, ../includes/extra/class-settings.php:3854, ../includes/extra/class-settings.php:3964 msgctxt "Admin - Theme Options" msgid "Set the animation style." msgstr "" #: ../includes/extra/class-settings.php:3679, ../includes/extra/class-settings.php:3712, ../includes/extra/class-settings.php:3800, ../includes/extra/class-settings.php:3811, ../includes/extra/class-settings.php:3855, ../includes/extra/class-settings.php:3899, ../includes/extra/class-settings.php:3932, ../includes/extra/class-settings.php:3965, ../includes/extra/class-settings.php:5377 msgctxt "Admin - Theme Options Search" msgid "animation type" msgstr "" #: ../includes/extra/class-settings.php:3687, ../includes/extra/class-settings.php:3720, ../includes/extra/class-settings.php:3819, ../includes/extra/class-settings.php:3863, ../includes/extra/class-settings.php:3907, ../includes/extra/class-settings.php:3940, ../includes/extra/class-settings.php:3973 msgctxt "Admin - Theme Options" msgid "Animation Duration" msgstr "" #: ../includes/extra/class-settings.php:3689, ../includes/extra/class-settings.php:3722, ../includes/extra/class-settings.php:3766, ../includes/extra/class-settings.php:3821, ../includes/extra/class-settings.php:3865, ../includes/extra/class-settings.php:3909, ../includes/extra/class-settings.php:3942, ../includes/extra/class-settings.php:3975, ../includes/extra/class-settings.php:5386 msgctxt "Admin - Theme Options" msgid "Set the animation speed." msgstr "" #: ../includes/extra/class-settings.php:3690, ../includes/extra/class-settings.php:3723, ../includes/extra/class-settings.php:3767, ../includes/extra/class-settings.php:3822, ../includes/extra/class-settings.php:3866, ../includes/extra/class-settings.php:3910, ../includes/extra/class-settings.php:3943, ../includes/extra/class-settings.php:3976, ../includes/extra/class-settings.php:5387, ../includes/extra/class-settings.php:5397 msgctxt "Admin - Theme Options Search" msgid "animation duration" msgstr "" #: ../includes/extra/class-settings.php:3698 msgctxt "Admin - Theme Options" msgid "Reveal Background Color" msgstr "" #: ../includes/extra/class-settings.php:3700 msgctxt "Admin - Theme Options" msgid "Set the background color for reveal animation." msgstr "" #: ../includes/extra/class-settings.php:3701 msgctxt "Admin - Theme Options Search" msgid "animation reveal background color" msgstr "" #: ../includes/extra/class-settings.php:3709, ../includes/extra/class-settings.php:3753, ../includes/extra/class-settings.php:3808, ../includes/extra/class-settings.php:3852, ../includes/extra/class-settings.php:3896, ../includes/extra/class-settings.php:3929, ../includes/extra/class-settings.php:3962 msgctxt "Admin - Theme Options" msgid "Entrance Animation Type" msgstr "" #: ../includes/extra/class-settings.php:3731, ../includes/extra/class-settings.php:3775, ../includes/extra/class-settings.php:3830, ../includes/extra/class-settings.php:3874 msgctxt "Admin - Theme Options" msgid "Animation Delay" msgstr "" #: ../includes/extra/class-settings.php:3733, ../includes/extra/class-settings.php:3777, ../includes/extra/class-settings.php:3832, ../includes/extra/class-settings.php:3876 msgctxt "Admin - Theme Options" msgid "Set the time before animation starts loading." msgstr "" #: ../includes/extra/class-settings.php:3734, ../includes/extra/class-settings.php:3778, ../includes/extra/class-settings.php:3833, ../includes/extra/class-settings.php:3877 msgctxt "Admin - Theme Options Search" msgid "animation delay" msgstr "" #: ../includes/extra/class-settings.php:3742, ../includes/extra/class-settings.php:3786, ../includes/extra/class-settings.php:3841, ../includes/extra/class-settings.php:3885, ../includes/extra/class-settings.php:3918, ../includes/extra/class-settings.php:3951, ../includes/extra/class-settings.php:3984 msgctxt "Admin - Theme Options" msgid "Delay Between Elements" msgstr "" #: ../includes/extra/class-settings.php:3744 msgctxt "Admin - Theme Options" msgid "Set the animation delay between elements inside top banner." msgstr "" #: ../includes/extra/class-settings.php:3745, ../includes/extra/class-settings.php:3789, ../includes/extra/class-settings.php:3844, ../includes/extra/class-settings.php:3888, ../includes/extra/class-settings.php:3921, ../includes/extra/class-settings.php:3954, ../includes/extra/class-settings.php:3987 msgctxt "Admin - Theme Options Search" msgid "animation delay elements" msgstr "" #: ../includes/extra/class-settings.php:3755 msgctxt "Admin - Theme Options" msgid "Set the animation style for desktop menu." msgstr "" #: ../includes/extra/class-settings.php:3756 msgctxt "Admin - Theme Options Search" msgid "dektop menu animation type" msgstr "" #: ../includes/extra/class-settings.php:3764 msgctxt "Admin - Theme Options" msgid "Items Animation Duration" msgstr "" #: ../includes/extra/class-settings.php:3788 msgctxt "Admin - Theme Options" msgid "Set the animation delay between elements inside the header." msgstr "" #: ../includes/extra/class-settings.php:3797 msgctxt "Admin - Theme Options" msgid "Mobile Menu Entrance Animation" msgstr "" #: ../includes/extra/class-settings.php:3799 msgctxt "Admin - Theme Options" msgid "Set the animation style for mobile menu." msgstr "" #: ../includes/extra/class-settings.php:3843 msgctxt "Admin - Theme Options" msgid "Set the animation delay between elements inside page title." msgstr "" #: ../includes/extra/class-settings.php:3887 msgctxt "Admin - Theme Options" msgid "Set the animation delay between elements inside the footer." msgstr "" #: ../includes/extra/class-settings.php:3898 msgctxt "Admin - Theme Options" msgid "Set the animation style for blog grid." msgstr "" #: ../includes/extra/class-settings.php:3920 msgctxt "Admin - Theme Options" msgid "Set the animation delay between elements inside the blog grid." msgstr "" #: ../includes/extra/class-settings.php:3931 msgctxt "Admin - Theme Options" msgid "Set the animation style for portfolio grid." msgstr "" #: ../includes/extra/class-settings.php:3953 msgctxt "Admin - Theme Options" msgid "Set the animation delay between elements inside the portfolio grid." msgstr "" #: ../includes/extra/class-settings.php:3986 msgctxt "Admin - Theme Options" msgid "Set the animation delay between elements inside the shop grid." msgstr "" #: ../includes/extra/class-settings.php:3995 msgctxt "Admin - Theme Options" msgid "Project ID" msgstr "" #: ../includes/extra/class-settings.php:3996 msgctxt "Admin - Theme Options" msgid "Global Fonts" msgstr "" #: ../includes/extra/class-settings.php:3997 msgctxt "Admin - Theme Options" msgid "Set your Adobe TypeKit project ID." msgstr "" #: ../includes/extra/class-settings.php:3998 msgctxt "Admin - Theme Options Search" msgid "typekit adobe font" msgstr "" #: ../includes/extra/class-settings.php:4006 msgctxt "Admin - Theme Options" msgid "Blurred Background (Glassmorphism)" msgstr "" #: ../includes/extra/class-settings.php:4008 msgctxt "Admin - Theme Options" msgid "Blur background behind header. Active only if a transparent color is set as background." msgstr "" #: ../includes/extra/class-settings.php:4009 msgctxt "Admin - Theme Options Search" msgid "header background blur" msgstr "" #: ../includes/extra/class-settings.php:4017 msgctxt "Admin - Theme Options" msgid "Hamburger Icon Color" msgstr "" #: ../includes/extra/class-settings.php:4019 msgctxt "Admin - Theme Options" msgid "Set the normal and hover colors for menu hamburger icon." msgstr "" #: ../includes/extra/class-settings.php:4020 msgctxt "Admin - Theme Options Search" msgid "header hamburger icon color" msgstr "" #: ../includes/extra/class-settings.php:4028 msgctxt "Admin - Theme Options" msgid "Full Screen Menu Logo" msgstr "" #: ../includes/extra/class-settings.php:4030 msgctxt "Admin - Theme Options" msgid "Select the logo you want to show inside the full screen menu (Hamburger Header)." msgstr "" #: ../includes/extra/class-settings.php:4031 msgctxt "Admin - Theme Options Search" msgid "header hamburger logo" msgstr "" #: ../includes/extra/class-settings.php:4039 msgctxt "Admin - Theme Options" msgid "Focus Hover Item" msgstr "" #: ../includes/extra/class-settings.php:4041 msgctxt "Admin - Theme Options" msgid "Keeps the hover item in focus by decreasing opacity on the other items." msgstr "" #: ../includes/extra/class-settings.php:4042 msgctxt "Admin - Theme Options Search" msgid "header item focus" msgstr "" #: ../includes/extra/class-settings.php:4050 msgctxt "Admin - Theme Options" msgid "Full Screen Menu Background" msgstr "" #: ../includes/extra/class-settings.php:4052 msgctxt "Admin - Theme Options" msgid "Set the background for full screen menu (Hamburger Header)." msgstr "" #: ../includes/extra/class-settings.php:4053 msgctxt "Admin - Theme Options Search" msgid "header menu background" msgstr "" #: ../includes/extra/class-settings.php:4061 msgctxt "Admin - Theme Options" msgid "Highlight Current Page" msgstr "" #: ../includes/extra/class-settings.php:4063 msgctxt "Admin - Theme Options" msgid "Uses menu hover color to highlight current page menu item." msgstr "" #: ../includes/extra/class-settings.php:4064 msgctxt "Admin - Theme Options Search" msgid "header current page highlight" msgstr "" #: ../includes/extra/class-settings.php:4072 msgctxt "Admin - Theme Options" msgid "Item Style" msgstr "" #: ../includes/extra/class-settings.php:4074 msgctxt "Admin - Theme Options" msgid "Set the grid item style." msgstr "" #: ../includes/extra/class-settings.php:4075 msgctxt "Admin - Theme Options Search" msgid "blog grid item style" msgstr "" #: ../includes/extra/class-settings.php:4083 msgctxt "Admin - Theme Options" msgid "Post Navigation" msgstr "" #: ../includes/extra/class-settings.php:4085 msgctxt "Admin - Theme Options" msgid "Enable next / previous navigation at the end of the post." msgstr "" #: ../includes/extra/class-settings.php:4086 msgctxt "Admin - Theme Options Search" msgid "blog post navigation" msgstr "" #: ../includes/extra/class-settings.php:4093 msgctxt "Admin - Theme Options" msgid "Discord" msgstr "" #: ../includes/extra/class-settings.php:4094 msgctxt "Admin - Theme Options" msgid "Discord channel link." msgstr "" #: ../includes/extra/class-settings.php:4096 msgctxt "Admin - Theme Options Search" msgid "discord" msgstr "" #: ../includes/extra/class-settings.php:4103 msgctxt "Admin - Theme Options" msgid "Telegram" msgstr "" #: ../includes/extra/class-settings.php:4104 msgctxt "Admin - Theme Options" msgid "Telegram link." msgstr "" #: ../includes/extra/class-settings.php:4106 msgctxt "Admin - Theme Options Search" msgid "telegram" msgstr "" #: ../includes/extra/class-settings.php:4113 msgctxt "Admin - Theme Options" msgid "Emoji Script" msgstr "" #: ../includes/extra/class-settings.php:4114 msgctxt "Admin - Theme Options" msgid "Turn off to disable the Emoji script (wp-emoji-release.min.js)." msgstr "" #: ../includes/extra/class-settings.php:4115, ../includes/extra/class-settings.php:4125, ../includes/extra/class-settings.php:4135, ../includes/extra/class-settings.php:4145, ../includes/extra/class-settings.php:4155, ../includes/extra/class-settings.php:4165, ../includes/extra/class-settings.php:4175, ../includes/extra/class-settings.php:4185, ../includes/extra/class-settings.php:4195, ../includes/extra/class-settings.php:4205, ../includes/extra/class-settings.php:4215, ../includes/extra/class-settings.php:4225, ../includes/extra/class-settings.php:4235, ../includes/extra/class-settings.php:4245 msgctxt "Admin - Theme Options" msgid "Performance" msgstr "" #: ../includes/extra/class-settings.php:4116 msgctxt "Admin - Theme Options Search" msgid "emoji" msgstr "" #: ../includes/extra/class-settings.php:4123 msgctxt "Admin - Theme Options" msgid "Elementor Icons (eicon)" msgstr "" #: ../includes/extra/class-settings.php:4124 msgctxt "Admin - Theme Options" msgid "Turn off to disable the default Elementor icon pack." msgstr "" #: ../includes/extra/class-settings.php:4126 msgctxt "Admin - Theme Options Search" msgid "eicon icon elementor" msgstr "" #: ../includes/extra/class-settings.php:4133 msgctxt "Admin - Theme Options" msgid "Font Awesome (fa)" msgstr "" #: ../includes/extra/class-settings.php:4134 msgctxt "Admin - Theme Options" msgid "Turn off to disable Font Awesome icon pack." msgstr "" #: ../includes/extra/class-settings.php:4136 msgctxt "Admin - Theme Options Search" msgid "font awesome fa" msgstr "" #: ../includes/extra/class-settings.php:4143 msgctxt "Admin - Theme Options" msgid "Default WP Block Styles" msgstr "" #: ../includes/extra/class-settings.php:4144 msgctxt "Admin - Theme Options" msgid "Turn off to disable the default styles from Gutenberg block library." msgstr "" #: ../includes/extra/class-settings.php:4146 msgctxt "Admin - Theme Options Search" msgid "block styles" msgstr "" #: ../includes/extra/class-settings.php:4154 msgctxt "Admin - Theme Options" msgid "Turn off to disable top banner." msgstr "" #: ../includes/extra/class-settings.php:4164 msgctxt "Admin - Theme Options" msgid "Turn off to disable header globally." msgstr "" #: ../includes/extra/class-settings.php:4166 msgctxt "Admin - Theme Options Search" msgid "header" msgstr "" #: ../includes/extra/class-settings.php:4174 msgctxt "Admin - Theme Options" msgid "Turn off to disable footer globally." msgstr "" #: ../includes/extra/class-settings.php:4176 msgctxt "Admin - Theme Options Search" msgid "footer" msgstr "" #: ../includes/extra/class-settings.php:4183 msgctxt "Admin - Theme Options" msgid "Copyright Bar" msgstr "" #: ../includes/extra/class-settings.php:4184 msgctxt "Admin - Theme Options" msgid "Turn off to disable copyright bar globally." msgstr "" #: ../includes/extra/class-settings.php:4186 msgctxt "Admin - Theme Options Search" msgid "copright" msgstr "" #: ../includes/extra/class-settings.php:4194 msgctxt "Admin - Theme Options" msgid "Turn off to disable all animations." msgstr "" #: ../includes/extra/class-settings.php:4196 msgctxt "Admin - Theme Options Search" msgid "animations" msgstr "" #: ../includes/extra/class-settings.php:4203 msgctxt "Admin - Theme Options" msgid "Smart Preload" msgstr "" #: ../includes/extra/class-settings.php:4204 msgctxt "Admin - Theme Options" msgid "Turn on to enable smart preloading of inner pages." msgstr "" #: ../includes/extra/class-settings.php:4206 msgctxt "Admin - Theme Options Search" msgid "smart preload" msgstr "" #: ../includes/extra/class-settings.php:4213 msgctxt "Admin - Theme Options" msgid "WP Embed" msgstr "" #: ../includes/extra/class-settings.php:4214 msgctxt "Admin - Theme Options" msgid "Turn off to disable WP Embed Script (wp-embed.min.js)." msgstr "" #: ../includes/extra/class-settings.php:4216 msgctxt "Admin - Theme Options Search" msgid "wp embed" msgstr "" #: ../includes/extra/class-settings.php:4223 msgctxt "Admin - Theme Options" msgid "Widgets" msgstr "" #: ../includes/extra/class-settings.php:4224 msgctxt "Admin - Theme Options" msgid "Turn off to disable sidebar and widgets styles." msgstr "" #: ../includes/extra/class-settings.php:4226 msgctxt "Admin - Theme Options Search" msgid "widgets sidebar" msgstr "" #: ../includes/extra/class-settings.php:4233 msgctxt "Admin - Theme Options" msgid "All Font Styles" msgstr "" #: ../includes/extra/class-settings.php:4234 msgctxt "Admin - Theme Options" msgid "Turn off to load only used font styles. If left on, all font styles will be loaded instead." msgstr "" #: ../includes/extra/class-settings.php:4236 msgctxt "Admin - Theme Options Search" msgid "font styles" msgstr "" #: ../includes/extra/class-settings.php:4243 msgctxt "Admin - Theme Options" msgid "Preload Featured Images" msgstr "" #: ../includes/extra/class-settings.php:4244 msgctxt "Admin - Theme Options" msgid "Turn on to preload page title featured image." msgstr "" #: ../includes/extra/class-settings.php:4246 msgctxt "Admin - Theme Options Search" msgid "preload featured image" msgstr "" #: ../includes/extra/class-settings.php:4255 msgctxt "Admin - Theme Options" msgid "Select theme skin for Top Banner." msgstr "" #: ../includes/extra/class-settings.php:4256, ../includes/extra/class-settings.php:4267, ../includes/extra/class-settings.php:4278, ../includes/extra/class-settings.php:4289, ../includes/extra/class-settings.php:4300, ../includes/extra/class-settings.php:4311, ../includes/extra/class-settings.php:4322, ../includes/extra/class-settings.php:4333, ../includes/extra/class-settings.php:4344, ../includes/extra/class-settings.php:4355, ../includes/extra/class-settings.php:4366, ../includes/extra/class-settings.php:4377 msgctxt "Admin - Theme Options" msgid "Theme Skin" msgstr "" #: ../includes/extra/class-settings.php:4257 msgctxt "Admin - Theme Options Search" msgid "skin top banner" msgstr "" #: ../includes/extra/class-settings.php:4265, ../includes/extra/class-settings.php:5149 msgctxt "Admin - Theme Options" msgid "Menu" msgstr "" #: ../includes/extra/class-settings.php:4266 msgctxt "Admin - Theme Options" msgid "Select theme skin for main menu." msgstr "" #: ../includes/extra/class-settings.php:4268 msgctxt "Admin - Theme Options Search" msgid "skin menu" msgstr "" #: ../includes/extra/class-settings.php:4276 msgctxt "Admin - Theme Options" msgid "Mobile Menu" msgstr "" #: ../includes/extra/class-settings.php:4277 msgctxt "Admin - Theme Options" msgid "Select theme skin for mobile menu." msgstr "" #: ../includes/extra/class-settings.php:4279 msgctxt "Admin - Theme Options Search" msgid "skin mobile menu" msgstr "" #: ../includes/extra/class-settings.php:4288 msgctxt "Admin - Theme Options" msgid "Select theme skin for page title." msgstr "" #: ../includes/extra/class-settings.php:4290 msgctxt "Admin - Theme Options Search" msgid "skin page title" msgstr "" #: ../includes/extra/class-settings.php:4298 msgctxt "Admin - Theme Options" msgid "Sidebars" msgstr "" #: ../includes/extra/class-settings.php:4299 msgctxt "Admin - Theme Options" msgid "Select theme skin for sidebars." msgstr "" #: ../includes/extra/class-settings.php:4301 msgctxt "Admin - Theme Options Search" msgid "skin sidebars" msgstr "" #: ../includes/extra/class-settings.php:4310 msgctxt "Admin - Theme Options" msgid "Select theme skin for footer." msgstr "" #: ../includes/extra/class-settings.php:4312 msgctxt "Admin - Theme Options Search" msgid "skin footer" msgstr "" #: ../includes/extra/class-settings.php:4321 msgctxt "Admin - Theme Options" msgid "Select theme skin for blog." msgstr "" #: ../includes/extra/class-settings.php:4323 msgctxt "Admin - Theme Options Search" msgid "skin blog" msgstr "" #: ../includes/extra/class-settings.php:4332 msgctxt "Admin - Theme Options" msgid "Select theme skin for portfolio." msgstr "" #: ../includes/extra/class-settings.php:4334 msgctxt "Admin - Theme Options Search" msgid "skin portfolio" msgstr "" #: ../includes/extra/class-settings.php:4342 msgctxt "Admin - Theme Options" msgid "Hamburger Icon" msgstr "" #: ../includes/extra/class-settings.php:4343 msgctxt "Admin - Theme Options" msgid "Select theme skin for menu hamburger icon." msgstr "" #: ../includes/extra/class-settings.php:4345 msgctxt "Admin - Theme Options Search" msgid "skin hamburger icon" msgstr "" #: ../includes/extra/class-settings.php:4354 msgctxt "Admin - Theme Options" msgid "Select theme skin for back to top button." msgstr "" #: ../includes/extra/class-settings.php:4356 msgctxt "Admin - Theme Options Search" msgid "skin back to top" msgstr "" #: ../includes/extra/class-settings.php:4364 msgctxt "Admin - Theme Options" msgid "Links" msgstr "" #: ../includes/extra/class-settings.php:4365 msgctxt "Admin - Theme Options" msgid "Select theme skin for links." msgstr "" #: ../includes/extra/class-settings.php:4367 msgctxt "Admin - Theme Options Search" msgid "skin links" msgstr "" #: ../includes/extra/class-settings.php:4376 msgctxt "Admin - Theme Options" msgid "Select theme skin for buttons." msgstr "" #: ../includes/extra/class-settings.php:4378 msgctxt "Admin - Theme Options Search" msgid "skin buttons" msgstr "" #: ../includes/extra/class-settings.php:4386 msgctxt "Admin - Theme Options" msgid "Enable Admin Customizer" msgstr "" #: ../includes/extra/class-settings.php:4387 msgctxt "Admin - Theme Options" msgid "Use this feature to customize WP admin and theme options panel." msgstr "" #: ../includes/extra/class-settings.php:4388, ../includes/extra/class-settings.php:4399, ../includes/extra/class-settings.php:4410, ../includes/extra/class-settings.php:4421, ../includes/extra/class-settings.php:4432, ../includes/extra/class-settings.php:4443, ../includes/extra/class-settings.php:4454, ../includes/extra/class-settings.php:4465, ../includes/extra/class-settings.php:4476, ../includes/extra/class-settings.php:4487, ../includes/extra/class-settings.php:4498, ../includes/extra/class-settings.php:4509, ../includes/extra/class-settings.php:4520, ../includes/extra/class-settings.php:4531, ../includes/extra/class-settings.php:4542, ../includes/extra/class-settings.php:4553, ../includes/extra/class-settings.php:4564, ../includes/extra/class-settings.php:4575, ../includes/extra/class-settings.php:4586, ../includes/extra/class-settings.php:4597, ../includes/extra/class-settings.php:4784, ../includes/extra/class-settings.php:4795, ../includes/extra/class-settings.php:4806, ../includes/extra/class-settings.php:4817, ../includes/extra/class-settings.php:4828, ../includes/extra/class-settings.php:4839, ../includes/extra/class-settings.php:4850, ../includes/extra/class-settings.php:5209, ../includes/extra/class-settings.php:6727 msgctxt "Admin - Theme Options" msgid "Admin Customizer" msgstr "" #: ../includes/extra/class-settings.php:4389 msgctxt "Admin - Theme Options Search" msgid "admin customizer enable" msgstr "" #: ../includes/extra/class-settings.php:4397 msgctxt "Admin - Theme Options" msgid "Theme Name" msgstr "" #: ../includes/extra/class-settings.php:4398 msgctxt "Admin - Theme Options" msgid "Change theme name in WP dashboard." msgstr "" #: ../includes/extra/class-settings.php:4400 msgctxt "Admin - Theme Options Search" msgid "admin customizer theme name" msgstr "" #: ../includes/extra/class-settings.php:4408 msgctxt "Admin - Theme Options" msgid "Theme Icon" msgstr "" #: ../includes/extra/class-settings.php:4409 msgctxt "Admin - Theme Options" msgid "Change theme icon in WP dashboard." msgstr "" #: ../includes/extra/class-settings.php:4411 msgctxt "Admin - Theme Options Search" msgid "admin customizer theme icon" msgstr "" #: ../includes/extra/class-settings.php:4419 msgctxt "Admin - Theme Options" msgid "Theme Logo" msgstr "" #: ../includes/extra/class-settings.php:4420 msgctxt "Admin - Theme Options" msgid "Change logo in theme options (top left)." msgstr "" #: ../includes/extra/class-settings.php:4422 msgctxt "Admin - Theme Options Search" msgid "admin customizer theme logo" msgstr "" #: ../includes/extra/class-settings.php:4430 msgctxt "Admin - Theme Options" msgid "Panel Main Color" msgstr "" #: ../includes/extra/class-settings.php:4431 msgctxt "Admin - Theme Options" msgid "Change main color in theme options panel." msgstr "" #: ../includes/extra/class-settings.php:4433 msgctxt "Admin - Theme Options Search" msgid "admin customizer theme color" msgstr "" #: ../includes/extra/class-settings.php:4441 msgctxt "Admin - Theme Options" msgid "Dashboard Content" msgstr "" #: ../includes/extra/class-settings.php:4442 msgctxt "Admin - Theme Options" msgid "Change content in dashboard tab. HTML is allowed." msgstr "" #: ../includes/extra/class-settings.php:4444 msgctxt "Admin - Theme Options Search" msgid "admin customizer dashboard content" msgstr "" #: ../includes/extra/class-settings.php:4452 msgctxt "Admin - Theme Options" msgid "Disable Documentation Icon" msgstr "" #: ../includes/extra/class-settings.php:4453 msgctxt "Admin - Theme Options" msgid "Hide the documentation icon on top right." msgstr "" #: ../includes/extra/class-settings.php:4455 msgctxt "Admin - Theme Options Search" msgid "admin customizer documentation icon" msgstr "" #: ../includes/extra/class-settings.php:4463 msgctxt "Admin - Theme Options" msgid "Disable Demo Import" msgstr "" #: ../includes/extra/class-settings.php:4464 msgctxt "Admin - Theme Options" msgid "Hide the demo import tab." msgstr "" #: ../includes/extra/class-settings.php:4466 msgctxt "Admin - Theme Options Search" msgid "admin customizer demo import" msgstr "" #: ../includes/extra/class-settings.php:4474 msgctxt "Admin - Theme Options" msgid "Disable Performance Manager" msgstr "" #: ../includes/extra/class-settings.php:4475 msgctxt "Admin - Theme Options" msgid "Hide the performance tab." msgstr "" #: ../includes/extra/class-settings.php:4477 msgctxt "Admin - Theme Options Search" msgid "admin customizer performance" msgstr "" #: ../includes/extra/class-settings.php:4485 msgctxt "Admin - Theme Options" msgid "Disable Plugins Manager" msgstr "" #: ../includes/extra/class-settings.php:4486 msgctxt "Admin - Theme Options" msgid "Hide the plugins tab." msgstr "" #: ../includes/extra/class-settings.php:4488 msgctxt "Admin - Theme Options Search" msgid "admin customizer plugins" msgstr "" #: ../includes/extra/class-settings.php:4496 msgctxt "Admin - Theme Options" msgid "Disable Updates" msgstr "" #: ../includes/extra/class-settings.php:4497 msgctxt "Admin - Theme Options" msgid "Hide the updates tab." msgstr "" #: ../includes/extra/class-settings.php:4499, ../includes/extra/class-settings.php:4510 msgctxt "Admin - Theme Options Search" msgid "admin customizer updates" msgstr "" #: ../includes/extra/class-settings.php:4507 msgctxt "Admin - Theme Options" msgid "Disable Settings Reset" msgstr "" #: ../includes/extra/class-settings.php:4508 msgctxt "Admin - Theme Options" msgid "Hide the Reset Settings button in System tab." msgstr "" #: ../includes/extra/class-settings.php:4518 msgctxt "Admin - Theme Options" msgid "Allow Advanced Settings" msgstr "" #: ../includes/extra/class-settings.php:4519 msgctxt "Admin - Theme Options" msgid "Turn off to hide advanced settings (marked with a colored dot)." msgstr "" #: ../includes/extra/class-settings.php:4521 msgctxt "Admin - Theme Options Search" msgid "admin customizer advanced settings" msgstr "" #: ../includes/extra/class-settings.php:4529 msgctxt "Admin - Theme Options" msgid "Login Background" msgstr "" #: ../includes/extra/class-settings.php:4530 msgctxt "Admin - Theme Options" msgid "Change the login screen background color." msgstr "" #: ../includes/extra/class-settings.php:4532 msgctxt "Admin - Theme Options Search" msgid "admin customizer login background" msgstr "" #: ../includes/extra/class-settings.php:4540 msgctxt "Admin - Theme Options" msgid "Login Form Background" msgstr "" #: ../includes/extra/class-settings.php:4541 msgctxt "Admin - Theme Options" msgid "Change the login form background color." msgstr "" #: ../includes/extra/class-settings.php:4543 msgctxt "Admin - Theme Options Search" msgid "admin customizer login form background" msgstr "" #: ../includes/extra/class-settings.php:4551 msgctxt "Admin - Theme Options" msgid "Login Form Text Color" msgstr "" #: ../includes/extra/class-settings.php:4552 msgctxt "Admin - Theme Options" msgid "Change the login form text color." msgstr "" #: ../includes/extra/class-settings.php:4554 msgctxt "Admin - Theme Options Search" msgid "admin customizer login text color" msgstr "" #: ../includes/extra/class-settings.php:4562 msgctxt "Admin - Theme Options" msgid "Login Primary Color" msgstr "" #: ../includes/extra/class-settings.php:4563 msgctxt "Admin - Theme Options" msgid "Change the login screen primary color." msgstr "" #: ../includes/extra/class-settings.php:4565 msgctxt "Admin - Theme Options Search" msgid "admin customizer login primary color" msgstr "" #: ../includes/extra/class-settings.php:4573 msgctxt "Admin - Theme Options" msgid "Login Screen Logo" msgstr "" #: ../includes/extra/class-settings.php:4574 msgctxt "Admin - Theme Options" msgid "Change the login screen logo (replaces WordPress logo)." msgstr "" #: ../includes/extra/class-settings.php:4576 msgctxt "Admin - Theme Options Search" msgid "admin customizer login logo" msgstr "" #: ../includes/extra/class-settings.php:4584 msgctxt "Admin - Theme Options" msgid "Login Screen Logo Height" msgstr "" #: ../includes/extra/class-settings.php:4585 msgctxt "Admin - Theme Options" msgid "Set the custom login screen logo height." msgstr "" #: ../includes/extra/class-settings.php:4587 msgctxt "Admin - Theme Options Search" msgid "admin customizer login logo height" msgstr "" #: ../includes/extra/class-settings.php:4595 msgctxt "Admin - Theme Options" msgid "Login Screen Text Color" msgstr "" #: ../includes/extra/class-settings.php:4596 msgctxt "Admin - Theme Options" msgid "Change the login screen text color." msgstr "" #: ../includes/extra/class-settings.php:4598 msgctxt "Admin - Theme Options Search" msgid "admin customizer text color" msgstr "" #: ../includes/extra/class-settings.php:4609 msgctxt "Admin - Theme Options Search" msgid "smart sticky" msgstr "" #: ../includes/extra/class-settings.php:4620 msgctxt "Admin - Theme Options" msgid "Header Bottom Area padding" msgstr "" #: ../includes/extra/class-settings.php:4621 msgctxt "Admin - Theme Options" msgid "Set top/bottom spacing for header bottom area bar." msgstr "" #: ../includes/extra/class-settings.php:4623 msgctxt "Admin - Theme Options Search" msgid "header bottom padding" msgstr "" #: ../includes/extra/class-settings.php:4634 msgctxt "Admin - Theme Options" msgid "Side Drawer" msgstr "" #: ../includes/extra/class-settings.php:4635 msgctxt "Admin - Theme Options" msgid "Add a side drawer toggle in the header." msgstr "" #: ../includes/extra/class-settings.php:4637 msgctxt "Admin - Theme Options Search" msgid "side drawer" msgstr "" #: ../includes/extra/class-settings.php:4645 msgctxt "Admin - Theme Options" msgid "Side Drawer Text" msgstr "" #: ../includes/extra/class-settings.php:4646 msgctxt "Admin - Theme Options" msgid "Set the side drawer toggle text." msgstr "" #: ../includes/extra/class-settings.php:4648 msgctxt "Admin - Theme Options Search" msgid "side drawer text" msgstr "" #: ../includes/extra/class-settings.php:4659 msgctxt "Admin - Theme Options" msgid "Side Drawer Toggle" msgstr "" #: ../includes/extra/class-settings.php:4660 msgctxt "Admin - Theme Options" msgid "Set the side drawer open action." msgstr "" #: ../includes/extra/class-settings.php:4662 msgctxt "Admin - Theme Options Search" msgid "side drawer toggle" msgstr "" #: ../includes/extra/class-settings.php:4673 msgctxt "Admin - Theme Options" msgid "Side Drawer Position" msgstr "" #: ../includes/extra/class-settings.php:4674 msgctxt "Admin - Theme Options" msgid "Set the side drawer position." msgstr "" #: ../includes/extra/class-settings.php:4676 msgctxt "Admin - Theme Options Search" msgid "side drawer position" msgstr "" #: ../includes/extra/class-settings.php:4687 msgctxt "Admin - Theme Options" msgid "OpenSea" msgstr "" #: ../includes/extra/class-settings.php:4688 msgctxt "Admin - Theme Options" msgid "OpenSea link." msgstr "" #: ../includes/extra/class-settings.php:4690 msgctxt "Admin - Theme Options Search" msgid "open sea, opensea" msgstr "" #: ../includes/extra/class-settings.php:4698 msgctxt "Admin - Theme Options" msgid "Show Breadcrumbs" msgstr "" #: ../includes/extra/class-settings.php:4699 msgctxt "Admin - Theme Options" msgid "Display the breadcrumbs just before the post title." msgstr "" #: ../includes/extra/class-settings.php:4701 msgctxt "Admin - Theme Options Search" msgid "blog page title breadcrumb" msgstr "" #: ../includes/extra/class-settings.php:4711 msgctxt "Admin - Theme Options" msgid "Author Box" msgstr "" #: ../includes/extra/class-settings.php:4713 msgctxt "Admin - Theme Options" msgid "Add the author info at the end of the post." msgstr "" #: ../includes/extra/class-settings.php:4714 msgctxt "Admin - Theme Options Search" msgid "blog post author box info" msgstr "" #: ../includes/extra/class-settings.php:4722 msgctxt "Admin - Theme Options" msgid "Author Box Style" msgstr "" #: ../includes/extra/class-settings.php:4724 msgctxt "Admin - Theme Options" msgid "Set the author box style." msgstr "" #: ../includes/extra/class-settings.php:4725 msgctxt "Admin - Theme Options Search" msgid "blog post author box style" msgstr "" #: ../includes/extra/class-settings.php:4735 msgctxt "Admin - Theme Options" msgid "Related Posts" msgstr "" #: ../includes/extra/class-settings.php:4737 msgctxt "Admin - Theme Options" msgid "Show related posts at the end of the post." msgstr "" #: ../includes/extra/class-settings.php:4738 msgctxt "Admin - Theme Options Search" msgid "blog post related" msgstr "" #: ../includes/extra/class-settings.php:4746 msgctxt "Admin - Theme Options" msgid "Related Posts Filter" msgstr "" #: ../includes/extra/class-settings.php:4748 msgctxt "Admin - Theme Options" msgid "Show related posts based on:" msgstr "" #: ../includes/extra/class-settings.php:4749 msgctxt "Admin - Theme Options Search" msgid "blog post related filter" msgstr "" #: ../includes/extra/class-settings.php:4759 msgctxt "Admin - Theme Options" msgid "Related Posts Style" msgstr "" #: ../includes/extra/class-settings.php:4761 msgctxt "Admin - Theme Options" msgid "Set the related posts display style." msgstr "" #: ../includes/extra/class-settings.php:4762 msgctxt "Admin - Theme Options Search" msgid "blog post related style" msgstr "" #: ../includes/extra/class-settings.php:4773 msgctxt "Admin - Theme Options" msgid "Generally used as background for white sections." msgstr "" #: ../includes/extra/class-settings.php:4774 msgctxt "Admin - Theme Options Search" msgid "white color" msgstr "" #: ../includes/extra/class-settings.php:4782 msgctxt "Admin - Theme Options" msgid "Disable Blog" msgstr "" #: ../includes/extra/class-settings.php:4783 msgctxt "Admin - Theme Options" msgid "Disable blog functionality." msgstr "" #: ../includes/extra/class-settings.php:4785 msgctxt "Admin - Theme Options Search" msgid "admin customizer blog" msgstr "" #: ../includes/extra/class-settings.php:4793 msgctxt "Admin - Theme Options" msgid "Disable Portfolio" msgstr "" #: ../includes/extra/class-settings.php:4794 msgctxt "Admin - Theme Options" msgid "Disable portfolio functionality." msgstr "" #: ../includes/extra/class-settings.php:4796 msgctxt "Admin - Theme Options Search" msgid "admin customizer portfolio" msgstr "" #: ../includes/extra/class-settings.php:4804 msgctxt "Admin - Theme Options" msgid "Disable WooComerce" msgstr "" #: ../includes/extra/class-settings.php:4805 msgctxt "Admin - Theme Options" msgid "Disable WooCommerce functionality." msgstr "" #: ../includes/extra/class-settings.php:4807 msgctxt "Admin - Theme Options Search" msgid "admin customizer woocommerce" msgstr "" #: ../includes/extra/class-settings.php:4815 msgctxt "Admin - Theme Options" msgid "Disable Theme Builder" msgstr "" #: ../includes/extra/class-settings.php:4816 msgctxt "Admin - Theme Options" msgid "Disable Theme Builder functionality." msgstr "" #: ../includes/extra/class-settings.php:4818 msgctxt "Admin - Theme Options Search" msgid "admin customizer theme builder" msgstr "" #: ../includes/extra/class-settings.php:4826 msgctxt "Admin - Theme Options" msgid "Disable Custom Code" msgstr "" #: ../includes/extra/class-settings.php:4827 msgctxt "Admin - Theme Options" msgid "Hide the Custom Code tab." msgstr "" #: ../includes/extra/class-settings.php:4829 msgctxt "Admin - Theme Options Search" msgid "admin customizer custom code" msgstr "" #: ../includes/extra/class-settings.php:4837 msgctxt "Admin - Theme Options" msgid "Disable Typography" msgstr "" #: ../includes/extra/class-settings.php:4838 msgctxt "Admin - Theme Options" msgid "Hide the Typography tab." msgstr "" #: ../includes/extra/class-settings.php:4840 msgctxt "Admin - Theme Options Search" msgid "admin customizer typography" msgstr "" #: ../includes/extra/class-settings.php:4848 msgctxt "Admin - Theme Options" msgid "Disable Element Pack Pro Menu" msgstr "" #: ../includes/extra/class-settings.php:4849 msgctxt "Admin - Theme Options" msgid "Hide Element Pack Pro menu from WordPress dashboard." msgstr "" #: ../includes/extra/class-settings.php:4851 msgctxt "Admin - Theme Options Search" msgid "admin customizer element pack" msgstr "" #: ../includes/extra/class-settings.php:4859 msgctxt "Admin - Theme Options" msgid "Custom Content in Header" msgstr "" #: ../includes/extra/class-settings.php:4860 msgctxt "Admin - Theme Options" msgid "The content will be added in the </head> section (use this for analytics code)." msgstr "" #: ../includes/extra/class-settings.php:4862 msgctxt "Admin - Theme Options Search" msgid "custom script markup head" msgstr "" #: ../includes/extra/class-settings.php:4870 msgctxt "Admin - Theme Options" msgid "Custom Content in Footer" msgstr "" #: ../includes/extra/class-settings.php:4871 msgctxt "Admin - Theme Options" msgid "The content will be added before the closing </body> tag." msgstr "" #: ../includes/extra/class-settings.php:4873 msgctxt "Admin - Theme Options Search" msgid "custom script markup footer" msgstr "" #: ../includes/extra/class-settings.php:4881 msgctxt "Admin - Theme Options" msgid "Hover Interaction" msgstr "" #: ../includes/extra/class-settings.php:4882 msgctxt "Admin - Theme Options" msgid "Set the button hover effect." msgstr "" #: ../includes/extra/class-settings.php:4884 msgctxt "Admin - Theme Options Search" msgid "hover interaction" msgstr "" #: ../includes/extra/class-settings.php:4892 msgctxt "Admin - Theme Options" msgid "Menu Hover Interaction" msgstr "" #: ../includes/extra/class-settings.php:4893 msgctxt "Admin - Theme Options" msgid "Set the hover effect for menu items." msgstr "" #: ../includes/extra/class-settings.php:4895 msgctxt "Admin - Theme Options Search" msgid "menu hover interaction" msgstr "" #: ../includes/extra/class-settings.php:4903 msgctxt "Admin - Theme Options" msgid "Grain Overlay Effect" msgstr "" #: ../includes/extra/class-settings.php:4904 msgctxt "Admin - Theme Options" msgid "Add a noise texture over your website." msgstr "" #: ../includes/extra/class-settings.php:4906 msgctxt "Admin - Theme Options Search" msgid "noise texture grain" msgstr "" #: ../includes/extra/class-settings.php:4913 msgctxt "Admin - Theme Options" msgid "Custom Cursor" msgstr "" #: ../includes/extra/class-settings.php:4914 msgctxt "Admin - Theme Options" msgid "Add a custom cursor to your website." msgstr "" #: ../includes/extra/class-settings.php:4916, ../includes/extra/class-settings.php:4926 msgctxt "Admin - Theme Options Search" msgid "custom cursor" msgstr "" #: ../includes/extra/class-settings.php:4923 msgctxt "Admin - Theme Options" msgid "Keep Default Cursor" msgstr "" #: ../includes/extra/class-settings.php:4924 msgctxt "Admin - Theme Options" msgid "Keeps the default system cursor behind the custom one." msgstr "" #: ../includes/extra/class-settings.php:4933 msgctxt "Admin - Theme Options" msgid "Cursor Style" msgstr "" #: ../includes/extra/class-settings.php:4934 msgctxt "Admin - Theme Options" msgid "Set the cursor style and effect." msgstr "" #: ../includes/extra/class-settings.php:4936 msgctxt "Admin - Theme Options Search" msgid "custom cursor style" msgstr "" #: ../includes/extra/class-settings.php:4943 msgctxt "Admin - Theme Options" msgid "Cursor Hover Effect" msgstr "" #: ../includes/extra/class-settings.php:4944 msgctxt "Admin - Theme Options" msgid "Set the cursor animation on link elements." msgstr "" #: ../includes/extra/class-settings.php:4946 msgctxt "Admin - Theme Options Search" msgid "custom cursor hover effect" msgstr "" #: ../includes/extra/class-settings.php:4953 msgctxt "Admin - Theme Options" msgid "Cursor Color" msgstr "" #: ../includes/extra/class-settings.php:4954 msgctxt "Admin - Theme Options" msgid "Set the cursor color." msgstr "" #: ../includes/extra/class-settings.php:4956 msgctxt "Admin - Theme Options Search" msgid "custom cursor color" msgstr "" #: ../includes/extra/class-settings.php:4963 msgctxt "Admin - Theme Options" msgid "Links Color" msgstr "" #: ../includes/extra/class-settings.php:4964 msgctxt "Admin - Theme Options" msgid "Set the global links color." msgstr "" #: ../includes/extra/class-settings.php:4966 msgctxt "Admin - Theme Options Search" msgid "link color" msgstr "" #: ../includes/extra/class-settings.php:4973 msgctxt "Admin - Theme Options" msgid "Post Links Color" msgstr "" #: ../includes/extra/class-settings.php:4974 msgctxt "Admin - Theme Options" msgid "Set the post links color." msgstr "" #: ../includes/extra/class-settings.php:4976 msgctxt "Admin - Theme Options Search" msgid "post blog link color" msgstr "" #: ../includes/extra/class-settings.php:4983 msgctxt "Admin - Theme Options" msgid "Mobile Navigation Breakpoint" msgstr "" #: ../includes/extra/class-settings.php:4984 msgctxt "Admin - Theme Options" msgid "Set the screen resolution where the mobile menu replaces the desktop menu." msgstr "" #: ../includes/extra/class-settings.php:4986 msgctxt "Admin - Theme Options Search" msgid "header mobile breakpoint" msgstr "" #: ../includes/extra/class-settings.php:4993 msgctxt "Admin - Theme Options" msgid "Navigation" msgstr "" #: ../includes/extra/class-settings.php:4995 msgctxt "Admin - Theme Options" msgid "Enable next / previous navigation at the end of the page." msgstr "" #: ../includes/extra/class-settings.php:4996 msgctxt "Admin - Theme Options Search" msgid "portfolio post navigation" msgstr "" #: ../includes/extra/class-settings.php:5003 msgctxt "Admin - Theme Options" msgid "Wide Images Outer Offset" msgstr "" #: ../includes/extra/class-settings.php:5005 msgctxt "Admin - Theme Options" msgid "Set overflow offset for wide align images: 0-10." msgstr "" #: ../includes/extra/class-settings.php:5006 msgctxt "Admin - Theme Options Search" msgid "blog wide image offset" msgstr "" #: ../includes/extra/class-settings.php:5022 msgctxt "Admin - Theme Options" msgid "Grid Lines" msgstr "" #: ../includes/extra/class-settings.php:5024 msgctxt "Admin - Theme Options" msgid "Add grid lines to your website background." msgstr "" #: ../includes/extra/class-settings.php:5025 msgctxt "Admin - Theme Options Search" msgid "grid lines" msgstr "" #: ../includes/extra/class-settings.php:5032 msgctxt "Admin - Theme Options" msgid "Grid Width" msgstr "" #: ../includes/extra/class-settings.php:5034 msgctxt "Admin - Theme Options" msgid "Set the grid width." msgstr "" #: ../includes/extra/class-settings.php:5035 msgctxt "Admin - Theme Options Search" msgid "grid lines width" msgstr "" #: ../includes/extra/class-settings.php:5042 msgctxt "Admin - Theme Options" msgid "Grid Width Offset" msgstr "" #: ../includes/extra/class-settings.php:5044 msgctxt "Admin - Theme Options" msgid "Add x pixels to the grid width. Also supports negative values." msgstr "" #: ../includes/extra/class-settings.php:5045 msgctxt "Admin - Theme Options Search" msgid "grid line width offset" msgstr "" #: ../includes/extra/class-settings.php:5054 msgctxt "Admin - Theme Options" msgid "Set number of columns for the grid." msgstr "" #: ../includes/extra/class-settings.php:5055 msgctxt "Admin - Theme Options Search" msgid "grid line column" msgstr "" #: ../includes/extra/class-settings.php:5062 msgctxt "Admin - Theme Options" msgid "Line Color" msgstr "" #: ../includes/extra/class-settings.php:5064 msgctxt "Admin - Theme Options" msgid "Set the grid line color." msgstr "" #: ../includes/extra/class-settings.php:5065 msgctxt "Admin - Theme Options Search" msgid "grid line color" msgstr "" #: ../includes/extra/class-settings.php:5072 msgctxt "Admin - Theme Options" msgid "Line Weight" msgstr "" #: ../includes/extra/class-settings.php:5074 msgctxt "Admin - Theme Options" msgid "Set the grid line weight." msgstr "" #: ../includes/extra/class-settings.php:5075 msgctxt "Admin - Theme Options Search" msgid "grid line weight" msgstr "" #: ../includes/extra/class-settings.php:5082 msgctxt "Admin - Theme Options" msgid "Z-Index" msgstr "" #: ../includes/extra/class-settings.php:5084 msgctxt "Admin - Theme Options" msgid "Set the grid lines z-index. Default is 0." msgstr "" #: ../includes/extra/class-settings.php:5085 msgctxt "Admin - Theme Options Search" msgid "grid line z-index" msgstr "" #: ../includes/extra/class-settings.php:5092 msgctxt "Admin - Theme Options" msgid "Elementor Animations Style" msgstr "" #: ../includes/extra/class-settings.php:5094 msgctxt "Admin - Theme Options" msgid "Set the default Elemntor animations style" msgstr "" #: ../includes/extra/class-settings.php:5095 msgctxt "Admin - Theme Options Search" msgid "elementor animations style" msgstr "" #: ../includes/extra/class-settings.php:5102 msgctxt "Admin - Theme Options" msgid "Dropdown Menu Trigger" msgstr "" #: ../includes/extra/class-settings.php:5104 msgctxt "Admin - Theme Options" msgid "Set the action that triggers the submenu." msgstr "" #: ../includes/extra/class-settings.php:5105 msgctxt "Admin - Theme Options Search" msgid "submenu dropdown trigger" msgstr "" #: ../includes/extra/class-settings.php:5112 msgctxt "Admin - Theme Options" msgid "Product Page Title" msgstr "" #: ../includes/extra/class-settings.php:5113 msgctxt "Admin - Theme Options" msgid "Set the product title layout. Default page title is set in Theme Options - Page Title." msgstr "" #: ../includes/extra/class-settings.php:5115 msgctxt "Admin - Theme Options Search" msgid "page title product" msgstr "" #: ../includes/extra/class-settings.php:5127 msgctxt "Admin - Theme Options" msgid "Pill Style" msgstr "" #: ../includes/extra/class-settings.php:5128 msgctxt "Admin - Theme Options" msgid "Enable Header pill style" msgstr "" #: ../includes/extra/class-settings.php:5130 msgctxt "Admin - Theme Options Search" msgid "header pill style" msgstr "" #: ../includes/extra/class-settings.php:5137 msgctxt "Admin - Theme Options" msgid "Disabled" msgstr "" #: ../includes/extra/class-settings.php:5141 msgctxt "Admin - Theme Options" msgid "Simple" msgstr "" #: ../includes/extra/class-settings.php:5145 msgctxt "Admin - Theme Options" msgid "Compact" msgstr "" #: ../includes/extra/class-settings.php:5153 msgctxt "Admin - Theme Options" msgid "Logo and Menu" msgstr "" #: ../includes/extra/class-settings.php:5171 msgctxt "Admin - Theme Options" msgid "Pill Border Radius" msgstr "" #: ../includes/extra/class-settings.php:5172 msgctxt "Admin - Theme Options" msgid "Sett th pill border radius" msgstr "" #: ../includes/extra/class-settings.php:5174 msgctxt "Admin - Theme Options Search" msgid "header pill style boder radius" msgstr "" #: ../includes/extra/class-settings.php:5183, ../includes/extra/class-settings.php:5195 msgctxt "Admin - Theme Options" msgid "Loop Posts" msgstr "" #: ../includes/extra/class-settings.php:5184, ../includes/extra/class-settings.php:5196 msgctxt "Admin - Theme Options" msgid "If this is active the navigation will not reach to an end" msgstr "" #: ../includes/extra/class-settings.php:5186 msgctxt "Admin - Theme Options Search" msgid "blog navigation loop" msgstr "" #: ../includes/extra/class-settings.php:5197 msgctxt "Admin - Theme Options" msgid "Postfolio" msgstr "" #: ../includes/extra/class-settings.php:5198 msgctxt "Admin - Theme Options Search" msgid "portfolio navigation loop" msgstr "" #: ../includes/extra/class-settings.php:5207 msgctxt "Admin - Theme Options" msgid "Disable System" msgstr "" #: ../includes/extra/class-settings.php:5208 msgctxt "Admin - Theme Options" msgid "Hide the system tab." msgstr "" #: ../includes/extra/class-settings.php:5210 msgctxt "Admin - Theme Options Search" msgid "admin customizer system" msgstr "" #: ../includes/extra/class-settings.php:5217 msgctxt "Admin - Theme Options" msgid "“Back” Button Text" msgstr "" #: ../includes/extra/class-settings.php:5218 msgctxt "Admin - Theme Options" msgid "Change the text for the “Back” button in the mobile submenu. If is left empty \"back\" will be replaced by the submenu title" msgstr "" #: ../includes/extra/class-settings.php:5219 msgctxt "Admin - Theme Options" msgid "Hader" msgstr "" #: ../includes/extra/class-settings.php:5220 msgctxt "Admin - Theme Options Search" msgid "mobile menu header translate back" msgstr "" #: ../includes/extra/class-settings.php:5227 msgctxt "Admin - Theme Options" msgid "Disable Animate Controller" msgstr "" #: ../includes/extra/class-settings.php:5228 msgctxt "Admin - Theme Options" msgid "Disable the animate controller from editor" msgstr "" #: ../includes/extra/class-settings.php:5230 msgctxt "Admin - Theme Options Search" msgid "animate controller disable" msgstr "" #: ../includes/extra/class-settings.php:5237 msgctxt "Admin - Theme Options" msgid "Enable Smooth Scroll" msgstr "" #: ../includes/extra/class-settings.php:5238 msgctxt "Admin - Theme Options" msgid "Enable smooth scroll" msgstr "" #: ../includes/extra/class-settings.php:5240 msgctxt "Admin - Theme Options Search" msgid "smooth scroll" msgstr "" #: ../includes/extra/class-settings.php:5247 msgctxt "Admin - Theme Options" msgid "Show Read Time on Blog Page" msgstr "" #: ../includes/extra/class-settings.php:5248 msgctxt "Admin - Theme Options" msgid "Show / hide read time in blog grid." msgstr "" #: ../includes/extra/class-settings.php:5250 msgctxt "Admin - Theme Options Search" msgid "blog grid readtime" msgstr "" #: ../includes/extra/class-settings.php:5257 msgctxt "Admin - Theme Options" msgid "Show Read Time on Blog Post" msgstr "" #: ../includes/extra/class-settings.php:5258 msgctxt "Admin - Theme Options" msgid "Show / hide read time in title meta." msgstr "" #: ../includes/extra/class-settings.php:5260 msgctxt "Admin - Theme Options Search" msgid "blog meta read time" msgstr "" #: ../includes/extra/class-settings.php:5271 msgctxt "Admin - Theme Options" msgid "Mobile Header: Layout" msgstr "" #: ../includes/extra/class-settings.php:5272 msgctxt "Admin - Theme Options" msgid "Set the base layout for mobile header." msgstr "" #: ../includes/extra/class-settings.php:5274 msgctxt "Admin - Theme Options Search" msgid "mobile header layout" msgstr "" #: ../includes/extra/class-settings.php:5277, ../includes/extra/class-settings.php:6149, ../includes/extra/class-settings.php:6215, ../includes/extra/class-settings.php:6385, ../includes/extra/class-settings.php:6629 msgctxt "Admin - Theme Options" msgid "Default" msgstr "" #: ../includes/extra/class-settings.php:5278, ../includes/extra/class-settings.php:5571 msgctxt "Admin - Theme Options" msgid "Center" msgstr "" #: ../includes/extra/class-settings.php:5290 msgctxt "Admin - Theme Options" msgid "Mobile Header: Extra Content" msgstr "" #: ../includes/extra/class-settings.php:5291 msgctxt "Admin - Theme Options" msgid "Set the extra content for mobile header." msgstr "" #: ../includes/extra/class-settings.php:5293 msgctxt "Admin - Theme Options Search" msgid "mobile header extra content" msgstr "" #: ../includes/extra/class-settings.php:5297, ../includes/extra/class-settings.php:5916 msgctxt "Admin - Theme Options" msgid "None" msgstr "" #: ../includes/extra/class-settings.php:5301 msgctxt "Admin - Theme Options" msgid "Call to Action" msgstr "" #: ../includes/extra/class-settings.php:5309 msgctxt "Admin - Theme Options" msgid "Cart" msgstr "" #: ../includes/extra/class-settings.php:5313 msgctxt "Admin - Theme Options" msgid "Socials" msgstr "" #: ../includes/extra/class-settings.php:5317 msgctxt "Admin - Theme Options" msgid "Custom Area" msgstr "" #: ../includes/extra/class-settings.php:5330 msgctxt "Admin - Theme Options" msgid "Mobile Pill Style" msgstr "" #: ../includes/extra/class-settings.php:5331 msgctxt "Admin - Theme Options" msgid "Enable Mobile Header pill style" msgstr "" #: ../includes/extra/class-settings.php:5333 msgctxt "Admin - Theme Options Search" msgid "mobile header pill style" msgstr "" #: ../includes/extra/class-settings.php:5340 msgctxt "Admin - Theme Options - Mobile Pill Style" msgid "Disabled" msgstr "" #: ../includes/extra/class-settings.php:5344 msgctxt "Admin - Theme Options - Mobile Pill Style" msgid "Simple" msgstr "" #: ../includes/extra/class-settings.php:5362 msgctxt "Admin - Theme Options" msgid "Mobile Pill Border Radius" msgstr "" #: ../includes/extra/class-settings.php:5363 msgctxt "Admin - Theme Options" msgid "Set the mobile pill border radius" msgstr "" #: ../includes/extra/class-settings.php:5365 msgctxt "Admin - Theme Options Search" msgid "mobile header pill style boder radius" msgstr "" #: ../includes/extra/class-settings.php:5374 msgctxt "Admin - Theme Options" msgid "Dropdown Animation Type" msgstr "" #: ../includes/extra/class-settings.php:5376 msgctxt "Admin - Theme Options" msgid "Set the submenu animation style." msgstr "" #: ../includes/extra/class-settings.php:5384 msgctxt "Admin - Theme Options" msgid "Dropdown Animation Duration" msgstr "" #: ../includes/extra/class-settings.php:5394 msgctxt "Admin - Theme Options" msgid "Dropdown Animation Type" msgstr "" #: ../includes/extra/class-settings.php:5396 msgctxt "Admin - Theme Options" msgid "Set the animation type." msgstr "" #: ../includes/extra/class-settings.php:5413 msgctxt "Admin - Theme Options" msgid "Page Title Border Radius" msgstr "" #: ../includes/extra/class-settings.php:5414 msgctxt "Admin - Theme Options" msgid "Set the page title border radius." msgstr "" #: ../includes/extra/class-settings.php:5416 msgctxt "Admin - Theme Options Search" msgid "page title corners style boder radius" msgstr "" #: ../includes/extra/class-settings.php:5432 msgctxt "Admin - Theme Options" msgid "Page Title Margins" msgstr "" #: ../includes/extra/class-settings.php:5433 msgctxt "Admin - Theme Options" msgid "Set the page title margins." msgstr "" #: ../includes/extra/class-settings.php:5435 msgctxt "Admin - Theme Options Search" msgid "page title margins" msgstr "" #: ../includes/extra/class-settings.php:5447 msgctxt "Admin - Theme Options" msgid "Preloader" msgstr "" #: ../includes/extra/class-settings.php:5448 msgctxt "Admin - Theme Options" msgid "Choose a preloader style." msgstr "" #: ../includes/extra/class-settings.php:5451 msgctxt "Admin - Theme Options Search" msgid "page transition prelaod animation preloader" msgstr "" #: ../includes/extra/class-settings.php:5463 msgctxt "Admin - Theme Options" msgid "Preloader Text" msgstr "" #: ../includes/extra/class-settings.php:5464 msgctxt "Admin - Theme Options" msgid "Choose a preloader text." msgstr "" #: ../includes/extra/class-settings.php:5467, ../includes/extra/class-settings.php:5483, ../includes/extra/class-settings.php:5500 msgctxt "Admin - Theme Options Search" msgid "page transition prelaod animation preloader text" msgstr "" #: ../includes/extra/class-settings.php:5480 msgctxt "Admin - Theme Options" msgid "Preloader Color" msgstr "" #: ../includes/extra/class-settings.php:5481 msgctxt "Admin - Theme Options" msgid "Choose the preloader color." msgstr "" #: ../includes/extra/class-settings.php:5496 msgctxt "Admin - Theme Options" msgid "Preloader Text Color" msgstr "" #: ../includes/extra/class-settings.php:5497 msgctxt "Admin - Theme Options" msgid "Choose the preloader text color." msgstr "" #: ../includes/extra/class-settings.php:5514 msgctxt "Admin - Theme Options" msgid "Preloader intro words" msgstr "" #: ../includes/extra/class-settings.php:5515 msgctxt "Admin - Theme Options" msgid "Use the \"|\" character to split the words during the animation." msgstr "" #: ../includes/extra/class-settings.php:5518 msgctxt "Admin - Theme Options Search" msgid "page transition prelaod animation preloader text intro words" msgstr "" #: ../includes/extra/class-settings.php:5531 msgctxt "Admin - Theme Options" msgid "Use Styles in ThemeBuilder" msgstr "" #: ../includes/extra/class-settings.php:5532 msgctxt "Admin - Theme Options" msgid "Force Blog Typograpy in Theme Builder" msgstr "" #: ../includes/extra/class-settings.php:5534 msgctxt "Admin - Theme Options Search" msgid "blog single post styles theme builder" msgstr "" #: ../includes/extra/class-settings.php:5545 msgctxt "Admin - Theme Options" msgid "Show Filters" msgstr "" #: ../includes/extra/class-settings.php:5546 msgctxt "Admin - Theme Options" msgid "Show / Hide the filters in the blog grid." msgstr "" #: ../includes/extra/class-settings.php:5548 msgctxt "Admin - Theme Options Search" msgid "blog grid filters" msgstr "" #: ../includes/extra/class-settings.php:5560 msgctxt "Admin - Theme Options" msgid "Filters Alignment" msgstr "" #: ../includes/extra/class-settings.php:5561 msgctxt "Admin - Theme Options" msgid "Set the filters alignment." msgstr "" #: ../includes/extra/class-settings.php:5563 msgctxt "Admin - Theme Options Search" msgid "blog grid filters alignment" msgstr "" #: ../includes/extra/class-settings.php:5567 msgctxt "Admin - Theme Options" msgid "Left" msgstr "" #: ../includes/extra/class-settings.php:5587 msgctxt "Admin - Theme Options" msgid "All Categories Text" msgstr "" #: ../includes/extra/class-settings.php:5588 msgctxt "Admin - Theme Options" msgid "Set the text for the \"All Categories\" filter." msgstr "" #: ../includes/extra/class-settings.php:5590 msgctxt "Admin - Theme Options Search" msgid "blog grid filters all categories text" msgstr "" #: ../includes/extra/class-settings.php:5628 msgctxt "Admin - Theme Options" msgid "Side Drawer Background" msgstr "" #: ../includes/extra/class-settings.php:5629 msgctxt "Admin - Theme Options" msgid "Set the side drawer background." msgstr "" #: ../includes/extra/class-settings.php:5631 msgctxt "Admin - Theme Options Search" msgid "header side drawer background" msgstr "" #: ../includes/extra/class-settings.php:5649 msgctxt "Admin - Theme Options" msgid "Back to Top Radius" msgstr "" #: ../includes/extra/class-settings.php:5650 msgctxt "Admin - Theme Options" msgid "Set the back to top border radius." msgstr "" #: ../includes/extra/class-settings.php:5652 msgctxt "Admin - Theme Options Search" msgid "border back to top radius" msgstr "" #: ../includes/extra/class-settings.php:5690 msgctxt "Admin - Theme Options" msgid "Back to Top Background" msgstr "" #: ../includes/extra/class-settings.php:5691 msgctxt "Admin - Theme Options" msgid "Set the back to top background." msgstr "" #: ../includes/extra/class-settings.php:5693 msgctxt "Admin - Theme Options Search" msgid "back to top background" msgstr "" #: ../includes/extra/class-settings.php:5710 msgctxt "Admin - Theme Options" msgid "Back to Top Color" msgstr "" #: ../includes/extra/class-settings.php:5711 msgctxt "Admin - Theme Options" msgid "Set the back to top color." msgstr "" #: ../includes/extra/class-settings.php:5713 msgctxt "Admin - Theme Options Search" msgid "back to top color" msgstr "" #: ../includes/extra/class-settings.php:5727 msgctxt "Admin - Theme Options" msgid "Show Excerpt in Page Title" msgstr "" #: ../includes/extra/class-settings.php:5728 msgctxt "Admin - Theme Options" msgid "Show / Hide the excerpt in the page title." msgstr "" #: ../includes/extra/class-settings.php:5730 msgctxt "Admin - Theme Options Search" msgid "blog page title excerpt" msgstr "" #: ../includes/extra/class-settings.php:5744 msgctxt "Admin - Theme Options" msgid "Button Shadow" msgstr "" #: ../includes/extra/class-settings.php:5745 msgctxt "Admin - Theme Options" msgid "Show / Hide the button shadow." msgstr "" #: ../includes/extra/class-settings.php:5747 msgctxt "Admin - Theme Options Search" msgid "button shadow" msgstr "" #: ../includes/extra/class-settings.php:5760 msgctxt "Admin - Theme Options" msgid "Call to Action Size" msgstr "" #: ../includes/extra/class-settings.php:5761 msgctxt "Admin - Theme Options" msgid "Set the call to action size." msgstr "" #: ../includes/extra/class-settings.php:5763 msgctxt "Admin - Theme Options Search" msgid "header call to action size" msgstr "" #: ../includes/extra/class-settings.php:5767, ../includes/extra/class-settings.php:5920 msgctxt "Admin - Theme Options" msgid "Small" msgstr "" #: ../includes/extra/class-settings.php:5771, ../includes/extra/class-settings.php:5924 msgctxt "Admin - Theme Options" msgid "Medium" msgstr "" #: ../includes/extra/class-settings.php:5775, ../includes/extra/class-settings.php:5928 msgctxt "Admin - Theme Options" msgid "Large" msgstr "" #: ../includes/extra/class-settings.php:5779 msgctxt "Admin - Theme Options" msgid "Full Height" msgstr "" #: ../includes/extra/class-settings.php:5795 msgctxt "Admin - Theme Options" msgid "Menu Interaction Color" msgstr "" #: ../includes/extra/class-settings.php:5796 msgctxt "Admin - Theme Options" msgid "Set the menu interaction color." msgstr "" #: ../includes/extra/class-settings.php:5798 msgctxt "Admin - Theme Options Search" msgid "menu interaction color" msgstr "" #: ../includes/extra/class-settings.php:5812 msgctxt "Admin - Theme Options" msgid "Side Lines Animation" msgstr "" #: ../includes/extra/class-settings.php:5813 msgctxt "Admin - Theme Options" msgid "Show / Hide the line animation." msgstr "" #: ../includes/extra/class-settings.php:5815 msgctxt "Admin - Theme Options Search" msgid "side grid line animation" msgstr "" #: ../includes/extra/class-settings.php:5829 msgctxt "Admin - Theme Options" msgid "Side Lines Animation Color" msgstr "" #: ../includes/extra/class-settings.php:5830 msgctxt "Admin - Theme Options" msgid "Set the line animation color." msgstr "" #: ../includes/extra/class-settings.php:5832 msgctxt "Admin - Theme Options Search" msgid "side grid line animation color" msgstr "" #: ../includes/extra/class-settings.php:5850 msgctxt "Admin - Theme Options" msgid "Mobile Sticky Header" msgstr "" #: ../includes/extra/class-settings.php:5851 msgctxt "Admin - Theme Options" msgid "Enable / Disable the mobile sticky." msgstr "" #: ../includes/extra/class-settings.php:5853 msgctxt "Admin - Theme Options Search" msgid "mobile sticky header" msgstr "" #: ../includes/extra/class-settings.php:5872 msgctxt "Admin - Theme Options" msgid "Pill Top Spacing" msgstr "" #: ../includes/extra/class-settings.php:5873 msgctxt "Admin - Theme Options" msgid "Set the header top spacing" msgstr "" #: ../includes/extra/class-settings.php:5875 msgctxt "Admin - Theme Options Search" msgid "header pill top spacing" msgstr "" #: ../includes/extra/class-settings.php:5894 msgctxt "Admin - Theme Options" msgid "Swatch Size" msgstr "" #: ../includes/extra/class-settings.php:5895 msgctxt "Admin - Theme Options" msgid "Set the swatch size." msgstr "" #: ../includes/extra/class-settings.php:5897 msgctxt "Admin - Theme Options Search" msgid "swatch size" msgstr "" #: ../includes/extra/class-settings.php:5909 msgctxt "Admin - Theme Options" msgid "Swatch Border Radius" msgstr "" #: ../includes/extra/class-settings.php:5910 msgctxt "Admin - Theme Options" msgid "Set the swatch border radius." msgstr "" #: ../includes/extra/class-settings.php:5912 msgctxt "Admin - Theme Options Search" msgid "swatch border radius" msgstr "" #: ../includes/extra/class-settings.php:5947 msgctxt "Admin - Theme Options" msgid "Swatch Border Size" msgstr "" #: ../includes/extra/class-settings.php:5948 msgctxt "Admin - Theme Options" msgid "Set the swatch border size." msgstr "" #: ../includes/extra/class-settings.php:5950 msgctxt "Admin - Theme Options Search" msgid "swatch border size" msgstr "" #: ../includes/extra/class-settings.php:5962 msgctxt "Admin - Theme Options" msgid "Swatch Border Color" msgstr "" #: ../includes/extra/class-settings.php:5963 msgctxt "Admin - Theme Options" msgid "Set the swatch border color." msgstr "" #: ../includes/extra/class-settings.php:5965 msgctxt "Admin - Theme Options Search" msgid "swatch border color" msgstr "" #: ../includes/extra/class-settings.php:5977 msgctxt "Admin - Theme Options" msgid "Sticky Add to Cart Bar" msgstr "" #: ../includes/extra/class-settings.php:5978 msgctxt "Admin - Theme Options" msgid "Show / Hide the sticky add to cart bar." msgstr "" #: ../includes/extra/class-settings.php:5980 msgctxt "Admin - Theme Options Search" msgid "product sticky add to cart" msgstr "" #: ../includes/extra/class-settings.php:5992 msgctxt "Admin - Theme Options" msgid "Show Category" msgstr "" #: ../includes/extra/class-settings.php:5993 msgctxt "Admin - Theme Options" msgid "Show / Hide the category in the product grid." msgstr "" #: ../includes/extra/class-settings.php:5995 msgctxt "Admin - Theme Options Search" msgid "product category" msgstr "" #: ../includes/extra/class-settings.php:6007 msgctxt "Admin - Theme Options" msgid "Show Tags" msgstr "" #: ../includes/extra/class-settings.php:6008 msgctxt "Admin - Theme Options" msgid "Show / Hide the tags in the product grid." msgstr "" #: ../includes/extra/class-settings.php:6010 msgctxt "Admin - Theme Options Search" msgid "product tags" msgstr "" #: ../includes/extra/class-settings.php:6023 msgctxt "Admin - Theme Options" msgid "Rating Style" msgstr "" #: ../includes/extra/class-settings.php:6024 msgctxt "Admin - Theme Options" msgid "Set the rating style." msgstr "" #: ../includes/extra/class-settings.php:6026 msgctxt "Admin - Theme Options Search" msgid "product rating style" msgstr "" #: ../includes/extra/class-settings.php:6030 msgctxt "Admin - Theme Options" msgid "Stars" msgstr "" #: ../includes/extra/class-settings.php:6034 msgctxt "Admin - Theme Options" msgid "Bar" msgstr "" #: ../includes/extra/class-settings.php:6064, ../includes/extra/class-settings.php:6476 msgctxt "Admin - Theme Options" msgid "Product Title" msgstr "" #: ../includes/extra/class-settings.php:6065, ../includes/extra/class-settings.php:6477 msgctxt "Admin - Theme Options" msgid "Set the product title typography." msgstr "" #: ../includes/extra/class-settings.php:6067, ../includes/extra/class-settings.php:6479 msgctxt "Admin - Theme Options Search" msgid "product title typography" msgstr "" #: ../includes/extra/class-settings.php:6095, ../includes/extra/class-settings.php:6508 msgctxt "Admin - Theme Options" msgid "Product Price" msgstr "" #: ../includes/extra/class-settings.php:6096, ../includes/extra/class-settings.php:6509 msgctxt "Admin - Theme Options" msgid "Set the product price typography." msgstr "" #: ../includes/extra/class-settings.php:6098, ../includes/extra/class-settings.php:6511 msgctxt "Admin - Theme Options Search" msgid "product price typography" msgstr "" #: ../includes/extra/class-settings.php:6126 msgctxt "Admin - Theme Options" msgid "Product Excerpt" msgstr "" #: ../includes/extra/class-settings.php:6127 msgctxt "Admin - Theme Options" msgid "Set the product excerpt typography." msgstr "" #: ../includes/extra/class-settings.php:6129 msgctxt "Admin - Theme Options Search" msgid "product excerpt typography" msgstr "" #: ../includes/extra/class-settings.php:6142 msgctxt "Admin - Theme Options" msgid "Tabs Position" msgstr "" #: ../includes/extra/class-settings.php:6143 msgctxt "Admin - Theme Options" msgid "Set the tabs position." msgstr "" #: ../includes/extra/class-settings.php:6145 msgctxt "Admin - Theme Options Search" msgid "product tabs position" msgstr "" #: ../includes/extra/class-settings.php:6153 msgctxt "Admin - Theme Options" msgid "Below Gallery - Left" msgstr "" #: ../includes/extra/class-settings.php:6157 msgctxt "Admin - Theme Options" msgid "Below Meta - Right" msgstr "" #: ../includes/extra/class-settings.php:6174 msgctxt "Admin - Theme Options" msgid "Tabs Style" msgstr "" #: ../includes/extra/class-settings.php:6175 msgctxt "Admin - Theme Options" msgid "Set the tabs style." msgstr "" #: ../includes/extra/class-settings.php:6177 msgctxt "Admin - Theme Options Search" msgid "product tabs style" msgstr "" #: ../includes/extra/class-settings.php:6181 msgctxt "Admin - Theme Options" msgid "Horizontal Tabs" msgstr "" #: ../includes/extra/class-settings.php:6185 msgctxt "Admin - Theme Options" msgid "Vertical Tabs" msgstr "" #: ../includes/extra/class-settings.php:6189 msgctxt "Admin - Theme Options" msgid "Accordion" msgstr "" #: ../includes/extra/class-settings.php:6193 msgctxt "Admin - Theme Options" msgid "Sections" msgstr "" #: ../includes/extra/class-settings.php:6208 msgctxt "Admin - Theme Options" msgid "Gallery Style" msgstr "" #: ../includes/extra/class-settings.php:6209 msgctxt "Admin - Theme Options" msgid "Set the gallery style." msgstr "" #: ../includes/extra/class-settings.php:6211 msgctxt "Admin - Theme Options Search" msgid "product gallery style" msgstr "" #: ../includes/extra/class-settings.php:6219 msgctxt "Admin - Theme Options" msgid "Left Thumbnails" msgstr "" #: ../includes/extra/class-settings.php:6223 msgctxt "Admin - Theme Options" msgid "One Column" msgstr "" #: ../includes/extra/class-settings.php:6227 msgctxt "Admin - Theme Options" msgid "Two Columns" msgstr "" #: ../includes/extra/class-settings.php:6241 msgctxt "Admin - Theme Options" msgid "Inherit product variation images" msgstr "" #: ../includes/extra/class-settings.php:6242 msgctxt "Admin - Theme Options" msgid "If enabled, Image type Swatches will try to pull custom images set on each product attribute terms, showing fixed term images only as fallback." msgstr "" #: ../includes/extra/class-settings.php:6244 msgctxt "Admin - Theme Options Search" msgid "product swatch image inherit" msgstr "" #: ../includes/extra/class-settings.php:6262 msgctxt "Admin - Theme Options" msgid "Gallery Gap" msgstr "" #: ../includes/extra/class-settings.php:6263 msgctxt "Admin - Theme Options" msgid "Set the gallery gap." msgstr "" #: ../includes/extra/class-settings.php:6265 msgctxt "Admin - Theme Options Search" msgid "product gallery gap" msgstr "" #: ../includes/extra/class-settings.php:6285 msgctxt "Admin - Theme Options" msgid "Gallery Radius" msgstr "" #: ../includes/extra/class-settings.php:6286 msgctxt "Admin - Theme Options" msgid "Set the gallery radius." msgstr "" #: ../includes/extra/class-settings.php:6288 msgctxt "Admin - Theme Options Search" msgid "product gallery radius" msgstr "" #: ../includes/extra/class-settings.php:6305 msgctxt "Admin - Theme Options" msgid "Summary Width" msgstr "" #: ../includes/extra/class-settings.php:6306 msgctxt "Admin - Theme Options" msgid "Set the summary width." msgstr "" #: ../includes/extra/class-settings.php:6308 msgctxt "Admin - Theme Options Search" msgid "product summary width" msgstr "" #: ../includes/extra/class-settings.php:6326 msgctxt "Admin - Theme Options" msgid "Add to Cart Height" msgstr "" #: ../includes/extra/class-settings.php:6327 msgctxt "Admin - Theme Options" msgid "Set the add to cart height." msgstr "" #: ../includes/extra/class-settings.php:6329 msgctxt "Admin - Theme Options Search" msgid "product add to cart height" msgstr "" #: ../includes/extra/class-settings.php:6342 msgctxt "Admin - Theme Options" msgid "Show Share Links" msgstr "" #: ../includes/extra/class-settings.php:6343 msgctxt "Admin - Theme Options" msgid "Show / Hide the share product in the product grid." msgstr "" #: ../includes/extra/class-settings.php:6345 msgctxt "Admin - Theme Options Search" msgid "product share links" msgstr "" #: ../includes/extra/class-settings.php:6358 msgctxt "Admin - Theme Options" msgid "Shop Page Filters Toggle" msgstr "" #: ../includes/extra/class-settings.php:6359 msgctxt "Admin - Theme Options" msgid "Adds a toggle button for the shop page sidebar." msgstr "" #: ../includes/extra/class-settings.php:6361 msgctxt "Admin - Theme Options Search" msgid "shop filters toggle" msgstr "" #: ../includes/extra/class-settings.php:6378 msgctxt "Admin - Theme Options" msgid "Product Item Style" msgstr "" #: ../includes/extra/class-settings.php:6379 msgctxt "Admin - Theme Options" msgid "Set the product item style." msgstr "" #: ../includes/extra/class-settings.php:6381 msgctxt "Admin - Theme Options Search" msgid "product item style" msgstr "" #: ../includes/extra/class-settings.php:6389 msgctxt "Admin - Theme Options" msgid "Boxed" msgstr "" #: ../includes/extra/class-settings.php:6409 msgctxt "Admin - Theme Options" msgid "Hover Effect" msgstr "" #: ../includes/extra/class-settings.php:6410 msgctxt "Admin - Theme Options" msgid "Set the hover effect." msgstr "" #: ../includes/extra/class-settings.php:6412 msgctxt "Admin - Theme Options Search" msgid "product hover effect" msgstr "" #: ../includes/extra/class-settings.php:6416 msgctxt "Admin - Theme Options" msgid "Zoom" msgstr "" #: ../includes/extra/class-settings.php:6420 msgctxt "Admin - Theme Options" msgid "Transform" msgstr "" #: ../includes/extra/class-settings.php:6424 msgctxt "Admin - Theme Options" msgid "Change Image" msgstr "" #: ../includes/extra/class-settings.php:6444 msgctxt "Admin - Theme Options" msgid "Product Image Radius" msgstr "" #: ../includes/extra/class-settings.php:6445 msgctxt "Admin - Theme Options" msgid "Set the product image radius." msgstr "" #: ../includes/extra/class-settings.php:6447 msgctxt "Admin - Theme Options Search" msgid "product image radius" msgstr "" #: ../includes/extra/class-settings.php:6541 msgctxt "Admin - Theme Options" msgid "Product Description" msgstr "" #: ../includes/extra/class-settings.php:6542 msgctxt "Admin - Theme Options" msgid "Set the product description typography." msgstr "" #: ../includes/extra/class-settings.php:6544 msgctxt "Admin - Theme Options Search" msgid "product description typography" msgstr "" #: ../includes/extra/class-settings.php:6557 msgctxt "Admin - Theme Options" msgid "Show Rating" msgstr "" #: ../includes/extra/class-settings.php:6558 msgctxt "Admin - Theme Options" msgid "Show / Hide the rating in the product grid." msgstr "" #: ../includes/extra/class-settings.php:6560 msgctxt "Admin - Theme Options Search" msgid "product rating" msgstr "" #: ../includes/extra/class-settings.php:6573 msgctxt "Admin - Theme Options" msgid "Show Swatches" msgstr "" #: ../includes/extra/class-settings.php:6574 msgctxt "Admin - Theme Options" msgid "Show / Hide the swatches in the product grid." msgstr "" #: ../includes/extra/class-settings.php:6576 msgctxt "Admin - Theme Options Search" msgid "product swatches" msgstr "" #: ../includes/extra/class-settings.php:6589 msgctxt "Admin - Theme Options" msgid "Show Quick Description" msgstr "" #: ../includes/extra/class-settings.php:6590 msgctxt "Admin - Theme Options" msgid "Show / Hide the quick description in the product grid." msgstr "" #: ../includes/extra/class-settings.php:6592 msgctxt "Admin - Theme Options Search" msgid "product quick description" msgstr "" #: ../includes/extra/class-settings.php:6605 msgctxt "Admin - Theme Options" msgid "Center Product Grid info" msgstr "" #: ../includes/extra/class-settings.php:6606 msgctxt "Admin - Theme Options" msgid "Center the product grid information." msgstr "" #: ../includes/extra/class-settings.php:6608 msgctxt "Admin - Theme Options Search" msgid "product grid center" msgstr "" #: ../includes/extra/class-settings.php:6622 msgctxt "Admin - Theme Options" msgid "Add to Cart Style" msgstr "" #: ../includes/extra/class-settings.php:6623 msgctxt "Admin - Theme Options" msgid "Set the add to cart style." msgstr "" #: ../includes/extra/class-settings.php:6625 msgctxt "Admin - Theme Options Search" msgid "product add to cart style" msgstr "" #: ../includes/extra/class-settings.php:6633 msgctxt "Admin - Theme Options" msgid "Show on Hover" msgstr "" #: ../includes/extra/class-settings.php:6637 msgctxt "Admin - Theme Options" msgid "Link" msgstr "" #: ../includes/extra/class-settings.php:6641 msgctxt "Admin - Theme Options" msgid "Link Reveal" msgstr "" #: ../includes/extra/class-settings.php:6661 msgctxt "Admin - Theme Options" msgid "Product Grid Gap" msgstr "" #: ../includes/extra/class-settings.php:6662 msgctxt "Admin - Theme Options" msgid "Set the product grid gap." msgstr "" #: ../includes/extra/class-settings.php:6664 msgctxt "Admin - Theme Options Search" msgid "product grid gap" msgstr "" #: ../includes/extra/class-settings.php:6677 msgctxt "Admin - Theme Options" msgid "Show Related Products" msgstr "" #: ../includes/extra/class-settings.php:6678 msgctxt "Admin - Theme Options" msgid "Show / Hide the related products in the product page." msgstr "" #: ../includes/extra/class-settings.php:6680 msgctxt "Admin - Theme Options Search" msgid "product related products" msgstr "" #: ../includes/extra/class-settings.php:6693 msgctxt "Admin - Theme Options" msgid "Show SKU" msgstr "" #: ../includes/extra/class-settings.php:6694 msgctxt "Admin - Theme Options" msgid "Show / Hide the SKU in the product page." msgstr "" #: ../includes/extra/class-settings.php:6696 msgctxt "Admin - Theme Options Search" msgid "product sku" msgstr "" #: ../includes/extra/class-settings.php:6709 msgctxt "Admin - Theme Options" msgid "Ajax Add to Cart" msgstr "" #: ../includes/extra/class-settings.php:6710 msgctxt "Admin - Theme Options" msgid "Enable / Disable the ajax add to cart functionality." msgstr "" #: ../includes/extra/class-settings.php:6712 msgctxt "Admin - Theme Options Search" msgid "product ajax add to cart" msgstr "" #: ../includes/extra/class-settings.php:6725 msgctxt "Admin - Theme Options" msgid "Disable Library" msgstr "" #: ../includes/extra/class-settings.php:6726 msgctxt "Admin - Theme Options" msgid "Hide the library option on Elementor Editor." msgstr "" #: ../includes/extra/class-settings.php:6728 msgctxt "Admin - Theme Options Search" msgid "admin customizer block import" msgstr "" #: ../includes/extra/class-settings.php:6745 msgctxt "Admin - Theme Options" msgid "Set the default layout." msgstr "" #: ../includes/extra/class-settings.php:6756 msgctxt "Admin - Theme Options" msgid "Set the boxed container width." msgstr "" #: ../includes/extra/class-settings.php:6757 msgctxt "Admin - Theme Options Search" msgid "site layout boxed container width" msgstr "" #: ../includes/extra/helper.php:272 msgid "%d min read" msgid_plural "%d min read" msgstr[0] "" msgstr[1] "" #: ../includes/portfolio/class-common.php:32 msgid "portfolio" msgstr "" #. translators: %s: Name of current post. Only visible to screen readers #: ../includes/portfolio/class-template.php:276 msgctxt "Frontend - Portfolio" msgid "Continue reading<span class=\"screen-reader-text\"> \"%s\"</span>" msgstr "" #: ../includes/portfolio/class-template.php:303 msgctxt "Frontend - Portfolio" msgid "Previous Item" msgstr "" #: ../includes/portfolio/class-template.php:303 msgctxt "Frontend - Portfolio" msgid "Next Item" msgstr "" #: ../includes/templates/page-title.php:149 msgctxt "Frontend - Page title" msgid "Category: %s" msgstr "" #: ../includes/templates/page-title.php:146, ../includes/templates/page-title.php:372 msgctxt "Frontend - Page title" msgid "Portfolio" msgstr "" #: ../includes/templates/page-title.php:86 msgctxt "Frontend - Page title" msgid "Search Results for: %s" msgstr "" #: ../includes/templates/page-title.php:319 msgctxt "Frontend - Page title" msgid "Home" msgstr "" #: ../includes/templates/pagination.php:27 msgctxt "Frontend - Pagination" msgid "Posts navigation" msgstr "" #: ../includes/templates/pagination.php:48 msgctxt "Frontend - Pagination" msgid "Products navigation" msgstr "" #: ../includes/templates/search.php:44 msgctxt "Frontend - FullScreen Search" msgid "Type and hit enter" msgstr "" #: ../includes/theme-builder/class-admin.php:91, ../includes/theme-builder/class-admin.php:92, ../includes/theme-builder/class-common.php:130, ../includes/theme-builder/elementor/documents/class-single.php:26 msgid "Theme Builder" msgstr "" #: ../includes/theme-builder/class-admin.php:178 msgid "All" msgstr "" #: ../includes/theme-builder/class-admin.php:203 msgid "Mega Menu" msgstr "" #: ../includes/theme-builder/class-admin.php:204 msgid "Block" msgstr "" #: ../includes/theme-builder/class-admin.php:205 msgid "Popup" msgstr "" #: ../includes/theme-builder/class-admin.php:207 msgid "Single" msgstr "" #: ../includes/theme-builder/class-admin.php:208 msgid "Archive" msgstr "" #: ../includes/theme-builder/class-admin.php:212 msgid "Product Info" msgstr "" #: ../includes/theme-builder/class-common.php:80 msgid "Featured Image" msgstr "" #: ../includes/theme-builder/class-common.php:84 msgid "Please also set an image as a fallback." msgstr "" #: ../includes/theme-builder/class-common.php:139 msgctxt "Theme Builder" msgid "Type" msgstr "" #: ../includes/theme-builder/class-common.php:311 msgid "404 Page" msgstr "" #: ../includes/theme-builder/class-common.php:315 msgid "Search Page" msgstr "" #: ../includes/theme-builder/class-common.php:319 msgid "Blog / Posts Page" msgstr "" #: ../includes/theme-builder/class-common.php:323 msgid "Front Page" msgstr "" #: ../includes/theme-builder/class-common.php:327 msgid "Date Archive" msgstr "" #: ../includes/theme-builder/class-common.php:331 msgid "Author Archive" msgstr "" #: ../includes/theme-builder/class-common.php:338 msgid "WooCommerce Shop Page" msgstr "" #: ../includes/theme-builder/class-common.php:354 msgid "Portfolio Category Archive" msgstr "" #: ../includes/theme-builder/class-common.php:363 msgid "Basic" msgstr "" #: ../includes/theme-builder/class-common.php:366 msgid "Entire Website" msgstr "" #: ../includes/theme-builder/class-common.php:370 msgid "All Pages" msgstr "" #: ../includes/theme-builder/class-common.php:374 msgid "All Blog Posts" msgstr "" #: ../includes/theme-builder/class-common.php:378 msgid "All Archives" msgstr "" #: ../includes/theme-builder/class-common.php:386 msgid "Special Pages" msgstr "" #: ../includes/theme-builder/class-common.php:393 msgid "Specific Target" msgstr "" #: ../includes/theme-builder/class-common.php:396 msgid "Specific" msgstr "" #: ../includes/theme-builder/class-common.php:892 msgid "UiCore Woo" msgstr "" #: ../includes/woocommerce/class-frontend.php:520 msgid "Show" msgstr "" #: ../includes/woocommerce/class-frontend.php:521 msgid "Hide" msgstr "" #: ../includes/elementor/compatibility/class-wpml-ui-highlighted-text.php:30 msgid "Highlighted Text" msgstr "" #: ../includes/elementor/generic/class-post-filter-control.php:53 msgctxt "uicore-framework" msgid "Source" msgstr "" #: ../includes/elementor/generic/class-post-filter-control.php:142 msgid "Current" msgstr "" #: ../includes/elementor/generic/class-post-filter-control.php:143 msgid "Related" msgstr "" #: ../includes/elementor/generic/meta-component.php:19 msgid "Author" msgstr "" #: ../includes/elementor/generic/meta-component.php:20 msgid "Posted Date" msgstr "" #: ../includes/elementor/generic/meta-component.php:21 msgid "Updated Date" msgstr "" #: ../includes/elementor/generic/meta-component.php:22 msgid "Comments Count" msgstr "" #: ../includes/elementor/generic/meta-component.php:23 msgid "Reading Time" msgstr "" #: ../includes/elementor/generic/meta-component.php:24, ../includes/theme-builder/elementor/woo-widgets/product-meta.php:326, ../includes/theme-builder/elementor/woo-widgets/product-meta.php:336, ../includes/theme-builder/elementor/woo-widgets/product-meta.php:447 msgid "Category" msgstr "" #: ../includes/elementor/generic/meta-component.php:25 msgid "Custom Meta" msgstr "" #: ../includes/elementor/generic/meta-component.php:26 msgid "Custom Taxonomy" msgstr "" #: ../includes/elementor/generic/meta-component.php:30, ../includes/theme-builder/elementor/woo-widgets/product-price.php:27 msgid "Product Price" msgstr "" #: ../includes/elementor/generic/meta-component.php:31, ../includes/theme-builder/elementor/woo-widgets/product-rating.php:24 msgid "Product Rating" msgstr "" #: ../includes/elementor/generic/meta-component.php:33 msgid "Product Category" msgstr "" #: ../includes/elementor/generic/meta-component.php:34 msgid "Product Tag" msgstr "" #: ../includes/elementor/generic/meta-component.php:35 msgid "Product Attribute" msgstr "" #: ../includes/elementor/generic/meta-component.php:37 msgid "Portfolio Category" msgstr "" #: ../includes/elementor/generic/meta-component.php:41 msgid "Meta" msgstr "" #: ../includes/elementor/generic/meta-component.php:48 msgid "Custom Field Name" msgstr "" #: ../includes/elementor/generic/meta-component.php:56 msgid "Text Before" msgstr "" #: ../includes/elementor/generic/meta-component.php:64 msgid "Text After" msgstr "" #: ../includes/elementor/generic/meta-component.php:72 msgid "Display Type" msgstr "" #: ../includes/elementor/generic/meta-component.php:76 msgid "Name" msgstr "" #: ../includes/elementor/generic/meta-component.php:77 msgid "Avatar & Name" msgstr "" #: ../includes/elementor/generic/meta-component.php:78 msgid "Avatar" msgstr "" #: ../includes/elementor/generic/meta-component.php:111, ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:248, ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:289, ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:420, ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:461, ../includes/theme-builder/elementor/woo-widgets/product-content.php:90, ../includes/theme-builder/elementor/woo-widgets/product-stock.php:58, ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:133, ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:175, ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:306, ../includes/theme-builder/elementor/woo-widgets/sale-badge.php:78, ../includes/theme-builder/elementor/woo-widgets/short-description.php:87 msgid "Text Color" msgstr "" #: ../includes/elementor/generic/meta-component.php:122, ../includes/theme-builder/elementor/woo-widgets/product-rating.php:220 msgid "Link Color" msgstr "" #: ../includes/elementor/generic/meta-component.php:133 msgid "Link Hover Color" msgstr "" #: ../includes/elementor/generic/meta-component.php:144, ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:259, ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:300, ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:431, ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:472, ../includes/theme-builder/elementor/woo-widgets/product-grid.php:428, ../includes/theme-builder/elementor/woo-widgets/product-grid.php:454, ../includes/theme-builder/elementor/woo-widgets/product-rating.php:172, ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:148, ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:191, ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:355, ../includes/theme-builder/elementor/woo-widgets/sale-badge.php:89 msgid "Background Color" msgstr "" #: ../includes/elementor/generic/meta-component.php:166 msgid "Box Shadow" msgstr "" #: ../includes/elementor/generic/meta-component.php:173, ../includes/theme-builder/elementor/woo-widgets/product-grid.php:395, ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:238, ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:392, ../includes/theme-builder/elementor/woo-widgets/sale-badge.php:100 msgid "Padding" msgstr "" #: ../includes/elementor/generic/meta-component.php:195 msgid "Meta Top Space" msgstr "" #: ../includes/elementor/generic/meta-component.php:185 msgid "Margin" msgstr "" #: ../includes/elementor/generic/meta-component.php:218 msgid "Items Gap" msgstr "" #: ../includes/elementor/generic/meta-component.php:237 msgid "Separator" msgstr "" #: ../includes/elementor/generic/meta-component.php:243 msgid "Items placement" msgstr "" #: ../includes/elementor/generic/meta-component.php:247 msgid "Top Left" msgstr "" #: ../includes/elementor/generic/meta-component.php:248 msgid "Top Right" msgstr "" #: ../includes/elementor/generic/meta-component.php:249 msgid "Bottom Left" msgstr "" #: ../includes/elementor/generic/meta-component.php:250 msgid "Bottom Right" msgstr "" #: ../includes/elementor/generic/query-component.php:29, ../includes/theme-builder/elementor/woo-widgets/product-grid.php:122 msgid "Query" msgstr "" #: ../includes/elementor/generic/query-component.php:38, ../includes/theme-builder/elementor/woo-widgets/product-grid.php:68, ../includes/theme-builder/elementor/woo-widgets/product-grid.php:134 msgid "Products" msgstr "" #: ../includes/elementor/generic/query-component.php:39 msgid "Current Query Settings > Reading" msgstr "" #: ../includes/elementor/generic/query-component.php:46 msgid "Item Limit" msgstr "" #: ../includes/woocommerce/components/class-share-links.php:99 msgid "Share this product on %s" msgstr "" #: ../includes/woocommerce/components/class-swatches.php:99, ../includes/woocommerce/components/class-swatches.php:158, ../includes/woocommerce/components/class-swatches.php:225, ../includes/woocommerce/components/class-swatches.php:250 msgid "Label" msgstr "" #: ../includes/woocommerce/components/class-swatches.php:101, ../includes/woocommerce/components/class-swatches.php:162 msgid "Enter the label value." msgstr "" #: ../includes/woocommerce/components/class-swatches.php:132 msgid "Select image" msgstr "" #: ../includes/woocommerce/components/class-swatches.php:108, ../includes/woocommerce/components/class-swatches.php:171, ../includes/woocommerce/components/class-swatches.php:223, ../includes/woocommerce/components/class-swatches.php:248, ../includes/theme-builder/elementor/woo-widgets/product-grid.php:241, ../includes/theme-builder/elementor/woo-widgets/product-grid.php:303, ../includes/theme-builder/elementor/woo-widgets/product-grid.php:340, ../includes/theme-builder/elementor/woo-widgets/product-meta.php:232, ../includes/theme-builder/elementor/woo-widgets/product-meta.php:267, ../includes/theme-builder/elementor/woo-widgets/product-meta.php:295, ../includes/theme-builder/elementor/woo-widgets/product-price.php:97, ../includes/theme-builder/elementor/woo-widgets/product-price.php:132 msgid "Color" msgstr "" #: ../includes/woocommerce/components/class-swatches.php:112, ../includes/woocommerce/components/class-swatches.php:177 msgid "Enter the color value." msgstr "" #: ../includes/woocommerce/components/class-swatches.php:116 msgid "Second Color" msgstr "" #: ../includes/woocommerce/components/class-swatches.php:120, ../includes/woocommerce/components/class-swatches.php:189 msgid "Remove Color" msgstr "" #: ../includes/woocommerce/components/class-swatches.php:121, ../includes/woocommerce/components/class-swatches.php:190 msgid "Enter the second color value." msgstr "" #: ../includes/woocommerce/components/class-swatches.php:205 msgid "Select an image." msgstr "" #: ../includes/woocommerce/components/class-swatches.php:183 msgid "Secondary Color" msgstr "" #: ../includes/woocommerce/components/class-swatches.php:220 msgid "Swatch type" msgstr "" #: ../includes/woocommerce/components/class-swatches.php:222, ../includes/woocommerce/components/class-swatches.php:247 msgid "Select" msgstr "" #: ../includes/woocommerce/components/class-swatches.php:226, ../includes/woocommerce/components/class-swatches.php:251, ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:134 msgid "Button" msgstr "" #: ../includes/woocommerce/components/class-swatches.php:228, ../includes/woocommerce/components/class-swatches.php:253 msgid "Determines the variation swatch type." msgstr "" #: ../includes/woocommerce/components/class-swatches.php:243 msgid "Swatch Type" msgstr "" #: ../includes/theme-builder/elementor/documents/class-base.php:33 msgid "UiCore TB" msgstr "" #: ../includes/theme-builder/elementor/widgets/woo-boilerplate.php:20 msgid "Boilerplate" msgstr "" #: ../includes/theme-builder/elementor/widgets/woo-boilerplate.php:56, ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:67, ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:69, ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:291 msgid "Content" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/breadcrumbs.php:22 msgid "Breadcrumbs" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:26 msgid "Add To Cart" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:78 msgid "General" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:86 msgid "Elements spacing" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:102 msgid "Price Color" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:117 msgid "Stock Color" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:142 msgid "Fill Width" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:146 msgid "True" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:147 msgid "False" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:153 msgid "Button Width" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:183 msgid "Button Height" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:195, ../includes/theme-builder/elementor/woo-widgets/product-gallery.php:183, ../includes/theme-builder/elementor/woo-widgets/product-grid.php:269, ../includes/theme-builder/elementor/woo-widgets/product-price.php:162, ../includes/theme-builder/elementor/woo-widgets/product-rating.php:194 msgid "Spacing" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:241, ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:413, ../includes/theme-builder/elementor/woo-widgets/product-grid.php:414, ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:123 msgid "Normal" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:270, ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:311, ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:442, ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:483, ../includes/theme-builder/elementor/woo-widgets/product-grid.php:464, ../includes/theme-builder/elementor/woo-widgets/product-rating.php:149, ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:207 msgid "Border Color" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:282, ../includes/theme-builder/elementor/woo-widgets/product-grid.php:440 msgid "Hover" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:322, ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:494 msgid "Transition Duration" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:349 msgid "Quantity" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:357 msgid "Hide Quantity" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:454 msgid "Focus" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:521 msgid "Swatches" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:529 msgid "Size" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:570 msgid "Selected Border Color" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-add-to-cart.php:579 msgid "Selected Border Width" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-content.php:27, ../includes/theme-builder/elementor/woo-widgets/product-content.php:53 msgid "Product Content" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-content.php:61, ../includes/theme-builder/elementor/woo-widgets/product-grid.php:206, ../includes/theme-builder/elementor/woo-widgets/product-price.php:72, ../includes/theme-builder/elementor/woo-widgets/short-description.php:58 msgid "Alignment" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-content.php:69, ../includes/theme-builder/elementor/woo-widgets/product-grid.php:214, ../includes/theme-builder/elementor/woo-widgets/product-price.php:80, ../includes/theme-builder/elementor/woo-widgets/short-description.php:66 msgid "Center" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-content.php:77, ../includes/theme-builder/elementor/woo-widgets/short-description.php:74 msgid "Justified" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-gallery.php:25 msgid "Product Gallery" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-gallery.php:93 msgid "Gallery" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-gallery.php:120 msgid "Gallery Style" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-gallery.php:125, ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:84 msgid "Theme Default" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-gallery.php:126 msgid "Thumbnails" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-gallery.php:127 msgid "Left Thumbnails" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-gallery.php:128 msgid "Column" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-gallery.php:129 msgid "Two Columns" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-gallery.php:140 msgid "Gallery options" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-gallery.php:141 msgid "To enable gallery style options, you must select a tab style instead of \"Theme Default\"" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-gallery.php:151 msgid "Image Radius" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-gallery.php:167 msgid "Thumbnails Radius" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-gallery.php:213 msgid "Grid Gap" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-grid.php:34 msgid "Product Grid" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-grid.php:76 msgid "Columns" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-grid.php:92 msgid "Order By" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-grid.php:96 msgid "Date" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-grid.php:97, ../includes/theme-builder/elementor/woo-widgets/product-grid.php:232 msgid "Title" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-grid.php:98, ../includes/theme-builder/elementor/woo-widgets/product-grid.php:294, ../includes/theme-builder/elementor/woo-widgets/product-price.php:53 msgid "Price" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-grid.php:99 msgid "Popularity" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-grid.php:100 msgid "Rating" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-grid.php:101 msgid "Random" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-grid.php:102 msgid "Menu Order" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-grid.php:109 msgid "Order" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-grid.php:113 msgid "ASC" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-grid.php:114 msgid "DESC" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-grid.php:142 msgid "Columns Gap" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-grid.php:174 msgid "Rows Gap" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-grid.php:331 msgid "Regular Price" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-grid.php:369 msgid "Box" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-grid.php:549 msgid "No posts found." msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-meta.php:26, ../includes/theme-builder/elementor/woo-widgets/product-meta.php:52 msgid "Product Meta" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-meta.php:64 msgid "Can't see the categories or tags?" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-meta.php:65 msgid "If you simply can't see these infos, despite setting a product that has categories or tags, means they were disabled on Theme Options, at Woocommerce tab." msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-meta.php:72 msgid "View" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-meta.php:76 msgid "Table" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-meta.php:77, ../includes/theme-builder/elementor/woo-widgets/product-price.php:152 msgid "Stacked" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-meta.php:78 msgid "Inline" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-meta.php:87 msgid "Space Between" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-meta.php:115 msgid "Divider" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-meta.php:117 msgid "Off" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-meta.php:118 msgid "On" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-meta.php:130, ../includes/theme-builder/elementor/woo-widgets/sale-badge.php:49 msgid "Style" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-meta.php:133 msgid "Solid" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-meta.php:134 msgid "Double" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-meta.php:135 msgid "Dotted" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-meta.php:136 msgid "Dashed" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-meta.php:152 msgid "Weight" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-meta.php:183 msgid "Width" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-meta.php:202 msgid "Height" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-meta.php:250, ../includes/theme-builder/elementor/woo-widgets/sale-badge.php:65 msgid "Text" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-meta.php:278, ../includes/theme-builder/elementor/woo-widgets/product-rating.php:185 msgid "Link" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-meta.php:306 msgid "Hover Color" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-meta.php:319 msgid "Captions" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-meta.php:334, ../includes/theme-builder/elementor/woo-widgets/product-meta.php:367 msgid "Singular" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-meta.php:346, ../includes/theme-builder/elementor/woo-widgets/product-meta.php:379 msgid "Plural" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-meta.php:348, ../includes/theme-builder/elementor/woo-widgets/product-meta.php:448 msgid "Categories" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-meta.php:358, ../includes/theme-builder/elementor/woo-widgets/product-meta.php:369, ../includes/theme-builder/elementor/woo-widgets/product-meta.php:449 msgid "Tag" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-meta.php:381, ../includes/theme-builder/elementor/woo-widgets/product-meta.php:450 msgid "Tags" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-meta.php:391, ../includes/theme-builder/elementor/woo-widgets/product-meta.php:400, ../includes/theme-builder/elementor/woo-widgets/product-meta.php:402, ../includes/theme-builder/elementor/woo-widgets/product-meta.php:445 msgid "SKU" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-meta.php:415 msgid "Missing" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-meta.php:417, ../includes/theme-builder/elementor/woo-widgets/product-meta.php:446 msgid "N/A" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-price.php:64 msgid "Style problems?" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-price.php:65 msgid "Sale price styles will only work if the product have a sale price. Try selecting a different product for the preview if your changes don't seen to be applied." msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-price.php:123 msgid "Sale Price" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-rating.php:70 msgid "Rating Style" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-rating.php:71 msgid "To change the rating style, go to theme options; search for `rating style`; select a style; save it, than update this page to see the updated controls." msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-rating.php:131 msgid "Bar styles" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-rating.php:160 msgid "Grade Color" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-rating.php:80 msgid "Star styles" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-rating.php:87 msgid "Star Color" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-rating.php:98 msgid "Empty Star Color" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-rating.php:108 msgid "Star Size" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-rating.php:291 msgid "%s customer review" msgid_plural "%s customer reviews" msgstr[0] "" msgstr[1] "" #: ../includes/theme-builder/elementor/woo-widgets/product-stock.php:24 msgid "Product Stock" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-stock.php:50 msgid "Stock" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:27 msgid "Product Tabs" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:76 msgid "Tabs Style" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:85 msgid "Horizontal Tabs" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:86 msgid "Vertical Tabs" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:87 msgid "Accordion" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:88 msgid "Sections" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:98 msgid "Tabs" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:111 msgid "Tab options" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:112 msgid "To enable tab style options, you must select a tab style instead of \"Theme Default\"" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:165 msgid "Active" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:270 msgid "Tabs Spacing" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:299 msgid "Texts" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:326 msgid "Headings" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:333 msgid "Heading Color" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:376 msgid "Content Spacing" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:457 msgid "A fake tab to help you out." msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:458, ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:466 msgid "This tab appears only here, in editor mode, to help you style the widget." msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/product-tabs.php:465 msgid "An extra one for you." msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/sale-badge.php:23 msgid "Sale Badge" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/sale-badge.php:58 msgid "This widget will only be rendered if inside a product context and, of course, if the product is on sale." msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/sale-badge.php:67 msgid "Sale!" msgstr "" #: ../includes/theme-builder/elementor/woo-widgets/short-description.php:24, ../includes/theme-builder/elementor/woo-widgets/short-description.php:50 msgid "Short Description" msgstr "" PK ��}\�,b� � 5 includes/woocommerce/components/class-share-links.phpnu �[��� <?php namespace UiCore\WooCommerce; use UiCore\Utils; use UiCore\Helper; defined('ABSPATH') || exit(); /** * Woocommerce share product links Component. * * @author Lucas Marini <lucas@uicore.co> * @since 6.0.0 */ class ShareLinks { public function __construct() {} /** * Hook the Share Buttons component markup. * * @return void */ public static function init() { if (Helper::get_option('woos_share') === 'true') { add_action('woocommerce_share', [self::class, 'print_share_links'], 10); } } /** * Returns the data used to build the share button, for each platform. * * @return array */ public static function get_platforms_data() { $product_url = get_the_permalink(); $product_title = get_the_title(); $social_icons = Utils::get_social_icons(true); // Not all social platforms from $social_icons can be used to share links $accepted_plataforms = [ 'Facebook' => [], 'Tweeter' => [], 'Pinterest' => [], 'LinkedIn' => [], 'Whatsapp' => [], 'Telegram' => [], ]; // Mail is not a social platform, so we add it manually // $platforms[] = [ // 'label' => __('Share this product via email', 'uicore-framework'), // 'class' => 'uicore-i-mail', // 'url' => 'mailto:?subject=' . esc_html($product_title) . '&body=' . esc_url($product_url) // ]; foreach ($social_icons as $class => $name) { // Build URL switch($name) { case 'Facebook': $url = 'https://www.facebook.com/sharer/sharer.php?u=' . esc_url($product_url); break; case 'Tweeter': // Is not a typo, the platform is named this way on the social icons list $url = 'https://x.com/intent/tweet?url=' . esc_url($product_url); break; case 'Pinterest': $url = 'https://pinterest.com/pin/create/button/?url=' . esc_url($product_url) . '&media=' . get_the_post_thumbnail_url() . '&description=' . esc_html($product_title); break; case 'LinkedIn': $url = 'https://www.linkedin.com/shareArticle?mini=true&url=' . esc_url($product_url) . '&title=' . esc_html($product_title); break; case 'Whatsapp': $url = 'https://api.whatsapp.com/send?text=' . esc_url($product_url); break; case 'Telegram': $url = 'https://t.me/share/url?url=' . esc_url($product_url) ; break; default: $url = false; break; } // Ignore the platform if not accepted if (!array_key_exists($name, $accepted_plataforms) || !$url) { continue; } $platforms[] = [ 'label' => sprintf( __('Share this product on %s', 'uicore-framework'), $name), 'class' => $class, 'url' => $url ]; } return $platforms; } /** * Print the product share links section. * * @return string The share component HTML markup. */ public static function print_share_links() { $platforms = self::get_platforms_data(); $buttons = array_map( function($button) { return sprintf( '<a href="%s" target="_blank" rel="noopener noreferrer" title="%s" class="uicore-social-icon uicore-link %s"> </a>', $button['url'], $button['label'], $button['class'] ); }, $platforms ); echo '<div class="uicore-share-product">' . implode('', $buttons) . '</div>'; } } new ShareLinks();PK ��}\� ��h h 2 includes/woocommerce/components/class-swatches.phpnu �[��� <?php namespace UiCore\WooCommerce; use UiCore\Helper; defined('ABSPATH') || exit(); /** * Woocommerce Swatch Component. Here you'll find both front and backend functions. * * @author Lucas Marini <lucas@uicore.co * @since 6.0.0 */ class Swatches { public function __construct() { $this->render_swatch_fields(); $this->register_save_actions(); // Enqueue styles and scripts if( is_admin() && isset( $_GET['taxonomy'], $_GET['post_type'] ) && $_GET['post_type'] === 'product') { add_action('admin_enqueue_scripts', [$this, 'enqueue_admin_assets']); } } /** * Replace the Woo variation template for the swatch component. * @return void */ public static function init() { add_filter( 'woocommerce_dropdown_variation_attribute_options_html', [self::class, 'print_swatches_form'], 10, 2 ); } /** * Enqueues the Swatch assets for the admin dashboard funcionalities. * * @return void * @author Andrei Voica <andrei@uicore.co> */ function enqueue_admin_assets() { wp_enqueue_style('uicore-admin-swatches'); wp_enqueue_script('uicore-admin-swatches'); //required for upload wp_enqueue_media(); //required for color picker wp_enqueue_style('uicore-admin'); wp_enqueue_style('uicore-admin-icons'); wp_enqueue_style('uicore-admin-font'); } /** * Render the swatch fields in the admin dashboard pages. The pages are create/edit attributes and create/edit attribute terms. * @return void */ function render_swatch_fields() { // Attributes pages add_action('woocommerce_after_add_attribute_fields', [$this, 'create_attribute_fields']); add_action('woocommerce_after_edit_attribute_fields', [$this, 'edit_attribute_fields']); // Attribute terms pages $product_att_terms = wc_get_attribute_taxonomies(); foreach ( $product_att_terms as $term ) { $term_name = 'pa_' . $term->attribute_name; // `pa` stands for product attribute add_action("{$term_name}_add_form_fields", [$this, 'create_term_fields']); // Add fields to the term creation form add_action("{$term_name}_edit_form_fields", [$this, 'edit_term_fields'], 10, 2); // Add fields to the term edit form } } /** * Get the attribute swatch type. * @return string The swatch type. */ public static function get_attribute_swatch_type($attribute_slug) { $attribute_id = wc_attribute_taxonomy_id_by_name($attribute_slug); $attribute_data = wc_get_attribute($attribute_id); $swatch_type = ( $attribute_data) ? get_term_meta( $attribute_id, 'uicore_swatch_select', true ) : ''; return $swatch_type; } /** * Create the fields for the attribute terms creation form. * @return void */ function create_term_fields($taxonomy) { $swatch_type = $this->get_attribute_swatch_type($taxonomy); if ( !empty($swatch_type) ) : ?> <div class="form-field term-uicore-label-wrap"> <label for="uicore_label"><?php _e('Label', 'uicore-framework'); ?></label> <input type="text" name="uicore_label" id="uicore_label" value=""> <p class="description"><?php _e('Enter the label value.', 'uicore-framework'); ?></p> </div> <?php endif; ?> <?php if( $swatch_type === 'color') : ?> <div class="form-field term-uicore-color-wrap" data-color-picker="true"> <label for="uicore_color"><?php _e('Color', 'uicore-framework'); ?></label> <input type="hidden" name="uicore_color" id="uicore_color" value="#000000"> <span class="ui-color-preview" style="--ui-swatches-bg:black"></span> <input type="button" class="button select_icon_color_button" value="<?php _e( 'Select Color', 'uicore-framework'); ?>" onCLick="uicore_set_color()" /> <p class="description"><?php _e('Enter the color value.', 'uicore-framework'); ?></p> </div> <div class="form-field term-uicore-second-color-wrap" data-color-picker="true"> <label for="uicore_second_color"><?php _e('Second Color', 'uicore-framework'); ?></label> <input type="hidden" name="uicore_second_color" id="uicore_second_color" value=""> <span class="ui-color-preview" id="uicore_second_color_preview" ></span> <input type="button" class="button select_icon_color_button" value="<?php _e( 'Select Color', 'uicore-framework'); ?>" onCLick="uicore_set_color('second')" /> <input type="button" class="button remove_color" value="<?php _e( 'Remove Color', 'uicore-framework'); ?>" onCLick="uicore_remove_color()" /> <p class="description"><?php _e('Enter the second color value.', 'uicore-framework'); ?></p> </div> <?php elseif ( $swatch_type === 'image' || $swatch_type === 'button') : ?> <div class="form-field term-uicore-image-wrp"> <label for="uicore_image"><?php _e('Image', 'uicore-framework'); ?></label> <input type="hidden" name="uicore_image" id="uicore_image" value=""> <span class="ui-color-preview" id="uicore_image_preview"></span> <input type="button" class="button upload_image_button" value="<?php _e( 'Select Image', 'uicore-framework'); ?>" onCLick="uicore_set_image()" /> <input type="button" class="button remove_image_button" value="<?php _e( 'Remove Image', 'uicore-framework'); ?>" onCLick="uicore_remove_image()" /> <p class="description"><?php _e('Select image', 'uicore-framework'); ?></p> </div> <?php endif; } /** * Create the fields for the attribute terms edit form. * @return void */ function edit_term_fields($term, $taxonomy) { // Get the attribute swatch type $swatch_type = $this->get_attribute_swatch_type($taxonomy); // Get the attribute terms data $label = get_term_meta($term->term_id, 'uicore_label', true); $color = get_term_meta($term->term_id, 'uicore_color', true); $color_2 = get_term_meta($term->term_id, 'uicore_second_color', true); $image = get_term_meta($term->term_id, 'uicore_image', true); if ( !empty($swatch_type) ) : ?> <tr class="form-field term-uicore-label-wrap"> <th scope="row" valign="top"> <label for="uicore_label"><?php _e('Label', 'uicore-framework'); ?></label> </th> <td> <input type="text" name="uicore_label" id="uicore_label" value="<?php echo esc_attr($label); ?>"> <p class="description"><?php _e('Enter the label value.', 'uicore-framework'); ?></p> </td> </tr> <?php endif; ?> <?php if ( $swatch_type === 'color') : ?> <tr class="form-field uicore-field term-uicore-color-wrap"> <th scope="row" valign="top"> <label for="uicore_color"><?php _e('Color', 'uicore-framework'); ?></label> </th> <td> <input type="hidden" name="uicore_color" id="uicore_color" value="<?php echo esc_attr($color); ?>"> <span class="ui-color-preview" id="uicore_color_preview" style="--ui-swatches-bg:<?php echo esc_attr($color); ?>"></span> <input type="button" class="button select_icon_color_button" value="<?php _e( 'Select Color', 'uicore-framework'); ?>" onCLick="uicore_set_color()" /> <p class="description"><?php _e('Enter the color value.', 'uicore-framework'); ?></p> </td> </tr> <tr class="form-field uicore-field term-uicore-second-color-wrap"> <th scope="row" valign="top"> <label for="uicore_second-color"><?php _e('Secondary Color', 'uicore-framework'); ?></label> </th> <td> <input type="hidden" name="uicore_second_color" id="uicore_second_color" value="<?php echo esc_attr($color_2); ?>"> <span class="ui-color-preview" id="uicore_second_color_preview" style="--ui-swatches-bg:<?php echo esc_attr($color_2); ?>"></span> <input type="button" class="button select_icon_color_button" value="<?php _e( 'Select Color', 'uicore-framework'); ?>" onCLick="uicore_set_color('second')" /> <input type="button" class="button remove_color" value="<?php _e( 'Remove Color', 'uicore-framework'); ?>" onCLick="uicore_remove_color()" /> <p class="description"><?php _e('Enter the second color value.', 'uicore-framework'); ?></p> </td> </tr> <?php elseif ( $swatch_type === 'image' || $swatch_type === 'button') : ?> <tr class="form-field uicore-field term-uicore-image-wrap"> <th scope="row" valign="top"> <label for="uicore_image"><?php _e('Image', 'uicore-framework'); ?></label> </th> <td> <input type="hidden" name="uicore_image" id="uicore_image" value="<?php echo esc_url($image); ?>"> <span class="ui-color-preview" id="uicore_image_preview" style="<?php echo $image ? '--ui-swatches-bg: url('.\esc_url($image).') no-repeat center center/cover;' : '' ?>"></span> <input type="button" class="button upload_image_button" value="<?php _e( 'Select Image', 'uicore-framework'); ?>" onCLick="uicore_set_image()" /> <input type="button" class="button remove_image_button" value="<?php _e( 'Remove Image', 'uicore-framework'); ?>" onCLick="uicore_remove_image()" /> <p class="description"><?php _e('Select an image.', 'uicore-framework'); ?></p> </td> </tr> <?php endif; } /** * Create the fields for the attribute creation form. * @return void */ function create_attribute_fields() { // Select field ?> <div class="form-field uicore-swatch-select-wrap"> <label for="uicore_swatch_select"> <?php _e('Swatch type', 'uicore-framework'); ?> </label> <select name="uicore_swatch_select" id="uicore_swatch_select"> <option value=""><?php _e('Select', 'uicore-framework'); ?></option> <option value="color"><?php _e('Color', 'uicore-framework'); ?></option> <option value="image"><?php _e('Image', 'uicore-framework'); ?></option> <option value="label"><?php _e('Label', 'uicore-framework'); ?></option> <option value="button"><?php _e('Button', 'uicore-framework'); ?></option> </select> <p class="description"><?php _e('Determines the variation swatch type.', 'uicore-framework'); ?></p> </div> <?php } /** * Create the fields for the attribute edit form. * @return void */ function edit_attribute_fields() { $select = get_term_meta($_GET['edit'], 'uicore_swatch_select', true) ?> <tr class="form-field term-uicore-swatch-select-wrap"> <th scope="row" valign="top"> <label for="uicore_swatch_select"><?php _e('Swatch Type', 'uicore-framework'); ?></label> </th> <td> <select name="uicore_swatch_select" id="uicore_swatch_select"> <option value="" <?php selected($select, ''); ?>> <?php _e('Select', 'uicore-framework'); ?> </option> <option value="color" <?php selected($select, 'color'); ?>> <?php _e('Color', 'uicore-framework'); ?> </option> <option value="image" <?php selected($select, 'image'); ?>> <?php _e('Image', 'uicore-framework'); ?> </option> <option value="label" <?php selected($select, 'label'); ?>> <?php _e('Label', 'uicore-framework'); ?> </option> <option value="button" <?php selected($select, 'button'); ?>> <?php _e('Button', 'uicore-framework'); ?> </option> </select> <p class="description"><?php _e('Determines the variation swatch type.', 'uicore-framework'); ?></p> </td> </tr> <?php } /** * Save the swatch data in the database. * @return void */ public function save_data($term_id) { $fields = [ 'uicore_swatch_select', 'uicore_label', 'uicore_color', 'uicore_second_color', 'uicore_image_inherit', 'uicore_image' ]; foreach ($fields as $field) { if (isset($_POST[$field])) { $value = ( $field === 'uicore_image' ) ? esc_url_raw($_POST[$field]) : sanitize_text_field($_POST[$field]); update_term_meta($term_id, $field, $value); } else { // If the value is not set, delete the meta from db delete_term_meta($term_id, $field); } } } /** * Register the actions to save the swatch data in the database, for all attribute and attribute terms updates. */ public function register_save_actions() { // Attribute updates add_action('woocommerce_attribute_updated', [$this, 'save_data'], 10, 2); add_action('woocommerce_attribute_added', [$this, 'save_data'], 10, 2); // Attribute terms updates $product_att_terms = wc_get_attribute_taxonomies(); foreach ($product_att_terms as $term) { $term_name = 'pa_' . $term->attribute_name; // `pa` stands for product attribute add_action("created_{$term_name}", [$this, 'save_data'], 10, 2); add_action("edited_{$term_name}", [$this, 'save_data'], 10, 2); } } /** * Print the archive/loop templates Swatch component. * * @param WC_Product $product The product object. Optional, but required for Uicore Elements * widgets that makes use of this component. * @return string The swatches HTML markup. */ public static function print_swatches($product = null){ if( ! ( $product instanceof \WC_Product )){ $product = wc_get_product( get_the_ID() ); if( ! ( $product instanceof \WC_Product )){ return; } } $product_id = $product->get_id(); $attributes = wc_get_attribute_taxonomies(); $fallback_ref = end($attributes); foreach ( $attributes as $attribute ) { $att_name = 'pa_' . $attribute->attribute_name; // `pa` stands for product attribute $terms = get_the_terms($product_id, $att_name); $swatch_type = self::get_attribute_swatch_type($att_name); if ( !empty($terms) && !is_wp_error($terms) && $product !== false ) { // If the current swatch type is empty, it means is using the woo default if( empty($swatch_type) ) { // If is the last attribute iteration, fallback to woo default if ($attribute === $fallback_ref) { return; } continue; // Otherwise skip to the next $attribute iteration to check for the swatch type } // Prevent button swatches from being printed for UI purposes if( $swatch_type === 'button' ) { continue; } wp_enqueue_script('uicore-swatches'); // If we got this far, swatches will be used so is safe to enqueue the script $att_hash = 'attribute_' . $att_name; // the url param filter for product attribute terms is `attribute_pa_` and $att_name already comes with `pa_` prefix ?> <div class="uicore-swatches-wrp" name="<?php echo esc_attr($att_hash);?>"> <?php foreach($terms as $term) { $content = self::get_swatch_item_content($term, $swatch_type); $title = get_term_meta($term->term_id, 'uicore_label', true); $url = add_query_arg( $att_hash, $term->slug, $product->get_permalink() ); ?> <a href="<?php echo esc_url($url); ?>" value="<?php echo esc_attr($term->slug);?>" title="<?php echo esc_html($title); ?>" class="uicore-swatch uicore-swatch--<?php echo esc_attr($swatch_type)?>" > <?php if ( $swatch_type === 'color' || $swatch_type === 'image' ) : ?> <div style="<?php echo esc_html($content);?>"></div> <?php else : ?> <div> <?php echo esc_html($content);?> </div> <?php endif; ?> </a> <?php } ?> </div> <?php return; // Return on the first attribute found to avoid bloating if product has multiple attributes } } } /** * Print the single product Swatch component form. * * @param string $default_swatch The default woocommerce variation markup. * @param array $args The arguments to build the swatches form. * * @return string The swatches HTML markup. */ public static function print_swatches_form($default_swatch, $args) { $swatch_type = self::get_attribute_swatch_type($args['attribute']); // If the current swatch type is empty, it means is using the woo default if( empty($swatch_type) ) { return $default_swatch; } if(empty($args['options'])) { return $default_swatch; } wp_enqueue_script('uicore-swatches'); // If we got this far, swatches will be used so is safe to enqueue the script $attribute_ids = []; $terms = wc_get_product_terms( $args['product']->get_id(), $args['attribute'], array( 'fields' => 'all', ) ); ob_start(); ?> <ul class="uicore-swatches-wrp" > <?php foreach ( $terms as $term ) { if ( !in_array( $term->slug, $args['options'], true ) ) { continue; } $title = get_term_meta($term->term_id, 'uicore_label', true); $title = $title ? $title : $term->name; $content = self::get_swatch_item_content($term, $swatch_type); ?> <li data-value="<?php echo esc_attr($term->slug);?>" data-attribute-name="<?php echo esc_attr($args['attribute']);?>" title="<?php echo esc_html($title); ?>" class="uicore-swatch uicore-swatch--<?php echo esc_attr($swatch_type) . ( sanitize_title( $args['selected'] ) == $term->slug ? ' selected' : '' ); ?>" > <?php if ( $swatch_type === 'image' || $swatch_type === 'color' ) : ?> <div style="<?php echo esc_html($content);?>"></div> <?php else : ?> <div> <?php echo wp_kses_post($content); ?> </div> <?php endif; ?> </li> <?php } ?> </ul> <?php $html = ob_get_clean(); // Regex pattern to find the entire <select> element with id="pa_color" $pattern = '/(<select[^>]*id="' . esc_attr($args['attribute']) . '"[^>]*)(>)(.*?<\/select>)/is'; // Modify the matched <select> element to include the inline style and add the new markup $markup = preg_replace($pattern, '$1 style="display:none;"$2$3' . $html, $default_swatch); //add uicore-is-$swatch_type class to the select element $markup = preg_replace('/<select/', '<select class="uicore-is-' . $swatch_type . '"', $markup); return $markup; } /** * Return the content for each Swatch item based on the type. * * @param WP_Term $term The term object. * @param object $swatch_type The product attribute swatch type. * * @return string The content of the swatch item. */ public static function get_swatch_item_content($term, $swatch_type) { // Get the proper content and fallback for each type switch( $swatch_type ){ case 'color': // Get both colors $colors = [ get_term_meta($term->term_id, 'uicore_color', true), get_term_meta($term->term_id, 'uicore_second_color', true) ]; // Search among both colors in case user sets the second but not the first $data = isset($colors[0]) ? $colors[0] : ( isset($colors[1]) ? $colors[1] : '' ); // Build bicolor style if there's two colors set $content = ( !empty($colors[0]) && !empty($colors[1]) ) ? 'background: linear-gradient(-45deg, ' . $colors[0] . ' 50%, '. $colors[1] . ' 50%);' : 'background-color:' . $data; $fallback = 'background-color: #c8d6e5'; break; case 'image': $data = self::get_image_for_frontend($term); // Build the CSS background image property $content = 'background-image: url(' . esc_url($data) . ');'; $fallback = 'background-image: url(' . esc_url(wc_placeholder_img_src()) . ');'; break; case 'button': $image_data = self::get_image_for_frontend($term); $title = get_term_meta($term->term_id, 'uicore_label', true); $title = $title ? $title : $term->name; //create $data as an html that contains the image, the label and the description $data = ''; $data .= $image_data ? '<img class="uicore-button-img" src="' . esc_url($image_data) . '" alt="' . esc_html($title) . '" />' : ''; $data .= '<div class="uicore-button-text">'; $data .= '<div class="uicore-button-label">' . esc_html($title) . '</div>'; $data .= '<div class="uicore-button-desc">' . esc_html($term->description) . '</div>'; $data .= '</div>'; $content = $data; break; // Default case is `label` default: $data = get_term_meta($term->term_id, 'uicore_label', true); $content = $data; $fallback = esc_html($term->name); break; } if ( empty($data) ) { return $fallback; } return $content; } /** * Get current product variation custom image or the attribute term image. * @param WP_Term $term The term object. * * @return string The image URL. */ static function get_image_for_frontend($term) { // Check if the term should inherit the image from the product variation if (Helper::get_option('woo_swatch_inherit_image') === 'true') { global $product; if ($product && $product->is_type('variable')) { // Loop through variations foreach ($product->get_available_variations() as $variation) { $variation_id = $variation['variation_id']; $attributes = $variation['attributes']; $attribute_key = 'attribute_' . $term->taxonomy; // Check if this variation matches the current term if ( isset($attributes[$attribute_key]) && $attributes[$attribute_key] == $term->slug ) { // Get the variation image ID $variation_image_id = get_post_thumbnail_id($variation_id); if ($variation_image_id) { $data = wp_get_attachment_url($variation_image_id); break; } } } } // Fallback to term image if no variation image was found if (empty($data)) { $data = get_term_meta($term->term_id, 'uicore_image', true); } // Get term image otherwhise } else { $data = get_term_meta($term->term_id, 'uicore_image', true); } return $data; } } new Swatches(); PK ��}\*Pyr- - 1 includes/woocommerce/components/class-gallery.phpnu �[��� <?php namespace UiCore\WooCommerce; use Uicore\Helper; defined('ABSPATH') || exit(); /** * Woocommerce single product page Gallery Component. * * @author Lucas Marini <lucas@uicore.co * @since 6.0.0 */ class ProductGallery { public function __construct() {} /** * Returns the Gallery component markup or replace the Woo template for it. * * @param string $gallery_type The gallery type to be used. * @param bool $hook If true, replaces the Woocommerce variation template by the swatch component instead of returning the html markup. Default is false. * @return void/string The gallery HTML markup or void if hooking. */ public static function init(string $gallery_type, bool $hook = true) { // Get theme style if is a widget request but we want to use the framework option if( !$hook & $gallery_type === 'theme' ){ $gallery_type = Helper::get_option('woos_product_gallery'); } self::add_classes($gallery_type, $hook); // Theme Version (hooks markup to WC template) if($hook){ self::enqueue_assets($gallery_type); if( empty($gallery_type) ){ return; // Columns styles } else if( in_array($gallery_type, ['grid_column', 'grid_column_2']) ){ add_action('woocommerce_single_product_zoom_enabled', '__return_false' ); // Disables zoom remove_action('woocommerce_before_single_product_summary', 'woocommerce_show_product_images', 20 ); // Remove the default gallery add_action('woocommerce_before_single_product_summary', function() { self::grid_column_gallery(); }, 20); // Add the custom gallery return; } // Widget Version (returns markup) } else { // Columns styles if( in_array($gallery_type, ['grid_column', 'grid_column_2']) ) { return self::grid_column_gallery($gallery_type); } return \wc_get_template( 'single-product/product-image.php' ); } } /** * Enqueue the product gallery assets. * * @param string $gallery_type The gallery style to be used. * * @return void */ public static function enqueue_assets(string $gallery_type) { if( empty($gallery_type) ){ return; } \add_action('wp_enqueue_scripts', function() use ($gallery_type) { // Left thumbnails if( $gallery_type === 'left_thumbs' ){ wp_enqueue_style('uicore-product-gallery-thumbs'); // Columns } else { wp_enqueue_script('uicore-product-gallery-columns'); wp_enqueue_style('uicore-product-gallery-columns'); // Disables Elementor lightbox \wp_add_inline_script('elementor-frontend', 'document.addEventListener("DOMContentLoaded", function() { elementorFrontend.getKitSettings().global_image_lightbox = false; }); ','after'); } }); } /** * Add and remove custom classes to Woo product gallery default template. Usefull for styles that don't need custom markup, but classes. * * @param string $gallery_type The gallery type to be used. * * @return void */ public static function add_classes(string $gallery_type, bool $hook) { $custom_classes = [ 'left_thumbs' => 'uicore-gallery-left-thumbs', ]; // Before adding any classes, if is widget type request, remove all previolsy added classes since we would inherit them if( !$hook ){ add_filter('woocommerce_single_product_image_gallery_classes', function($classes) use ($custom_classes) { $classes = array_diff($classes, $custom_classes); return $classes; }); } // Left thumb classes if( $gallery_type === 'left_thumbs'){ add_filter('woocommerce_single_product_image_gallery_classes', function($classes) use ($custom_classes) { $classes[] = $custom_classes['left_thumbs']; return $classes; }); } } /** * Dequeue the product gallery assets enqueued by the theme. Usefull if the page is built with a theme builder and you want to clean any assets toprevents conflicts betweeen widget assets. */ public static function dequeue_theme_assets(){ $style = Helper::get_option('woos_product_gallery'); // Default woo style if( empty($style) ){ return; // Left thumbnails } else if( $style === 'left_thumbs'){ wp_dequeue_style('uicore-product-gallery-thumbs'); // Column styles } else { wp_enqueue_script('uicore-product-gallery-columns'); wp_dequeue_style('uicore-product-gallery-columns'); } } /** * Render the grid column gallery. This code is based on the `product-image.php` template from Woocommerce and should keep up with future updates. * * @param string $gallery_style The gallery style to be used. Default is false. * @return string The gallery HTML markup. */ public static function grid_column_gallery($gallery_style = false) { global $product; $columns = ''; $post_thumbnail_id = $product->get_image_id(); $wrapper_classes = [ 'woocommerce-product-gallery', 'woocommerce-product-gallery--' . ( $post_thumbnail_id ? 'with-images' : 'without-images' ), 'images', ]; $attachment_ids = $product->get_gallery_image_ids(); // Since the two columns gallery is built with an css variable, from theme options, at woo-css, // in widget case we overwrite this variable by adding it at a lower level (theme is added on div.product) if($gallery_style !== false){ $columns = $gallery_style === 'grid_column_2' ? '--uicore-gallery-columns: 2;' : '--uicore-gallery-columns: 1;'; } ?> <div class="<?php echo esc_attr( implode( ' ', array_map( 'sanitize_html_class', $wrapper_classes ) ) ); ?>" style="opacity: 0; transition: opacity .25s ease-in-out; <?php echo esc_attr($columns);?>"> <div class="woocommerce-product-gallery__grid-wrapper uicore-grid-gallery"> <?php if($post_thumbnail_id) : ?> <div class="woocommerce-product-gallery__image-wrap main-image"> <?php echo wc_get_gallery_image_html( $post_thumbnail_id, true ); ?> </div> <?php else : echo sprintf( '<img src="%s" alt="%s" class="wp-post-image" />', esc_url( wc_placeholder_img_src( 'woocommerce_single' ) ), esc_html__( 'Awaiting product image', 'woocommerce' ) ); endif; ?> <?php if($attachment_ids) : foreach ( $attachment_ids as $attachment_id ) : ?> <div class="woocommerce-product-gallery__image-wrap"> <?php echo wc_get_gallery_image_html( $attachment_id ); ?> </div> <?php endforeach; endif; ?> <?php if ( !$post_thumbnail_id && empty($attachment_ids) ) : ?> <div class="woocommerce-product-gallery__grid-item woocommerce-product-gallery__image--placeholder"> <?php sprintf( '<img src="%s" alt="%s" class="wp-post-image" />', esc_url( wc_placeholder_img_src( 'woocommerce_single' ) ), esc_html__( 'Awaiting product image', 'woocommerce' ) ); ?> </div> <?php endif; ?> </div> </div> <?php } } new ProductGallery(); PK ��}\��s' ' . includes/woocommerce/components/class-tabs.phpnu �[��� <?php namespace UiCore\WooCommerce; use UiCore\Helper; defined('ABSPATH') || exit(); /** * Woocommerce Single Product Tabs Component. * * @author Lucas Marini <lucas@uicore.co * @since 6.0.0 */ class Product_Tab { public function __construct() {} /** * Prepares and initialize everything for the Product Tabs component. * * @param string $gallery_type The gallery type to be used. * @param bool $hook If true, replaces the Woocommerce variation template by the swatch component instead of returning the html markup. * @return void/string The gallery HTML markup or void if hook is true. */ public static function init($tab_style, $hook = false) { // If empty and not hooking, means is coming from widget and is set as "theme default" $style = ( empty($tab_style) && !$hook ) ? Helper::get_option('woos_tabs_style') : $tab_style; // Check for both theme options keys and widget keys $custom_markup = strpos($style, 'accordion') !== false || strpos($style, 'sections') !== false; // Theme actions if($hook) { if($custom_markup){ add_action('woocommerce_product_tabs', [self::class, 'tabs_custom_style_markup'], 10); } self::manage_assets($style); // Widget actions } else { // Remove the custom template hook to avoid conflicts. in case theme options hooks a custom markup but widgets use the default template remove_action('woocommerce_product_tabs', [self::class, 'tabs_custom_style_markup'], 10); if($custom_markup){ $tabs = apply_filters('woocommerce_product_tabs', []); // Retrieve product tabs data array // TODO: `section` on TB with `accordion` on widget is conflicting. Removing the `tabs_custom_style_markup` hook here don't seen to work ob_start(); self::tabs_custom_style_markup($tabs, $style, true); return ob_get_clean(); // we need the ob_start so it returns a string since the elementor widget filters the content. This also counts for the default template. // TODO: update, we don't need to return string anymore I believe. } // Return the default template otherwise ob_start(); \wc_get_template( 'single-product/tabs/tabs.php' ); return ob_get_clean(); } } /** * Enqueue the selected tab style asset or dequeue theme style asset if no option is passed. * * @param string $tab_style The tab style to be used. If false, will dequeue the theme style asset. Default is false. * @return void */ public static function manage_assets($tab_style = false) { // Dequeue actions if( $tab_style === false ) { $handler = Helper::get_option('woos_tabs_style'); if ( empty($handler) ) { wp_dequeue_style('uicore-product-tabs-horizontal'); // 'horizontal' is set as empty value on class settings } else { wp_dequeue_style('uicore-product-tabs-' . $handler); } if ($handler === 'accordion') { wp_dequeue_script('uicore-product-tabs'); } return; } $styles = ['vertical', 'accordion', 'sections']; // horizontal is set as empty if ( in_array($tab_style, $styles) ) { wp_enqueue_style( 'uicore-product-tabs-' . $tab_style ); // Enqueue script if ( $tab_style === 'accordion' ) { wp_enqueue_script('uicore-product-tabs'); } } else if ( empty($tab_style) ) { wp_enqueue_style( 'uicore-product-tabs-horizontal' ); } } /** * Customize WooCommerce tabs markup * * @param array $tabs - The array of tabs data. * @param string $style - The tab style to be used. If false, pulls the style from theme options. * @param bool $return_markup - If true, returns the markup instead of an empty array. Default is false. * * @return array/void The html markup OR an empty array to prevent WooCommerce from outputting the default tabs. */ public static function tabs_custom_style_markup($tabs, $style = false, $return_markup = false) { // Retrieve the tab style from theme options if no option was passed $type = $style === false ? Helper::get_option('woos_tabs_style') : $style; $is_first = true; // Flag to add ui-active class to the first tab if ( !empty($tabs) ) : if( in_array($type, ['accordion', 'uicore-tab-accordion']) ){ ?> <div class="woocommerce-ui-accordion woocommerce-tabs"> <?php foreach ($tabs as $key => $tab) : //add ui-active class if is the first tab $class = $is_first ? ' ui-active' : ''; ?> <div class="ui-accordion"> <div class="ui-accordion-header<?php echo $is_first ? ' ui-active' : '' ?>"> <?php echo apply_filters('woocommerce_product_' . $key . '_tab_title', $tab['title'], $key); ?> </div> <div class="woocommerce-Tabs-panel" id="tab-<?php echo esc_attr($key); ?>" style="<?php echo $is_first ? '' : 'display:none' ?>"> <div class="ui-tabs-content"> <?php call_user_func($tab['callback'], $key, $tab); ?> </div> </div> </div> <?php $is_first = false; endforeach; ?> </div> <?php } else if( in_array($type, ['sections', 'uicore-tab-sections']) ) { ?> <div class="woocommerce-ui-sections woocommerce-tabs"> <?php foreach ($tabs as $key => $tab) : ?> <div class="ui-section"> <div class="ui-tabs-content woocommerce-Tabs-panel" id="tab-<?php echo esc_attr($key); ?>"> <div class="ui-tabs-content"> <?php call_user_func($tab['callback'], $key, $tab); ?> </div> </div> </div> <?php endforeach; ?> </div> <?php } endif; // Return an empty array to prevent WooCommerce from outputting the default tabs // since we're not returning because this function was hooked to the 'woocommerce_product_tabs' filter if($return_markup === false){ return array(); } } } new Product_Tab(); PK ��}\� }'g g '