Plugin Directory

Changeset 2639812


Ignore:
Timestamp:
12/06/2021 05:39:01 AM (4 years ago)
Author:
unibirdtech
Message:

Added Corposet, Fixed issues

Location:
pluglab/trunk
Files:
27 added
11 edited

Legend:

Unmodified
Added
Removed
  • pluglab/trunk/includes/class-pl-autoloader.php

    r2548911 r2639812  
    6363        } elseif ( 0 === strpos( $class, 'pl_theme_biznol_' ) ) {
    6464            $path = $this->include_path . 'theme/biznol/';
     65        } elseif ( 0 === strpos( $class, 'pl_theme_corposet_' ) ) {
     66            $path = $this->include_path . 'theme/corposet/';
    6567        }
    6668
  • pluglab/trunk/includes/class-pl-plugin.php

    r2548911 r2639812  
    3232    public static function install() {
    3333
    34         $postArg = array(
    35             'post_date'      => date( 'Y-m-d H:i:s' ),
    36             'comment_status' => 'closed',
    37             'post_author'    => 1,
    38             'ping_status'    => 'closed',
    39             'post_name'      => 'Home',
    40             'post_status'    => 'publish',
    41             'post_title'     => 'Home',
    42             'post_type'      => 'page',
    43         );
     34        self::add_actions();
     35       
    4436        /**
    45          * Create Page
     37         * Shapro
    4638         */
    47         $postID = wp_insert_post( $postArg, false );
    48         if ( $postID && ! is_wp_error( $postID ) ) {
    49             update_post_meta( $postID, '_wp_page_template', 'homepage-template.php' );
     39        if ( in_array( wp_get_theme()->name, apply_filters( 'shapro_init', array() ) ) ) {
     40            $is_already_setup=get_option('pl_default_setup');
     41 
     42            if (!$is_already_setup) {
     43                new PL_Theme_Shapro_Default_setup();
     44            }
     45        }
    5046
    51             /**
    52              * Homepage
    53              */
    54             $page = get_page_by_title( 'Home' );
    55             update_option( 'show_on_front', 'page' );
    56             update_option( 'page_on_front', $page->ID );
     47        /**
     48         * Biznol
     49         */
     50        if ( in_array( wp_get_theme()->name, apply_filters( 'biznol_init', array() ) ) ) {
     51            $is_already_setup=get_option('pl_default_setup');
     52 
     53            if (!$is_already_setup) {
     54                new PL_Theme_Biznol_Default_setup();
     55            }
    5756        }
     57
     58        /**
     59         * Corposet
     60         */
     61        if ( in_array( wp_get_theme()->name, apply_filters( 'corposet_init', array() ) ) ) {
     62            $is_already_setup=get_option('pl_default_setup');
     63 
     64            if (!$is_already_setup) {
     65                new PL_Theme_Corposet_Default_setup();
     66            }
     67        }
     68
     69        // $postArg = array(
     70        //  'post_date'      => date( 'Y-m-d H:i:s' ),
     71        //  'comment_status' => 'closed',
     72        //  'post_author'    => 1,
     73        //  'ping_status'    => 'closed',
     74        //  'post_name'      => 'Home',
     75        //  'post_status'    => 'publish',
     76        //  'post_title'     => 'Home',
     77        //  'post_type'      => 'page',
     78        // );
     79        // /**
     80        //  * Create Page
     81        //  */
     82        // $postID = wp_insert_post( $postArg, false );
     83        // if ( $postID && ! is_wp_error( $postID ) ) {
     84        //  update_post_meta( $postID, '_wp_page_template', 'homepage-template.php' );
     85
     86        //  /**
     87        //   * Homepage
     88        //   */
     89        //  $page = get_page_by_title( 'Home' );
     90        //  update_option( 'show_on_front', 'page' );
     91        //  update_option( 'page_on_front', $page->ID );
     92        // }
    5893    }
    5994
    6095    public function load() {
    6196
    62         add_action( 'init', array( $this, 'pluglab_textdomain' ) );
    63 
    64         add_filter( 'shapro_init', array( $this, 'shaproThemes' ), 10, 1 );
    65         add_filter( 'biznol_init', array( $this, 'biznolThemes' ), 10, 1 );
     97        self::add_actions();
    6698
    6799        /**
     
    77109            new PL_Theme_Biznol_Load();
    78110        }
     111        /**
     112         * Corposet
     113         */
     114        if ( in_array( wp_get_theme()->name, apply_filters( 'corposet_init', array() ) ) ) {
     115            new PL_Theme_Corposet_Load();
     116        }
    79117    }
    80118
    81     function shaproThemes( $flavours = array() ) {
     119    static function add_actions(){
     120        add_action( 'init', array( __CLASS__, 'pluglab_textdomain' ) );
     121
     122        add_filter( 'shapro_init', array( __CLASS__, 'shaproThemes' ), 10, 1 );
     123        add_filter( 'biznol_init', array( __CLASS__, 'biznolThemes' ), 10, 1 );
     124        add_filter( 'corposet_init', array( __CLASS__, 'corposetThemes' ), 10, 1 );
     125    }
     126
     127    static function shaproThemes( $flavours = array() ) {
    82128        return $flavours = array( 'Shapro', 'Shapro Child' );
    83129    }
    84130
    85     function biznolThemes( $flavours = array() ) {
     131    static function biznolThemes( $flavours = array() ) {
    86132        return $flavours = array( 'Biznol', 'Biznol Child' );
    87133    }
    88134
    89     function pluglab_textdomain() {
     135    static function corposetThemes( $flavours = array() ) {
     136        return $flavours = array( 'Corposet', 'Corposet Child' );
     137    }
     138
     139    static function pluglab_textdomain() {
    90140        load_plugin_textdomain( 'pluglab', false, plugin_dir_url( __FILE__ ) . 'languages' );
    91141    }
  • pluglab/trunk/includes/customizer/css/customizer.css

    r2441499 r2639812  
    808808    text-decoration: none;
    809809}
     810
     811
     812
     813/* Tabs */
     814.control-tabs {
     815    margin: -15px -12px 0;
     816    background: #fff;
     817    display: -webkit-box;
     818    display: -ms-flexbox;
     819    display: flex;
     820    border-bottom: 2px solid #e5e5e5;
     821  }
     822 
     823  .control-tab {
     824    /* cursor: pointer; */
     825    height: 50px;
     826    font-size: 16px;
     827    text-align: center;
     828    -webkit-box-flex: 0;
     829    -ms-flex: 0 0 50%;
     830    flex: 0 0 50%;
     831    max-width: 50%;
     832    display: -webkit-box;
     833    display: -ms-flexbox;
     834    display: flex;
     835    -webkit-box-align: center;
     836    -ms-flex-align: center;
     837    align-items: center;
     838    -webkit-box-pack: center;
     839    -ms-flex-pack: center;
     840    justify-content: center;
     841    border-bottom: 3px solid #fff;
     842  }
     843 
     844  .control-tab.active {
     845    border-color: #2271b1;
     846  }
     847  .customize-control.pluglab-hide-control {
     848    visibility: hidden;
     849    height: 0;
     850    margin: 0 !important;
     851  }
  • pluglab/trunk/includes/customizer/js/customizer-page-editor/customizer-text-editor.js

    r2441499 r2639812  
    44/* exported WPEditorWidget */
    55var WPEditorWidget = {
    6 
     6   
    77    /**
    88     * @var string
  • pluglab/trunk/includes/customizer/js/customizer.js

    r2441499 r2639812  
    649649    } );
    650650} )( jQuery, wp.customize );
     651
     652(function($){
     653    jQuery(document).ready(function ($) {
     654        "use strict";
     655     
     656        $('.customize-control-pluglab-tab-control').each(function () {
     657          $(this).parent().find('li').not('.section-meta').not('.customize-control-pluglab-tab-control').addClass('pluglab-hide-control');
     658          var generals = $(this).find('.control-tab-general').data('connected');
     659          $.each(generals, function (i, v) {
     660            $(this).removeClass('pluglab-hide-control'); //show
     661          });
     662          $(this).find('.control-tab').on('click', function () {
     663            var visibles = $(this).data('connected');
     664            $(this).addClass('active');
     665            $(this).siblings().removeClass('active');
     666            $(this).parent().parent().parent().find('li').not('.section-meta').not('.customize-control-pluglab-tab-control').addClass('pluglab-hide-control');
     667            $.each(visibles, function (i, v) {
     668              $(this).removeClass('pluglab-hide-control'); //show
     669            });
     670          });
     671        });
     672      });
     673})(jQuery)
     674
  • pluglab/trunk/includes/customizer/js/customizer_repeater.js

    r2441499 r2639812  
    262262            }
    263263        }
     264        if(parentid == 'customize-control-corposet_sidebar_cards')
     265        {
     266            var itms = jQuery("#customize-control-corposet_sidebar_cards .customizer-repeater-general-control-repeater-container").length
     267            if(itms >= 3){
     268              jQuery( "#customize-control-contactus_upgrade_notice .pluglab-upgrade-pro-message" ).show();
     269              return;   
     270            }
     271        }
    264272       
    265273       
  • pluglab/trunk/includes/theme/biznol/class-pl-theme-biznol-customizer.php

    r2548911 r2639812  
    430430            )
    431431        );
    432         $wp_customize->selective_refresh->add_partial(
    433             'service_display',
    434             array(
    435                 'selector'            => '.social',
    436                 'container_inclusive' => false,
    437                 'render_callback'     => function () {
    438                     echo pluglab_get_social_media();
    439                 },
    440                 'fallback_refresh'    => true,
    441             )
    442         );
     432        // $wp_customize->selective_refresh->add_partial(
     433        // 'service_display',
     434        // array(
     435        //      'selector'            => '.social',
     436        //      'container_inclusive' => false,
     437        //      'render_callback'     => function () {
     438        //          echo pluglab_get_social_media();
     439        //      },
     440        //      'fallback_refresh'    => true,
     441        // )
     442        // );
    443443
    444444        $wp_customize->add_setting(
  • pluglab/trunk/includes/theme/shapro/class-pl-theme-shapro-customizer.php

    r2548911 r2639812  
    882882            )
    883883        );
    884         $wp_customize->selective_refresh->add_partial(
    885             'service_display',
    886             array(
    887                 'selector'            => '.social',
    888                 'container_inclusive' => false,
    889                 'render_callback'     => function () {
    890                     echo pluglab_get_social_media();
    891                 },
    892                 'fallback_refresh'    => true,
    893             )
    894         );
     884        // $wp_customize->selective_refresh->add_partial(
     885        // 'service_display',
     886        // array(
     887        //      'selector'            => '.social',
     888        //      'container_inclusive' => false,
     889        //      'render_callback'     => function () {
     890        //          echo pluglab_get_social_media();
     891        //      },
     892        //      'fallback_refresh'    => true,
     893        // )
     894        // );
    895895
    896896        $wp_customize->add_setting(
  • pluglab/trunk/languages/pluglab.pot

    r2553717 r2639812  
    11# Copyright (C) 2021 UnibirdTech
    22# This file is distributed under the same license as the Pluglab plugin.
    3 #, fuzzy
    43msgid ""
    54msgstr ""
    6 "Project-Id-Version: Pluglab 0.0.5\n"
     5"Project-Id-Version: Pluglab 0.1.5\n"
    76"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pluglab\n"
    87"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1110"Content-Type: text/plain; charset=UTF-8\n"
    1211"Content-Transfer-Encoding: 8bit\n"
    13 "POT-Creation-Date: 2021-06-25 12:50+0530\n"
     12"POT-Creation-Date: 2021-12-06T05:29:40+00:00\n"
    1413"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    15 "X-Generator: Poedit 2.3\n"
     14"X-Generator: WP-CLI 2.4.0\n"
    1615"X-Domain: pluglab\n"
    1716
     
    2827msgstr ""
    2928
    30 #: includes/customizer/controls/class-pl-customizer-control-range-slider.php:42
     29#: includes/customizer/controls/class-pl-customizer-control-range-slider.php:51
    3130msgid "Reset"
    3231msgstr ""
    3332
    34 #: includes/customizer/controls/class-pl-customizer-control-repeater.php:704
     33#: includes/customizer/controls/class-pl-customizer-control-repeater.php:715
    3534msgid "Open links in new tab"
    3635msgstr ""
    3736
    38 #: includes/customizer/controls/class-pl-customizer-control-upgrade-notice.php:24
     37#: includes/customizer/controls/class-pl-customizer-control-tab.php:32
     38msgid "General"
     39msgstr ""
     40
     41#: includes/customizer/controls/class-pl-customizer-control-tab.php:33
     42msgid "Style"
     43msgstr ""
     44
     45#: includes/customizer/controls/class-pl-customizer-control-upgrade-notice.php:25
    3946msgid "and get more premium features."
    40 msgstr ""
    41 
    42 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:39
    43 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:39
    44 msgid "Top Header"
    4547msgstr ""
    4648
    4749#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:46
    4850#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:46
     51msgid "Top Header"
     52msgstr ""
     53
     54#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:54
     55#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:63
     56#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:54
    4957msgid "Slider"
    5058msgstr ""
    5159
    52 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:47
    53 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:47
     60#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:55
     61#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:64
     62#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:55
    5463msgid "Manage slider banner"
    5564msgstr ""
    5665
    57 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:54
    58 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:445
    59 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:61
    60 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:866
     66#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:63
     67#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:508
     68#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:91
     69#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1566
     70#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:71
     71#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:984
    6172msgid "Service"
    6273msgstr ""
    6374
    64 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:55
     75#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:64
     76#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:92
     77#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:72
     78msgid "Manage service section"
     79msgstr ""
     80
     81#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:72
     82#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:102
     83#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:80
     84msgid "Call to action"
     85msgstr ""
     86
     87#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:73
     88#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:103
     89#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:81
     90msgid "Manage CTA section"
     91msgstr ""
     92
     93#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:81
     94#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:612
     95#: includes/theme/biznol/class-pl-theme-biznol-layout.php:136
     96#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:111
     97#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1728
     98#: includes/theme/corposet/class-pl-theme-corposet-layout.php:219
     99#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:89
     100#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1112
     101msgid "Testimonial"
     102msgstr ""
     103
     104#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:82
     105#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:112
     106#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:90
     107msgid "Manage Testimonial section"
     108msgstr ""
     109
     110#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:89
     111#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:119
     112#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:97
     113msgid "Blog"
     114msgstr ""
     115
     116#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:90
     117#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:120
     118#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:98
     119msgid "Manage Blog section"
     120msgstr ""
     121
     122#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:167
     123#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:312
     124#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:185
     125#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:330
     126msgid "Hide/Show"
     127msgstr ""
     128
     129#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:188
     130#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:230
     131#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:226
     132#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:281
     133#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:206
     134#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:248
     135msgid "Icon"
     136msgstr ""
     137
     138#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:206
     139#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:245
     140#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:224
     141msgid "Mail Text"
     142msgstr ""
     143
     144#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:247
     145#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:299
     146#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:265
     147msgid "Phone Text"
     148msgstr ""
     149
     150#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:269
     151#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:287
     152msgid "Hide/Show Social icon"
     153msgstr ""
     154
     155#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:291
     156#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:362
     157#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:309
     158msgid "Social Icons"
     159msgstr ""
     160
     161#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:293
     162#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:365
     163#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:311
     164msgid "Add New Social"
     165msgstr ""
     166
     167#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:294
     168#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:366
     169#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:312
     170msgid "Social"
     171msgstr ""
     172
     173#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:327
     174#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:345
     175#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:807
     176msgid "Button Text"
     177msgstr ""
     178
     179#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:370
     180#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:427
     181#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:542
     182#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:645
     183#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:205
     184#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:340
     185#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:442
     186#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:518
     187#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:889
     188#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1462
     189#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1634
     190#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1761
     191#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1942
     192#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:388
     193#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:446
     194#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:744
     195#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:879
     196#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1018
     197#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1145
     198msgid "Display"
     199msgstr ""
     200
     201#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:390
     202#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:462
     203#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:408
     204msgid "Add New Slider"
     205msgstr ""
     206
     207#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:392
     208#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:464
     209#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:410
     210msgid "Slide Content"
     211msgstr ""
     212
     213#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:455
     214#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1490
     215#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:907
     216msgid "Service Title"
     217msgstr ""
     218
     219#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:463
     220#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1498
     221#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:915
     222msgid "Service title..."
     223msgstr ""
     224
     225#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:479
     226#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1514
     227#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:931
     228msgid "Service Sub-title"
     229msgstr ""
     230
     231#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:487
     232#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1522
     233#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:939
     234msgid "Service sub-title..."
     235msgstr ""
     236
     237#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:507
     238#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1565
     239#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:983
     240msgid "Add New Service"
     241msgstr ""
     242
     243#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:559
     244#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1651
     245#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1035
     246msgid "Testimonial Title"
     247msgstr ""
     248
     249#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:567
     250#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1659
     251#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1043
     252msgid "Testimonial title..."
     253msgstr ""
     254
     255#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:583
     256#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1675
     257#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1059
     258msgid "Testimonial Sub-title"
     259msgstr ""
     260
     261#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:591
     262#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1683
     263#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1067
     264msgid "Testimonial sub-title..."
     265msgstr ""
     266
     267#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:611
     268#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1727
     269#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1111
     270msgid "Add New Testinonial"
     271msgstr ""
     272
     273#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:662
     274#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1778
     275#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1162
     276msgid "Blog Title"
     277msgstr ""
     278
     279#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:670
     280#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1786
     281#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1170
     282msgid "Blog title..."
     283msgstr ""
     284
     285#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:686
     286#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1802
     287#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1186
     288msgid "Blog Sub-title"
     289msgstr ""
     290
     291#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:694
     292#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1810
     293#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1194
     294msgid "Blog sub-title..."
     295msgstr ""
     296
     297#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:714
     298#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1854
     299#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1238
     300msgid "Meta Information"
     301msgstr ""
     302
     303#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:734
     304#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1874
     305#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1258
     306msgid "Choose Blog Category"
     307msgstr ""
     308
     309#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:736
     310#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1876
     311#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1260
     312msgid "Select category to show posts from..."
     313msgstr ""
     314
     315#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:779
     316#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:2175
     317#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1313
     318msgid " Service Body"
     319msgstr ""
     320
     321#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:796
     322#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:2192
     323#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1330
     324msgid "GREAT REVIEWS"
     325msgstr ""
     326
     327#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:797
     328#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:2193
     329#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1331
     330msgid "Trusted Biggest Names"
     331msgstr ""
     332
     333#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:798
     334#: includes/theme/biznol/class-pl-theme-biznol-layout.php:210
     335#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:2195
     336msgid "Times Today"
     337msgstr ""
     338
     339#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:799
     340#: includes/theme/biznol/class-pl-theme-biznol-layout.php:211
     341#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:2196
     342#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1334
     343msgid "Avantage Blog Posts"
     344msgstr ""
     345
     346#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:812
     347#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:573
     348#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:2210
     349#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1332
     350#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1335
     351#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1348
     352msgid "Business we operate in is like an intricate"
     353msgstr ""
     354
     355#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:813
     356#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:2211
     357#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1349
     358msgid "Services We're offering"
     359msgstr ""
     360
     361#: includes/theme/biznol/class-pl-theme-biznol-customizer.php:814
     362#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:2212
     363#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1350
     364msgid "WHAT CAN WE OFFER"
     365msgstr ""
     366
     367#: includes/theme/biznol/class-pl-theme-biznol-layout.php:137
     368#: includes/theme/corposet/class-pl-theme-corposet-layout.php:220
     369msgid "Our achievement"
     370msgstr ""
     371
     372#: includes/theme/biznol/pl-default-functions.php:10
     373#: includes/theme/corposet/pl-default-functions.php:10
     374msgid "Exceeding Your Expectations"
     375msgstr ""
     376
     377#: includes/theme/biznol/pl-default-functions.php:11
     378#: includes/theme/corposet/pl-default-functions.php:11
     379msgid "Business we operate in is like an intricate game of strategy and chess, where every move counts and you keep score with money"
     380msgstr ""
     381
     382#: includes/theme/biznol/pl-default-functions.php:21
     383msgid "Future Is Bright Think Avantage"
     384msgstr ""
     385
     386#: includes/theme/biznol/pl-default-functions.php:22
     387#: includes/theme/corposet/pl-default-functions.php:22
     388msgid "Business we operate in is like an intricate game of strategy and chess, where every move counts and you keep score with money."
     389msgstr ""
     390
     391#: includes/theme/biznol/pl-default-functions.php:32
     392#: includes/theme/corposet/pl-default-functions.php:32
     393msgid "A collection of textile samples"
     394msgstr ""
     395
     396#: includes/theme/biznol/pl-default-functions.php:33
     397#: includes/theme/corposet/pl-default-functions.php:33
     398msgid "He lay on his armour-like back, and if he lifted his head a little he could see his brown belly."
     399msgstr ""
     400
     401#: includes/theme/biznol/pl-default-functions.php:122
     402#: includes/theme/biznol/pl-default-functions.php:132
     403#: includes/theme/biznol/pl-default-functions.php:141
     404#: includes/theme/corposet/pl-default-functions.php:95
     405#: includes/theme/corposet/pl-default-functions.php:105
     406msgid "As a app web crawler expert, I help organizations adjust to the expanding significace of internet promoting. placeholder text for use in your graphic, print."
     407msgstr ""
     408
     409#: includes/theme/biznol/pl-default-functions.php:218
     410#: includes/theme/corposet/pl-default-functions.php:194
     411#: includes/theme/shapro/pl-default-functions.php:122
     412msgid "fa-facebook"
     413msgstr ""
     414
     415#: includes/theme/biznol/pl-default-functions.php:219
     416#: includes/theme/biznol/pl-default-functions.php:224
     417#: includes/theme/biznol/pl-default-functions.php:229
     418#: includes/theme/biznol/pl-default-functions.php:234
     419#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:2257
     420#: includes/theme/corposet/pl-default-functions.php:195
     421#: includes/theme/corposet/pl-default-functions.php:200
     422#: includes/theme/corposet/pl-default-functions.php:205
     423#: includes/theme/corposet/pl-default-functions.php:210
     424#: includes/theme/shapro/pl-default-functions.php:123
     425#: includes/theme/shapro/pl-default-functions.php:128
     426#: includes/theme/shapro/pl-default-functions.php:133
     427#: includes/theme/shapro/pl-default-functions.php:138
     428msgid "#"
     429msgstr ""
     430
     431#: includes/theme/biznol/pl-default-functions.php:223
     432#: includes/theme/corposet/pl-default-functions.php:199
     433#: includes/theme/shapro/pl-default-functions.php:127
     434msgid "fa-twitter"
     435msgstr ""
     436
     437#: includes/theme/biznol/pl-default-functions.php:228
     438#: includes/theme/corposet/pl-default-functions.php:204
     439#: includes/theme/shapro/pl-default-functions.php:132
     440msgid "fa-linkedin"
     441msgstr ""
     442
     443#: includes/theme/biznol/pl-default-functions.php:233
     444#: includes/theme/corposet/pl-default-functions.php:209
     445#: includes/theme/shapro/pl-default-functions.php:137
     446msgid "fa-instagram"
     447msgstr ""
     448
     449#: includes/theme/corposet/class-pl-theme-corposet-about-section.php:123
     450msgid "Years Of Experience"
     451msgstr ""
     452
     453#: includes/theme/corposet/class-pl-theme-corposet-customizer-config.php:42
     454msgid "Slide description"
     455msgstr ""
     456
     457#: includes/theme/corposet/class-pl-theme-corposet-customizer-config.php:60
     458msgid "Button one text"
     459msgstr ""
     460
     461#: includes/theme/corposet/class-pl-theme-corposet-customizer-config.php:78
     462msgid "Button two text"
     463msgstr ""
     464
     465#: includes/theme/corposet/class-pl-theme-corposet-customizer-config.php:96
     466msgid "Button one text link (URL)"
     467msgstr ""
     468
     469#: includes/theme/corposet/class-pl-theme-corposet-customizer-config.php:105
     470msgid "Button two text link (URL)"
     471msgstr ""
     472
     473#: includes/theme/corposet/class-pl-theme-corposet-customizer-config.php:115
     474msgid "Button text"
     475msgstr ""
     476
     477#: includes/theme/corposet/class-pl-theme-corposet-customizer-config.php:152
     478#: includes/theme/corposet/class-pl-theme-corposet-customizer-config.php:198
     479msgid "Name"
     480msgstr ""
     481
     482#: includes/theme/corposet/class-pl-theme-corposet-customizer-config.php:161
     483#: includes/theme/corposet/class-pl-theme-corposet-customizer-config.php:216
     484msgid "Designation"
     485msgstr ""
     486
     487#: includes/theme/corposet/class-pl-theme-corposet-customizer-config.php:171
     488msgid "Best line"
     489msgstr ""
     490
     491#: includes/theme/corposet/class-pl-theme-corposet-customizer-config.php:180
     492msgid "Great Words"
     493msgstr ""
     494
     495#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:73
    65496#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:62
    66 msgid "Manage service section"
    67 msgstr ""
    68 
    69 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:62
    70 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:69
    71 msgid "Call to action"
    72 msgstr ""
    73 
    74 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:63
    75 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:70
    76 msgid "Manage CTA section"
    77 msgstr ""
    78 
    79 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:70
    80 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:531
    81 #: includes/theme/biznol/class-pl-theme-biznol-layout.php:130
    82 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:77
    83 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:974
    84 msgid "Testimonial"
    85 msgstr ""
    86 
    87 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:71
    88 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:78
    89 msgid "Manage Testimonial section"
    90 msgstr ""
    91 
    92 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:77
    93 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:84
    94 msgid "Blog"
    95 msgstr ""
    96 
    97 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:78
    98 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:85
    99 msgid "Manage Blog section"
    100 msgstr ""
    101 
    102 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:126
    103 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:143
    104 msgid "Logo Width"
    105 msgstr ""
    106 
    107 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:149
    108 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:282
    109 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:166
    110 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:304
    111 msgid "Hide/Show"
    112 msgstr ""
    113 
    114 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:168
    115 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:205
    116 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:185
    117 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:224
    118 msgid "Icon"
    119 msgstr ""
    120 
    121 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:183
    122 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:200
    123 msgid "Mail Text"
    124 msgstr ""
    125 
    126 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:219
    127 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:238
    128 msgid "Phone Text"
    129 msgstr ""
    130 
    131 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:241
    132 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:261
    133 msgid "Hide/Show Social icon"
    134 msgstr ""
    135 
    136 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:261
    137 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:282
    138 msgid "Social Icons"
    139 msgstr ""
    140 
    141 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:263
    142 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:284
    143 msgid "Add New Social"
    144 msgstr ""
    145 
    146 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:264
    147 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:285
    148 msgid "Social"
    149 msgstr ""
    150 
    151 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:295
    152 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:318
    153 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:712
    154 msgid "Button Text"
    155 msgstr ""
    156 
    157 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:334
    158 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:377
    159 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:473
    160 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:558
    161 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:358
    162 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:402
    163 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:655
    164 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:776
    165 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:894
    166 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1001
    167 msgid "Display"
    168 msgstr ""
    169 
    170 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:346
    171 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:370
    172 msgid "Add New Slider"
    173 msgstr ""
    174 
    175 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:348
    176 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:372
    177 msgid "Slide Content"
    178 msgstr ""
    179 
    180 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:401
    181 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:800
    182 msgid "Service Title"
    183 msgstr ""
    184 
    185 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:409
    186 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:808
    187 msgid "Service title..."
    188 msgstr ""
    189 
    190 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:423
    191 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:822
    192 msgid "Service Sub-title"
    193 msgstr ""
    194 
    195 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:431
     497msgid "Callout"
     498msgstr ""
     499
     500#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:74
     501#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:63
     502msgid "Manage callout section"
     503msgstr ""
     504
     505#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:82
     506msgid "portfolio"
     507msgstr ""
     508
     509#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:83
     510msgid "Manage all projects"
     511msgstr ""
     512
     513#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:529
     514msgid "We recent projects"
     515msgstr ""
     516
     517#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:551
     518msgid "Our Portfolio"
     519msgstr ""
     520
     521#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:617
     522#: includes/theme/corposet/class-pl-theme-corposet-portfolio-section.php:44
     523msgid "Project 1 title"
     524msgstr ""
     525
     526#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:626
     527#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:718
     528#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:809
     529#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:955
     530#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1049
     531#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1135
     532#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:512
     533#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:606
     534#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:692
     535#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:761
     536msgid "Title"
     537msgstr ""
     538
     539#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:633
     540#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:656
     541#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:725
     542#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:748
     543#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:816
     544#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:839
     545#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:962
     546#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:985
     547#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1056
     548#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1079
     549#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1142
     550#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1165
     551#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:519
     552#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:542
     553#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:613
     554#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:636
     555#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:699
     556#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:722
     557#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:768
     558msgid "Enter name..."
     559msgstr ""
     560
     561#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:641
     562#: includes/theme/corposet/class-pl-theme-corposet-portfolio-section.php:45
     563msgid "Project 1 description"
     564msgstr ""
     565
     566#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:649
     567#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:741
     568#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:832
     569#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:978
     570#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1072
     571#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1158
     572#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:535
     573#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:629
     574#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:715
     575#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:784
     576msgid "Description"
     577msgstr ""
     578
     579#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:710
     580#: includes/theme/corposet/class-pl-theme-corposet-portfolio-section.php:47
     581msgid "Project 2 title"
     582msgstr ""
     583
     584#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:733
     585#: includes/theme/corposet/class-pl-theme-corposet-portfolio-section.php:48
     586msgid "Project 2 description"
     587msgstr ""
     588
     589#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:801
     590msgid "Porject 3 title"
     591msgstr ""
     592
     593#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:824
     594#: includes/theme/corposet/class-pl-theme-corposet-portfolio-section.php:51
     595msgid "Project 3 description"
     596msgstr ""
     597
     598#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:924
     599#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:936
     600#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1030
     601#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1116
     602#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:481
     603#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:493
     604#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:587
     605#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:673
     606msgid "Icon class"
     607msgstr ""
     608
     609#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1537
     610msgid "Service description"
     611msgstr ""
     612
     613#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1545
     614msgid "Service brief-description..."
     615msgstr ""
     616
     617#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1699
     618#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1083
     619msgid "Testimonial Description"
     620msgstr ""
     621
     622#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1707
     623#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1091
     624msgid "Testimonial description..."
     625msgstr ""
     626
     627#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1826
     628#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1210
     629msgid "Blog Description"
     630msgstr ""
     631
     632#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1834
     633#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1218
     634msgid "Blog description..."
     635msgstr ""
     636
     637#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1918
     638msgid "Show Social Icons"
     639msgstr ""
     640
     641#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:2194
     642msgid "Your brief about achievements"
     643msgstr ""
     644
     645#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:2197
     646msgid "Our Latest updates"
     647msgstr ""
     648
     649#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:2258
     650#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:2259
     651msgid "Lorem Ipsum"
     652msgstr ""
     653
     654#: includes/theme/corposet/class-pl-theme-corposet-customizer.php:2260
     655#: includes/theme/shapro/class-pl-theme-shapro-layout.php:395
     656msgid "Read More"
     657msgstr ""
     658
     659#: includes/theme/corposet/class-pl-theme-corposet-layout.php:281
     660msgid "Today Times"
     661msgstr ""
     662
     663#: includes/theme/corposet/class-pl-theme-corposet-layout.php:282
     664msgid "Our Latest News"
     665msgstr ""
     666
     667#: includes/theme/corposet/class-pl-theme-corposet-portfolio-section.php:50
     668msgid "Project 3 title"
     669msgstr ""
     670
     671#: includes/theme/corposet/pl-default-functions.php:21
     672msgid "Future Is Bright In Corporet"
     673msgstr ""
     674
     675#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:791
     676msgid "Enter description..."
     677msgstr ""
     678
     679#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:814
     680msgid "Enter button text..."
     681msgstr ""
     682
    196683#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:830
    197 msgid "Service sub-title..."
    198 msgstr ""
    199 
    200 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:444
    201 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:865
    202 msgid "Add New Service"
    203 msgstr ""
    204 
    205 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:487
    206 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:908
    207 msgid "Testimonial Title"
    208 msgstr ""
    209 
    210 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:495
    211 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:916
    212 msgid "Testimonial title..."
    213 msgstr ""
    214 
    215 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:509
    216 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:930
    217 msgid "Testimonial Sub-title"
    218 msgstr ""
    219 
    220 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:517
    221 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:938
    222 msgid "Testimonial sub-title..."
    223 msgstr ""
    224 
    225 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:530
    226 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:973
    227 msgid "Add New Testinonial"
    228 msgstr ""
    229 
    230 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:572
    231 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1015
    232 msgid "Blog Title"
    233 msgstr ""
    234 
    235 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:580
    236 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1023
    237 msgid "Blog title..."
    238 msgstr ""
    239 
    240 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:594
    241 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1037
    242 msgid "Blog Sub-title"
    243 msgstr ""
    244 
    245 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:602
    246 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1045
    247 msgid "Blog sub-title..."
    248 msgstr ""
    249 
    250 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:618
    251 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1083
    252 msgid "Meta Information"
    253 msgstr ""
    254 
    255 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:633
    256 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1100
    257 msgid "Choose Blog Category"
    258 msgstr ""
    259 
    260 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:635
    261 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1102
    262 msgid "Select category to show posts from..."
    263 msgstr ""
    264 
    265 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:665
    266 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1142
    267 msgid " Service Body"
    268 msgstr ""
    269 
    270 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:682
    271 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1159
    272 msgid "GREAT REVIEWS"
    273 msgstr ""
    274 
    275 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:683
    276 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1160
    277 msgid "Trusted Biggest Names"
    278 msgstr ""
    279 
    280 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:684
    281 #: includes/theme/biznol/class-pl-theme-biznol-layout.php:204
    282 msgid "Times Today"
    283 msgstr ""
    284 
    285 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:685
    286 #: includes/theme/biznol/class-pl-theme-biznol-layout.php:205
    287 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1163
    288 msgid "Avantage Blog Posts"
    289 msgstr ""
    290 
    291 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:698
    292 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1161
    293 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1164
    294 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1177
    295 msgid "Business we operate in is like an intricate"
    296 msgstr ""
    297 
    298 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:699
    299 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1178
    300 msgid "Services We're offering"
    301 msgstr ""
    302 
    303 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:700
    304 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1179
    305 msgid "WHAT CAN WE OFFER"
    306 msgstr ""
    307 
    308 #: includes/theme/biznol/class-pl-theme-biznol-layout.php:131
    309 msgid "Our achievement"
    310 msgstr ""
    311 
    312 #: includes/theme/biznol/pl-default-functions.php:9
    313 msgid "Exceeding Your Expectations"
    314 msgstr ""
    315 
    316 #: includes/theme/biznol/pl-default-functions.php:10
    317 msgid "Business we operate in is like an intricate game of strategy and chess, where every move counts and you keep score with money"
    318 msgstr ""
    319 
    320 #: includes/theme/biznol/pl-default-functions.php:20
    321 msgid "Future Is Bright Think Avantage"
    322 msgstr ""
    323 
    324 #: includes/theme/biznol/pl-default-functions.php:21
    325 msgid "Business we operate in is like an intricate game of strategy and chess, where every move counts and you keep score with money."
    326 msgstr ""
    327 
    328 #: includes/theme/biznol/pl-default-functions.php:31
    329 msgid "A collection of textile samples"
    330 msgstr ""
    331 
    332 #: includes/theme/biznol/pl-default-functions.php:32
    333 msgid "He lay on his armour-like back, and if he lifted his head a little he could see his brown belly."
    334 msgstr ""
    335 
    336 #: includes/theme/biznol/pl-default-functions.php:119
    337 #: includes/theme/biznol/pl-default-functions.php:129
    338 #: includes/theme/biznol/pl-default-functions.php:138
    339 msgid "As a app web crawler expert, I help organizations adjust to the expanding significace of internet promoting. placeholder text for use in your graphic, print."
    340 msgstr ""
    341 
    342 #: includes/theme/biznol/pl-default-functions.php:214
    343 #: includes/theme/shapro/pl-default-functions.php:118
    344 msgid "fa-facebook"
    345 msgstr ""
    346 
    347 #: includes/theme/biznol/pl-default-functions.php:215
    348 #: includes/theme/biznol/pl-default-functions.php:220
    349 #: includes/theme/biznol/pl-default-functions.php:225
    350 #: includes/theme/biznol/pl-default-functions.php:230
    351 #: includes/theme/shapro/pl-default-functions.php:119
    352 #: includes/theme/shapro/pl-default-functions.php:124
    353 #: includes/theme/shapro/pl-default-functions.php:129
    354 #: includes/theme/shapro/pl-default-functions.php:134
    355 msgid "#"
    356 msgstr ""
    357 
    358 #: includes/theme/biznol/pl-default-functions.php:219
    359 #: includes/theme/shapro/pl-default-functions.php:123
    360 msgid "fa-twitter"
    361 msgstr ""
    362 
    363 #: includes/theme/biznol/pl-default-functions.php:224
    364 #: includes/theme/shapro/pl-default-functions.php:128
    365 msgid "fa-linkedin"
    366 msgstr ""
    367 
    368 #: includes/theme/biznol/pl-default-functions.php:229
    369 #: includes/theme/shapro/pl-default-functions.php:133
    370 msgid "fa-instagram"
    371 msgstr ""
    372 
    373 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:53
    374 msgid "Callout"
    375 msgstr ""
    376 
    377 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:54
    378 msgid "Manage callout section"
    379 msgstr ""
    380 
    381 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:429
    382 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:439
    383 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:520
    384 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:593
    385 msgid "Icon class"
    386 msgstr ""
    387 
    388 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:455
    389 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:536
    390 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:609
    391 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:670
    392 msgid "Title"
    393 msgstr ""
    394 
    395 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:462
    396 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:483
    397 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:543
    398 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:564
    399 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:616
    400 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:637
    401 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:677
    402 msgid "Enter name..."
    403 msgstr ""
    404 
    405 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:476
    406 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:557
    407 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:630
    408 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:691
    409 msgid "Description"
    410 msgstr ""
    411 
    412 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:698
    413 msgid "Enter description..."
    414 msgstr ""
    415 
    416 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:719
    417 msgid "Enter button text..."
    418 msgstr ""
    419 
    420 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:733
    421684msgid "Button Link"
    422685msgstr ""
    423686
    424 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:740
     687#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:837
    425688msgid "Enter link..."
    426689msgstr ""
    427690
    428 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:757
     691#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:856
    429692msgid "Open the link to a new tab"
    430693msgstr ""
    431694
    432 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:844
     695#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:955
    433696msgid "Service Description"
    434697msgstr ""
    435698
    436 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:852
     699#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:963
    437700msgid "Service description..."
    438701msgstr ""
    439702
    440 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:952
    441 msgid "Testimonial Description"
    442 msgstr ""
    443 
    444 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:960
    445 msgid "Testimonial description..."
    446 msgstr ""
    447 
    448 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1059
    449 msgid "Blog Description"
    450 msgstr ""
    451 
    452 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1067
    453 msgid "Blog description..."
    454 msgstr ""
    455 
    456 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1162
     703#: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1333
    457704msgid "OUR LATEST NEWS"
    458705msgstr ""
    459706
    460 #: includes/theme/shapro/class-pl-theme-shapro-layout.php:350
     707#: includes/theme/shapro/class-pl-theme-shapro-layout.php:365
    461708msgid "by "
    462709msgstr ""
    463 
    464 #: includes/theme/shapro/class-pl-theme-shapro-layout.php:374
    465 msgid "Read More"
    466 msgstr ""
  • pluglab/trunk/pluglab.php

    r2608815 r2639812  
    55  Plugin URI:
    66  Description: Pluglab contain all features which are required to create a complete website. Main motive behind this plugin is to boost up functionality of Unibird themes.
    7   Version: 0.1.2
     7  Version: 0.1.5
    88  Author: UnibirdTech
    99  Text Domain: pluglab
     
    1313
    1414if ( ! defined( 'PL_PLUGIN_VERSION' ) ) {
    15     define( 'PL_PLUGIN_VERSION', '0.1.1' );
     15    define( 'PL_PLUGIN_VERSION', '0.1.5' );
    1616}
    1717
  • pluglab/trunk/readme.txt

    r2608815 r2639812  
    44Tags: customizer, logo,header, Testimonial, callout, service
    55Tested up to: 5.8.1
    6 Stable tag: 0.1.2
     6Stable tag: 0.1.5
    77License: GPLv3 License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
    88
     
    6464= 0.1.2 =
    6565* Fixes bug
     66
     67= 0.1.5 =
     68* Added corposet layout
     69* Fixes bug
Note: See TracChangeset for help on using the changeset viewer.