Changeset 2639812
- Timestamp:
- 12/06/2021 05:39:01 AM (4 years ago)
- Location:
- pluglab/trunk
- Files:
-
- 27 added
- 11 edited
-
assets/images/about-img.jpg (added)
-
assets/images/corposet (added)
-
assets/images/corposet/bg.jpg (added)
-
assets/images/corposet/img.jpg (added)
-
assets/images/corposet/img02.jpg (added)
-
assets/images/corposet/img03.jpg (added)
-
assets/images/corposet/slide1.jpg (added)
-
assets/images/corposet/slide2.jpg (added)
-
assets/images/corposet/slide3.jpg (added)
-
assets/images/signature.png (added)
-
includes/class-pl-autoloader.php (modified) (1 diff)
-
includes/class-pl-plugin.php (modified) (2 diffs)
-
includes/customizer/controls/class-pl-customizer-control-page-editor.php (added)
-
includes/customizer/controls/class-pl-customizer-control-tab.php (added)
-
includes/customizer/css/customizer.css (modified) (1 diff)
-
includes/customizer/js/customizer-page-editor/customizer-text-editor.js (modified) (1 diff)
-
includes/customizer/js/customizer.js (modified) (1 diff)
-
includes/customizer/js/customizer_repeater.js (modified) (1 diff)
-
includes/theme/biznol/class-pl-theme-biznol-customizer.php (modified) (1 diff)
-
includes/theme/biznol/class-pl-theme-biznol-default-setup.php (added)
-
includes/theme/corposet (added)
-
includes/theme/corposet/class-pl-theme-corposet-about-section.php (added)
-
includes/theme/corposet/class-pl-theme-corposet-custom-action.php (added)
-
includes/theme/corposet/class-pl-theme-corposet-customizer-config.php (added)
-
includes/theme/corposet/class-pl-theme-corposet-customizer.php (added)
-
includes/theme/corposet/class-pl-theme-corposet-default-setup.php (added)
-
includes/theme/corposet/class-pl-theme-corposet-layout.php (added)
-
includes/theme/corposet/class-pl-theme-corposet-load.php (added)
-
includes/theme/corposet/class-pl-theme-corposet-portfolio-section.php (added)
-
includes/theme/corposet/class-pl-theme-corposet-service-section.php (added)
-
includes/theme/corposet/class-pl-theme-corposet-slider.php (added)
-
includes/theme/corposet/custom.js (added)
-
includes/theme/corposet/pl-default-functions.php (added)
-
includes/theme/shapro/class-pl-theme-shapro-customizer.php (modified) (1 diff)
-
includes/theme/shapro/class-pl-theme-shapro-default-setup.php (added)
-
languages/pluglab.pot (modified) (3 diffs)
-
pluglab.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pluglab/trunk/includes/class-pl-autoloader.php
r2548911 r2639812 63 63 } elseif ( 0 === strpos( $class, 'pl_theme_biznol_' ) ) { 64 64 $path = $this->include_path . 'theme/biznol/'; 65 } elseif ( 0 === strpos( $class, 'pl_theme_corposet_' ) ) { 66 $path = $this->include_path . 'theme/corposet/'; 65 67 } 66 68 -
pluglab/trunk/includes/class-pl-plugin.php
r2548911 r2639812 32 32 public static function install() { 33 33 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 44 36 /** 45 * Create Page37 * Shapro 46 38 */ 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 } 50 46 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 } 57 56 } 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 // } 58 93 } 59 94 60 95 public function load() { 61 96 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(); 66 98 67 99 /** … … 77 109 new PL_Theme_Biznol_Load(); 78 110 } 111 /** 112 * Corposet 113 */ 114 if ( in_array( wp_get_theme()->name, apply_filters( 'corposet_init', array() ) ) ) { 115 new PL_Theme_Corposet_Load(); 116 } 79 117 } 80 118 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() ) { 82 128 return $flavours = array( 'Shapro', 'Shapro Child' ); 83 129 } 84 130 85 function biznolThemes( $flavours = array() ) {131 static function biznolThemes( $flavours = array() ) { 86 132 return $flavours = array( 'Biznol', 'Biznol Child' ); 87 133 } 88 134 89 function pluglab_textdomain() { 135 static function corposetThemes( $flavours = array() ) { 136 return $flavours = array( 'Corposet', 'Corposet Child' ); 137 } 138 139 static function pluglab_textdomain() { 90 140 load_plugin_textdomain( 'pluglab', false, plugin_dir_url( __FILE__ ) . 'languages' ); 91 141 } -
pluglab/trunk/includes/customizer/css/customizer.css
r2441499 r2639812 808 808 text-decoration: none; 809 809 } 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 4 4 /* exported WPEditorWidget */ 5 5 var WPEditorWidget = { 6 6 7 7 /** 8 8 * @var string -
pluglab/trunk/includes/customizer/js/customizer.js
r2441499 r2639812 649 649 } ); 650 650 } )( 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 262 262 } 263 263 } 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 } 264 272 265 273 -
pluglab/trunk/includes/theme/biznol/class-pl-theme-biznol-customizer.php
r2548911 r2639812 430 430 ) 431 431 ); 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 // ); 443 443 444 444 $wp_customize->add_setting( -
pluglab/trunk/includes/theme/shapro/class-pl-theme-shapro-customizer.php
r2548911 r2639812 882 882 ) 883 883 ); 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 // ); 895 895 896 896 $wp_customize->add_setting( -
pluglab/trunk/languages/pluglab.pot
r2553717 r2639812 1 1 # Copyright (C) 2021 UnibirdTech 2 2 # This file is distributed under the same license as the Pluglab plugin. 3 #, fuzzy4 3 msgid "" 5 4 msgstr "" 6 "Project-Id-Version: Pluglab 0. 0.5\n"5 "Project-Id-Version: Pluglab 0.1.5\n" 7 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pluglab\n" 8 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 11 10 "Content-Type: text/plain; charset=UTF-8\n" 12 11 "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" 14 13 "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" 16 15 "X-Domain: pluglab\n" 17 16 … … 28 27 msgstr "" 29 28 30 #: includes/customizer/controls/class-pl-customizer-control-range-slider.php: 4229 #: includes/customizer/controls/class-pl-customizer-control-range-slider.php:51 31 30 msgid "Reset" 32 31 msgstr "" 33 32 34 #: includes/customizer/controls/class-pl-customizer-control-repeater.php:7 0433 #: includes/customizer/controls/class-pl-customizer-control-repeater.php:715 35 34 msgid "Open links in new tab" 36 35 msgstr "" 37 36 38 #: includes/customizer/controls/class-pl-customizer-control-upgrade-notice.php:24 37 #: includes/customizer/controls/class-pl-customizer-control-tab.php:32 38 msgid "General" 39 msgstr "" 40 41 #: includes/customizer/controls/class-pl-customizer-control-tab.php:33 42 msgid "Style" 43 msgstr "" 44 45 #: includes/customizer/controls/class-pl-customizer-control-upgrade-notice.php:25 39 46 msgid "and get more premium features." 40 msgstr ""41 42 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:3943 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:3944 msgid "Top Header"45 47 msgstr "" 46 48 47 49 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:46 48 50 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:46 51 msgid "Top Header" 52 msgstr "" 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 49 57 msgid "Slider" 50 58 msgstr "" 51 59 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 54 63 msgid "Manage slider banner" 55 64 msgstr "" 56 65 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 61 72 msgid "Service" 62 73 msgstr "" 63 74 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 78 msgid "Manage service section" 79 msgstr "" 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 84 msgid "Call to action" 85 msgstr "" 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 90 msgid "Manage CTA section" 91 msgstr "" 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 101 msgid "Testimonial" 102 msgstr "" 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 107 msgid "Manage Testimonial section" 108 msgstr "" 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 113 msgid "Blog" 114 msgstr "" 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 119 msgid "Manage Blog section" 120 msgstr "" 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 126 msgid "Hide/Show" 127 msgstr "" 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 135 msgid "Icon" 136 msgstr "" 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 141 msgid "Mail Text" 142 msgstr "" 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 147 msgid "Phone Text" 148 msgstr "" 149 150 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:269 151 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:287 152 msgid "Hide/Show Social icon" 153 msgstr "" 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 158 msgid "Social Icons" 159 msgstr "" 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 164 msgid "Add New Social" 165 msgstr "" 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 170 msgid "Social" 171 msgstr "" 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 176 msgid "Button Text" 177 msgstr "" 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 198 msgid "Display" 199 msgstr "" 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 204 msgid "Add New Slider" 205 msgstr "" 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 210 msgid "Slide Content" 211 msgstr "" 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 216 msgid "Service Title" 217 msgstr "" 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 222 msgid "Service title..." 223 msgstr "" 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 228 msgid "Service Sub-title" 229 msgstr "" 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 234 msgid "Service sub-title..." 235 msgstr "" 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 240 msgid "Add New Service" 241 msgstr "" 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 246 msgid "Testimonial Title" 247 msgstr "" 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 252 msgid "Testimonial title..." 253 msgstr "" 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 258 msgid "Testimonial Sub-title" 259 msgstr "" 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 264 msgid "Testimonial sub-title..." 265 msgstr "" 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 270 msgid "Add New Testinonial" 271 msgstr "" 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 276 msgid "Blog Title" 277 msgstr "" 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 282 msgid "Blog title..." 283 msgstr "" 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 288 msgid "Blog Sub-title" 289 msgstr "" 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 294 msgid "Blog sub-title..." 295 msgstr "" 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 300 msgid "Meta Information" 301 msgstr "" 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 306 msgid "Choose Blog Category" 307 msgstr "" 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 312 msgid "Select category to show posts from..." 313 msgstr "" 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 318 msgid " Service Body" 319 msgstr "" 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 324 msgid "GREAT REVIEWS" 325 msgstr "" 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 330 msgid "Trusted Biggest Names" 331 msgstr "" 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 336 msgid "Times Today" 337 msgstr "" 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 343 msgid "Avantage Blog Posts" 344 msgstr "" 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 352 msgid "Business we operate in is like an intricate" 353 msgstr "" 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 358 msgid "Services We're offering" 359 msgstr "" 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 364 msgid "WHAT CAN WE OFFER" 365 msgstr "" 366 367 #: includes/theme/biznol/class-pl-theme-biznol-layout.php:137 368 #: includes/theme/corposet/class-pl-theme-corposet-layout.php:220 369 msgid "Our achievement" 370 msgstr "" 371 372 #: includes/theme/biznol/pl-default-functions.php:10 373 #: includes/theme/corposet/pl-default-functions.php:10 374 msgid "Exceeding Your Expectations" 375 msgstr "" 376 377 #: includes/theme/biznol/pl-default-functions.php:11 378 #: includes/theme/corposet/pl-default-functions.php:11 379 msgid "Business we operate in is like an intricate game of strategy and chess, where every move counts and you keep score with money" 380 msgstr "" 381 382 #: includes/theme/biznol/pl-default-functions.php:21 383 msgid "Future Is Bright Think Avantage" 384 msgstr "" 385 386 #: includes/theme/biznol/pl-default-functions.php:22 387 #: includes/theme/corposet/pl-default-functions.php:22 388 msgid "Business we operate in is like an intricate game of strategy and chess, where every move counts and you keep score with money." 389 msgstr "" 390 391 #: includes/theme/biznol/pl-default-functions.php:32 392 #: includes/theme/corposet/pl-default-functions.php:32 393 msgid "A collection of textile samples" 394 msgstr "" 395 396 #: includes/theme/biznol/pl-default-functions.php:33 397 #: includes/theme/corposet/pl-default-functions.php:33 398 msgid "He lay on his armour-like back, and if he lifted his head a little he could see his brown belly." 399 msgstr "" 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 406 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." 407 msgstr "" 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 412 msgid "fa-facebook" 413 msgstr "" 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 428 msgid "#" 429 msgstr "" 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 434 msgid "fa-twitter" 435 msgstr "" 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 440 msgid "fa-linkedin" 441 msgstr "" 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 446 msgid "fa-instagram" 447 msgstr "" 448 449 #: includes/theme/corposet/class-pl-theme-corposet-about-section.php:123 450 msgid "Years Of Experience" 451 msgstr "" 452 453 #: includes/theme/corposet/class-pl-theme-corposet-customizer-config.php:42 454 msgid "Slide description" 455 msgstr "" 456 457 #: includes/theme/corposet/class-pl-theme-corposet-customizer-config.php:60 458 msgid "Button one text" 459 msgstr "" 460 461 #: includes/theme/corposet/class-pl-theme-corposet-customizer-config.php:78 462 msgid "Button two text" 463 msgstr "" 464 465 #: includes/theme/corposet/class-pl-theme-corposet-customizer-config.php:96 466 msgid "Button one text link (URL)" 467 msgstr "" 468 469 #: includes/theme/corposet/class-pl-theme-corposet-customizer-config.php:105 470 msgid "Button two text link (URL)" 471 msgstr "" 472 473 #: includes/theme/corposet/class-pl-theme-corposet-customizer-config.php:115 474 msgid "Button text" 475 msgstr "" 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 479 msgid "Name" 480 msgstr "" 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 484 msgid "Designation" 485 msgstr "" 486 487 #: includes/theme/corposet/class-pl-theme-corposet-customizer-config.php:171 488 msgid "Best line" 489 msgstr "" 490 491 #: includes/theme/corposet/class-pl-theme-corposet-customizer-config.php:180 492 msgid "Great Words" 493 msgstr "" 494 495 #: includes/theme/corposet/class-pl-theme-corposet-customizer.php:73 65 496 #: 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 497 msgid "Callout" 498 msgstr "" 499 500 #: includes/theme/corposet/class-pl-theme-corposet-customizer.php:74 501 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:63 502 msgid "Manage callout section" 503 msgstr "" 504 505 #: includes/theme/corposet/class-pl-theme-corposet-customizer.php:82 506 msgid "portfolio" 507 msgstr "" 508 509 #: includes/theme/corposet/class-pl-theme-corposet-customizer.php:83 510 msgid "Manage all projects" 511 msgstr "" 512 513 #: includes/theme/corposet/class-pl-theme-corposet-customizer.php:529 514 msgid "We recent projects" 515 msgstr "" 516 517 #: includes/theme/corposet/class-pl-theme-corposet-customizer.php:551 518 msgid "Our Portfolio" 519 msgstr "" 520 521 #: includes/theme/corposet/class-pl-theme-corposet-customizer.php:617 522 #: includes/theme/corposet/class-pl-theme-corposet-portfolio-section.php:44 523 msgid "Project 1 title" 524 msgstr "" 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 536 msgid "Title" 537 msgstr "" 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 558 msgid "Enter name..." 559 msgstr "" 560 561 #: includes/theme/corposet/class-pl-theme-corposet-customizer.php:641 562 #: includes/theme/corposet/class-pl-theme-corposet-portfolio-section.php:45 563 msgid "Project 1 description" 564 msgstr "" 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 576 msgid "Description" 577 msgstr "" 578 579 #: includes/theme/corposet/class-pl-theme-corposet-customizer.php:710 580 #: includes/theme/corposet/class-pl-theme-corposet-portfolio-section.php:47 581 msgid "Project 2 title" 582 msgstr "" 583 584 #: includes/theme/corposet/class-pl-theme-corposet-customizer.php:733 585 #: includes/theme/corposet/class-pl-theme-corposet-portfolio-section.php:48 586 msgid "Project 2 description" 587 msgstr "" 588 589 #: includes/theme/corposet/class-pl-theme-corposet-customizer.php:801 590 msgid "Porject 3 title" 591 msgstr "" 592 593 #: includes/theme/corposet/class-pl-theme-corposet-customizer.php:824 594 #: includes/theme/corposet/class-pl-theme-corposet-portfolio-section.php:51 595 msgid "Project 3 description" 596 msgstr "" 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 606 msgid "Icon class" 607 msgstr "" 608 609 #: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1537 610 msgid "Service description" 611 msgstr "" 612 613 #: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1545 614 msgid "Service brief-description..." 615 msgstr "" 616 617 #: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1699 618 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1083 619 msgid "Testimonial Description" 620 msgstr "" 621 622 #: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1707 623 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1091 624 msgid "Testimonial description..." 625 msgstr "" 626 627 #: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1826 628 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1210 629 msgid "Blog Description" 630 msgstr "" 631 632 #: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1834 633 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1218 634 msgid "Blog description..." 635 msgstr "" 636 637 #: includes/theme/corposet/class-pl-theme-corposet-customizer.php:1918 638 msgid "Show Social Icons" 639 msgstr "" 640 641 #: includes/theme/corposet/class-pl-theme-corposet-customizer.php:2194 642 msgid "Your brief about achievements" 643 msgstr "" 644 645 #: includes/theme/corposet/class-pl-theme-corposet-customizer.php:2197 646 msgid "Our Latest updates" 647 msgstr "" 648 649 #: includes/theme/corposet/class-pl-theme-corposet-customizer.php:2258 650 #: includes/theme/corposet/class-pl-theme-corposet-customizer.php:2259 651 msgid "Lorem Ipsum" 652 msgstr "" 653 654 #: includes/theme/corposet/class-pl-theme-corposet-customizer.php:2260 655 #: includes/theme/shapro/class-pl-theme-shapro-layout.php:395 656 msgid "Read More" 657 msgstr "" 658 659 #: includes/theme/corposet/class-pl-theme-corposet-layout.php:281 660 msgid "Today Times" 661 msgstr "" 662 663 #: includes/theme/corposet/class-pl-theme-corposet-layout.php:282 664 msgid "Our Latest News" 665 msgstr "" 666 667 #: includes/theme/corposet/class-pl-theme-corposet-portfolio-section.php:50 668 msgid "Project 3 title" 669 msgstr "" 670 671 #: includes/theme/corposet/pl-default-functions.php:21 672 msgid "Future Is Bright In Corporet" 673 msgstr "" 674 675 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:791 676 msgid "Enter description..." 677 msgstr "" 678 679 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:814 680 msgid "Enter button text..." 681 msgstr "" 682 196 683 #: 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:444201 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:865202 msgid "Add New Service"203 msgstr ""204 205 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:487206 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:908207 msgid "Testimonial Title"208 msgstr ""209 210 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:495211 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:916212 msgid "Testimonial title..."213 msgstr ""214 215 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:509216 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:930217 msgid "Testimonial Sub-title"218 msgstr ""219 220 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:517221 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:938222 msgid "Testimonial sub-title..."223 msgstr ""224 225 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:530226 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:973227 msgid "Add New Testinonial"228 msgstr ""229 230 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:572231 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1015232 msgid "Blog Title"233 msgstr ""234 235 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:580236 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1023237 msgid "Blog title..."238 msgstr ""239 240 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:594241 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1037242 msgid "Blog Sub-title"243 msgstr ""244 245 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:602246 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1045247 msgid "Blog sub-title..."248 msgstr ""249 250 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:618251 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1083252 msgid "Meta Information"253 msgstr ""254 255 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:633256 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1100257 msgid "Choose Blog Category"258 msgstr ""259 260 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:635261 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1102262 msgid "Select category to show posts from..."263 msgstr ""264 265 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:665266 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1142267 msgid " Service Body"268 msgstr ""269 270 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:682271 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1159272 msgid "GREAT REVIEWS"273 msgstr ""274 275 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:683276 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1160277 msgid "Trusted Biggest Names"278 msgstr ""279 280 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:684281 #: includes/theme/biznol/class-pl-theme-biznol-layout.php:204282 msgid "Times Today"283 msgstr ""284 285 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:685286 #: includes/theme/biznol/class-pl-theme-biznol-layout.php:205287 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1163288 msgid "Avantage Blog Posts"289 msgstr ""290 291 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:698292 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1161293 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1164294 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1177295 msgid "Business we operate in is like an intricate"296 msgstr ""297 298 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:699299 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1178300 msgid "Services We're offering"301 msgstr ""302 303 #: includes/theme/biznol/class-pl-theme-biznol-customizer.php:700304 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:1179305 msgid "WHAT CAN WE OFFER"306 msgstr ""307 308 #: includes/theme/biznol/class-pl-theme-biznol-layout.php:131309 msgid "Our achievement"310 msgstr ""311 312 #: includes/theme/biznol/pl-default-functions.php:9313 msgid "Exceeding Your Expectations"314 msgstr ""315 316 #: includes/theme/biznol/pl-default-functions.php:10317 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:20321 msgid "Future Is Bright Think Avantage"322 msgstr ""323 324 #: includes/theme/biznol/pl-default-functions.php:21325 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:31329 msgid "A collection of textile samples"330 msgstr ""331 332 #: includes/theme/biznol/pl-default-functions.php:32333 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:119337 #: includes/theme/biznol/pl-default-functions.php:129338 #: includes/theme/biznol/pl-default-functions.php:138339 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:214343 #: includes/theme/shapro/pl-default-functions.php:118344 msgid "fa-facebook"345 msgstr ""346 347 #: includes/theme/biznol/pl-default-functions.php:215348 #: includes/theme/biznol/pl-default-functions.php:220349 #: includes/theme/biznol/pl-default-functions.php:225350 #: includes/theme/biznol/pl-default-functions.php:230351 #: includes/theme/shapro/pl-default-functions.php:119352 #: includes/theme/shapro/pl-default-functions.php:124353 #: includes/theme/shapro/pl-default-functions.php:129354 #: includes/theme/shapro/pl-default-functions.php:134355 msgid "#"356 msgstr ""357 358 #: includes/theme/biznol/pl-default-functions.php:219359 #: includes/theme/shapro/pl-default-functions.php:123360 msgid "fa-twitter"361 msgstr ""362 363 #: includes/theme/biznol/pl-default-functions.php:224364 #: includes/theme/shapro/pl-default-functions.php:128365 msgid "fa-linkedin"366 msgstr ""367 368 #: includes/theme/biznol/pl-default-functions.php:229369 #: includes/theme/shapro/pl-default-functions.php:133370 msgid "fa-instagram"371 msgstr ""372 373 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:53374 msgid "Callout"375 msgstr ""376 377 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:54378 msgid "Manage callout section"379 msgstr ""380 381 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:429382 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:439383 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:520384 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:593385 msgid "Icon class"386 msgstr ""387 388 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:455389 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:536390 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:609391 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:670392 msgid "Title"393 msgstr ""394 395 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:462396 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:483397 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:543398 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:564399 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:616400 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:637401 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:677402 msgid "Enter name..."403 msgstr ""404 405 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:476406 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:557407 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:630408 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:691409 msgid "Description"410 msgstr ""411 412 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:698413 msgid "Enter description..."414 msgstr ""415 416 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:719417 msgid "Enter button text..."418 msgstr ""419 420 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:733421 684 msgid "Button Link" 422 685 msgstr "" 423 686 424 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php: 740687 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:837 425 688 msgid "Enter link..." 426 689 msgstr "" 427 690 428 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php: 757691 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:856 429 692 msgid "Open the link to a new tab" 430 693 msgstr "" 431 694 432 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php: 844695 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:955 433 696 msgid "Service Description" 434 697 msgstr "" 435 698 436 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php: 852699 #: includes/theme/shapro/class-pl-theme-shapro-customizer.php:963 437 700 msgid "Service description..." 438 701 msgstr "" 439 702 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 457 704 msgid "OUR LATEST NEWS" 458 705 msgstr "" 459 706 460 #: includes/theme/shapro/class-pl-theme-shapro-layout.php:3 50707 #: includes/theme/shapro/class-pl-theme-shapro-layout.php:365 461 708 msgid "by " 462 709 msgstr "" 463 464 #: includes/theme/shapro/class-pl-theme-shapro-layout.php:374465 msgid "Read More"466 msgstr "" -
pluglab/trunk/pluglab.php
r2608815 r2639812 5 5 Plugin URI: 6 6 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. 27 Version: 0.1.5 8 8 Author: UnibirdTech 9 9 Text Domain: pluglab … … 13 13 14 14 if ( ! defined( 'PL_PLUGIN_VERSION' ) ) { 15 define( 'PL_PLUGIN_VERSION', '0.1. 1' );15 define( 'PL_PLUGIN_VERSION', '0.1.5' ); 16 16 } 17 17 -
pluglab/trunk/readme.txt
r2608815 r2639812 4 4 Tags: customizer, logo,header, Testimonial, callout, service 5 5 Tested up to: 5.8.1 6 Stable tag: 0.1. 26 Stable tag: 0.1.5 7 7 License: GPLv3 License URI: https://www.gnu.org/licenses/gpl-3.0.en.html 8 8 … … 64 64 = 0.1.2 = 65 65 * Fixes bug 66 67 = 0.1.5 = 68 * Added corposet layout 69 * Fixes bug
Note: See TracChangeset
for help on using the changeset viewer.