Version Description
- Fixed: Filter by Widget / Addon, Filter by Category inputs removed after
Back to Library
button is clicked.
Download this release
Release Info
Developer | leap13 |
Plugin | Premium Addons for Elementor |
Version | 3.6.3 |
Comparing to | |
See all releases |
Code changes from version 3.6.2 to 3.6.3
- admin/includes/version-control.php +1 -1
- admin/settings/modules-setting.php +1 -3
- assets/editor/templates/js/editor.js +16 -2
- assets/frontend/js/lib/prettyPhoto.js +1 -18
- languages/premium-addons-for-elementor.pot +725 -639
- premium-addons-for-elementor.php +3 -3
- readme.txt +5 -1
- widgets/premium-grid.php +6 -2
admin/includes/version-control.php
CHANGED
@@ -91,7 +91,7 @@ class Version_Control {
|
|
91 |
<tr class="pa-roll-row">
|
92 |
<th><?php echo __('Rollback Version', 'premium-addons-for-elementor'); ?></th>
|
93 |
<td>
|
94 |
-
<div><?php echo sprintf( '<a target="_blank" href="%1$s" class="button pa-btn pa-rollback-button elementor-button-spinner">%2$s</a>', wp_nonce_url( admin_url( 'admin-post.php?action=premium_addons_rollback' ), 'premium_addons_rollback' ), __('Reinstall Version 3.6.
|
95 |
<p class="pa-roll-desc">
|
96 |
<span><?php echo __('Warning: Please backup your database before making the rollback.', 'premium-addons-for-elementor'); ?></span>
|
97 |
</p>
|
91 |
<tr class="pa-roll-row">
|
92 |
<th><?php echo __('Rollback Version', 'premium-addons-for-elementor'); ?></th>
|
93 |
<td>
|
94 |
+
<div><?php echo sprintf( '<a target="_blank" href="%1$s" class="button pa-btn pa-rollback-button elementor-button-spinner">%2$s</a>', wp_nonce_url( admin_url( 'admin-post.php?action=premium_addons_rollback' ), 'premium_addons_rollback' ), __('Reinstall Version 3.6.2', 'premium-addons-for-elementor') ); ?></div>
|
95 |
<p class="pa-roll-desc">
|
96 |
<span><?php echo __('Warning: Please backup your database before making the rollback.', 'premium-addons-for-elementor'); ?></span>
|
97 |
</p>
|
admin/settings/modules-setting.php
CHANGED
@@ -2,10 +2,8 @@
|
|
2 |
|
3 |
namespace PremiumAddons\Admin\Settings;
|
4 |
|
5 |
-
use PremiumAddons\Admin\Includes\Admin_Notices;
|
6 |
use PremiumAddons\Helper_Functions;
|
7 |
|
8 |
-
|
9 |
if( ! defined( 'ABSPATH' ) ) exit(); // Exit if accessed directly
|
10 |
|
11 |
class Modules_Settings {
|
@@ -695,7 +693,7 @@ class Modules_Settings {
|
|
695 |
|
696 |
$is_enabled = isset( $premium_templates ) ? $premium_templates : 1;
|
697 |
|
698 |
-
return $
|
699 |
}
|
700 |
|
701 |
public function pa_save_settings() {
|
2 |
|
3 |
namespace PremiumAddons\Admin\Settings;
|
4 |
|
|
|
5 |
use PremiumAddons\Helper_Functions;
|
6 |
|
|
|
7 |
if( ! defined( 'ABSPATH' ) ) exit(); // Exit if accessed directly
|
8 |
|
9 |
class Modules_Settings {
|
693 |
|
694 |
$is_enabled = isset( $premium_templates ) ? $premium_templates : 1;
|
695 |
|
696 |
+
return $is_enabled;
|
697 |
}
|
698 |
|
699 |
public function pa_save_settings() {
|
assets/editor/templates/js/editor.js
CHANGED
@@ -158,7 +158,7 @@
|
|
158 |
} else if (-1 !== this.getOption('notice').indexOf("form")) {
|
159 |
message += "<p>You need to have <a href='https://wordpress.org/plugins/contact-form-7/' target='_blank'>Contact Form 7 plugin</a> installed and active.</p>";
|
160 |
}
|
161 |
-
|
162 |
this.ui.notice.html('<div><p><strong>Important!</strong></p>' + message + '</div>');
|
163 |
}
|
164 |
}
|
@@ -536,7 +536,10 @@
|
|
536 |
|
537 |
var header = this.getHeaderView(),
|
538 |
preview = PremiumEditor.getPreview();
|
539 |
-
|
|
|
|
|
|
|
540 |
if ('back' === preview) {
|
541 |
header.headerLogo.show(new self.ModalHeaderLogo());
|
542 |
header.headerTabs.show(new self.ModalTabsCollectionView({
|
@@ -545,6 +548,17 @@
|
|
545 |
|
546 |
header.headerActions.empty();
|
547 |
PremiumEditor.setTab(PremiumEditor.getTab());
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
548 |
return;
|
549 |
}
|
550 |
|
158 |
} else if (-1 !== this.getOption('notice').indexOf("form")) {
|
159 |
message += "<p>You need to have <a href='https://wordpress.org/plugins/contact-form-7/' target='_blank'>Contact Form 7 plugin</a> installed and active.</p>";
|
160 |
}
|
161 |
+
|
162 |
this.ui.notice.html('<div><p><strong>Important!</strong></p>' + message + '</div>');
|
163 |
}
|
164 |
}
|
536 |
|
537 |
var header = this.getHeaderView(),
|
538 |
preview = PremiumEditor.getPreview();
|
539 |
+
|
540 |
+
var filter = PremiumEditor.getFilter('category'),
|
541 |
+
keyword = PremiumEditor.getFilter('keyword');
|
542 |
+
|
543 |
if ('back' === preview) {
|
544 |
header.headerLogo.show(new self.ModalHeaderLogo());
|
545 |
header.headerTabs.show(new self.ModalTabsCollectionView({
|
548 |
|
549 |
header.headerActions.empty();
|
550 |
PremiumEditor.setTab(PremiumEditor.getTab());
|
551 |
+
|
552 |
+
if( '' != filter ) {
|
553 |
+
PremiumEditor.setFilter( 'category', filter );
|
554 |
+
jQuery('#premium-modal-filters-container').find("input[value='" + filter + "']").prop('checked', true);
|
555 |
+
|
556 |
+
}
|
557 |
+
|
558 |
+
if( '' != keyword ) {
|
559 |
+
PremiumEditor.setFilter('keyword', keyword);
|
560 |
+
}
|
561 |
+
|
562 |
return;
|
563 |
}
|
564 |
|
assets/frontend/js/lib/prettyPhoto.js
CHANGED
@@ -1,18 +1 @@
|
|
1 |
-
!function(t){function e(){var t=location.href;return hashtag=-1!==t.indexOf("#prettyPhoto")&&decodeURI(t.substring(t.indexOf("#prettyPhoto")+1,t.length)),hashtag&&(hashtag=hashtag.replace(/<|>/g,"")),hashtag}function i(){"undefined"!=typeof theRel&&(location.hash=theRel+"/"+rel_index+"/")}function p(){-1!==location.href.indexOf("#prettyPhoto")&&(location.hash="prettyPhoto")}function o(t,e){var i="[\\?&]"+(t=t.replace(/[\[]/,"\\[").replace(/[\]]/,"\\]"))+"=([^&#]*)",p=new RegExp(i).exec(e);return null==p?"":p[1]}t.prettyPhoto={version:"3.1.6"},t.fn.prettyPhoto=function(a){function s(){t(".pp_loaderIcon").hide(),projectedTop=scroll_pos.scrollTop+(I/2-f.containerHeight/2),projectedTop<0&&(projectedTop=0),$ppt.fadeTo(settings.animation_speed,1),$pp_pic_holder.find(".pp_content").animate({height:f.contentHeight,width:f.contentWidth},settings.animation_speed),$pp_pic_holder.animate({top:projectedTop,left:j/2-f.containerWidth/2<0?0:j/2-f.containerWidth/2,width:f.containerWidth},settings.animation_speed,function(){$pp_pic_holder.find(".pp_hoverContainer,#fullResImage").height(f.height).width(f.width),$pp_pic_holder.find(".pp_fade").fadeIn(settings.animation_speed),isSet&&"image"==h(pp_images[set_position])?$pp_pic_holder.find(".pp_hoverContainer").show():$pp_pic_holder.find(".pp_hoverContainer").hide(),settings.allow_expand&&(f.resized?t("a.pp_expand,a.pp_contract").show():t("a.pp_expand").hide()),!settings.autoplay_slideshow||P||v||t.prettyPhoto.startSlideshow(),settings.changepicturecallback(),v=!0}),m(),a.ajaxcallback()}function n(e){$pp_pic_holder.find("#pp_full_res object,#pp_full_res embed").css("visibility","hidden"),$pp_pic_holder.find(".pp_fade").fadeOut(settings.animation_speed,function(){t(".pp_loaderIcon").show(),e()})}function l(e){e>1?t(".pp_nav").show():t(".pp_nav").hide()}function r(t,e){if(resized=!1,d(t,e),imageWidth=t,imageHeight=e,(k>j||b>I)&&doresize&&settings.allow_resize&&!$){for(resized=!0,fitting=!1;!fitting;)k>j?(imageWidth=j-200,imageHeight=e/t*imageWidth):b>I?(imageHeight=I-200,imageWidth=t/e*imageHeight):fitting=!0,b=imageHeight,k=imageWidth;(k>j||b>I)&&r(k,b),d(imageWidth,imageHeight)}return{width:Math.floor(imageWidth),height:Math.floor(imageHeight),containerHeight:Math.floor(b),containerWidth:Math.floor(k)+2*settings.horizontal_padding,contentHeight:Math.floor(y),contentWidth:Math.floor(w),resized:resized}}function d(e,i){e=parseFloat(e),i=parseFloat(i),$pp_details=$pp_pic_holder.find(".pp_details"),$pp_details.width(e),detailsHeight=parseFloat($pp_details.css("marginTop"))+parseFloat($pp_details.css("marginBottom")),$pp_details=$pp_details.clone().addClass(settings.theme).width(e).appendTo(t("body")).css({position:"absolute",top:-1e4}),detailsHeight+=$pp_details.height(),detailsHeight=detailsHeight<=34?36:detailsHeight,$pp_details.remove(),$pp_title=$pp_pic_holder.find(".ppt"),$pp_title.width(e),titleHeight=parseFloat($pp_title.css("marginTop"))+parseFloat($pp_title.css("marginBottom")),$pp_title=$pp_title.clone().appendTo(t("body")).css({position:"absolute",top:-1e4}),titleHeight+=$pp_title.height(),$pp_title.remove(),y=i+detailsHeight,w=e,b=y+titleHeight+$pp_pic_holder.find(".pp_top").height()+$pp_pic_holder.find(".pp_bottom").height(),k=e}function h(t){return t.match(/youtube\.com\/watch/i)||t.match(/youtu\.be/i)?"youtube":t.match(/vimeo\.com/i)?"vimeo":t.match(/\b.mov\b/i)?"quicktime":t.match(/\b.mp4\b/i)?"localvideo":t.match(/\b.swf\b/i)?"flash":t.match(/\biframe=true\b/i)?"iframe":t.match(/\bajax=true\b/i)?"ajax":t.match(/\bcustom=true\b/i)?"custom":"#"==t.substr(0,1)?"inline":"image"}function c(){if(doresize&&"undefined"!=typeof $pp_pic_holder){if(scroll_pos=_(),contentHeight=$pp_pic_holder.height(),contentwidth=$pp_pic_holder.width(),projectedTop=I/2+scroll_pos.scrollTop-contentHeight/2,projectedTop<0&&(projectedTop=0),contentHeight>I)return;$pp_pic_holder.css({top:projectedTop,left:j/2+scroll_pos.scrollLeft-contentwidth/2})}}function _(){return self.pageYOffset?{scrollTop:self.pageYOffset,scrollLeft:self.pageXOffset}:document.documentElement&&document.documentElement.scrollTop?{scrollTop:document.documentElement.scrollTop,scrollLeft:document.documentElement.scrollLeft}:document.body?{scrollTop:document.body.scrollTop,scrollLeft:document.body.scrollLeft}:void 0}function g(){I=t(window).height(),j=t(window).width(),"undefined"!=typeof $pp_overlay&&$pp_overlay.height(t(document).height()).width(j)}function m(){isSet&&settings.overlay_gallery&&"image"==h(pp_images[set_position])?(itemWidth=57,navWidth="facebook"==settings.theme||"pp_default"==settings.theme?50:30,itemsPerPage=Math.floor((f.containerWidth-100-navWidth)/itemWidth),itemsPerPage=itemsPerPage<pp_images.length?itemsPerPage:pp_images.length,totalPage=Math.ceil(pp_images.length/itemsPerPage)-1,0==totalPage?(navWidth=0,$pp_gallery.find(".pp_arrow_next,.pp_arrow_previous").hide()):$pp_gallery.find(".pp_arrow_next,.pp_arrow_previous").show(),galleryWidth=itemsPerPage*itemWidth,fullGalleryWidth=pp_images.length*itemWidth,$pp_gallery.css("margin-left",-(galleryWidth/2+navWidth/2)).find("div:first").width(galleryWidth+5).find("ul").width(fullGalleryWidth).find("li.selected").removeClass("selected"),goToPage=Math.floor(set_position/itemsPerPage)<totalPage?Math.floor(set_position/itemsPerPage):totalPage,t.prettyPhoto.changeGalleryPage(goToPage),$pp_gallery_li.filter(":eq("+set_position+")").addClass("selected")):$pp_pic_holder.find(".pp_content").unbind("mouseenter mouseleave")}function u(e){if(settings.social_tools&&(facebook_like_link=settings.social_tools.replace("{location_href}",encodeURIComponent(location.href))),settings.markup=settings.markup.replace("{pp_social}",""),t("body").append(settings.markup),$pp_pic_holder=t(".pp_pic_holder"),$ppt=t(".ppt"),$pp_overlay=t("div.pp_overlay"),isSet&&settings.overlay_gallery){currentGalleryPage=0,toInject="";for(var i=0;i<pp_images.length;i++)pp_images[i].match(/\b(jpg|jpeg|png|gif)\b/gi)?(classname="",img_src=pp_images[i]):(classname="default",img_src=""),toInject+="<li class='"+classname+"'><a href='#'><img src='"+img_src+"' width='50' alt='' /></a></li>";toInject=settings.gallery_markup.replace(/{gallery}/g,toInject),$pp_pic_holder.find("#pp_full_res").after(toInject),$pp_gallery=t(".pp_pic_holder .pp_gallery"),$pp_gallery_li=$pp_gallery.find("li"),$pp_gallery.find(".pp_arrow_next").click(function(){return t.prettyPhoto.changeGalleryPage("next"),t.prettyPhoto.stopSlideshow(),!1}),$pp_gallery.find(".pp_arrow_previous").click(function(){return t.prettyPhoto.changeGalleryPage("previous"),t.prettyPhoto.stopSlideshow(),!1}),$pp_pic_holder.find(".pp_content").hover(function(){$pp_pic_holder.find(".pp_gallery:not(.disabled)").fadeIn()},function(){$pp_pic_holder.find(".pp_gallery:not(.disabled)").fadeOut()}),itemWidth=57,$pp_gallery_li.each(function(e){t(this).find("a").click(function(){return t.prettyPhoto.changePage(e),t.prettyPhoto.stopSlideshow(),!1})})}settings.slideshow&&($pp_pic_holder.find(".pp_nav").prepend('<a href="#" class="pp_play">Play</a>'),$pp_pic_holder.find(".pp_nav .pp_play").click(function(){return t.prettyPhoto.startSlideshow(),!1})),$pp_pic_holder.attr("class","pp_pic_holder "+settings.theme),$pp_overlay.css({opacity:0,height:t(document).height(),width:t(window).width()}).bind("click",function(){settings.modal||t.prettyPhoto.close()}),t("a.pp_close").bind("click",function(){return t.prettyPhoto.close(),!1}),settings.allow_expand&&t("a.pp_expand").bind("click",function(e){return t(this).hasClass("pp_expand")?(t(this).removeClass("pp_expand").addClass("pp_contract"),doresize=!1):(t(this).removeClass("pp_contract").addClass("pp_expand"),doresize=!0),n(function(){t.prettyPhoto.open()}),!1}),$pp_pic_holder.find(".pp_previous, .pp_nav .pp_arrow_previous").bind("click",function(){return t.prettyPhoto.changePage("previous"),t.prettyPhoto.stopSlideshow(),!1}),$pp_pic_holder.find(".pp_next, .pp_nav .pp_arrow_next").bind("click",function(){return t.prettyPhoto.changePage("next"),t.prettyPhoto.stopSlideshow(),!1}),c()}a=jQuery.extend({hook:"rel",animation_speed:"fast",ajaxcallback:function(){},slideshow:5e3,autoplay_slideshow:!1,opacity:.8,show_title:!0,allow_resize:!0,allow_expand:!0,default_width:500,default_height:344,counter_separator_label:"/",theme:"pp_default",horizontal_padding:20,hideflash:!1,wmode:"opaque",autoplay:!0,modal:!1,deeplinking:!0,overlay_gallery:!0,overlay_gallery_max:30,keyboard_shortcuts:!0,changepicturecallback:function(){},callback:function(){},ie6_fallback:!0,markup:'<div class="pp_pic_holder"> \t\t\t\t\t\t<div class="ppt"> </div> \t\t\t\t\t\t<div class="pp_top"> \t\t\t\t\t\t\t<div class="pp_left"></div> \t\t\t\t\t\t\t<div class="pp_middle"></div> \t\t\t\t\t\t\t<div class="pp_right"></div> \t\t\t\t\t\t</div> \t\t\t\t\t\t<div class="pp_content_container"> \t\t\t\t\t\t\t<div class="pp_left"> \t\t\t\t\t\t\t<div class="pp_right"> \t\t\t\t\t\t\t\t<div class="pp_content"> \t\t\t\t\t\t\t\t\t<div class="pp_loaderIcon"></div> \t\t\t\t\t\t\t\t\t<div class="pp_fade"> \t\t\t\t\t\t\t\t\t\t<a href="#" class="pp_expand" title="Expand the image">Expand</a> \t\t\t\t\t\t\t\t\t\t<div class="pp_hoverContainer"> \t\t\t\t\t\t\t\t\t\t\t<a class="pp_next" href="#">next</a> \t\t\t\t\t\t\t\t\t\t\t<a class="pp_previous" href="#">previous</a> \t\t\t\t\t\t\t\t\t\t</div> \t\t\t\t\t\t\t\t\t\t<div id="pp_full_res"></div> \t\t\t\t\t\t\t\t\t\t<div class="pp_details"> \t\t\t\t\t\t\t\t\t\t\t<div class="pp_nav"> \t\t\t\t\t\t\t\t\t\t\t\t<a href="#" class="pp_arrow_previous">Previous</a> \t\t\t\t\t\t\t\t\t\t\t\t<p class="currentTextHolder">0/0</p> \t\t\t\t\t\t\t\t\t\t\t\t<a href="#" class="pp_arrow_next">Next</a> \t\t\t\t\t\t\t\t\t\t\t</div> \t\t\t\t\t\t\t\t\t\t\t<p class="pp_description"></p> \t\t\t\t\t\t\t\t\t\t\t<div class="pp_social">{pp_social}</div> \t\t\t\t\t\t\t\t\t\t\t<a class="pp_close" href="#">Close</a> \t\t\t\t\t\t\t\t\t\t</div> \t\t\t\t\t\t\t\t\t</div> \t\t\t\t\t\t\t\t</div> \t\t\t\t\t\t\t</div> \t\t\t\t\t\t\t</div> \t\t\t\t\t\t</div> \t\t\t\t\t\t<div class="pp_bottom"> \t\t\t\t\t\t\t<div class="pp_left"></div> \t\t\t\t\t\t\t<div class="pp_middle"></div> \t\t\t\t\t\t\t<div class="pp_right"></div> \t\t\t\t\t\t</div> \t\t\t\t\t</div> \t\t\t\t\t<div class="pp_overlay"></div>',gallery_markup:'<div class="pp_gallery"> \t\t\t\t\t\t\t\t<a href="#" class="pp_arrow_previous">Previous</a> \t\t\t\t\t\t\t\t<div> \t\t\t\t\t\t\t\t\t<ul> \t\t\t\t\t\t\t\t\t\t{gallery} \t\t\t\t\t\t\t\t\t</ul> \t\t\t\t\t\t\t\t</div> \t\t\t\t\t\t\t\t<a href="#" class="pp_arrow_next">Next</a> \t\t\t\t\t\t\t</div>',image_markup:'<img id="fullResImage" src="{path}" />',flash_markup:'<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="{width}" height="{height}"><param name="wmode" value="{wmode}" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="{path}" /><embed src="{path}" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="{width}" height="{height}" wmode="{wmode}"></embed></object>',quicktime_markup:'<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="{height}" width="{width}"><param name="src" value="{path}"><param name="autoplay" value="{autoplay}"><param name="type" value="video/quicktime"><embed src="{path}" height="{height}" width="{width}" autoplay="{autoplay}" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/"></embed></object>',localvideo_markup:'<video width="{width}" height="{height}" autoplay controls><source src="{path}" type="video/mp4"></video>',iframe_markup:'<iframe src ="{path}" width="{width}" height="{height}" frameborder="no" allowfullscreen="true"></iframe>',inline_markup:'<div class="pp_inline">{content}</div>',custom_markup:"",social_tools:'<div class="twitter"><a href="http://twitter.com/share" class="twitter-share-button" data-count="none">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"><\/script></div><div class="facebook"><iframe src="//www.facebook.com/plugins/like.php?locale=en_US&href={location_href}&layout=button_count&show_faces=true&width=500&action=like&font&colorscheme=light&height=23" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:23px;" allowTransparency="true"></iframe></div>'},a);var f,v,y,w,b,k,P,x=this,$=!1,I=t(window).height(),j=t(window).width();return doresize=!0,scroll_pos=_(),t(window).unbind("resize.prettyphoto").bind("resize.prettyphoto",function(){c(),g()}),a.keyboard_shortcuts&&t(document).unbind("keydown.prettyphoto").bind("keydown.prettyphoto",function(e){if("undefined"!=typeof $pp_pic_holder&&$pp_pic_holder.is(":visible"))switch(e.keyCode){case 37:t.prettyPhoto.changePage("previous"),e.preventDefault();break;case 39:t.prettyPhoto.changePage("next"),e.preventDefault();break;case 27:settings.modal||t.prettyPhoto.close(),e.preventDefault()}}),t.prettyPhoto.initialize=function(){return settings=a,"pp_default"==settings.theme&&(settings.horizontal_padding=16),theRel=t(this).attr(settings.hook),galleryRegExp=/\[(?:.*)\]/,isSet=!!galleryRegExp.exec(theRel),pp_images=isSet?jQuery.map(x,function(e,i){if(-1!=t(e).attr(settings.hook).indexOf(theRel))return t(e).attr("href")}):t.makeArray(t(this).attr("href")),pp_titles=isSet?jQuery.map(x,function(e,i){if(-1!=t(e).attr(settings.hook).indexOf(theRel))return t(e).find("img").attr("alt")?t(e).find("img").attr("alt"):""}):t.makeArray(t(this).find("img").attr("alt")),pp_descriptions=isSet?jQuery.map(x,function(e,i){if(-1!=t(e).attr(settings.hook).indexOf(theRel))return t(e).attr("title")?t(e).attr("title"):""}):t.makeArray(t(this).attr("title")),pp_images.length>settings.overlay_gallery_max&&(settings.overlay_gallery=!1),set_position=jQuery.inArray(t(this).attr("href"),pp_images),rel_index=isSet?set_position:t("a["+settings.hook+"^='"+theRel+"']").index(t(this)),u(this),settings.allow_resize&&t(window).bind("scroll.prettyphoto",function(){c()}),t.prettyPhoto.open(),!1},t.prettyPhoto.open=function(e){return"undefined"==typeof settings&&(settings=a,pp_images=t.makeArray(arguments[0]),pp_titles=arguments[1]?t.makeArray(arguments[1]):t.makeArray(""),pp_descriptions=arguments[2]?t.makeArray(arguments[2]):t.makeArray(""),isSet=pp_images.length>1,set_position=arguments[3]?arguments[3]:0,u(e.target)),settings.hideflash&&t("object,embed,iframe[src*=youtube],iframe[src*=vimeo]").css("visibility","hidden"),l(t(pp_images).size()),t(".pp_loaderIcon").show(),settings.deeplinking&&i(),settings.social_tools&&(facebook_like_link=settings.social_tools.replace("{location_href}",encodeURIComponent(location.href)),$pp_pic_holder.find(".pp_social").html(facebook_like_link)),$ppt.is(":hidden")&&$ppt.css("opacity",0).show(),$pp_overlay.show().fadeTo(settings.animation_speed,settings.opacity),$pp_pic_holder.find(".currentTextHolder").text(set_position+1+settings.counter_separator_label+t(pp_images).size()),void 0!==pp_descriptions[set_position]&&""!=pp_descriptions[set_position]?$pp_pic_holder.find(".pp_description").show().html(unescape(pp_descriptions[set_position])):$pp_pic_holder.find(".pp_description").hide(),movie_width=parseFloat(o("width",pp_images[set_position]))?o("width",pp_images[set_position]):settings.default_width.toString(),movie_height=parseFloat(o("height",pp_images[set_position]))?o("height",pp_images[set_position]):settings.default_height.toString(),$=!1,-1!=movie_height.indexOf("%")&&(movie_height=parseFloat(t(window).height()*parseFloat(movie_height)/100-150),$=!0),-1!=movie_width.indexOf("%")&&(movie_width=parseFloat(t(window).width()*parseFloat(movie_width)/100-150),$=!0),$pp_pic_holder.fadeIn(function(){switch(settings.show_title&&""!=pp_titles[set_position]&&void 0!==pp_titles[set_position]?$ppt.html(unescape(pp_titles[set_position])):$ppt.html(" "),imgPreloader="",skipInjection=!1,h(pp_images[set_position])){case"image":imgPreloader=new Image,nextImage=new Image,isSet&&set_position<t(pp_images).size()-1&&(nextImage.src=pp_images[set_position+1]),prevImage=new Image,isSet&&pp_images[set_position-1]&&(prevImage.src=pp_images[set_position-1]),$pp_pic_holder.find("#pp_full_res")[0].innerHTML=settings.image_markup.replace(/{path}/g,pp_images[set_position]),imgPreloader.onload=function(){f=r(imgPreloader.width,imgPreloader.height),s()},imgPreloader.onerror=function(){alert("Image cannot be loaded. Make sure the path is correct and image exist."),t.prettyPhoto.close()},imgPreloader.src=pp_images[set_position];break;case"youtube":f=r(movie_width,movie_height),movie_id=o("v",pp_images[set_position]),""==movie_id&&(movie_id=pp_images[set_position].split("youtu.be/"),movie_id=movie_id[1],movie_id.indexOf("?")>0&&(movie_id=movie_id.substr(0,movie_id.indexOf("?"))),movie_id.indexOf("&")>0&&(movie_id=movie_id.substr(0,movie_id.indexOf("&")))),movie="//www.youtube.com/embed/"+movie_id,o("rel",pp_images[set_position])?movie+="?rel="+o("rel",pp_images[set_position]):movie+="?rel=1",settings.autoplay&&(movie+="&autoplay=1"),toInject=settings.iframe_markup.replace(/{width}/g,f.width).replace(/{height}/g,f.height).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,movie);break;case"vimeo":f=r(movie_width,movie_height),movie_id=pp_images[set_position];var e=/http(s?):\/\/(www\.)?vimeo.com\/(\d+)/,i=movie_id.match(e);movie="//player.vimeo.com/video/"+i[3]+"?title=0&byline=0&portrait=0",settings.autoplay&&(movie+="&autoplay=1;"),vimeo_width=f.width+"/embed/?moog_width="+f.width,toInject=settings.iframe_markup.replace(/{width}/g,vimeo_width).replace(/{height}/g,f.height).replace(/{path}/g,movie);break;case"quicktime":(f=r(movie_width,movie_height)).height+=15,f.contentHeight+=15,f.containerHeight+=15,toInject=settings.quicktime_markup.replace(/{width}/g,f.width).replace(/{height}/g,f.height).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,pp_images[set_position]).replace(/{autoplay}/g,settings.autoplay);break;case"localvideo":(f=r(movie_width,movie_height)).height+=15,f.contentHeight+=15,f.containerHeight+=15,toInject=settings.localvideo_markup.replace(/{width}/g,f.width).replace(/{height}/g,f.height).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,pp_images[set_position]).replace(/{autoplay}/g,settings.autoplay);break;case"flash":f=r(movie_width,movie_height),flash_vars=pp_images[set_position],flash_vars=flash_vars.substring(pp_images[set_position].indexOf("flashvars")+10,pp_images[set_position].length),filename=pp_images[set_position],filename=filename.substring(0,filename.indexOf("?")),toInject=settings.flash_markup.replace(/{width}/g,f.width).replace(/{height}/g,f.height).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,filename+"?"+flash_vars);break;case"iframe":f=r(movie_width,movie_height),frame_url=pp_images[set_position],frame_url=frame_url.substr(0,frame_url.indexOf("iframe")-1),toInject=settings.iframe_markup.replace(/{width}/g,f.width).replace(/{height}/g,f.height).replace(/{path}/g,frame_url);break;case"ajax":doresize=!1,f=r(movie_width,movie_height),doresize=!0,skipInjection=!0,t.get(pp_images[set_position],function(t){toInject=settings.inline_markup.replace(/{content}/g,t),$pp_pic_holder.find("#pp_full_res")[0].innerHTML=toInject,s()});break;case"custom":f=r(movie_width,movie_height),toInject=settings.custom_markup;break;case"inline":myClone=t(pp_images[set_position]).clone().append('<br clear="all" />').css({width:settings.default_width}).wrapInner('<div id="pp_full_res"><div class="pp_inline"></div></div>').appendTo(t("body")).show(),doresize=!1,f=r(t(myClone).width(),t(myClone).height()),doresize=!0,t(myClone).remove(),toInject=settings.inline_markup.replace(/{content}/g,t(pp_images[set_position]).html())}imgPreloader||skipInjection||($pp_pic_holder.find("#pp_full_res")[0].innerHTML=toInject,s())}),!1},t.prettyPhoto.changePage=function(e){currentGalleryPage=0,"previous"==e?--set_position<0&&(set_position=t(pp_images).size()-1):"next"==e?++set_position>t(pp_images).size()-1&&(set_position=0):set_position=e,rel_index=set_position,doresize||(doresize=!0),settings.allow_expand&&t(".pp_contract").removeClass("pp_contract").addClass("pp_expand"),n(function(){t.prettyPhoto.open()})},t.prettyPhoto.changeGalleryPage=function(t){"next"==t?++currentGalleryPage>totalPage&&(currentGalleryPage=0):"previous"==t?--currentGalleryPage<0&&(currentGalleryPage=totalPage):currentGalleryPage=t,slide_speed="next"==t||"previous"==t?settings.animation_speed:0,slide_to=currentGalleryPage*(itemsPerPage*itemWidth),$pp_gallery.find("ul").animate({left:-slide_to},slide_speed)},t.prettyPhoto.startSlideshow=function(){void 0===P?($pp_pic_holder.find(".pp_play").unbind("click").removeClass("pp_play").addClass("pp_pause").click(function(){return t.prettyPhoto.stopSlideshow(),!1}),P=setInterval(t.prettyPhoto.startSlideshow,settings.slideshow)):t.prettyPhoto.changePage("next")},t.prettyPhoto.stopSlideshow=function(){$pp_pic_holder.find(".pp_pause").unbind("click").removeClass("pp_pause").addClass("pp_play").click(function(){return t.prettyPhoto.startSlideshow(),!1}),clearInterval(P),P=void 0},t.prettyPhoto.close=function(){$pp_overlay.is(":animated")||(t.prettyPhoto.stopSlideshow(),$pp_pic_holder.stop().find("object,embed").css("visibility","hidden"),t("div.pp_pic_holder,div.ppt,.pp_fade").fadeOut(settings.animation_speed,function(){t(this).remove()}),$pp_overlay.fadeOut(settings.animation_speed,function(){settings.hideflash&&t("object,embed,iframe[src*=youtube],iframe[src*=vimeo]").css("visibility","visible"),t(this).remove(),t(window).unbind("scroll.prettyphoto"),p(),settings.callback(),doresize=!0,v=!1,delete settings}))},!pp_alreadyInitialized&&e()&&(pp_alreadyInitialized=!0,hashIndex=e(),hashRel=hashIndex,hashIndex=hashIndex.substring(hashIndex.indexOf("/")+1,hashIndex.length-1),hashRel=hashRel.substring(0,hashRel.indexOf("/")),setTimeout(function(){t("a["+a.hook+"^='"+hashRel+"']:eq("+hashIndex+")").trigger("click")},50)),this.unbind("click.prettyphoto").bind("click.prettyphoto",t.prettyPhoto.initialize)}}(jQuery);var pp_alreadyInitialized=!1;
|
2 |
-
|
3 |
-
jQuery(document).ready(function($) {
|
4 |
-
'use strict';
|
5 |
-
$(".premium-img-gallery a[data-rel^='prettyPhoto']").prettyPhoto({
|
6 |
-
theme: 'pp_default',
|
7 |
-
hook: 'data-rel',
|
8 |
-
opacity: 0.7,
|
9 |
-
show_title: false,
|
10 |
-
deeplinking: false,
|
11 |
-
overlay_gallery: false,
|
12 |
-
custom_markup: '',
|
13 |
-
default_width: 900,
|
14 |
-
default_height: 506,
|
15 |
-
social_tools: ''
|
16 |
-
});
|
17 |
-
|
18 |
-
});
|
1 |
+
!function(t){function e(){var t=location.href;return hashtag=-1!==t.indexOf("#prettyPhoto")&&decodeURI(t.substring(t.indexOf("#prettyPhoto")+1,t.length)),hashtag&&(hashtag=hashtag.replace(/<|>/g,"")),hashtag}function i(){"undefined"!=typeof theRel&&(location.hash=theRel+"/"+rel_index+"/")}function p(){-1!==location.href.indexOf("#prettyPhoto")&&(location.hash="prettyPhoto")}function o(t,e){var i="[\\?&]"+(t=t.replace(/[\[]/,"\\[").replace(/[\]]/,"\\]"))+"=([^&#]*)",p=new RegExp(i).exec(e);return null==p?"":p[1]}t.prettyPhoto={version:"3.1.6"},t.fn.prettyPhoto=function(a){function s(){t(".pp_loaderIcon").hide(),projectedTop=scroll_pos.scrollTop+(I/2-f.containerHeight/2),projectedTop<0&&(projectedTop=0),$ppt.fadeTo(settings.animation_speed,1),$pp_pic_holder.find(".pp_content").animate({height:f.contentHeight,width:f.contentWidth},settings.animation_speed),$pp_pic_holder.animate({top:projectedTop,left:j/2-f.containerWidth/2<0?0:j/2-f.containerWidth/2,width:f.containerWidth},settings.animation_speed,function(){$pp_pic_holder.find(".pp_hoverContainer,#fullResImage").height(f.height).width(f.width),$pp_pic_holder.find(".pp_fade").fadeIn(settings.animation_speed),isSet&&"image"==h(pp_images[set_position])?$pp_pic_holder.find(".pp_hoverContainer").show():$pp_pic_holder.find(".pp_hoverContainer").hide(),settings.allow_expand&&(f.resized?t("a.pp_expand,a.pp_contract").show():t("a.pp_expand").hide()),!settings.autoplay_slideshow||P||v||t.prettyPhoto.startSlideshow(),settings.changepicturecallback(),v=!0}),m(),a.ajaxcallback()}function n(e){$pp_pic_holder.find("#pp_full_res object,#pp_full_res embed").css("visibility","hidden"),$pp_pic_holder.find(".pp_fade").fadeOut(settings.animation_speed,function(){t(".pp_loaderIcon").show(),e()})}function l(e){e>1?t(".pp_nav").show():t(".pp_nav").hide()}function r(t,e){if(resized=!1,d(t,e),imageWidth=t,imageHeight=e,(k>j||b>I)&&doresize&&settings.allow_resize&&!$){for(resized=!0,fitting=!1;!fitting;)k>j?(imageWidth=j-200,imageHeight=e/t*imageWidth):b>I?(imageHeight=I-200,imageWidth=t/e*imageHeight):fitting=!0,b=imageHeight,k=imageWidth;(k>j||b>I)&&r(k,b),d(imageWidth,imageHeight)}return{width:Math.floor(imageWidth),height:Math.floor(imageHeight),containerHeight:Math.floor(b),containerWidth:Math.floor(k)+2*settings.horizontal_padding,contentHeight:Math.floor(y),contentWidth:Math.floor(w),resized:resized}}function d(e,i){e=parseFloat(e),i=parseFloat(i),$pp_details=$pp_pic_holder.find(".pp_details"),$pp_details.width(e),detailsHeight=parseFloat($pp_details.css("marginTop"))+parseFloat($pp_details.css("marginBottom")),$pp_details=$pp_details.clone().addClass(settings.theme).width(e).appendTo(t("body")).css({position:"absolute",top:-1e4}),detailsHeight+=$pp_details.height(),detailsHeight=detailsHeight<=34?36:detailsHeight,$pp_details.remove(),$pp_title=$pp_pic_holder.find(".ppt"),$pp_title.width(e),titleHeight=parseFloat($pp_title.css("marginTop"))+parseFloat($pp_title.css("marginBottom")),$pp_title=$pp_title.clone().appendTo(t("body")).css({position:"absolute",top:-1e4}),titleHeight+=$pp_title.height(),$pp_title.remove(),y=i+detailsHeight,w=e,b=y+titleHeight+$pp_pic_holder.find(".pp_top").height()+$pp_pic_holder.find(".pp_bottom").height(),k=e}function h(t){return t.match(/youtube\.com\/watch/i)||t.match(/youtu\.be/i)?"youtube":t.match(/vimeo\.com/i)?"vimeo":t.match(/\b.mov\b/i)?"quicktime":t.match(/\b.mp4\b/i)?"localvideo":t.match(/\b.swf\b/i)?"flash":t.match(/\biframe=true\b/i)?"iframe":t.match(/\bajax=true\b/i)?"ajax":t.match(/\bcustom=true\b/i)?"custom":"#"==t.substr(0,1)?"inline":"image"}function c(){if(doresize&&"undefined"!=typeof $pp_pic_holder){if(scroll_pos=_(),contentHeight=$pp_pic_holder.height(),contentwidth=$pp_pic_holder.width(),projectedTop=I/2+scroll_pos.scrollTop-contentHeight/2,projectedTop<0&&(projectedTop=0),contentHeight>I)return;$pp_pic_holder.css({top:projectedTop,left:j/2+scroll_pos.scrollLeft-contentwidth/2})}}function _(){return self.pageYOffset?{scrollTop:self.pageYOffset,scrollLeft:self.pageXOffset}:document.documentElement&&document.documentElement.scrollTop?{scrollTop:document.documentElement.scrollTop,scrollLeft:document.documentElement.scrollLeft}:document.body?{scrollTop:document.body.scrollTop,scrollLeft:document.body.scrollLeft}:void 0}function g(){I=t(window).height(),j=t(window).width(),"undefined"!=typeof $pp_overlay&&$pp_overlay.height(t(document).height()).width(j)}function m(){isSet&&settings.overlay_gallery&&"image"==h(pp_images[set_position])?(itemWidth=57,navWidth="facebook"==settings.theme||"pp_default"==settings.theme?50:30,itemsPerPage=Math.floor((f.containerWidth-100-navWidth)/itemWidth),itemsPerPage=itemsPerPage<pp_images.length?itemsPerPage:pp_images.length,totalPage=Math.ceil(pp_images.length/itemsPerPage)-1,0==totalPage?(navWidth=0,$pp_gallery.find(".pp_arrow_next,.pp_arrow_previous").hide()):$pp_gallery.find(".pp_arrow_next,.pp_arrow_previous").show(),galleryWidth=itemsPerPage*itemWidth,fullGalleryWidth=pp_images.length*itemWidth,$pp_gallery.css("margin-left",-(galleryWidth/2+navWidth/2)).find("div:first").width(galleryWidth+5).find("ul").width(fullGalleryWidth).find("li.selected").removeClass("selected"),goToPage=Math.floor(set_position/itemsPerPage)<totalPage?Math.floor(set_position/itemsPerPage):totalPage,t.prettyPhoto.changeGalleryPage(goToPage),$pp_gallery_li.filter(":eq("+set_position+")").addClass("selected")):$pp_pic_holder.find(".pp_content").unbind("mouseenter mouseleave")}function u(e){if(settings.social_tools&&(facebook_like_link=settings.social_tools.replace("{location_href}",encodeURIComponent(location.href))),settings.markup=settings.markup.replace("{pp_social}",""),t("body").append(settings.markup),$pp_pic_holder=t(".pp_pic_holder"),$ppt=t(".ppt"),$pp_overlay=t("div.pp_overlay"),isSet&&settings.overlay_gallery){currentGalleryPage=0,toInject="";for(var i=0;i<pp_images.length;i++)pp_images[i].match(/\b(jpg|jpeg|png|gif)\b/gi)?(classname="",img_src=pp_images[i]):(classname="default",img_src=""),toInject+="<li class='"+classname+"'><a href='#'><img src='"+img_src+"' width='50' alt='' /></a></li>";toInject=settings.gallery_markup.replace(/{gallery}/g,toInject),$pp_pic_holder.find("#pp_full_res").after(toInject),$pp_gallery=t(".pp_pic_holder .pp_gallery"),$pp_gallery_li=$pp_gallery.find("li"),$pp_gallery.find(".pp_arrow_next").click(function(){return t.prettyPhoto.changeGalleryPage("next"),t.prettyPhoto.stopSlideshow(),!1}),$pp_gallery.find(".pp_arrow_previous").click(function(){return t.prettyPhoto.changeGalleryPage("previous"),t.prettyPhoto.stopSlideshow(),!1}),$pp_pic_holder.find(".pp_content").hover(function(){$pp_pic_holder.find(".pp_gallery:not(.disabled)").fadeIn()},function(){$pp_pic_holder.find(".pp_gallery:not(.disabled)").fadeOut()}),itemWidth=57,$pp_gallery_li.each(function(e){t(this).find("a").click(function(){return t.prettyPhoto.changePage(e),t.prettyPhoto.stopSlideshow(),!1})})}settings.slideshow&&($pp_pic_holder.find(".pp_nav").prepend('<a href="#" class="pp_play">Play</a>'),$pp_pic_holder.find(".pp_nav .pp_play").click(function(){return t.prettyPhoto.startSlideshow(),!1})),$pp_pic_holder.attr("class","pp_pic_holder "+settings.theme),$pp_overlay.css({opacity:0,height:t(document).height(),width:t(window).width()}).bind("click",function(){settings.modal||t.prettyPhoto.close()}),t("a.pp_close").bind("click",function(){return t.prettyPhoto.close(),!1}),settings.allow_expand&&t("a.pp_expand").bind("click",function(e){return t(this).hasClass("pp_expand")?(t(this).removeClass("pp_expand").addClass("pp_contract"),doresize=!1):(t(this).removeClass("pp_contract").addClass("pp_expand"),doresize=!0),n(function(){t.prettyPhoto.open()}),!1}),$pp_pic_holder.find(".pp_previous, .pp_nav .pp_arrow_previous").bind("click",function(){return t.prettyPhoto.changePage("previous"),t.prettyPhoto.stopSlideshow(),!1}),$pp_pic_holder.find(".pp_next, .pp_nav .pp_arrow_next").bind("click",function(){return t.prettyPhoto.changePage("next"),t.prettyPhoto.stopSlideshow(),!1}),c()}a=jQuery.extend({hook:"rel",animation_speed:"fast",ajaxcallback:function(){},slideshow:5e3,autoplay_slideshow:!1,opacity:.8,show_title:!0,allow_resize:!0,allow_expand:!0,default_width:500,default_height:344,counter_separator_label:"/",theme:"pp_default",horizontal_padding:20,hideflash:!1,wmode:"opaque",autoplay:!0,modal:!1,deeplinking:!0,overlay_gallery:!0,overlay_gallery_max:30,keyboard_shortcuts:!0,changepicturecallback:function(){},callback:function(){},ie6_fallback:!0,markup:'<div class="pp_pic_holder"> \t\t\t\t\t\t<div class="ppt"> </div> \t\t\t\t\t\t<div class="pp_top"> \t\t\t\t\t\t\t<div class="pp_left"></div> \t\t\t\t\t\t\t<div class="pp_middle"></div> \t\t\t\t\t\t\t<div class="pp_right"></div> \t\t\t\t\t\t</div> \t\t\t\t\t\t<div class="pp_content_container"> \t\t\t\t\t\t\t<div class="pp_left"> \t\t\t\t\t\t\t<div class="pp_right"> \t\t\t\t\t\t\t\t<div class="pp_content"> \t\t\t\t\t\t\t\t\t<div class="pp_loaderIcon"></div> \t\t\t\t\t\t\t\t\t<div class="pp_fade"> \t\t\t\t\t\t\t\t\t\t<a href="#" class="pp_expand" title="Expand the image">Expand</a> \t\t\t\t\t\t\t\t\t\t<div class="pp_hoverContainer"> \t\t\t\t\t\t\t\t\t\t\t<a class="pp_next" href="#">next</a> \t\t\t\t\t\t\t\t\t\t\t<a class="pp_previous" href="#">previous</a> \t\t\t\t\t\t\t\t\t\t</div> \t\t\t\t\t\t\t\t\t\t<div id="pp_full_res"></div> \t\t\t\t\t\t\t\t\t\t<div class="pp_details"> \t\t\t\t\t\t\t\t\t\t\t<div class="pp_nav"> \t\t\t\t\t\t\t\t\t\t\t\t<a href="#" class="pp_arrow_previous">Previous</a> \t\t\t\t\t\t\t\t\t\t\t\t<p class="currentTextHolder">0/0</p> \t\t\t\t\t\t\t\t\t\t\t\t<a href="#" class="pp_arrow_next">Next</a> \t\t\t\t\t\t\t\t\t\t\t</div> \t\t\t\t\t\t\t\t\t\t\t<p class="pp_description"></p> \t\t\t\t\t\t\t\t\t\t\t<div class="pp_social">{pp_social}</div> \t\t\t\t\t\t\t\t\t\t\t<a class="pp_close" href="#">Close</a> \t\t\t\t\t\t\t\t\t\t</div> \t\t\t\t\t\t\t\t\t</div> \t\t\t\t\t\t\t\t</div> \t\t\t\t\t\t\t</div> \t\t\t\t\t\t\t</div> \t\t\t\t\t\t</div> \t\t\t\t\t\t<div class="pp_bottom"> \t\t\t\t\t\t\t<div class="pp_left"></div> \t\t\t\t\t\t\t<div class="pp_middle"></div> \t\t\t\t\t\t\t<div class="pp_right"></div> \t\t\t\t\t\t</div> \t\t\t\t\t</div> \t\t\t\t\t<div class="pp_overlay"></div>',gallery_markup:'<div class="pp_gallery"> \t\t\t\t\t\t\t\t<a href="#" class="pp_arrow_previous">Previous</a> \t\t\t\t\t\t\t\t<div> \t\t\t\t\t\t\t\t\t<ul> \t\t\t\t\t\t\t\t\t\t{gallery} \t\t\t\t\t\t\t\t\t</ul> \t\t\t\t\t\t\t\t</div> \t\t\t\t\t\t\t\t<a href="#" class="pp_arrow_next">Next</a> \t\t\t\t\t\t\t</div>',image_markup:'<img id="fullResImage" src="{path}" />',flash_markup:'<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="{width}" height="{height}"><param name="wmode" value="{wmode}" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="{path}" /><embed src="{path}" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="{width}" height="{height}" wmode="{wmode}"></embed></object>',quicktime_markup:'<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="{height}" width="{width}"><param name="src" value="{path}"><param name="autoplay" value="{autoplay}"><param name="type" value="video/quicktime"><embed src="{path}" height="{height}" width="{width}" autoplay="{autoplay}" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/"></embed></object>',localvideo_markup:'<video width="{width}" height="{height}" autoplay controls><source src="{path}" type="video/mp4"></video>',iframe_markup:'<iframe src ="{path}" width="{width}" height="{height}" frameborder="no" allowfullscreen="true"></iframe>',inline_markup:'<div class="pp_inline">{content}</div>',custom_markup:"",social_tools:'<div class="twitter"><a href="http://twitter.com/share" class="twitter-share-button" data-count="none">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"><\/script></div><div class="facebook"><iframe src="//www.facebook.com/plugins/like.php?locale=en_US&href={location_href}&layout=button_count&show_faces=true&width=500&action=like&font&colorscheme=light&height=23" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:23px;" allowTransparency="true"></iframe></div>'},a);var f,v,y,w,b,k,P,x=this,$=!1,I=t(window).height(),j=t(window).width();return doresize=!0,scroll_pos=_(),t(window).unbind("resize.prettyphoto").bind("resize.prettyphoto",function(){c(),g()}),a.keyboard_shortcuts&&t(document).unbind("keydown.prettyphoto").bind("keydown.prettyphoto",function(e){if("undefined"!=typeof $pp_pic_holder&&$pp_pic_holder.is(":visible"))switch(e.keyCode){case 37:t.prettyPhoto.changePage("previous"),e.preventDefault();break;case 39:t.prettyPhoto.changePage("next"),e.preventDefault();break;case 27:settings.modal||t.prettyPhoto.close(),e.preventDefault()}}),t.prettyPhoto.initialize=function(){return settings=a,"pp_default"==settings.theme&&(settings.horizontal_padding=16),theRel=t(this).attr(settings.hook),galleryRegExp=/\[(?:.*)\]/,isSet=!!galleryRegExp.exec(theRel),pp_images=isSet?jQuery.map(x,function(e,i){if(-1!=t(e).attr(settings.hook).indexOf(theRel))return t(e).attr("href")}):t.makeArray(t(this).attr("href")),pp_titles=isSet?jQuery.map(x,function(e,i){if(-1!=t(e).attr(settings.hook).indexOf(theRel))return t(e).find("img").attr("alt")?t(e).find("img").attr("alt"):""}):t.makeArray(t(this).find("img").attr("alt")),pp_descriptions=isSet?jQuery.map(x,function(e,i){if(-1!=t(e).attr(settings.hook).indexOf(theRel))return t(e).attr("title")?t(e).attr("title"):""}):t.makeArray(t(this).attr("title")),pp_images.length>settings.overlay_gallery_max&&(settings.overlay_gallery=!1),set_position=jQuery.inArray(t(this).attr("href"),pp_images),rel_index=isSet?set_position:t("a["+settings.hook+"^='"+theRel+"']").index(t(this)),u(this),settings.allow_resize&&t(window).bind("scroll.prettyphoto",function(){c()}),t.prettyPhoto.open(),!1},t.prettyPhoto.open=function(e){return"undefined"==typeof settings&&(settings=a,pp_images=t.makeArray(arguments[0]),pp_titles=arguments[1]?t.makeArray(arguments[1]):t.makeArray(""),pp_descriptions=arguments[2]?t.makeArray(arguments[2]):t.makeArray(""),isSet=pp_images.length>1,set_position=arguments[3]?arguments[3]:0,u(e.target)),settings.hideflash&&t("object,embed,iframe[src*=youtube],iframe[src*=vimeo]").css("visibility","hidden"),l(t(pp_images).size()),t(".pp_loaderIcon").show(),settings.deeplinking&&i(),settings.social_tools&&(facebook_like_link=settings.social_tools.replace("{location_href}",encodeURIComponent(location.href)),$pp_pic_holder.find(".pp_social").html(facebook_like_link)),$ppt.is(":hidden")&&$ppt.css("opacity",0).show(),$pp_overlay.show().fadeTo(settings.animation_speed,settings.opacity),$pp_pic_holder.find(".currentTextHolder").text(set_position+1+settings.counter_separator_label+t(pp_images).size()),void 0!==pp_descriptions[set_position]&&""!=pp_descriptions[set_position]?$pp_pic_holder.find(".pp_description").show().html(unescape(pp_descriptions[set_position])):$pp_pic_holder.find(".pp_description").hide(),movie_width=parseFloat(o("width",pp_images[set_position]))?o("width",pp_images[set_position]):settings.default_width.toString(),movie_height=parseFloat(o("height",pp_images[set_position]))?o("height",pp_images[set_position]):settings.default_height.toString(),$=!1,-1!=movie_height.indexOf("%")&&(movie_height=parseFloat(t(window).height()*parseFloat(movie_height)/100-150),$=!0),-1!=movie_width.indexOf("%")&&(movie_width=parseFloat(t(window).width()*parseFloat(movie_width)/100-150),$=!0),$pp_pic_holder.fadeIn(function(){switch(settings.show_title&&""!=pp_titles[set_position]&&void 0!==pp_titles[set_position]?$ppt.html(unescape(pp_titles[set_position])):$ppt.html(" "),imgPreloader="",skipInjection=!1,h(pp_images[set_position])){case"image":imgPreloader=new Image,nextImage=new Image,isSet&&set_position<t(pp_images).size()-1&&(nextImage.src=pp_images[set_position+1]),prevImage=new Image,isSet&&pp_images[set_position-1]&&(prevImage.src=pp_images[set_position-1]),$pp_pic_holder.find("#pp_full_res")[0].innerHTML=settings.image_markup.replace(/{path}/g,pp_images[set_position]),imgPreloader.onload=function(){f=r(imgPreloader.width,imgPreloader.height),s()},imgPreloader.onerror=function(){alert("Image cannot be loaded. Make sure the path is correct and image exist."),t.prettyPhoto.close()},imgPreloader.src=pp_images[set_position];break;case"youtube":f=r(movie_width,movie_height),movie_id=o("v",pp_images[set_position]),""==movie_id&&(movie_id=pp_images[set_position].split("youtu.be/"),movie_id=movie_id[1],movie_id.indexOf("?")>0&&(movie_id=movie_id.substr(0,movie_id.indexOf("?"))),movie_id.indexOf("&")>0&&(movie_id=movie_id.substr(0,movie_id.indexOf("&")))),movie="//www.youtube.com/embed/"+movie_id,o("rel",pp_images[set_position])?movie+="?rel="+o("rel",pp_images[set_position]):movie+="?rel=1",settings.autoplay&&(movie+="&autoplay=1"),toInject=settings.iframe_markup.replace(/{width}/g,f.width).replace(/{height}/g,f.height).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,movie);break;case"vimeo":f=r(movie_width,movie_height),movie_id=pp_images[set_position];var e=/http(s?):\/\/(www\.)?vimeo.com\/(\d+)/,i=movie_id.match(e);movie="//player.vimeo.com/video/"+i[3]+"?title=0&byline=0&portrait=0",settings.autoplay&&(movie+="&autoplay=1;"),vimeo_width=f.width+"/embed/?moog_width="+f.width,toInject=settings.iframe_markup.replace(/{width}/g,vimeo_width).replace(/{height}/g,f.height).replace(/{path}/g,movie);break;case"quicktime":(f=r(movie_width,movie_height)).height+=15,f.contentHeight+=15,f.containerHeight+=15,toInject=settings.quicktime_markup.replace(/{width}/g,f.width).replace(/{height}/g,f.height).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,pp_images[set_position]).replace(/{autoplay}/g,settings.autoplay);break;case"localvideo":(f=r(movie_width,movie_height)).height+=15,f.contentHeight+=15,f.containerHeight+=15,toInject=settings.localvideo_markup.replace(/{width}/g,f.width).replace(/{height}/g,f.height).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,pp_images[set_position]).replace(/{autoplay}/g,settings.autoplay);break;case"flash":f=r(movie_width,movie_height),flash_vars=pp_images[set_position],flash_vars=flash_vars.substring(pp_images[set_position].indexOf("flashvars")+10,pp_images[set_position].length),filename=pp_images[set_position],filename=filename.substring(0,filename.indexOf("?")),toInject=settings.flash_markup.replace(/{width}/g,f.width).replace(/{height}/g,f.height).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,filename+"?"+flash_vars);break;case"iframe":f=r(movie_width,movie_height),frame_url=pp_images[set_position],frame_url=frame_url.substr(0,frame_url.indexOf("iframe")-1),toInject=settings.iframe_markup.replace(/{width}/g,f.width).replace(/{height}/g,f.height).replace(/{path}/g,frame_url);break;case"ajax":doresize=!1,f=r(movie_width,movie_height),doresize=!0,skipInjection=!0,t.get(pp_images[set_position],function(t){toInject=settings.inline_markup.replace(/{content}/g,t),$pp_pic_holder.find("#pp_full_res")[0].innerHTML=toInject,s()});break;case"custom":f=r(movie_width,movie_height),toInject=settings.custom_markup;break;case"inline":myClone=t(pp_images[set_position]).clone().append('<br clear="all" />').css({width:settings.default_width}).wrapInner('<div id="pp_full_res"><div class="pp_inline"></div></div>').appendTo(t("body")).show(),doresize=!1,f=r(t(myClone).width(),t(myClone).height()),doresize=!0,t(myClone).remove(),toInject=settings.inline_markup.replace(/{content}/g,t(pp_images[set_position]).html())}imgPreloader||skipInjection||($pp_pic_holder.find("#pp_full_res")[0].innerHTML=toInject,s())}),!1},t.prettyPhoto.changePage=function(e){currentGalleryPage=0,"previous"==e?--set_position<0&&(set_position=t(pp_images).size()-1):"next"==e?++set_position>t(pp_images).size()-1&&(set_position=0):set_position=e,rel_index=set_position,doresize||(doresize=!0),settings.allow_expand&&t(".pp_contract").removeClass("pp_contract").addClass("pp_expand"),n(function(){t.prettyPhoto.open()})},t.prettyPhoto.changeGalleryPage=function(t){"next"==t?++currentGalleryPage>totalPage&&(currentGalleryPage=0):"previous"==t?--currentGalleryPage<0&&(currentGalleryPage=totalPage):currentGalleryPage=t,slide_speed="next"==t||"previous"==t?settings.animation_speed:0,slide_to=currentGalleryPage*(itemsPerPage*itemWidth),$pp_gallery.find("ul").animate({left:-slide_to},slide_speed)},t.prettyPhoto.startSlideshow=function(){void 0===P?($pp_pic_holder.find(".pp_play").unbind("click").removeClass("pp_play").addClass("pp_pause").click(function(){return t.prettyPhoto.stopSlideshow(),!1}),P=setInterval(t.prettyPhoto.startSlideshow,settings.slideshow)):t.prettyPhoto.changePage("next")},t.prettyPhoto.stopSlideshow=function(){$pp_pic_holder.find(".pp_pause").unbind("click").removeClass("pp_pause").addClass("pp_play").click(function(){return t.prettyPhoto.startSlideshow(),!1}),clearInterval(P),P=void 0},t.prettyPhoto.close=function(){$pp_overlay.is(":animated")||(t.prettyPhoto.stopSlideshow(),$pp_pic_holder.stop().find("object,embed").css("visibility","hidden"),t("div.pp_pic_holder,div.ppt,.pp_fade").fadeOut(settings.animation_speed,function(){t(this).remove()}),$pp_overlay.fadeOut(settings.animation_speed,function(){settings.hideflash&&t("object,embed,iframe[src*=youtube],iframe[src*=vimeo]").css("visibility","visible"),t(this).remove(),t(window).unbind("scroll.prettyphoto"),p(),settings.callback(),doresize=!0,v=!1,delete settings}))},!pp_alreadyInitialized&&e()&&(pp_alreadyInitialized=!0,hashIndex=e(),hashRel=hashIndex,hashIndex=hashIndex.substring(hashIndex.indexOf("/")+1,hashIndex.length-1),hashRel=hashRel.substring(0,hashRel.indexOf("/")),setTimeout(function(){t("a["+a.hook+"^='"+hashRel+"']:eq("+hashIndex+")").trigger("click")},50)),this.unbind("click.prettyphoto").bind("click.prettyphoto",t.prettyPhoto.initialize)}}(jQuery);var pp_alreadyInitialized=!1;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/premium-addons-for-elementor.pot
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Premium Addons for Elementor\n"
|
5 |
-
"POT-Creation-Date: 2019-
|
6 |
"PO-Revision-Date: 2018-02-15 10:41+0200\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Leap13\n"
|
@@ -19,35 +19,35 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPathExcluded-0: assets/js\n"
|
20 |
"X-Poedit-SearchPathExcluded-1: admin/assets/js\n"
|
21 |
|
22 |
-
#: admin/includes/admin-notices.php:
|
23 |
msgid ""
|
24 |
"Premium Addons for Elementor is not working because you need to Install "
|
25 |
"Elementor plugin."
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: admin/includes/admin-notices.php:
|
29 |
msgid "Install Now"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: admin/includes/admin-notices.php:
|
33 |
msgid ""
|
34 |
"Premium Addons for Elementor is not working because you need to activate "
|
35 |
"Elementor plugin."
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: admin/includes/admin-notices.php:
|
39 |
msgid "Activate Now"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: admin/includes/admin-notices.php:
|
43 |
msgid "Did you like"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: admin/includes/admin-notices.php:
|
47 |
msgid "Plugin?"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: admin/includes/admin-notices.php:
|
51 |
msgid ""
|
52 |
"Could you please do us a BIG favor ? if you could take 2 min of your time, "
|
53 |
"we'd really appreciate if you give Premium Addons for Elementor 5-star "
|
@@ -55,41 +55,41 @@ msgid ""
|
|
55 |
"stuff in the future!"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: admin/includes/admin-notices.php:
|
59 |
msgid "Leave a Review"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: admin/includes/admin-notices.php:
|
63 |
msgid "Maybe Later"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: admin/includes/admin-notices.php:
|
67 |
msgid "I Already did"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: admin/includes/admin-notices.php:
|
71 |
msgid "Premium Blocks for Gutenberg"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: admin/includes/admin-notices.php:
|
75 |
msgid "is Now Available."
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: admin/includes/admin-notices.php:
|
79 |
msgid "Install it Now."
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: admin/includes/admin-notices.php:
|
83 |
#, php-format
|
84 |
msgid ""
|
85 |
"<p class=\"pa-text-wrap\" style=\"display: flex; align-items: center; "
|
86 |
"padding:10px 10px 10px 0;\"><img src=\"%s\" style=\"margin-right: 0.8em; "
|
87 |
-
"width: 40px;\"><strong><span>
|
88 |
-
"
|
89 |
"\"_blank\" style=\"flex-grow: 2;\"> Check it out now.</a>"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: admin/includes/admin-notices.php:
|
93 |
#, php-format
|
94 |
msgid ""
|
95 |
"<a href=\"%s\" style=\"text-decoration: none; margin-left: 1em; float:right; "
|
@@ -105,11 +105,11 @@ msgstr ""
|
|
105 |
msgid "Rolling Back to Version "
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: admin/includes/papro-actions.php:
|
109 |
msgid "Get PRO Widgets & Addons"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: admin/includes/papro-actions.php:
|
113 |
msgid "Widgets Settings"
|
114 |
msgstr ""
|
115 |
|
@@ -180,12 +180,12 @@ msgid "Community Forums"
|
|
180 |
msgstr ""
|
181 |
|
182 |
#: admin/includes/plugin-info.php:79 admin/includes/reports.php:56
|
183 |
-
#: admin/settings/maps.php:136 admin/settings/modules-setting.php:
|
184 |
msgid "Did you like Premium Addons for Elementor Plugin? Please "
|
185 |
msgstr ""
|
186 |
|
187 |
#: admin/includes/plugin-info.php:79 admin/includes/reports.php:56
|
188 |
-
#: admin/settings/maps.php:136 admin/settings/modules-setting.php:
|
189 |
msgid "Click Here to Rate it ★★★★★"
|
190 |
msgstr ""
|
191 |
|
@@ -213,7 +213,7 @@ msgid "Rollback Version"
|
|
213 |
msgstr ""
|
214 |
|
215 |
#: admin/includes/version-control.php:94
|
216 |
-
msgid "Reinstall Version 3.
|
217 |
msgstr ""
|
218 |
|
219 |
#: admin/includes/version-control.php:96
|
@@ -246,7 +246,7 @@ msgid ""
|
|
246 |
msgstr ""
|
247 |
|
248 |
#: admin/includes/version-control.php:114 admin/settings/maps.php:133
|
249 |
-
#: admin/settings/modules-setting.php:
|
250 |
msgid "Save Settings"
|
251 |
msgstr ""
|
252 |
|
@@ -318,18 +318,18 @@ msgid "Blog"
|
|
318 |
msgstr ""
|
319 |
|
320 |
#: admin/settings/modules-setting.php:208 widgets/premium-banner.php:314
|
321 |
-
#: widgets/premium-banner.php:
|
322 |
#: widgets/premium-button.php:57 widgets/premium-button.php:474
|
323 |
#: widgets/premium-contactform.php:182 widgets/premium-contactform.php:439
|
324 |
#: widgets/premium-image-button.php:52 widgets/premium-image-button.php:378
|
325 |
-
#: widgets/premium-modalbox.php:
|
326 |
#: widgets/premium-pricing-table.php:493 widgets/premium-pricing-table.php:1350
|
327 |
msgid "Button"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: admin/settings/modules-setting.php:215 widgets/premium-blog.php:
|
331 |
-
#: widgets/premium-blog.php:
|
332 |
-
#: widgets/premium-carousel.php:
|
333 |
msgid "Carousel"
|
334 |
msgstr ""
|
335 |
|
@@ -358,7 +358,7 @@ msgstr ""
|
|
358 |
msgid "Fancy Text"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: admin/settings/modules-setting.php:267 widgets/premium-blog.php:
|
362 |
#: widgets/premium-grid.php:35
|
363 |
msgid "Grid"
|
364 |
msgstr ""
|
@@ -380,8 +380,8 @@ msgstr ""
|
|
380 |
msgid "Maps"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: admin/settings/modules-setting.php:312 widgets/premium-modalbox.php:
|
384 |
-
#: widgets/premium-modalbox.php:
|
385 |
msgid "Modal Box"
|
386 |
msgstr ""
|
387 |
|
@@ -404,12 +404,17 @@ msgstr ""
|
|
404 |
msgid "Testimonials"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: admin/settings/modules-setting.php:356 widgets/premium-
|
408 |
-
#: widgets/premium-
|
409 |
-
|
|
|
|
|
|
|
|
|
|
|
410 |
#: widgets/premium-counter.php:381 widgets/premium-grid.php:386
|
411 |
-
#: widgets/premium-grid.php:
|
412 |
-
#: widgets/premium-maps.php:389 widgets/premium-modalbox.php:
|
413 |
#: widgets/premium-pricing-table.php:76 widgets/premium-pricing-table.php:462
|
414 |
#: widgets/premium-pricing-table.php:684 widgets/premium-progressbar.php:72
|
415 |
#: widgets/premium-progressbar.php:342 widgets/premium-title.php:24
|
@@ -418,120 +423,120 @@ msgstr ""
|
|
418 |
msgid "Title"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: admin/settings/modules-setting.php:
|
422 |
-
#: widgets/premium-videobox.php:
|
423 |
msgid "Video Box"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: admin/settings/modules-setting.php:
|
427 |
msgid "Vertical Scroll"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: admin/settings/modules-setting.php:
|
431 |
msgid "Premium Alert Box"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: admin/settings/modules-setting.php:
|
435 |
msgid "Premium Icon Box"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: admin/settings/modules-setting.php:
|
439 |
msgid "Premium Twitter Feed"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: admin/settings/modules-setting.php:
|
443 |
msgid "Premium Instagram Feed"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: admin/settings/modules-setting.php:
|
447 |
msgid "Premium Flip Box"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: admin/settings/modules-setting.php:
|
451 |
msgid "Premium Unfold"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: admin/settings/modules-setting.php:
|
455 |
msgid "Premium Messenger Chat"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: admin/settings/modules-setting.php:
|
459 |
msgid "Premium Tabs"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: admin/settings/modules-setting.php:
|
463 |
msgid "Premium Chart"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: admin/settings/modules-setting.php:
|
467 |
msgid "Premium Preview Window"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: admin/settings/modules-setting.php:
|
471 |
msgid "Premium Image Hotspots"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: admin/settings/modules-setting.php:
|
475 |
msgid "Premium Facebook Reviews"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: admin/settings/modules-setting.php:
|
479 |
msgid "Premium Image Comparison"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: admin/settings/modules-setting.php:
|
483 |
msgid "Premium Divider"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: admin/settings/modules-setting.php:
|
487 |
msgid "Premium Magic Section"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: admin/settings/modules-setting.php:
|
491 |
msgid "Premium Google Reviews"
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: admin/settings/modules-setting.php:
|
495 |
msgid "Premium Behance Feed"
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: admin/settings/modules-setting.php:
|
499 |
msgid "Premium Tables"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: admin/settings/modules-setting.php:
|
503 |
msgid "Premium Image Layers"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: admin/settings/modules-setting.php:
|
507 |
msgid "Premium iHover"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: admin/settings/modules-setting.php:
|
511 |
msgid "Premium Content Switcher"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: admin/settings/modules-setting.php:
|
515 |
msgid "Premium Facebook Feed"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: admin/settings/modules-setting.php:
|
519 |
msgid "Premium Whatsapp Chat"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: admin/settings/modules-setting.php:
|
523 |
msgid "Premium Section Parallax"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: admin/settings/modules-setting.php:
|
527 |
msgid "Premium Section Particles"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: admin/settings/modules-setting.php:
|
531 |
msgid "Premium Section Animated Gradient"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: admin/settings/modules-setting.php:
|
535 |
msgid "Premium Section Ken Burns"
|
536 |
msgstr ""
|
537 |
|
@@ -1062,15 +1067,73 @@ msgstr ""
|
|
1062 |
msgid "Vertical Scroll: Section ID"
|
1063 |
msgstr ""
|
1064 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1065 |
#: widgets/premium-banner.php:60 widgets/premium-banner.php:457
|
1066 |
-
#: widgets/premium-blog.php:
|
1067 |
-
#: widgets/premium-grid.php:
|
1068 |
#: widgets/premium-image-scroll.php:272 widgets/premium-image-separator.php:59
|
1069 |
-
#: widgets/premium-image-separator.php:227 widgets/premium-modalbox.php:
|
1070 |
-
#: widgets/premium-modalbox.php:
|
1071 |
#: widgets/premium-person.php:55 widgets/premium-person.php:373
|
1072 |
#: widgets/premium-testimonials.php:57 widgets/premium-testimonials.php:229
|
1073 |
-
#: widgets/premium-videobox.php:
|
1074 |
msgid "Image"
|
1075 |
msgstr ""
|
1076 |
|
@@ -1084,13 +1147,13 @@ msgid "Select an image for the Banner"
|
|
1084 |
msgstr ""
|
1085 |
|
1086 |
#: widgets/premium-banner.php:79 widgets/premium-banner.php:355
|
1087 |
-
#: widgets/premium-blog.php:
|
1088 |
#: widgets/premium-dual-header.php:119 widgets/premium-dual-header.php:143
|
1089 |
#: widgets/premium-grid.php:422 widgets/premium-image-button.php:81
|
1090 |
#: widgets/premium-image-scroll.php:110 widgets/premium-image-separator.php:135
|
1091 |
#: widgets/premium-pricing-table.php:323 widgets/premium-testimonials.php:157
|
1092 |
-
#: widgets/premium-testimonials.php:166 widgets/premium-videobox.php:
|
1093 |
-
#: widgets/premium-videobox.php:
|
1094 |
msgid "Link"
|
1095 |
msgstr ""
|
1096 |
|
@@ -1182,65 +1245,65 @@ msgstr ""
|
|
1182 |
msgid "Choose if you want the effect to be always triggered"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: widgets/premium-banner.php:183 widgets/premium-blog.php:
|
1186 |
-
#: widgets/premium-button.php:117 widgets/premium-grid.php:
|
1187 |
#: widgets/premium-image-button.php:112 widgets/premium-person.php:118
|
1188 |
msgid "Hover Effect"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: widgets/premium-banner.php:186 widgets/premium-blog.php:
|
1192 |
-
#: widgets/premium-blog.php:
|
1193 |
-
#: widgets/premium-button.php:121 widgets/premium-grid.php:
|
1194 |
-
#: widgets/premium-image-button.php:116 widgets/premium-modalbox.php:
|
1195 |
#: widgets/premium-person.php:121 widgets/premium-progressbar.php:154
|
1196 |
msgid "None"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: widgets/premium-banner.php:187 widgets/premium-blog.php:
|
1200 |
-
#: widgets/premium-grid.php:
|
1201 |
msgid "Zoom In"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: widgets/premium-banner.php:188 widgets/premium-blog.php:
|
1205 |
-
#: widgets/premium-grid.php:
|
1206 |
msgid "Zoom Out"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: widgets/premium-banner.php:189 widgets/premium-blog.php:
|
1210 |
-
#: widgets/premium-grid.php:
|
1211 |
msgid "Scale"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: widgets/premium-banner.php:190 widgets/premium-blog.php:
|
1215 |
-
#: widgets/premium-grid.php:
|
1216 |
msgid "Grayscale"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: widgets/premium-banner.php:191 widgets/premium-blog.php:
|
1220 |
-
#: widgets/premium-grid.php:
|
1221 |
msgid "Blur"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: widgets/premium-banner.php:192 widgets/premium-blog.php:
|
1225 |
-
#: widgets/premium-grid.php:
|
1226 |
msgid "Bright"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#: widgets/premium-banner.php:193 widgets/premium-blog.php:
|
1230 |
-
#: widgets/premium-grid.php:
|
1231 |
msgid "Sepia"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
#: widgets/premium-banner.php:201 widgets/premium-contactform.php:130
|
1235 |
#: widgets/premium-contactform.php:212 widgets/premium-grid.php:366
|
1236 |
-
#: widgets/premium-grid.php:
|
1237 |
#: widgets/premium-person.php:94 widgets/premium-person.php:572
|
1238 |
#: widgets/premium-progressbar.php:246 widgets/premium-progressbar.php:581
|
1239 |
msgid "Height"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: widgets/premium-banner.php:204 widgets/premium-carousel.php:
|
1243 |
-
#: widgets/premium-grid.php:
|
1244 |
msgid "Default"
|
1245 |
msgstr ""
|
1246 |
|
@@ -1267,16 +1330,16 @@ msgstr ""
|
|
1267 |
|
1268 |
#: widgets/premium-banner.php:234 widgets/premium-button.php:178
|
1269 |
#: widgets/premium-counter.php:181 widgets/premium-pricing-table.php:862
|
1270 |
-
#: widgets/premium-testimonials.php:193 widgets/premium-vscroll.php:
|
1271 |
msgid "Top"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: widgets/premium-banner.php:235 widgets/premium-vscroll.php:
|
1275 |
msgid "Middle"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
#: widgets/premium-banner.php:236 widgets/premium-button.php:179
|
1279 |
-
#: widgets/premium-pricing-table.php:870 widgets/premium-vscroll.php:
|
1280 |
msgid "Bottom"
|
1281 |
msgstr ""
|
1282 |
|
@@ -1284,7 +1347,7 @@ msgstr ""
|
|
1284 |
msgid "Full"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
-
#: widgets/premium-banner.php:248 widgets/premium-carousel.php:
|
1288 |
msgid "Extra Class"
|
1289 |
msgstr ""
|
1290 |
|
@@ -1294,11 +1357,11 @@ msgid ""
|
|
1294 |
"this class for your customizations."
|
1295 |
msgstr ""
|
1296 |
|
1297 |
-
#: widgets/premium-banner.php:260 widgets/premium-
|
1298 |
-
#: widgets/premium-
|
1299 |
-
#: widgets/premium-modalbox.php:
|
1300 |
-
#: widgets/premium-
|
1301 |
-
#: widgets/premium-
|
1302 |
msgid "Content"
|
1303 |
msgstr ""
|
1304 |
|
@@ -1323,12 +1386,12 @@ msgid ""
|
|
1323 |
msgstr ""
|
1324 |
|
1325 |
#: widgets/premium-banner.php:296 widgets/premium-banner.php:303
|
1326 |
-
#: widgets/premium-banner.php:
|
1327 |
-
#: widgets/premium-grid.php:
|
1328 |
#: widgets/premium-maps.php:473 widgets/premium-person.php:206
|
1329 |
#: widgets/premium-person.php:475 widgets/premium-pricing-table.php:263
|
1330 |
#: widgets/premium-pricing-table.php:274 widgets/premium-pricing-table.php:486
|
1331 |
-
#: widgets/premium-pricing-table.php:1256 widgets/premium-videobox.php:
|
1332 |
msgid "Description"
|
1333 |
msgstr ""
|
1334 |
|
@@ -1344,11 +1407,11 @@ msgstr ""
|
|
1344 |
|
1345 |
#: widgets/premium-banner.php:325 widgets/premium-button.php:63
|
1346 |
#: widgets/premium-fancytext.php:109 widgets/premium-image-button.php:58
|
1347 |
-
#: widgets/premium-modalbox.php:
|
1348 |
-
#: widgets/premium-modalbox.php:
|
1349 |
#: widgets/premium-pricing-table.php:196 widgets/premium-pricing-table.php:297
|
1350 |
#: widgets/premium-pricing-table.php:386 widgets/premium-pricing-table.php:1102
|
1351 |
-
#: widgets/premium-pricing-table.php:1266 widgets/premium-videobox.php:
|
1352 |
msgid "Text"
|
1353 |
msgstr ""
|
1354 |
|
@@ -1363,70 +1426,72 @@ msgstr ""
|
|
1363 |
#: widgets/premium-image-button.php:71 widgets/premium-image-scroll.php:121
|
1364 |
#: widgets/premium-image-scroll.php:134 widgets/premium-image-separator.php:146
|
1365 |
#: widgets/premium-image-separator.php:173
|
1366 |
-
#: widgets/premium-pricing-table.php:311 widgets/premium-videobox.php:
|
1367 |
msgid "URL"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: widgets/premium-banner.php:389 widgets/premium-blog.php:
|
1371 |
-
#: widgets/premium-blog.php:
|
1372 |
-
#: widgets/premium-
|
1373 |
-
#: widgets/premium-
|
1374 |
-
#: widgets/premium-
|
1375 |
-
#: widgets/premium-
|
1376 |
-
#: widgets/premium-
|
|
|
1377 |
msgid "Alignment"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#: widgets/premium-banner.php:393 widgets/premium-blog.php:
|
1381 |
-
#: widgets/premium-blog.php:
|
1382 |
-
#: widgets/premium-button.php:
|
1383 |
-
#: widgets/premium-
|
1384 |
-
#: widgets/premium-
|
1385 |
-
#: widgets/premium-
|
1386 |
-
#: widgets/premium-
|
1387 |
-
#: widgets/premium-
|
1388 |
-
#: widgets/premium-
|
1389 |
-
#: widgets/premium-
|
1390 |
-
#: widgets/premium-
|
1391 |
-
#: widgets/premium-title.php:
|
1392 |
-
#: widgets/premium-vscroll.php:
|
1393 |
msgid "Left"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
-
#: widgets/premium-banner.php:397 widgets/premium-blog.php:
|
1397 |
-
#: widgets/premium-blog.php:
|
1398 |
-
#: widgets/premium-
|
1399 |
-
#: widgets/premium-
|
1400 |
-
#: widgets/premium-
|
1401 |
-
#: widgets/premium-
|
1402 |
-
#: widgets/premium-
|
1403 |
-
#: widgets/premium-
|
1404 |
-
#: widgets/premium-
|
1405 |
-
#: widgets/premium-
|
|
|
1406 |
msgid "Center"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
-
#: widgets/premium-banner.php:401 widgets/premium-blog.php:
|
1410 |
-
#: widgets/premium-blog.php:
|
1411 |
-
#: widgets/premium-button.php:
|
1412 |
-
#: widgets/premium-
|
1413 |
-
#: widgets/premium-
|
1414 |
-
#: widgets/premium-
|
1415 |
-
#: widgets/premium-
|
1416 |
-
#: widgets/premium-
|
1417 |
-
#: widgets/premium-
|
1418 |
-
#: widgets/premium-
|
1419 |
-
#: widgets/premium-
|
1420 |
-
#: widgets/premium-title.php:
|
1421 |
-
#: widgets/premium-vscroll.php:
|
1422 |
msgid "Right"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
-
#: widgets/premium-banner.php:417 widgets/premium-grid.php:
|
1426 |
msgid "Responsive"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: widgets/premium-banner.php:423 widgets/premium-grid.php:
|
1430 |
msgid "Responsive Controls"
|
1431 |
msgstr ""
|
1432 |
|
@@ -1436,42 +1501,42 @@ msgid ""
|
|
1436 |
"may enable this option which will hide the description text."
|
1437 |
msgstr ""
|
1438 |
|
1439 |
-
#: widgets/premium-banner.php:431 widgets/premium-grid.php:
|
1440 |
msgid "Minimum Size"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
-
#: widgets/premium-banner.php:433 widgets/premium-grid.php:
|
1444 |
msgid "Note: minimum size for extra small screens is 1px."
|
1445 |
msgstr ""
|
1446 |
|
1447 |
-
#: widgets/premium-banner.php:443 widgets/premium-grid.php:
|
1448 |
msgid "Maximum Size"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
-
#: widgets/premium-banner.php:445 widgets/premium-grid.php:
|
1452 |
msgid "Note: maximum size for extra small screens is 767px."
|
1453 |
msgstr ""
|
1454 |
|
1455 |
-
#: widgets/premium-banner.php:464 widgets/premium-banner.php:
|
1456 |
-
#: widgets/premium-blog.php:
|
1457 |
-
#: widgets/premium-blog.php:
|
1458 |
-
#: widgets/premium-blog.php:
|
1459 |
#: widgets/premium-button.php:528 widgets/premium-button.php:669
|
1460 |
-
#: widgets/premium-carousel.php:
|
1461 |
#: widgets/premium-contactform.php:543 widgets/premium-countdown.php:397
|
1462 |
#: widgets/premium-countdown.php:474 widgets/premium-counter.php:287
|
1463 |
#: widgets/premium-fancytext.php:372 widgets/premium-fancytext.php:430
|
1464 |
-
#: widgets/premium-fancytext.php:477 widgets/premium-grid.php:
|
1465 |
-
#: widgets/premium-grid.php:
|
1466 |
-
#: widgets/premium-modalbox.php:
|
1467 |
-
#: widgets/premium-modalbox.php:
|
1468 |
-
#: widgets/premium-modalbox.php:
|
1469 |
-
#: widgets/premium-modalbox.php:
|
1470 |
#: widgets/premium-pricing-table.php:1646
|
1471 |
#: widgets/premium-pricing-table.php:1663 widgets/premium-title.php:303
|
1472 |
-
#: widgets/premium-title.php:325 widgets/premium-videobox.php:
|
1473 |
-
#: widgets/premium-vscroll.php:
|
1474 |
-
#: widgets/premium-vscroll.php:
|
1475 |
msgid "Background Color"
|
1476 |
msgstr ""
|
1477 |
|
@@ -1487,23 +1552,23 @@ msgstr ""
|
|
1487 |
msgid "Hover CSS Filter"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
-
#: widgets/premium-banner.php:541 widgets/premium-banner.php:
|
1491 |
-
#: widgets/premium-blog.php:
|
1492 |
-
#: widgets/premium-blog.php:
|
1493 |
-
#: widgets/premium-button.php:692 widgets/premium-carousel.php:
|
1494 |
#: widgets/premium-contactform.php:274 widgets/premium-contactform.php:510
|
1495 |
#: widgets/premium-countdown.php:438 widgets/premium-counter.php:360
|
1496 |
#: widgets/premium-dual-header.php:353 widgets/premium-dual-header.php:550
|
1497 |
-
#: widgets/premium-grid.php:
|
1498 |
-
#: widgets/premium-grid.php:
|
1499 |
-
#: widgets/premium-grid.php:
|
1500 |
-
#: widgets/premium-grid.php:
|
1501 |
#: widgets/premium-image-button.php:450 widgets/premium-image-button.php:637
|
1502 |
#: widgets/premium-image-scroll.php:400 widgets/premium-image-scroll.php:435
|
1503 |
-
#: widgets/premium-maps.php:572 widgets/premium-modalbox.php:
|
1504 |
-
#: widgets/premium-modalbox.php:
|
1505 |
-
#: widgets/premium-modalbox.php:
|
1506 |
-
#: widgets/premium-modalbox.php:
|
1507 |
#: widgets/premium-pricing-table.php:588 widgets/premium-pricing-table.php:631
|
1508 |
#: widgets/premium-pricing-table.php:1213
|
1509 |
#: widgets/premium-pricing-table.php:1427
|
@@ -1511,36 +1576,36 @@ msgstr ""
|
|
1511 |
#: widgets/premium-pricing-table.php:1718
|
1512 |
#: widgets/premium-pricing-table.php:1796 widgets/premium-progressbar.php:261
|
1513 |
#: widgets/premium-testimonials.php:541 widgets/premium-title.php:512
|
1514 |
-
#: widgets/premium-videobox.php:
|
1515 |
-
#: widgets/premium-vscroll.php:
|
1516 |
-
#: widgets/premium-vscroll.php:
|
1517 |
msgid "Border Radius"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
-
#: widgets/premium-banner.php:561 widgets/premium-banner.php:
|
1521 |
-
#: widgets/premium-banner.php:
|
1522 |
-
#: widgets/premium-blog.php:
|
1523 |
-
#: widgets/premium-blog.php:
|
1524 |
-
#: widgets/premium-blog.php:
|
1525 |
-
#: widgets/premium-blog.php:
|
1526 |
-
#: widgets/premium-
|
1527 |
-
#: widgets/premium-
|
1528 |
-
#: widgets/premium-
|
1529 |
-
#: widgets/premium-counter.php:
|
1530 |
-
#: widgets/premium-fancytext.php:
|
1531 |
-
#: widgets/premium-
|
1532 |
-
#: widgets/premium-grid.php:
|
1533 |
-
#: widgets/premium-grid.php:
|
1534 |
-
#: widgets/premium-maps.php:
|
1535 |
-
#: widgets/premium-modalbox.php:
|
1536 |
-
#: widgets/premium-modalbox.php:
|
1537 |
-
#: widgets/premium-modalbox.php:
|
1538 |
-
#: widgets/premium-person.php:
|
1539 |
-
#: widgets/premium-person.php:
|
1540 |
-
#: widgets/premium-
|
1541 |
-
#: widgets/premium-pricing-table.php:
|
1542 |
-
#: widgets/premium-pricing-table.php:
|
1543 |
-
#: widgets/premium-pricing-table.php:
|
1544 |
#: widgets/premium-pricing-table.php:1109
|
1545 |
#: widgets/premium-pricing-table.php:1140
|
1546 |
#: widgets/premium-pricing-table.php:1274
|
@@ -1549,7 +1614,7 @@ msgstr ""
|
|
1549 |
#: widgets/premium-progressbar.php:552 widgets/premium-testimonials.php:280
|
1550 |
#: widgets/premium-testimonials.php:305 widgets/premium-testimonials.php:355
|
1551 |
#: widgets/premium-testimonials.php:391 widgets/premium-testimonials.php:447
|
1552 |
-
#: widgets/premium-title.php:263 widgets/premium-videobox.php:
|
1553 |
msgid "Color"
|
1554 |
msgstr ""
|
1555 |
|
@@ -1557,52 +1622,60 @@ msgstr ""
|
|
1557 |
msgid "Title Background"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
-
#: widgets/premium-banner.php:
|
1561 |
msgid "Choose a background color for the title"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
-
#: widgets/premium-banner.php:
|
1565 |
-
|
1566 |
-
|
1567 |
-
|
1568 |
-
#: widgets/premium-
|
1569 |
-
#: widgets/premium-
|
|
|
|
|
|
|
|
|
1570 |
#: widgets/premium-pricing-table.php:1440
|
1571 |
#: widgets/premium-pricing-table.php:1518
|
1572 |
#: widgets/premium-pricing-table.php:1731
|
1573 |
#: widgets/premium-pricing-table.php:1809 widgets/premium-title.php:443
|
1574 |
-
#: widgets/premium-videobox.php:
|
1575 |
-
#: widgets/premium-vscroll.php:
|
1576 |
-
#: widgets/premium-vscroll.php:
|
1577 |
msgid "Shadow"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
-
#: widgets/premium-banner.php:
|
1581 |
-
|
1582 |
-
|
1583 |
-
|
1584 |
-
#: widgets/premium-
|
|
|
|
|
|
|
|
|
1585 |
msgid "Hover Color"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
-
#: widgets/premium-banner.php:
|
1589 |
msgid "Hover Background Color"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
-
#: widgets/premium-banner.php:
|
1593 |
-
#: widgets/premium-blog.php:
|
1594 |
-
#: widgets/premium-blog.php:
|
1595 |
#: widgets/premium-button.php:759 widgets/premium-contactform.php:254
|
1596 |
#: widgets/premium-contactform.php:456 widgets/premium-dual-header.php:388
|
1597 |
-
#: widgets/premium-dual-header.php:585 widgets/premium-grid.php:
|
1598 |
-
#: widgets/premium-grid.php:
|
1599 |
-
#: widgets/premium-grid.php:
|
1600 |
-
#: widgets/premium-grid.php:
|
1601 |
-
#: widgets/premium-grid.php:
|
1602 |
#: widgets/premium-image-button.php:704 widgets/premium-maps.php:432
|
1603 |
#: widgets/premium-maps.php:514 widgets/premium-maps.php:606
|
1604 |
-
#: widgets/premium-modalbox.php:
|
1605 |
-
#: widgets/premium-modalbox.php:
|
1606 |
#: widgets/premium-pricing-table.php:565 widgets/premium-pricing-table.php:662
|
1607 |
#: widgets/premium-pricing-table.php:749 widgets/premium-pricing-table.php:1077
|
1608 |
#: widgets/premium-pricing-table.php:1243
|
@@ -1611,485 +1684,518 @@ msgstr ""
|
|
1611 |
#: widgets/premium-pricing-table.php:1538
|
1612 |
#: widgets/premium-pricing-table.php:1751
|
1613 |
#: widgets/premium-pricing-table.php:1829 widgets/premium-testimonials.php:560
|
1614 |
-
#: widgets/premium-title.php:536 widgets/premium-videobox.php:
|
1615 |
-
#: widgets/premium-videobox.php:
|
1616 |
-
#: widgets/premium-vscroll.php:
|
1617 |
msgid "Padding"
|
1618 |
msgstr ""
|
1619 |
|
1620 |
-
#: widgets/premium-blog.php:
|
1621 |
msgid "Choose a hover effect for the image"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
-
#: widgets/premium-blog.php:
|
1625 |
#: widgets/premium-person.php:129
|
1626 |
msgid "Translate"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#: widgets/premium-blog.php:
|
1630 |
msgid "Color Effect"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#: widgets/premium-blog.php:
|
1634 |
msgid "Choose an overlay color effect"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
-
#: widgets/premium-blog.php:
|
1638 |
msgid "Framed"
|
1639 |
msgstr ""
|
1640 |
|
1641 |
-
#: widgets/premium-blog.php:
|
1642 |
msgid "Diagonal"
|
1643 |
msgstr ""
|
1644 |
|
1645 |
-
#: widgets/premium-blog.php:
|
1646 |
msgid "Bordered"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
-
#: widgets/premium-blog.php:
|
1650 |
msgid "Squares"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
-
#: widgets/premium-blog.php:
|
1654 |
-
#: widgets/premium-modalbox.php:
|
1655 |
msgid "Display Options"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
-
#: widgets/premium-blog.php:
|
1659 |
msgid "Skin"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
-
#: widgets/premium-blog.php:
|
1663 |
msgid "Classic"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
-
#: widgets/premium-blog.php:
|
1667 |
msgid "Cards"
|
1668 |
msgstr ""
|
1669 |
|
1670 |
-
#: widgets/premium-blog.php:
|
1671 |
msgid "Title HTML Tag"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
-
#: widgets/premium-blog.php:
|
1675 |
msgid "Select a heading tag for the post title."
|
1676 |
msgstr ""
|
1677 |
|
1678 |
-
#: widgets/premium-blog.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1679 |
msgid "Masonry"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
-
#: widgets/premium-blog.php:
|
1683 |
msgid "Number of Columns"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
-
#: widgets/premium-blog.php:
|
1687 |
msgid "1 Column"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
-
#: widgets/premium-blog.php:
|
1691 |
msgid "2 Columns"
|
1692 |
msgstr ""
|
1693 |
|
1694 |
-
#: widgets/premium-blog.php:
|
1695 |
msgid "3 Columns"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
-
#: widgets/premium-blog.php:
|
1699 |
msgid "4 Columns"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
-
#: widgets/premium-blog.php:
|
1703 |
msgid "Thumbnail Min Height"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
-
#: widgets/premium-blog.php:
|
1707 |
msgid "Thumbnail Max Height"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
-
#: widgets/premium-blog.php:
|
1711 |
msgid "Thumbnail Fit"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
-
#: widgets/premium-blog.php:
|
1715 |
msgid "Cover"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
-
#: widgets/premium-blog.php:
|
1719 |
msgid "Fill"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
-
#: widgets/premium-blog.php:
|
1723 |
msgid "Contain"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
-
#: widgets/premium-blog.php:
|
1727 |
-
msgid "Spacing"
|
|
|
|
|
|
|
|
|
1728 |
msgstr ""
|
1729 |
|
1730 |
-
#: widgets/premium-blog.php:
|
1731 |
msgid "Post Options"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
-
#: widgets/premium-blog.php:
|
1735 |
msgid "Excerpt"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
-
#: widgets/premium-blog.php:
|
1739 |
msgid ""
|
1740 |
"Excerpt is used for article summary with a link to the whole entry. The "
|
1741 |
"default except length is 55"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
-
#: widgets/premium-blog.php:
|
1745 |
msgid "Pull From Content Box"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#: widgets/premium-blog.php:
|
1749 |
msgid "Post content will be pulled from post content box"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
-
#: widgets/premium-blog.php:
|
1753 |
msgid "Excerpt Length"
|
1754 |
msgstr ""
|
1755 |
|
1756 |
-
#: widgets/premium-blog.php:
|
1757 |
msgid "Excerpt Type"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
-
#: widgets/premium-blog.php:
|
1761 |
-
#: widgets/premium-vscroll.php:
|
1762 |
msgid "Dots"
|
1763 |
msgstr ""
|
1764 |
|
1765 |
-
#: widgets/premium-blog.php:
|
1766 |
msgid "Link Text"
|
1767 |
msgstr ""
|
1768 |
|
1769 |
-
#: widgets/premium-blog.php:
|
1770 |
msgid "continue reading"
|
1771 |
msgstr ""
|
1772 |
|
1773 |
-
#: widgets/premium-blog.php:
|
1774 |
msgid "Author Meta"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
-
#: widgets/premium-blog.php:
|
1778 |
msgid "Date Meta"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
-
#: widgets/premium-blog.php:
|
1782 |
msgid "Categories Meta"
|
1783 |
msgstr ""
|
1784 |
|
1785 |
-
#: widgets/premium-blog.php:
|
1786 |
msgid "Display or hide categories meta"
|
1787 |
msgstr ""
|
1788 |
|
1789 |
-
#: widgets/premium-blog.php:
|
1790 |
msgid "Comments Meta"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
-
#: widgets/premium-blog.php:
|
1794 |
msgid "Display or hide comments meta"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
-
#: widgets/premium-blog.php:
|
1798 |
msgid "Tags Meta"
|
1799 |
msgstr ""
|
1800 |
|
1801 |
-
#: widgets/premium-blog.php:
|
1802 |
msgid "Display or hide post tags"
|
1803 |
msgstr ""
|
1804 |
|
1805 |
-
#: widgets/premium-blog.php:
|
1806 |
msgid "Post Format Icon"
|
1807 |
msgstr ""
|
1808 |
|
1809 |
-
#: widgets/premium-blog.php:
|
1810 |
msgid "Advanced Settings"
|
1811 |
msgstr ""
|
1812 |
|
1813 |
-
#: widgets/premium-blog.php:
|
1814 |
msgid "Filter By Category"
|
1815 |
msgstr ""
|
1816 |
|
1817 |
-
#: widgets/premium-blog.php:
|
1818 |
msgid "Get posts for specific category(s)"
|
1819 |
msgstr ""
|
1820 |
|
1821 |
-
#: widgets/premium-blog.php:
|
1822 |
msgid "Filter Tabs"
|
1823 |
msgstr ""
|
1824 |
|
1825 |
-
#: widgets/premium-blog.php:
|
1826 |
msgid "Filter By Tag"
|
1827 |
msgstr ""
|
1828 |
|
1829 |
-
#: widgets/premium-blog.php:
|
1830 |
msgid "Get posts for specific tag(s)"
|
1831 |
msgstr ""
|
1832 |
|
1833 |
-
#: widgets/premium-blog.php:
|
1834 |
msgid "Filter By Author"
|
1835 |
msgstr ""
|
1836 |
|
1837 |
-
#: widgets/premium-blog.php:
|
1838 |
msgid "Get posts for specific author(s)"
|
1839 |
msgstr ""
|
1840 |
|
1841 |
-
#: widgets/premium-blog.php:
|
1842 |
msgid "Posts to Exclude"
|
1843 |
msgstr ""
|
1844 |
|
1845 |
-
#: widgets/premium-blog.php:
|
1846 |
msgid "Add post(s) to exclude"
|
1847 |
msgstr ""
|
1848 |
|
1849 |
-
#: widgets/premium-blog.php:
|
1850 |
msgid "Order By"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
-
#: widgets/premium-blog.php:
|
1854 |
msgid "ID"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
-
#: widgets/premium-blog.php:
|
1858 |
#: widgets/premium-testimonials.php:297
|
1859 |
msgid "Author"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
-
#: widgets/premium-blog.php:
|
1863 |
#: widgets/premium-person.php:402 widgets/premium-testimonials.php:86
|
1864 |
#: widgets/premium-testimonials.php:127
|
1865 |
msgid "Name"
|
1866 |
msgstr ""
|
1867 |
|
1868 |
-
#: widgets/premium-blog.php:
|
1869 |
msgid "Date"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
-
#: widgets/premium-blog.php:
|
1873 |
msgid "Last Modified"
|
1874 |
msgstr ""
|
1875 |
|
1876 |
-
#: widgets/premium-blog.php:
|
1877 |
msgid "Random"
|
1878 |
msgstr ""
|
1879 |
|
1880 |
-
#: widgets/premium-blog.php:
|
1881 |
msgid "Number of Comments"
|
1882 |
msgstr ""
|
1883 |
|
1884 |
-
#: widgets/premium-blog.php:
|
1885 |
msgid "Order"
|
1886 |
msgstr ""
|
1887 |
|
1888 |
-
#: widgets/premium-blog.php:
|
1889 |
msgid "Descending"
|
1890 |
msgstr ""
|
1891 |
|
1892 |
-
#: widgets/premium-blog.php:
|
1893 |
msgid "Ascending"
|
1894 |
msgstr ""
|
1895 |
|
1896 |
-
#: widgets/premium-blog.php:
|
1897 |
msgid "Pagination"
|
1898 |
msgstr ""
|
1899 |
|
1900 |
-
#: widgets/premium-blog.php:
|
1901 |
msgid "Pagination is the process of dividing the posts into discrete pages"
|
1902 |
msgstr ""
|
1903 |
|
1904 |
-
#: widgets/premium-blog.php:
|
1905 |
msgid "Next Page String"
|
1906 |
msgstr ""
|
1907 |
|
1908 |
-
#: widgets/premium-blog.php:
|
1909 |
msgid "Next"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
-
#: widgets/premium-blog.php:
|
1913 |
msgid "Previous Page String"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
-
#: widgets/premium-blog.php:
|
1917 |
msgid "Previous"
|
1918 |
msgstr ""
|
1919 |
|
1920 |
-
#: widgets/premium-blog.php:
|
1921 |
msgid "Links in New Tab"
|
1922 |
msgstr ""
|
1923 |
|
1924 |
-
#: widgets/premium-blog.php:
|
1925 |
msgid "Enable links to be opened in a new tab"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
-
#: widgets/premium-blog.php:
|
1929 |
msgid "Posts Per Page"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
-
#: widgets/premium-blog.php:
|
1933 |
msgid "Choose how many posts do you want to be displayed per page"
|
1934 |
msgstr ""
|
1935 |
|
1936 |
-
#: widgets/premium-blog.php:
|
1937 |
msgid "Total Number of Posts"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
-
#: widgets/premium-blog.php:
|
1941 |
msgid "Offset Count"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
-
#: widgets/premium-blog.php:
|
1945 |
msgid "The index of post to start with"
|
1946 |
msgstr ""
|
1947 |
|
1948 |
-
#: widgets/premium-blog.php:
|
1949 |
msgid "Enable Carousel"
|
1950 |
msgstr ""
|
1951 |
|
1952 |
-
#: widgets/premium-blog.php:
|
1953 |
msgid "Fade"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
-
#: widgets/premium-blog.php:
|
1957 |
msgid "Auto Play"
|
1958 |
msgstr ""
|
1959 |
|
1960 |
-
#: widgets/premium-blog.php:
|
1961 |
msgid "Autoplay Speed"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
-
#: widgets/premium-blog.php:
|
1965 |
msgid ""
|
1966 |
"Autoplay Speed means at which time the next slide should come. Set a value "
|
1967 |
"in milliseconds (ms)"
|
1968 |
msgstr ""
|
1969 |
|
1970 |
-
#: widgets/premium-blog.php:
|
1971 |
msgid "Arrows Position"
|
1972 |
msgstr ""
|
1973 |
|
1974 |
-
#: widgets/premium-blog.php:
|
1975 |
#: widgets/premium-button.php:636 widgets/premium-button.php:653
|
1976 |
#: widgets/premium-image-button.php:415 widgets/premium-image-button.php:537
|
1977 |
#: widgets/premium-image-button.php:554 widgets/premium-image-scroll.php:279
|
1978 |
-
#: widgets/premium-modalbox.php:
|
1979 |
msgid "Icon Color"
|
1980 |
msgstr ""
|
1981 |
|
1982 |
-
#: widgets/premium-blog.php:
|
1983 |
#: widgets/premium-image-button.php:570 widgets/premium-image-button.php:587
|
1984 |
#: widgets/premium-image-button.php:612 widgets/premium-image-scroll.php:292
|
1985 |
msgid "Overlay Color"
|
1986 |
msgstr ""
|
1987 |
|
1988 |
-
#: widgets/premium-blog.php:
|
1989 |
#: widgets/premium-contactform.php:554
|
1990 |
msgid "Border Color"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
-
#: widgets/premium-blog.php:
|
1994 |
msgid "Meta"
|
1995 |
msgstr ""
|
1996 |
|
1997 |
-
#: widgets/premium-blog.php:
|
1998 |
-
#: widgets/premium-blog.php:1378 widgets/premium-button.php:592
|
1999 |
-
#: widgets/premium-button.php:749 widgets/premium-contactform.php:286
|
2000 |
-
#: widgets/premium-dual-header.php:375 widgets/premium-dual-header.php:572
|
2001 |
-
#: widgets/premium-grid.php:719 widgets/premium-grid.php:797
|
2002 |
-
#: widgets/premium-grid.php:934 widgets/premium-grid.php:1049
|
2003 |
-
#: widgets/premium-grid.php:1143 widgets/premium-grid.php:1279
|
2004 |
-
#: widgets/premium-grid.php:1403 widgets/premium-grid.php:1491
|
2005 |
-
#: widgets/premium-image-button.php:493 widgets/premium-image-button.php:694
|
2006 |
-
#: widgets/premium-maps.php:420 widgets/premium-maps.php:503
|
2007 |
-
#: widgets/premium-maps.php:594 widgets/premium-modalbox.php:1288
|
2008 |
-
#: widgets/premium-pricing-table.php:643 widgets/premium-pricing-table.php:730
|
2009 |
-
#: widgets/premium-pricing-table.php:814 widgets/premium-pricing-table.php:884
|
2010 |
-
#: widgets/premium-pricing-table.php:931 widgets/premium-pricing-table.php:976
|
2011 |
-
#: widgets/premium-pricing-table.php:1028
|
2012 |
-
#: widgets/premium-pricing-table.php:1058
|
2013 |
-
#: widgets/premium-pricing-table.php:1225
|
2014 |
-
#: widgets/premium-pricing-table.php:1316
|
2015 |
-
#: widgets/premium-pricing-table.php:1449
|
2016 |
-
#: widgets/premium-pricing-table.php:1527
|
2017 |
-
#: widgets/premium-pricing-table.php:1740
|
2018 |
-
#: widgets/premium-pricing-table.php:1818 widgets/premium-progressbar.php:318
|
2019 |
-
#: widgets/premium-progressbar.php:376 widgets/premium-progressbar.php:421
|
2020 |
-
#: widgets/premium-testimonials.php:417 widgets/premium-title.php:430
|
2021 |
-
#: widgets/premium-title.php:524 widgets/premium-vscroll.php:440
|
2022 |
-
#: widgets/premium-vscroll.php:724
|
2023 |
-
msgid "Margin"
|
2024 |
-
msgstr ""
|
2025 |
-
|
2026 |
-
#: widgets/premium-blog.php:895
|
2027 |
msgid "Tags"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
-
#: widgets/premium-blog.php:
|
2031 |
-
#: widgets/premium-button.php:412 widgets/premium-carousel.php:
|
2032 |
#: widgets/premium-counter.php:228 widgets/premium-counter.php:250
|
2033 |
-
#: widgets/premium-image-button.php:316 widgets/premium-modalbox.php:
|
2034 |
#: widgets/premium-pricing-table.php:396 widgets/premium-pricing-table.php:415
|
2035 |
#: widgets/premium-pricing-table.php:538 widgets/premium-pricing-table.php:1154
|
2036 |
#: widgets/premium-progressbar.php:527 widgets/premium-progressbar.php:568
|
2037 |
#: widgets/premium-testimonials.php:237 widgets/premium-testimonials.php:459
|
2038 |
-
#: widgets/premium-videobox.php:
|
2039 |
msgid "Size"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
-
#: widgets/premium-blog.php:
|
2043 |
msgid "Choose icon size in (PX, EM)"
|
2044 |
msgstr ""
|
2045 |
|
2046 |
-
#: widgets/premium-blog.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2047 |
msgid "Pagination Style"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
-
#: widgets/premium-blog.php:
|
2051 |
-
#: widgets/premium-contactform.php:469 widgets/premium-grid.php:
|
2052 |
-
#: widgets/premium-grid.php:
|
2053 |
#: widgets/premium-image-scroll.php:307 widgets/premium-image-scroll.php:386
|
2054 |
-
#: widgets/premium-modalbox.php:
|
2055 |
-
#: widgets/premium-modalbox.php:
|
2056 |
-
#: widgets/premium-pricing-table.php:1692 widgets/premium-vscroll.php:
|
2057 |
msgid "Normal"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
-
#: widgets/premium-blog.php:
|
2061 |
-
#: widgets/premium-contactform.php:527 widgets/premium-grid.php:
|
2062 |
-
#: widgets/premium-grid.php:
|
2063 |
#: widgets/premium-image-scroll.php:206 widgets/premium-image-scroll.php:340
|
2064 |
-
#: widgets/premium-image-scroll.php:421 widgets/premium-modalbox.php:
|
2065 |
-
#: widgets/premium-modalbox.php:
|
2066 |
#: widgets/premium-pricing-table.php:1479
|
2067 |
#: widgets/premium-pricing-table.php:1770
|
2068 |
msgid "Hover"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
-
#: widgets/premium-blog.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2072 |
msgid "Read More Text"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
-
#: widgets/premium-blog.php:
|
2076 |
-
#: widgets/premium-grid.php:
|
2077 |
msgid "Filter"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
-
#: widgets/premium-blog.php:
|
2081 |
-
#: widgets/premium-grid.php:
|
2082 |
msgid "Active Color"
|
2083 |
msgstr ""
|
2084 |
|
2085 |
-
#: widgets/premium-blog.php:
|
2086 |
msgid "Background Active Color"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
-
#: widgets/premium-blog.php:1686 widgets/premium-grid.php:260
|
2090 |
-
msgid "All"
|
2091 |
-
msgstr ""
|
2092 |
-
|
2093 |
#: widgets/premium-button.php:66 widgets/premium-image-button.php:61
|
2094 |
msgid "Click Me"
|
2095 |
msgstr ""
|
@@ -2176,7 +2282,7 @@ msgstr ""
|
|
2176 |
msgid "Tilted Right"
|
2177 |
msgstr ""
|
2178 |
|
2179 |
-
#: widgets/premium-button.php:192 widgets/premium-carousel.php:
|
2180 |
#: widgets/premium-countdown.php:61 widgets/premium-counter.php:272
|
2181 |
#: widgets/premium-title.php:66
|
2182 |
msgid "Style"
|
@@ -2199,11 +2305,11 @@ msgid "Rectangle Out"
|
|
2199 |
msgstr ""
|
2200 |
|
2201 |
#: widgets/premium-button.php:210 widgets/premium-button.php:221
|
2202 |
-
#: widgets/premium-button.php:234 widgets/premium-carousel.php:
|
2203 |
#: widgets/premium-counter.php:204 widgets/premium-image-button.php:198
|
2204 |
#: widgets/premium-image-button.php:209 widgets/premium-image-button.php:222
|
2205 |
-
#: widgets/premium-image-scroll.php:230 widgets/premium-modalbox.php:
|
2206 |
-
#: widgets/premium-modalbox.php:
|
2207 |
#: widgets/premium-pricing-table.php:56 widgets/premium-pricing-table.php:205
|
2208 |
#: widgets/premium-pricing-table.php:455 widgets/premium-pricing-table.php:513
|
2209 |
#: widgets/premium-pricing-table.php:1132 widgets/premium-title.php:85
|
@@ -2211,29 +2317,29 @@ msgid "Icon"
|
|
2211 |
msgstr ""
|
2212 |
|
2213 |
#: widgets/premium-button.php:215 widgets/premium-image-button.php:203
|
2214 |
-
#: widgets/premium-modalbox.php:
|
2215 |
msgid "Enable or disable button icon"
|
2216 |
msgstr ""
|
2217 |
|
2218 |
#: widgets/premium-button.php:246 widgets/premium-counter.php:176
|
2219 |
-
#: widgets/premium-image-button.php:234 widgets/premium-modalbox.php:
|
2220 |
msgid "Icon Position"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
#: widgets/premium-button.php:250 widgets/premium-image-button.php:238
|
2224 |
-
#: widgets/premium-modalbox.php:
|
2225 |
msgid "Before"
|
2226 |
msgstr ""
|
2227 |
|
2228 |
#: widgets/premium-button.php:251 widgets/premium-image-button.php:239
|
2229 |
-
#: widgets/premium-modalbox.php:
|
2230 |
msgid "After"
|
2231 |
msgstr ""
|
2232 |
|
2233 |
#: widgets/premium-button.php:263 widgets/premium-button.php:277
|
2234 |
#: widgets/premium-image-button.php:251 widgets/premium-image-button.php:265
|
2235 |
-
#: widgets/premium-image-scroll.php:237 widgets/premium-modalbox.php:
|
2236 |
-
#: widgets/premium-modalbox.php:
|
2237 |
msgid "Icon Size"
|
2238 |
msgstr ""
|
2239 |
|
@@ -2241,29 +2347,29 @@ msgstr ""
|
|
2241 |
#: widgets/premium-button.php:331 widgets/premium-button.php:350
|
2242 |
#: widgets/premium-button.php:370 widgets/premium-button.php:391
|
2243 |
#: widgets/premium-image-button.php:278 widgets/premium-image-button.php:297
|
2244 |
-
#: widgets/premium-modalbox.php:
|
2245 |
-
#: widgets/premium-modalbox.php:
|
2246 |
msgid "Icon Spacing"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
#: widgets/premium-button.php:416 widgets/premium-image-button.php:320
|
2250 |
-
#: widgets/premium-modalbox.php:
|
2251 |
msgid "Small"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
#: widgets/premium-button.php:417 widgets/premium-image-button.php:321
|
2255 |
-
#: widgets/premium-modalbox.php:
|
2256 |
msgid "Medium"
|
2257 |
msgstr ""
|
2258 |
|
2259 |
#: widgets/premium-button.php:418 widgets/premium-image-button.php:322
|
2260 |
-
#: widgets/premium-modalbox.php:
|
2261 |
msgid "Large"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
#: widgets/premium-button.php:419 widgets/premium-countdown.php:65
|
2265 |
#: widgets/premium-dual-header.php:107 widgets/premium-image-button.php:323
|
2266 |
-
#: widgets/premium-modalbox.php:
|
2267 |
msgid "Block"
|
2268 |
msgstr ""
|
2269 |
|
@@ -2275,16 +2381,6 @@ msgstr ""
|
|
2275 |
msgid "Example: myFunction();"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
-
#: widgets/premium-button.php:498 widgets/premium-button.php:620
|
2279 |
-
#: widgets/premium-contactform.php:474 widgets/premium-contactform.php:532
|
2280 |
-
#: widgets/premium-dual-header.php:246 widgets/premium-dual-header.php:443
|
2281 |
-
#: widgets/premium-grid.php:1330 widgets/premium-image-button.php:402
|
2282 |
-
#: widgets/premium-image-button.php:521 widgets/premium-pricing-table.php:1573
|
2283 |
-
#: widgets/premium-videobox.php:551 widgets/premium-vscroll.php:592
|
2284 |
-
#: widgets/premium-vscroll.php:651
|
2285 |
-
msgid "Text Color"
|
2286 |
-
msgstr ""
|
2287 |
-
|
2288 |
#: widgets/premium-button.php:562 widgets/premium-button.php:704
|
2289 |
#: widgets/premium-button.php:717 widgets/premium-image-button.php:462
|
2290 |
#: widgets/premium-image-button.php:649 widgets/premium-image-button.php:662
|
@@ -2302,304 +2398,300 @@ msgstr ""
|
|
2302 |
msgid "Button Shadow"
|
2303 |
msgstr ""
|
2304 |
|
2305 |
-
#: widgets/premium-carousel.php:
|
2306 |
msgid "Content Type"
|
2307 |
msgstr ""
|
2308 |
|
2309 |
-
#: widgets/premium-carousel.php:
|
2310 |
msgid "How templates are selected"
|
2311 |
msgstr ""
|
2312 |
|
2313 |
-
#: widgets/premium-carousel.php:
|
2314 |
msgid "Select Field"
|
2315 |
msgstr ""
|
2316 |
|
2317 |
-
#: widgets/premium-carousel.php:
|
2318 |
msgid "Repeater"
|
2319 |
msgstr ""
|
2320 |
|
2321 |
-
#: widgets/premium-carousel.php:81
|
2322 |
-
msgid "Templates"
|
2323 |
-
msgstr ""
|
2324 |
-
|
2325 |
-
#: widgets/premium-carousel.php:82
|
2326 |
msgid ""
|
2327 |
"Slider content is a template which you can choose from Elementor library. "
|
2328 |
"Each template will be a slider content"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#: widgets/premium-carousel.php:
|
2332 |
msgid "Type"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
-
#: widgets/premium-carousel.php:
|
2336 |
msgid "Set a navigation type"
|
2337 |
msgstr ""
|
2338 |
|
2339 |
-
#: widgets/premium-carousel.php:
|
2340 |
#: widgets/premium-image-scroll.php:184
|
2341 |
msgid "Horizontal"
|
2342 |
msgstr ""
|
2343 |
|
2344 |
-
#: widgets/premium-carousel.php:
|
2345 |
#: widgets/premium-image-scroll.php:185
|
2346 |
msgid "Vertical"
|
2347 |
msgstr ""
|
2348 |
|
2349 |
-
#: widgets/premium-carousel.php:
|
2350 |
msgid "Enable or disable navigation dots"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
-
#: widgets/premium-carousel.php:
|
2354 |
-
#: widgets/premium-pricing-table.php:434 widgets/premium-vscroll.php:
|
2355 |
msgid "Position"
|
2356 |
msgstr ""
|
2357 |
|
2358 |
-
#: widgets/premium-carousel.php:
|
2359 |
msgid "Below Slides"
|
2360 |
msgstr ""
|
2361 |
|
2362 |
-
#: widgets/premium-carousel.php:
|
2363 |
msgid "On Slides"
|
2364 |
msgstr ""
|
2365 |
|
2366 |
-
#: widgets/premium-carousel.php:
|
2367 |
msgid "Horizontal Offset"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
-
#: widgets/premium-carousel.php:
|
2371 |
msgid "Vertical Offset"
|
2372 |
msgstr ""
|
2373 |
|
2374 |
-
#: widgets/premium-carousel.php:
|
2375 |
msgid "Arrows"
|
2376 |
msgstr ""
|
2377 |
|
2378 |
-
#: widgets/premium-carousel.php:
|
2379 |
msgid "Enable or disable navigation arrows"
|
2380 |
msgstr ""
|
2381 |
|
2382 |
-
#: widgets/premium-carousel.php:
|
2383 |
msgid "Appearance"
|
2384 |
msgstr ""
|
2385 |
|
2386 |
-
#: widgets/premium-carousel.php:
|
2387 |
msgid "All visible"
|
2388 |
msgstr ""
|
2389 |
|
2390 |
-
#: widgets/premium-carousel.php:
|
2391 |
msgid "One at a time"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
-
#: widgets/premium-carousel.php:
|
2395 |
msgid "Desktop Slides"
|
2396 |
msgstr ""
|
2397 |
|
2398 |
-
#: widgets/premium-carousel.php:
|
2399 |
msgid "Tabs Slides"
|
2400 |
msgstr ""
|
2401 |
|
2402 |
-
#: widgets/premium-carousel.php:
|
2403 |
msgid "Mobile Slides"
|
2404 |
msgstr ""
|
2405 |
|
2406 |
-
#: widgets/premium-carousel.php:
|
2407 |
msgid "Slides' Settings"
|
2408 |
msgstr ""
|
2409 |
|
2410 |
-
#: widgets/premium-carousel.php:
|
2411 |
msgid "Infinite Loop"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
-
#: widgets/premium-carousel.php:
|
2415 |
msgid "Restart the slider automatically as it passes the last slide"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
-
#: widgets/premium-carousel.php:
|
2419 |
msgid "Enable fade transition between slides"
|
2420 |
msgstr ""
|
2421 |
|
2422 |
-
#: widgets/premium-carousel.php:
|
2423 |
msgid "Zoom Effect"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
-
#: widgets/premium-carousel.php:
|
2427 |
msgid "Transition Speed"
|
2428 |
msgstr ""
|
2429 |
|
2430 |
-
#: widgets/premium-carousel.php:
|
2431 |
msgid ""
|
2432 |
"Set a navigation speed value. The value will be counted in milliseconds (ms)"
|
2433 |
msgstr ""
|
2434 |
|
2435 |
-
#: widgets/premium-carousel.php:
|
2436 |
msgid "Autoplay Slides"
|
2437 |
msgstr ""
|
2438 |
|
2439 |
-
#: widgets/premium-carousel.php:
|
2440 |
msgid "Slide will start automatically"
|
2441 |
msgstr ""
|
2442 |
|
2443 |
-
#: widgets/premium-carousel.php:
|
2444 |
msgid "Animations"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
-
#: widgets/premium-carousel.php:
|
2448 |
msgid ""
|
2449 |
"Add extra class name that will be applied to the carousel, and you can use "
|
2450 |
"this class for your customizations."
|
2451 |
msgstr ""
|
2452 |
|
2453 |
-
#: widgets/premium-carousel.php:
|
2454 |
msgid "Additional Settings"
|
2455 |
msgstr ""
|
2456 |
|
2457 |
-
#: widgets/premium-carousel.php:
|
2458 |
msgid "Draggable Effect"
|
2459 |
msgstr ""
|
2460 |
|
2461 |
-
#: widgets/premium-carousel.php:
|
2462 |
msgid "Allow the slides to be dragged by mouse click"
|
2463 |
msgstr ""
|
2464 |
|
2465 |
-
#: widgets/premium-carousel.php:
|
2466 |
msgid "Touch Move"
|
2467 |
msgstr ""
|
2468 |
|
2469 |
-
#: widgets/premium-carousel.php:
|
2470 |
msgid "Enable slide moving with touch"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
-
#: widgets/premium-carousel.php:
|
2474 |
msgid "RTL Mode"
|
2475 |
msgstr ""
|
2476 |
|
2477 |
-
#: widgets/premium-carousel.php:
|
2478 |
msgid "Turn on RTL mode if your language starts from right to left"
|
2479 |
msgstr ""
|
2480 |
|
2481 |
-
#: widgets/premium-carousel.php:
|
2482 |
msgid "Adaptive Height"
|
2483 |
msgstr ""
|
2484 |
|
2485 |
-
#: widgets/premium-carousel.php:
|
2486 |
msgid ""
|
2487 |
"Adaptive height setting gives each slide a fixed height to avoid huge white "
|
2488 |
"space gaps"
|
2489 |
msgstr ""
|
2490 |
|
2491 |
-
#: widgets/premium-carousel.php:
|
2492 |
msgid "Pause on Hover"
|
2493 |
msgstr ""
|
2494 |
|
2495 |
-
#: widgets/premium-carousel.php:
|
2496 |
msgid "Pause the slider when mouse hover"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
-
#: widgets/premium-carousel.php:
|
2500 |
msgid "Center Mode"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
-
#: widgets/premium-carousel.php:
|
2504 |
msgid ""
|
2505 |
"Center mode enables a centered view with partial next/previous slides. "
|
2506 |
"Animations and all visible scroll type doesn't work with this mode"
|
2507 |
msgstr ""
|
2508 |
|
2509 |
-
#: widgets/premium-carousel.php:
|
2510 |
msgid "Slides' Spacing"
|
2511 |
msgstr ""
|
2512 |
|
2513 |
-
#: widgets/premium-carousel.php:
|
2514 |
msgid "Set a spacing value in pixels (px)"
|
2515 |
msgstr ""
|
2516 |
|
2517 |
-
#: widgets/premium-carousel.php:
|
2518 |
msgid "Tablet Breakpoint"
|
2519 |
msgstr ""
|
2520 |
|
2521 |
-
#: widgets/premium-carousel.php:
|
2522 |
msgid ""
|
2523 |
"Sets the breakpoint between desktop and tablet devices. Below this "
|
2524 |
"breakpoint tablet layout will appear (Default: 1025px)."
|
2525 |
msgstr ""
|
2526 |
|
2527 |
-
#: widgets/premium-carousel.php:
|
2528 |
msgid "Mobile Breakpoint"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
-
#: widgets/premium-carousel.php:
|
2532 |
msgid ""
|
2533 |
"Sets the breakpoint between tablet and mobile devices. Below this breakpoint "
|
2534 |
"mobile layout will appear (Default: 768px)."
|
2535 |
msgstr ""
|
2536 |
|
2537 |
-
#: widgets/premium-carousel.php:
|
2538 |
msgid "Helpful Documentations"
|
2539 |
msgstr ""
|
2540 |
|
2541 |
-
#: widgets/premium-carousel.php:
|
2542 |
#, php-format
|
2543 |
msgid "%1$s Issue: I can see the first slide only » %2$s"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
-
#: widgets/premium-carousel.php:
|
2547 |
msgid "Navigation Arrows"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
-
#: widgets/premium-carousel.php:
|
2551 |
msgid "Right Icon"
|
2552 |
msgstr ""
|
2553 |
|
2554 |
-
#: widgets/premium-carousel.php:
|
2555 |
msgid "Bottom Icon"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
-
#: widgets/premium-carousel.php:
|
2559 |
msgid "Top Icon"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
-
#: widgets/premium-carousel.php:
|
2563 |
msgid "Left Icon"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
-
#: widgets/premium-carousel.php:
|
2567 |
msgid "Circle Background"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
-
#: widgets/premium-carousel.php:
|
2571 |
msgid "Square Background"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
-
#: widgets/premium-carousel.php:
|
2575 |
msgid "Circle border"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
-
#: widgets/premium-carousel.php:
|
2579 |
msgid "Square border"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
-
#: widgets/premium-carousel.php:
|
2583 |
msgid "Border Size"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
-
#: widgets/premium-carousel.php:
|
2587 |
msgid "Position (PX)"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
-
#: widgets/premium-carousel.php:
|
2591 |
msgid "Navigation Dots"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
-
#: widgets/premium-carousel.php:
|
2595 |
msgid "Ripple Effect"
|
2596 |
msgstr ""
|
2597 |
|
2598 |
-
#: widgets/premium-carousel.php:
|
2599 |
msgid "Enable a ripple effect when the active dot is hovered/clicked"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
-
#: widgets/premium-carousel.php:
|
2603 |
msgid "Ripple Color"
|
2604 |
msgstr ""
|
2605 |
|
@@ -2616,8 +2708,8 @@ msgid "Fields"
|
|
2616 |
msgstr ""
|
2617 |
|
2618 |
#: widgets/premium-contactform.php:72 widgets/premium-contactform.php:189
|
2619 |
-
#: widgets/premium-grid.php:346 widgets/premium-modalbox.php:
|
2620 |
-
#: widgets/premium-modalbox.php:
|
2621 |
msgid "Width"
|
2622 |
msgstr ""
|
2623 |
|
@@ -2903,13 +2995,13 @@ msgstr ""
|
|
2903 |
msgid "Use a font awesome icon or upload a custom image"
|
2904 |
msgstr ""
|
2905 |
|
2906 |
-
#: widgets/premium-counter.php:143 widgets/premium-modalbox.php:
|
2907 |
-
#: widgets/premium-modalbox.php:
|
2908 |
msgid "Font Awesome"
|
2909 |
msgstr ""
|
2910 |
|
2911 |
-
#: widgets/premium-counter.php:144 widgets/premium-modalbox.php:
|
2912 |
-
#: widgets/premium-modalbox.php:
|
2913 |
msgid "Custom Image"
|
2914 |
msgstr ""
|
2915 |
|
@@ -3101,7 +3193,7 @@ msgid ""
|
|
3101 |
"5 seconds before backspace effect."
|
3102 |
msgstr ""
|
3103 |
|
3104 |
-
#: widgets/premium-fancytext.php:218 widgets/premium-videobox.php:
|
3105 |
msgid "Loop"
|
3106 |
msgstr ""
|
3107 |
|
@@ -3150,18 +3242,10 @@ msgstr ""
|
|
3150 |
msgid "Cursor Text"
|
3151 |
msgstr ""
|
3152 |
|
3153 |
-
#: widgets/premium-grid.php:69
|
3154 |
-
msgid "Layout"
|
3155 |
-
msgstr ""
|
3156 |
-
|
3157 |
#: widgets/premium-grid.php:75
|
3158 |
msgid "Grid Layout"
|
3159 |
msgstr ""
|
3160 |
|
3161 |
-
#: widgets/premium-grid.php:78
|
3162 |
-
msgid "Even"
|
3163 |
-
msgstr ""
|
3164 |
-
|
3165 |
#: widgets/premium-grid.php:80
|
3166 |
msgid "Metro"
|
3167 |
msgstr ""
|
@@ -3194,7 +3278,7 @@ msgstr ""
|
|
3194 |
msgid "12 Columns"
|
3195 |
msgstr ""
|
3196 |
|
3197 |
-
#: widgets/premium-grid.php:171 widgets/premium-grid.php:
|
3198 |
msgid "Load More Button"
|
3199 |
msgstr ""
|
3200 |
|
@@ -3202,7 +3286,7 @@ msgstr ""
|
|
3202 |
msgid "Requires number of images larger than 6"
|
3203 |
msgstr ""
|
3204 |
|
3205 |
-
#: widgets/premium-grid.php:179 widgets/premium-modalbox.php:
|
3206 |
msgid "Button Text"
|
3207 |
msgstr ""
|
3208 |
|
@@ -3306,75 +3390,81 @@ msgstr ""
|
|
3306 |
msgid "Style 3"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
-
#: widgets/premium-grid.php:
|
3310 |
msgid "Lightbox"
|
3311 |
msgstr ""
|
3312 |
|
3313 |
-
#: widgets/premium-grid.php:
|
3314 |
msgid "Lightbox Theme"
|
3315 |
msgstr ""
|
3316 |
|
3317 |
-
#: widgets/premium-grid.php:
|
3318 |
msgid "Light Rounded"
|
3319 |
msgstr ""
|
3320 |
|
3321 |
-
#: widgets/premium-grid.php:
|
3322 |
msgid "Dark Rounded"
|
3323 |
msgstr ""
|
3324 |
|
3325 |
-
#: widgets/premium-grid.php:
|
3326 |
msgid "Light Square"
|
3327 |
msgstr ""
|
3328 |
|
3329 |
-
#: widgets/premium-grid.php:
|
3330 |
msgid "Dark Square"
|
3331 |
msgstr ""
|
3332 |
|
3333 |
-
#: widgets/premium-grid.php:
|
3334 |
msgid "Facebook"
|
3335 |
msgstr ""
|
3336 |
|
3337 |
-
#: widgets/premium-grid.php:
|
3338 |
msgid "Overlay Gallery Images"
|
3339 |
msgstr ""
|
3340 |
|
3341 |
-
#: widgets/premium-grid.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
3342 |
msgid "Content Alignment"
|
3343 |
msgstr ""
|
3344 |
|
3345 |
-
#: widgets/premium-grid.php:
|
3346 |
msgid ""
|
3347 |
"If the content text is not suiting well on specific screen sizes, you may "
|
3348 |
"enable this option which will hide the description text."
|
3349 |
msgstr ""
|
3350 |
|
3351 |
-
#: widgets/premium-grid.php:
|
3352 |
#, php-format
|
3353 |
msgid "%1$s Getting Started » %2$s"
|
3354 |
msgstr ""
|
3355 |
|
3356 |
-
#: widgets/premium-grid.php:
|
3357 |
msgid "General"
|
3358 |
msgstr ""
|
3359 |
|
3360 |
-
#: widgets/premium-grid.php:
|
3361 |
msgid "Hover CSS Filters"
|
3362 |
msgstr ""
|
3363 |
|
3364 |
-
#: widgets/premium-grid.php:
|
3365 |
msgid "Icons"
|
3366 |
msgstr ""
|
3367 |
|
3368 |
-
#: widgets/premium-grid.php:
|
3369 |
msgid "Background"
|
3370 |
msgstr ""
|
3371 |
|
3372 |
-
#: widgets/premium-grid.php:
|
3373 |
msgid "Spinner Color"
|
3374 |
msgstr ""
|
3375 |
|
3376 |
-
#: widgets/premium-grid.php:
|
3377 |
-
#: widgets/premium-vscroll.php:
|
3378 |
msgid "Text Hover Color"
|
3379 |
msgstr ""
|
3380 |
|
@@ -3442,7 +3532,7 @@ msgstr ""
|
|
3442 |
msgid "Reverse Direction"
|
3443 |
msgstr ""
|
3444 |
|
3445 |
-
#: widgets/premium-image-scroll.php:203 widgets/premium-modalbox.php:
|
3446 |
msgid "Trigger"
|
3447 |
msgstr ""
|
3448 |
|
@@ -3458,8 +3548,8 @@ msgstr ""
|
|
3458 |
msgid "Set the scroll speed value. The value will be counted in seconds (s)"
|
3459 |
msgstr ""
|
3460 |
|
3461 |
-
#: widgets/premium-image-scroll.php:260 widgets/premium-videobox.php:
|
3462 |
-
#: widgets/premium-videobox.php:
|
3463 |
msgid "Overlay"
|
3464 |
msgstr ""
|
3465 |
|
@@ -3479,7 +3569,7 @@ msgstr ""
|
|
3479 |
#: widgets/premium-pricing-table.php:1040
|
3480 |
#: widgets/premium-pricing-table.php:1187
|
3481 |
#: widgets/premium-pricing-table.php:1298 widgets/premium-testimonials.php:517
|
3482 |
-
#: widgets/premium-vscroll.php:
|
3483 |
msgid "Container"
|
3484 |
msgstr ""
|
3485 |
|
@@ -3667,104 +3757,96 @@ msgstr ""
|
|
3667 |
msgid "Map"
|
3668 |
msgstr ""
|
3669 |
|
3670 |
-
#: widgets/premium-modalbox.php:
|
3671 |
msgid "Header"
|
3672 |
msgstr ""
|
3673 |
|
3674 |
-
#: widgets/premium-modalbox.php:
|
3675 |
msgid "Enable or disable modal header"
|
3676 |
msgstr ""
|
3677 |
|
3678 |
-
#: widgets/premium-modalbox.php:
|
3679 |
msgid "Use font awesome icon or upload a custom image"
|
3680 |
msgstr ""
|
3681 |
|
3682 |
-
#: widgets/premium-modalbox.php:
|
3683 |
msgid "Add a title for the modal box"
|
3684 |
msgstr ""
|
3685 |
|
3686 |
-
#: widgets/premium-modalbox.php:
|
3687 |
msgid "Content to Show"
|
3688 |
msgstr ""
|
3689 |
|
3690 |
-
#: widgets/premium-modalbox.php:
|
3691 |
msgid "Text Editor"
|
3692 |
msgstr ""
|
3693 |
|
3694 |
-
#: widgets/premium-modalbox.php:
|
3695 |
msgid "Elementor Template"
|
3696 |
msgstr ""
|
3697 |
|
3698 |
-
#: widgets/premium-modalbox.php:
|
3699 |
msgid "Modal content is a template which you can choose from Elementor library"
|
3700 |
msgstr ""
|
3701 |
|
3702 |
-
#: widgets/premium-modalbox.php:
|
3703 |
msgid "Upper Close Button"
|
3704 |
msgstr ""
|
3705 |
|
3706 |
-
#: widgets/premium-modalbox.php:
|
3707 |
msgid "Lower Close Button"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
-
#: widgets/premium-modalbox.php:
|
3711 |
-
msgid "Close"
|
3712 |
-
msgstr ""
|
3713 |
-
|
3714 |
-
#: widgets/premium-modalbox.php:257
|
3715 |
msgid "Display Style"
|
3716 |
msgstr ""
|
3717 |
|
3718 |
-
#: widgets/premium-modalbox.php:
|
3719 |
msgid "Choose where would you like the modal box appear on"
|
3720 |
msgstr ""
|
3721 |
|
3722 |
-
#: widgets/premium-modalbox.php:
|
3723 |
msgid "Page Load"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
-
#: widgets/premium-modalbox.php:
|
3727 |
msgid "Premium Modal Box"
|
3728 |
msgstr ""
|
3729 |
|
3730 |
-
#: widgets/premium-modalbox.php:
|
3731 |
msgid "Button Size"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
-
#: widgets/premium-modalbox.php:
|
3735 |
msgid "Delay in Popup Display (Sec)"
|
3736 |
msgstr ""
|
3737 |
|
3738 |
-
#: widgets/premium-modalbox.php:
|
3739 |
msgid ""
|
3740 |
"When should the popup appear during page load? The value are counted in "
|
3741 |
"seconds"
|
3742 |
msgstr ""
|
3743 |
|
3744 |
-
#: widgets/premium-modalbox.php:
|
3745 |
msgid "Icon Hover Color"
|
3746 |
msgstr ""
|
3747 |
|
3748 |
-
#: widgets/premium-modalbox.php:
|
3749 |
-
#: widgets/premium-modalbox.php:
|
3750 |
#: widgets/premium-pricing-table.php:922 widgets/premium-pricing-table.php:967
|
3751 |
#: widgets/premium-pricing-table.php:1019
|
3752 |
msgid "Typography"
|
3753 |
msgstr ""
|
3754 |
|
3755 |
-
#: widgets/premium-modalbox.php:
|
3756 |
msgid "Heading"
|
3757 |
msgstr ""
|
3758 |
|
3759 |
-
#: widgets/premium-modalbox.php:
|
3760 |
msgid "Max Height"
|
3761 |
msgstr ""
|
3762 |
|
3763 |
-
#: widgets/premium-modalbox.php:
|
3764 |
-
msgid "Content Background Color"
|
3765 |
-
msgstr ""
|
3766 |
-
|
3767 |
-
#: widgets/premium-modalbox.php:1247
|
3768 |
msgid "Footer Background Color"
|
3769 |
msgstr ""
|
3770 |
|
@@ -3806,7 +3888,7 @@ msgstr ""
|
|
3806 |
msgid "Google+"
|
3807 |
msgstr ""
|
3808 |
|
3809 |
-
#: widgets/premium-person.php:296 widgets/premium-videobox.php:
|
3810 |
msgid "Youtube"
|
3811 |
msgstr ""
|
3812 |
|
@@ -3902,6 +3984,10 @@ msgstr ""
|
|
3902 |
msgid "Unset"
|
3903 |
msgstr ""
|
3904 |
|
|
|
|
|
|
|
|
|
3905 |
#: widgets/premium-pricing-table.php:1177
|
3906 |
msgid "Vertical Spacing"
|
3907 |
msgstr ""
|
@@ -4197,251 +4283,251 @@ msgstr ""
|
|
4197 |
msgid "Icon Style"
|
4198 |
msgstr ""
|
4199 |
|
4200 |
-
#: widgets/premium-videobox.php:
|
4201 |
msgid "Video Type"
|
4202 |
msgstr ""
|
4203 |
|
4204 |
-
#: widgets/premium-videobox.php:
|
4205 |
msgid "Vimeo"
|
4206 |
msgstr ""
|
4207 |
|
4208 |
-
#: widgets/premium-videobox.php:
|
4209 |
msgid "Self Hosted"
|
4210 |
msgstr ""
|
4211 |
|
4212 |
-
#: widgets/premium-videobox.php:
|
4213 |
msgid "Embed URL"
|
4214 |
msgstr ""
|
4215 |
|
4216 |
-
#: widgets/premium-videobox.php:
|
4217 |
msgid "Video ID"
|
4218 |
msgstr ""
|
4219 |
|
4220 |
-
#: widgets/premium-videobox.php:
|
4221 |
msgid ""
|
4222 |
"Enter the numbers and letters after the equal sign which located in your "
|
4223 |
"YouTube video link or after the slash sign in your Vimeo video link. For "
|
4224 |
"example, z1hQgVpfTKU"
|
4225 |
msgstr ""
|
4226 |
|
4227 |
-
#: widgets/premium-videobox.php:
|
4228 |
msgid ""
|
4229 |
"Enter your YouTube/Vimeo video link. For example, https://www.youtube.com/"
|
4230 |
"embed/z1hQgVpfTKU"
|
4231 |
msgstr ""
|
4232 |
|
4233 |
-
#: widgets/premium-videobox.php:
|
4234 |
-
msgid "Show Related Videos"
|
4235 |
-
msgstr ""
|
4236 |
-
|
4237 |
-
#: widgets/premium-videobox.php:155
|
4238 |
-
msgid "Enable/Disable related videos after the video"
|
4239 |
-
msgstr ""
|
4240 |
-
|
4241 |
-
#: widgets/premium-videobox.php:165
|
4242 |
msgid "Player Controls"
|
4243 |
msgstr ""
|
4244 |
|
4245 |
-
#: widgets/premium-videobox.php:
|
4246 |
msgid "Show/hide player controls"
|
4247 |
msgstr ""
|
4248 |
|
4249 |
-
#: widgets/premium-videobox.php:
|
4250 |
msgid "Mute"
|
4251 |
msgstr ""
|
4252 |
|
4253 |
-
#: widgets/premium-videobox.php:
|
4254 |
msgid "This will play the video muted"
|
4255 |
msgstr ""
|
4256 |
|
4257 |
-
#: widgets/premium-videobox.php:
|
4258 |
msgid "Start Time"
|
4259 |
msgstr ""
|
4260 |
|
4261 |
-
#: widgets/premium-videobox.php:
|
4262 |
msgid "Specify a start time (in seconds)"
|
4263 |
msgstr ""
|
4264 |
|
4265 |
-
#: widgets/premium-videobox.php:
|
4266 |
msgid "End Time"
|
4267 |
msgstr ""
|
4268 |
|
4269 |
-
#: widgets/premium-videobox.php:
|
4270 |
msgid "Specify an end time (in seconds)"
|
4271 |
msgstr ""
|
4272 |
|
4273 |
-
#: widgets/premium-videobox.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4274 |
msgid "Aspect Ratio"
|
4275 |
msgstr ""
|
4276 |
|
4277 |
-
#: widgets/premium-videobox.php:
|
4278 |
msgid "Choose an image for the video box"
|
4279 |
msgstr ""
|
4280 |
|
4281 |
-
#: widgets/premium-videobox.php:
|
4282 |
-
#: widgets/premium-videobox.php:
|
4283 |
msgid "Play Icon"
|
4284 |
msgstr ""
|
4285 |
|
4286 |
-
#: widgets/premium-videobox.php:
|
4287 |
msgid "Horizontal Position (%)"
|
4288 |
msgstr ""
|
4289 |
|
4290 |
-
#: widgets/premium-videobox.php:
|
4291 |
msgid "Vertical Position (%)"
|
4292 |
msgstr ""
|
4293 |
|
4294 |
-
#: widgets/premium-videobox.php:
|
4295 |
msgid "Video Text"
|
4296 |
msgstr ""
|
4297 |
|
4298 |
-
#: widgets/premium-videobox.php:
|
4299 |
msgid "Play Video"
|
4300 |
msgstr ""
|
4301 |
|
4302 |
-
#: widgets/premium-videobox.php:
|
4303 |
msgid "Hover Animation"
|
4304 |
msgstr ""
|
4305 |
|
4306 |
-
#: widgets/premium-videobox.php:
|
4307 |
msgid ""
|
4308 |
"Hover animation works only when you set a background color or image for play "
|
4309 |
"icon"
|
4310 |
msgstr ""
|
4311 |
|
4312 |
-
#: widgets/premium-videobox.php:
|
4313 |
msgid "Hover Padding"
|
4314 |
msgstr ""
|
4315 |
|
4316 |
-
#: widgets/premium-vscroll.php:
|
4317 |
msgid "Section ID"
|
4318 |
msgstr ""
|
4319 |
|
4320 |
-
#: widgets/premium-vscroll.php:
|
4321 |
msgid "Elementor Templates"
|
4322 |
msgstr ""
|
4323 |
|
4324 |
-
#: widgets/premium-vscroll.php:
|
4325 |
msgid "Choose which method you prefer to insert sections."
|
4326 |
msgstr ""
|
4327 |
|
4328 |
-
#: widgets/premium-vscroll.php:
|
4329 |
-
msgid "Sections"
|
4330 |
-
msgstr ""
|
4331 |
-
|
4332 |
-
#: widgets/premium-vscroll.php:135
|
4333 |
msgid "Dots Tooltips"
|
4334 |
msgstr ""
|
4335 |
|
4336 |
-
#: widgets/premium-vscroll.php:
|
4337 |
msgid "Shape"
|
4338 |
msgstr ""
|
4339 |
|
4340 |
-
#: widgets/premium-vscroll.php:
|
4341 |
msgid "Circles"
|
4342 |
msgstr ""
|
4343 |
|
4344 |
-
#: widgets/premium-vscroll.php:
|
4345 |
msgid "Lines"
|
4346 |
msgstr ""
|
4347 |
|
4348 |
-
#: widgets/premium-vscroll.php:
|
4349 |
msgid "Dots Tooltips Text"
|
4350 |
msgstr ""
|
4351 |
|
4352 |
-
#: widgets/premium-vscroll.php:
|
4353 |
msgid "Add text for each navigation dot separated by ','"
|
4354 |
msgstr ""
|
4355 |
|
4356 |
-
#: widgets/premium-vscroll.php:
|
4357 |
msgid "Navigation"
|
4358 |
msgstr ""
|
4359 |
|
4360 |
-
#: widgets/premium-vscroll.php:
|
4361 |
msgid "Navigation Menu"
|
4362 |
msgstr ""
|
4363 |
|
4364 |
-
#: widgets/premium-vscroll.php:
|
4365 |
msgid "This option works only on the frontend"
|
4366 |
msgstr ""
|
4367 |
|
4368 |
-
#: widgets/premium-vscroll.php:
|
4369 |
msgid "Offset Top"
|
4370 |
msgstr ""
|
4371 |
|
4372 |
-
#: widgets/premium-vscroll.php:
|
4373 |
msgid "Offset Left"
|
4374 |
msgstr ""
|
4375 |
|
4376 |
-
#: widgets/premium-vscroll.php:
|
4377 |
msgid "Offset Right"
|
4378 |
msgstr ""
|
4379 |
|
4380 |
-
#: widgets/premium-vscroll.php:
|
4381 |
msgid "List Item"
|
4382 |
msgstr ""
|
4383 |
|
4384 |
-
#: widgets/premium-vscroll.php:
|
4385 |
msgid "Menu Items"
|
4386 |
msgstr ""
|
4387 |
|
4388 |
-
#: widgets/premium-vscroll.php:
|
4389 |
msgid "Dots Horizontal Position"
|
4390 |
msgstr ""
|
4391 |
|
4392 |
-
#: widgets/premium-vscroll.php:
|
4393 |
msgid "Dots Vertical Position"
|
4394 |
msgstr ""
|
4395 |
|
4396 |
-
#: widgets/premium-vscroll.php:
|
4397 |
msgid "Scroll Settings"
|
4398 |
msgstr ""
|
4399 |
|
4400 |
-
#: widgets/premium-vscroll.php:
|
4401 |
msgid "Scroll Speed"
|
4402 |
msgstr ""
|
4403 |
|
4404 |
-
#: widgets/premium-vscroll.php:
|
4405 |
msgid "Set scolling speed in seconds, default: 0.7"
|
4406 |
msgstr ""
|
4407 |
|
4408 |
-
#: widgets/premium-vscroll.php:
|
4409 |
msgid "Full Section Scroll"
|
4410 |
msgstr ""
|
4411 |
|
4412 |
-
#: widgets/premium-vscroll.php:
|
4413 |
msgid "Save to Browser History"
|
4414 |
msgstr ""
|
4415 |
|
4416 |
-
#: widgets/premium-vscroll.php:
|
4417 |
msgid ""
|
4418 |
"Enabling this option will save the current section ID to the browser history"
|
4419 |
msgstr ""
|
4420 |
|
4421 |
-
#: widgets/premium-vscroll.php:
|
4422 |
msgid "Tooltips"
|
4423 |
msgstr ""
|
4424 |
|
4425 |
-
#: widgets/premium-vscroll.php:
|
4426 |
msgid "Tooltips Text Color"
|
4427 |
msgstr ""
|
4428 |
|
4429 |
-
#: widgets/premium-vscroll.php:
|
4430 |
msgid "Tooltips Background"
|
4431 |
msgstr ""
|
4432 |
|
4433 |
-
#: widgets/premium-vscroll.php:
|
4434 |
msgid "Dots Color"
|
4435 |
msgstr ""
|
4436 |
|
4437 |
-
#: widgets/premium-vscroll.php:
|
4438 |
msgid "Active Dot Color"
|
4439 |
msgstr ""
|
4440 |
|
4441 |
-
#: widgets/premium-vscroll.php:
|
4442 |
msgid "Dots Border Color"
|
4443 |
msgstr ""
|
4444 |
|
4445 |
-
#: widgets/premium-vscroll.php:
|
4446 |
msgid "Active"
|
4447 |
msgstr ""
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Premium Addons for Elementor\n"
|
5 |
+
"POT-Creation-Date: 2019-08-04 08:29+0200\n"
|
6 |
"PO-Revision-Date: 2018-02-15 10:41+0200\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Leap13\n"
|
19 |
"X-Poedit-SearchPathExcluded-0: assets/js\n"
|
20 |
"X-Poedit-SearchPathExcluded-1: admin/assets/js\n"
|
21 |
|
22 |
+
#: admin/includes/admin-notices.php:157
|
23 |
msgid ""
|
24 |
"Premium Addons for Elementor is not working because you need to Install "
|
25 |
"Elementor plugin."
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: admin/includes/admin-notices.php:159
|
29 |
msgid "Install Now"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: admin/includes/admin-notices.php:167
|
33 |
msgid ""
|
34 |
"Premium Addons for Elementor is not working because you need to activate "
|
35 |
"Elementor plugin."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: admin/includes/admin-notices.php:169
|
39 |
msgid "Activate Now"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: admin/includes/admin-notices.php:187
|
43 |
msgid "Did you like"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: admin/includes/admin-notices.php:187
|
47 |
msgid "Plugin?"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: admin/includes/admin-notices.php:188
|
51 |
msgid ""
|
52 |
"Could you please do us a BIG favor ? if you could take 2 min of your time, "
|
53 |
"we'd really appreciate if you give Premium Addons for Elementor 5-star "
|
55 |
"stuff in the future!"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: admin/includes/admin-notices.php:189
|
59 |
msgid "Leave a Review"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: admin/includes/admin-notices.php:190
|
63 |
msgid "Maybe Later"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: admin/includes/admin-notices.php:191
|
67 |
msgid "I Already did"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: admin/includes/admin-notices.php:262
|
71 |
msgid "Premium Blocks for Gutenberg"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: admin/includes/admin-notices.php:262
|
75 |
msgid "is Now Available."
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: admin/includes/admin-notices.php:263
|
79 |
msgid "Install it Now."
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: admin/includes/admin-notices.php:298
|
83 |
#, php-format
|
84 |
msgid ""
|
85 |
"<p class=\"pa-text-wrap\" style=\"display: flex; align-items: center; "
|
86 |
"padding:10px 10px 10px 0;\"><img src=\"%s\" style=\"margin-right: 0.8em; "
|
87 |
+
"width: 40px;\"><strong><span>Premium Templates </strong> is now "
|
88 |
+
"available in Premium Addons for Elementor. </span><a href=\"%s\" target="
|
89 |
"\"_blank\" style=\"flex-grow: 2;\"> Check it out now.</a>"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: admin/includes/admin-notices.php:300
|
93 |
#, php-format
|
94 |
msgid ""
|
95 |
"<a href=\"%s\" style=\"text-decoration: none; margin-left: 1em; float:right; "
|
105 |
msgid "Rolling Back to Version "
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: admin/includes/papro-actions.php:16
|
109 |
msgid "Get PRO Widgets & Addons"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: admin/includes/papro-actions.php:49
|
113 |
msgid "Widgets Settings"
|
114 |
msgstr ""
|
115 |
|
180 |
msgstr ""
|
181 |
|
182 |
#: admin/includes/plugin-info.php:79 admin/includes/reports.php:56
|
183 |
+
#: admin/settings/maps.php:136 admin/settings/modules-setting.php:661
|
184 |
msgid "Did you like Premium Addons for Elementor Plugin? Please "
|
185 |
msgstr ""
|
186 |
|
187 |
#: admin/includes/plugin-info.php:79 admin/includes/reports.php:56
|
188 |
+
#: admin/settings/maps.php:136 admin/settings/modules-setting.php:661
|
189 |
msgid "Click Here to Rate it ★★★★★"
|
190 |
msgstr ""
|
191 |
|
213 |
msgstr ""
|
214 |
|
215 |
#: admin/includes/version-control.php:94
|
216 |
+
msgid "Reinstall Version 3.6.1"
|
217 |
msgstr ""
|
218 |
|
219 |
#: admin/includes/version-control.php:96
|
246 |
msgstr ""
|
247 |
|
248 |
#: admin/includes/version-control.php:114 admin/settings/maps.php:133
|
249 |
+
#: admin/settings/modules-setting.php:656
|
250 |
msgid "Save Settings"
|
251 |
msgstr ""
|
252 |
|
318 |
msgstr ""
|
319 |
|
320 |
#: admin/settings/modules-setting.php:208 widgets/premium-banner.php:314
|
321 |
+
#: widgets/premium-banner.php:678 widgets/premium-button.php:39
|
322 |
#: widgets/premium-button.php:57 widgets/premium-button.php:474
|
323 |
#: widgets/premium-contactform.php:182 widgets/premium-contactform.php:439
|
324 |
#: widgets/premium-image-button.php:52 widgets/premium-image-button.php:378
|
325 |
+
#: widgets/premium-modalbox.php:260 widgets/premium-pricing-table.php:286
|
326 |
#: widgets/premium-pricing-table.php:493 widgets/premium-pricing-table.php:1350
|
327 |
msgid "Button"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: admin/settings/modules-setting.php:215 widgets/premium-blog.php:649
|
331 |
+
#: widgets/premium-blog.php:1245 widgets/premium-carousel.php:27
|
332 |
+
#: widgets/premium-carousel.php:61
|
333 |
msgid "Carousel"
|
334 |
msgstr ""
|
335 |
|
358 |
msgid "Fancy Text"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: admin/settings/modules-setting.php:267 widgets/premium-blog.php:146
|
362 |
#: widgets/premium-grid.php:35
|
363 |
msgid "Grid"
|
364 |
msgstr ""
|
380 |
msgid "Maps"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: admin/settings/modules-setting.php:312 widgets/premium-modalbox.php:36
|
384 |
+
#: widgets/premium-modalbox.php:1183
|
385 |
msgid "Modal Box"
|
386 |
msgstr ""
|
387 |
|
404 |
msgid "Testimonials"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: admin/settings/modules-setting.php:356 widgets/premium-carousel.php:80
|
408 |
+
#: widgets/premium-carousel.php:103
|
409 |
+
msgid "Templates"
|
410 |
+
msgstr ""
|
411 |
+
|
412 |
+
#: admin/settings/modules-setting.php:368 widgets/premium-banner.php:266
|
413 |
+
#: widgets/premium-banner.php:554 widgets/premium-blog.php:522
|
414 |
+
#: widgets/premium-blog.php:789 widgets/premium-counter.php:61
|
415 |
#: widgets/premium-counter.php:381 widgets/premium-grid.php:386
|
416 |
+
#: widgets/premium-grid.php:838 widgets/premium-maps.php:202
|
417 |
+
#: widgets/premium-maps.php:389 widgets/premium-modalbox.php:150
|
418 |
#: widgets/premium-pricing-table.php:76 widgets/premium-pricing-table.php:462
|
419 |
#: widgets/premium-pricing-table.php:684 widgets/premium-progressbar.php:72
|
420 |
#: widgets/premium-progressbar.php:342 widgets/premium-title.php:24
|
423 |
msgid "Title"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: admin/settings/modules-setting.php:376 widgets/premium-videobox.php:28
|
427 |
+
#: widgets/premium-videobox.php:61 widgets/premium-videobox.php:382
|
428 |
msgid "Video Box"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: admin/settings/modules-setting.php:388 widgets/premium-vscroll.php:29
|
432 |
msgid "Vertical Scroll"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: admin/settings/modules-setting.php:403
|
436 |
msgid "Premium Alert Box"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: admin/settings/modules-setting.php:411
|
440 |
msgid "Premium Icon Box"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: admin/settings/modules-setting.php:423
|
444 |
msgid "Premium Twitter Feed"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: admin/settings/modules-setting.php:431
|
448 |
msgid "Premium Instagram Feed"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: admin/settings/modules-setting.php:442
|
452 |
msgid "Premium Flip Box"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: admin/settings/modules-setting.php:450
|
456 |
msgid "Premium Unfold"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: admin/settings/modules-setting.php:461
|
460 |
msgid "Premium Messenger Chat"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: admin/settings/modules-setting.php:469
|
464 |
msgid "Premium Tabs"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: admin/settings/modules-setting.php:479
|
468 |
msgid "Premium Chart"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: admin/settings/modules-setting.php:487
|
472 |
msgid "Premium Preview Window"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: admin/settings/modules-setting.php:497
|
476 |
msgid "Premium Image Hotspots"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: admin/settings/modules-setting.php:505
|
480 |
msgid "Premium Facebook Reviews"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: admin/settings/modules-setting.php:515
|
484 |
msgid "Premium Image Comparison"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: admin/settings/modules-setting.php:523
|
488 |
msgid "Premium Divider"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: admin/settings/modules-setting.php:534
|
492 |
msgid "Premium Magic Section"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: admin/settings/modules-setting.php:542
|
496 |
msgid "Premium Google Reviews"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: admin/settings/modules-setting.php:552
|
500 |
msgid "Premium Behance Feed"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: admin/settings/modules-setting.php:560
|
504 |
msgid "Premium Tables"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: admin/settings/modules-setting.php:571
|
508 |
msgid "Premium Image Layers"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: admin/settings/modules-setting.php:579
|
512 |
msgid "Premium iHover"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: admin/settings/modules-setting.php:590
|
516 |
msgid "Premium Content Switcher"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: admin/settings/modules-setting.php:598
|
520 |
msgid "Premium Facebook Feed"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: admin/settings/modules-setting.php:609
|
524 |
msgid "Premium Whatsapp Chat"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: admin/settings/modules-setting.php:620
|
528 |
msgid "Premium Section Parallax"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: admin/settings/modules-setting.php:627
|
532 |
msgid "Premium Section Particles"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: admin/settings/modules-setting.php:637
|
536 |
msgid "Premium Section Animated Gradient"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: admin/settings/modules-setting.php:644
|
540 |
msgid "Premium Section Ken Burns"
|
541 |
msgstr ""
|
542 |
|
1067 |
msgid "Vertical Scroll: Section ID"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: includes/templates/classes/config.php:61
|
1071 |
+
#: includes/templates/scripts/template-modal-header-logo.php:10
|
1072 |
+
msgid "Premium Templates"
|
1073 |
+
msgstr ""
|
1074 |
+
|
1075 |
+
#: includes/templates/classes/config.php:173
|
1076 |
+
msgid "Activate License"
|
1077 |
+
msgstr ""
|
1078 |
+
|
1079 |
+
#: includes/templates/classes/config.php:175
|
1080 |
+
msgid "Get Pro"
|
1081 |
+
msgstr ""
|
1082 |
+
|
1083 |
+
#: includes/templates/classes/manager.php:189 widgets/premium-blog.php:1774
|
1084 |
+
#: widgets/premium-grid.php:260
|
1085 |
+
msgid "All"
|
1086 |
+
msgstr ""
|
1087 |
+
|
1088 |
+
#: includes/templates/documents/section.php:14
|
1089 |
+
#: includes/templates/types/section.php:19
|
1090 |
+
msgid "Section"
|
1091 |
+
msgstr ""
|
1092 |
+
|
1093 |
+
#: includes/templates/scripts/template-modal-error.php:12
|
1094 |
+
msgid "Template couldn't be loaded. Please activate you license key before."
|
1095 |
+
msgstr ""
|
1096 |
+
|
1097 |
+
#: includes/templates/scripts/template-modal-header-back.php:8
|
1098 |
+
msgid "Back to Library"
|
1099 |
+
msgstr ""
|
1100 |
+
|
1101 |
+
#: includes/templates/scripts/template-modal-header.php:9
|
1102 |
+
#: widgets/premium-modalbox.php:235
|
1103 |
+
msgid "Close"
|
1104 |
+
msgstr ""
|
1105 |
+
|
1106 |
+
#: includes/templates/scripts/template-modal-insert-button.php:9
|
1107 |
+
#: includes/templates/scripts/template-modal-item.php:19
|
1108 |
+
msgid "Insert"
|
1109 |
+
msgstr ""
|
1110 |
+
|
1111 |
+
#: includes/templates/scripts/template-modal-keywords.php:9
|
1112 |
+
msgid "Filter by Widget / Addon"
|
1113 |
+
msgstr ""
|
1114 |
+
|
1115 |
+
#: includes/templates/scripts/template-modal-keywords.php:11
|
1116 |
+
msgid "All Widgets/Addons"
|
1117 |
+
msgstr ""
|
1118 |
+
|
1119 |
+
#: includes/templates/scripts/template-modal-loading.php:13
|
1120 |
+
msgid "Loading"
|
1121 |
+
msgstr ""
|
1122 |
+
|
1123 |
+
#: includes/templates/types/section.php:23 widgets/premium-vscroll.php:100
|
1124 |
+
#: widgets/premium-vscroll.php:122
|
1125 |
+
msgid "Sections"
|
1126 |
+
msgstr ""
|
1127 |
+
|
1128 |
#: widgets/premium-banner.php:60 widgets/premium-banner.php:457
|
1129 |
+
#: widgets/premium-blog.php:63 widgets/premium-blog.php:726
|
1130 |
+
#: widgets/premium-grid.php:754 widgets/premium-image-scroll.php:72
|
1131 |
#: widgets/premium-image-scroll.php:272 widgets/premium-image-separator.php:59
|
1132 |
+
#: widgets/premium-image-separator.php:227 widgets/premium-modalbox.php:261
|
1133 |
+
#: widgets/premium-modalbox.php:441 widgets/premium-person.php:48
|
1134 |
#: widgets/premium-person.php:55 widgets/premium-person.php:373
|
1135 |
#: widgets/premium-testimonials.php:57 widgets/premium-testimonials.php:229
|
1136 |
+
#: widgets/premium-videobox.php:254
|
1137 |
msgid "Image"
|
1138 |
msgstr ""
|
1139 |
|
1147 |
msgstr ""
|
1148 |
|
1149 |
#: widgets/premium-banner.php:79 widgets/premium-banner.php:355
|
1150 |
+
#: widgets/premium-blog.php:352 widgets/premium-button.php:86
|
1151 |
#: widgets/premium-dual-header.php:119 widgets/premium-dual-header.php:143
|
1152 |
#: widgets/premium-grid.php:422 widgets/premium-image-button.php:81
|
1153 |
#: widgets/premium-image-scroll.php:110 widgets/premium-image-separator.php:135
|
1154 |
#: widgets/premium-pricing-table.php:323 widgets/premium-testimonials.php:157
|
1155 |
+
#: widgets/premium-testimonials.php:166 widgets/premium-videobox.php:80
|
1156 |
+
#: widgets/premium-videobox.php:121
|
1157 |
msgid "Link"
|
1158 |
msgstr ""
|
1159 |
|
1245 |
msgid "Choose if you want the effect to be always triggered"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: widgets/premium-banner.php:183 widgets/premium-blog.php:69
|
1249 |
+
#: widgets/premium-button.php:117 widgets/premium-grid.php:541
|
1250 |
#: widgets/premium-image-button.php:112 widgets/premium-person.php:118
|
1251 |
msgid "Hover Effect"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: widgets/premium-banner.php:186 widgets/premium-blog.php:73
|
1255 |
+
#: widgets/premium-blog.php:94 widgets/premium-blog.php:519
|
1256 |
+
#: widgets/premium-button.php:121 widgets/premium-grid.php:545
|
1257 |
+
#: widgets/premium-image-button.php:116 widgets/premium-modalbox.php:90
|
1258 |
#: widgets/premium-person.php:121 widgets/premium-progressbar.php:154
|
1259 |
msgid "None"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: widgets/premium-banner.php:187 widgets/premium-blog.php:74
|
1263 |
+
#: widgets/premium-grid.php:546 widgets/premium-person.php:122
|
1264 |
msgid "Zoom In"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: widgets/premium-banner.php:188 widgets/premium-blog.php:75
|
1268 |
+
#: widgets/premium-grid.php:547 widgets/premium-person.php:123
|
1269 |
msgid "Zoom Out"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: widgets/premium-banner.php:189 widgets/premium-blog.php:76
|
1273 |
+
#: widgets/premium-grid.php:548 widgets/premium-person.php:124
|
1274 |
msgid "Scale"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: widgets/premium-banner.php:190 widgets/premium-blog.php:77
|
1278 |
+
#: widgets/premium-grid.php:549 widgets/premium-person.php:125
|
1279 |
msgid "Grayscale"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: widgets/premium-banner.php:191 widgets/premium-blog.php:78
|
1283 |
+
#: widgets/premium-grid.php:550 widgets/premium-person.php:126
|
1284 |
msgid "Blur"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: widgets/premium-banner.php:192 widgets/premium-blog.php:79
|
1288 |
+
#: widgets/premium-grid.php:551 widgets/premium-person.php:127
|
1289 |
msgid "Bright"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: widgets/premium-banner.php:193 widgets/premium-blog.php:80
|
1293 |
+
#: widgets/premium-grid.php:552 widgets/premium-person.php:128
|
1294 |
msgid "Sepia"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
#: widgets/premium-banner.php:201 widgets/premium-contactform.php:130
|
1298 |
#: widgets/premium-contactform.php:212 widgets/premium-grid.php:366
|
1299 |
+
#: widgets/premium-grid.php:521 widgets/premium-maps.php:264
|
1300 |
#: widgets/premium-person.php:94 widgets/premium-person.php:572
|
1301 |
#: widgets/premium-progressbar.php:246 widgets/premium-progressbar.php:581
|
1302 |
msgid "Height"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: widgets/premium-banner.php:204 widgets/premium-carousel.php:558
|
1306 |
+
#: widgets/premium-grid.php:574
|
1307 |
msgid "Default"
|
1308 |
msgstr ""
|
1309 |
|
1330 |
|
1331 |
#: widgets/premium-banner.php:234 widgets/premium-button.php:178
|
1332 |
#: widgets/premium-counter.php:181 widgets/premium-pricing-table.php:862
|
1333 |
+
#: widgets/premium-testimonials.php:193 widgets/premium-vscroll.php:281
|
1334 |
msgid "Top"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
+
#: widgets/premium-banner.php:235 widgets/premium-vscroll.php:282
|
1338 |
msgid "Middle"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
#: widgets/premium-banner.php:236 widgets/premium-button.php:179
|
1342 |
+
#: widgets/premium-pricing-table.php:870 widgets/premium-vscroll.php:283
|
1343 |
msgid "Bottom"
|
1344 |
msgstr ""
|
1345 |
|
1347 |
msgid "Full"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: widgets/premium-banner.php:248 widgets/premium-carousel.php:313
|
1351 |
msgid "Extra Class"
|
1352 |
msgstr ""
|
1353 |
|
1357 |
"this class for your customizations."
|
1358 |
msgstr ""
|
1359 |
|
1360 |
+
#: widgets/premium-banner.php:260 widgets/premium-carousel.php:95
|
1361 |
+
#: widgets/premium-grid.php:832 widgets/premium-modalbox.php:68
|
1362 |
+
#: widgets/premium-modalbox.php:165 widgets/premium-modalbox.php:187
|
1363 |
+
#: widgets/premium-testimonials.php:208 widgets/premium-testimonials.php:383
|
1364 |
+
#: widgets/premium-vscroll.php:62
|
1365 |
msgid "Content"
|
1366 |
msgstr ""
|
1367 |
|
1386 |
msgstr ""
|
1387 |
|
1388 |
#: widgets/premium-banner.php:296 widgets/premium-banner.php:303
|
1389 |
+
#: widgets/premium-banner.php:624 widgets/premium-grid.php:394
|
1390 |
+
#: widgets/premium-grid.php:868 widgets/premium-maps.php:211
|
1391 |
#: widgets/premium-maps.php:473 widgets/premium-person.php:206
|
1392 |
#: widgets/premium-person.php:475 widgets/premium-pricing-table.php:263
|
1393 |
#: widgets/premium-pricing-table.php:274 widgets/premium-pricing-table.php:486
|
1394 |
+
#: widgets/premium-pricing-table.php:1256 widgets/premium-videobox.php:319
|
1395 |
msgid "Description"
|
1396 |
msgstr ""
|
1397 |
|
1407 |
|
1408 |
#: widgets/premium-banner.php:325 widgets/premium-button.php:63
|
1409 |
#: widgets/premium-fancytext.php:109 widgets/premium-image-button.php:58
|
1410 |
+
#: widgets/premium-modalbox.php:234 widgets/premium-modalbox.php:262
|
1411 |
+
#: widgets/premium-modalbox.php:457 widgets/premium-pricing-table.php:86
|
1412 |
#: widgets/premium-pricing-table.php:196 widgets/premium-pricing-table.php:297
|
1413 |
#: widgets/premium-pricing-table.php:386 widgets/premium-pricing-table.php:1102
|
1414 |
+
#: widgets/premium-pricing-table.php:1266 widgets/premium-videobox.php:332
|
1415 |
msgid "Text"
|
1416 |
msgstr ""
|
1417 |
|
1426 |
#: widgets/premium-image-button.php:71 widgets/premium-image-scroll.php:121
|
1427 |
#: widgets/premium-image-scroll.php:134 widgets/premium-image-separator.php:146
|
1428 |
#: widgets/premium-image-separator.php:173
|
1429 |
+
#: widgets/premium-pricing-table.php:311 widgets/premium-videobox.php:140
|
1430 |
msgid "URL"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: widgets/premium-banner.php:389 widgets/premium-blog.php:285
|
1434 |
+
#: widgets/premium-blog.php:453 widgets/premium-blog.php:578
|
1435 |
+
#: widgets/premium-button.php:428 widgets/premium-countdown.php:122
|
1436 |
+
#: widgets/premium-dual-header.php:177 widgets/premium-fancytext.php:118
|
1437 |
+
#: widgets/premium-image-button.php:332 widgets/premium-maps.php:444
|
1438 |
+
#: widgets/premium-maps.php:526 widgets/premium-modalbox.php:486
|
1439 |
+
#: widgets/premium-person.php:216 widgets/premium-pricing-table.php:235
|
1440 |
+
#: widgets/premium-title.php:122
|
1441 |
msgid "Alignment"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: widgets/premium-banner.php:393 widgets/premium-blog.php:289
|
1445 |
+
#: widgets/premium-blog.php:457 widgets/premium-blog.php:582
|
1446 |
+
#: widgets/premium-button.php:180 widgets/premium-button.php:432
|
1447 |
+
#: widgets/premium-countdown.php:126 widgets/premium-counter.php:183
|
1448 |
+
#: widgets/premium-dual-header.php:181 widgets/premium-fancytext.php:122
|
1449 |
+
#: widgets/premium-fancytext.php:311 widgets/premium-grid.php:219
|
1450 |
+
#: widgets/premium-grid.php:612 widgets/premium-image-button.php:336
|
1451 |
+
#: widgets/premium-image-separator.php:112 widgets/premium-maps.php:448
|
1452 |
+
#: widgets/premium-maps.php:530 widgets/premium-modalbox.php:490
|
1453 |
+
#: widgets/premium-person.php:220 widgets/premium-pricing-table.php:239
|
1454 |
+
#: widgets/premium-pricing-table.php:438 widgets/premium-progressbar.php:170
|
1455 |
+
#: widgets/premium-title.php:126 widgets/premium-title.php:227
|
1456 |
+
#: widgets/premium-vscroll.php:188 widgets/premium-vscroll.php:269
|
1457 |
msgid "Left"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
+
#: widgets/premium-banner.php:397 widgets/premium-blog.php:293
|
1461 |
+
#: widgets/premium-blog.php:461 widgets/premium-blog.php:586
|
1462 |
+
#: widgets/premium-button.php:436 widgets/premium-countdown.php:130
|
1463 |
+
#: widgets/premium-dual-header.php:185 widgets/premium-fancytext.php:126
|
1464 |
+
#: widgets/premium-fancytext.php:315 widgets/premium-grid.php:223
|
1465 |
+
#: widgets/premium-grid.php:616 widgets/premium-image-button.php:340
|
1466 |
+
#: widgets/premium-image-separator.php:116 widgets/premium-maps.php:452
|
1467 |
+
#: widgets/premium-maps.php:534 widgets/premium-modalbox.php:494
|
1468 |
+
#: widgets/premium-person.php:224 widgets/premium-pricing-table.php:243
|
1469 |
+
#: widgets/premium-progressbar.php:174 widgets/premium-title.php:130
|
1470 |
+
#: widgets/premium-title.php:231
|
1471 |
msgid "Center"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: widgets/premium-banner.php:401 widgets/premium-blog.php:297
|
1475 |
+
#: widgets/premium-blog.php:465 widgets/premium-blog.php:590
|
1476 |
+
#: widgets/premium-button.php:181 widgets/premium-button.php:440
|
1477 |
+
#: widgets/premium-countdown.php:134 widgets/premium-counter.php:182
|
1478 |
+
#: widgets/premium-dual-header.php:189 widgets/premium-fancytext.php:130
|
1479 |
+
#: widgets/premium-fancytext.php:319 widgets/premium-grid.php:227
|
1480 |
+
#: widgets/premium-grid.php:620 widgets/premium-image-button.php:344
|
1481 |
+
#: widgets/premium-image-separator.php:120 widgets/premium-maps.php:456
|
1482 |
+
#: widgets/premium-maps.php:538 widgets/premium-modalbox.php:498
|
1483 |
+
#: widgets/premium-person.php:228 widgets/premium-pricing-table.php:247
|
1484 |
+
#: widgets/premium-pricing-table.php:437 widgets/premium-progressbar.php:178
|
1485 |
+
#: widgets/premium-title.php:134 widgets/premium-title.php:235
|
1486 |
+
#: widgets/premium-vscroll.php:189 widgets/premium-vscroll.php:270
|
1487 |
msgid "Right"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: widgets/premium-banner.php:417 widgets/premium-grid.php:636
|
1491 |
msgid "Responsive"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: widgets/premium-banner.php:423 widgets/premium-grid.php:641
|
1495 |
msgid "Responsive Controls"
|
1496 |
msgstr ""
|
1497 |
|
1501 |
"may enable this option which will hide the description text."
|
1502 |
msgstr ""
|
1503 |
|
1504 |
+
#: widgets/premium-banner.php:431 widgets/premium-grid.php:648
|
1505 |
msgid "Minimum Size"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: widgets/premium-banner.php:433 widgets/premium-grid.php:650
|
1509 |
msgid "Note: minimum size for extra small screens is 1px."
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: widgets/premium-banner.php:443 widgets/premium-grid.php:659
|
1513 |
msgid "Maximum Size"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
+
#: widgets/premium-banner.php:445 widgets/premium-grid.php:661
|
1517 |
msgid "Note: maximum size for extra small screens is 767px."
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: widgets/premium-banner.php:464 widgets/premium-banner.php:727
|
1521 |
+
#: widgets/premium-blog.php:982 widgets/premium-blog.php:1041
|
1522 |
+
#: widgets/premium-blog.php:1146 widgets/premium-blog.php:1183
|
1523 |
+
#: widgets/premium-blog.php:1280 widgets/premium-blog.php:1401
|
1524 |
#: widgets/premium-button.php:528 widgets/premium-button.php:669
|
1525 |
+
#: widgets/premium-carousel.php:611 widgets/premium-contactform.php:487
|
1526 |
#: widgets/premium-contactform.php:543 widgets/premium-countdown.php:397
|
1527 |
#: widgets/premium-countdown.php:474 widgets/premium-counter.php:287
|
1528 |
#: widgets/premium-fancytext.php:372 widgets/premium-fancytext.php:430
|
1529 |
+
#: widgets/premium-fancytext.php:477 widgets/premium-grid.php:1018
|
1530 |
+
#: widgets/premium-grid.php:1112 widgets/premium-grid.php:1234
|
1531 |
+
#: widgets/premium-modalbox.php:624 widgets/premium-modalbox.php:731
|
1532 |
+
#: widgets/premium-modalbox.php:825 widgets/premium-modalbox.php:895
|
1533 |
+
#: widgets/premium-modalbox.php:947 widgets/premium-modalbox.php:1068
|
1534 |
+
#: widgets/premium-modalbox.php:1128 widgets/premium-pricing-table.php:551
|
1535 |
#: widgets/premium-pricing-table.php:1646
|
1536 |
#: widgets/premium-pricing-table.php:1663 widgets/premium-title.php:303
|
1537 |
+
#: widgets/premium-title.php:325 widgets/premium-videobox.php:595
|
1538 |
+
#: widgets/premium-vscroll.php:525 widgets/premium-vscroll.php:619
|
1539 |
+
#: widgets/premium-vscroll.php:678
|
1540 |
msgid "Background Color"
|
1541 |
msgstr ""
|
1542 |
|
1552 |
msgid "Hover CSS Filter"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: widgets/premium-banner.php:541 widgets/premium-banner.php:755
|
1556 |
+
#: widgets/premium-blog.php:1210 widgets/premium-blog.php:1294
|
1557 |
+
#: widgets/premium-blog.php:1437 widgets/premium-button.php:550
|
1558 |
+
#: widgets/premium-button.php:692 widgets/premium-carousel.php:794
|
1559 |
#: widgets/premium-contactform.php:274 widgets/premium-contactform.php:510
|
1560 |
#: widgets/premium-countdown.php:438 widgets/premium-counter.php:360
|
1561 |
#: widgets/premium-dual-header.php:353 widgets/premium-dual-header.php:550
|
1562 |
+
#: widgets/premium-grid.php:711 widgets/premium-grid.php:768
|
1563 |
+
#: widgets/premium-grid.php:917 widgets/premium-grid.php:1040
|
1564 |
+
#: widgets/premium-grid.php:1134 widgets/premium-grid.php:1271
|
1565 |
+
#: widgets/premium-grid.php:1395 widgets/premium-grid.php:1483
|
1566 |
#: widgets/premium-image-button.php:450 widgets/premium-image-button.php:637
|
1567 |
#: widgets/premium-image-scroll.php:400 widgets/premium-image-scroll.php:435
|
1568 |
+
#: widgets/premium-maps.php:572 widgets/premium-modalbox.php:654
|
1569 |
+
#: widgets/premium-modalbox.php:758 widgets/premium-modalbox.php:915
|
1570 |
+
#: widgets/premium-modalbox.php:967 widgets/premium-modalbox.php:1092
|
1571 |
+
#: widgets/premium-modalbox.php:1152 widgets/premium-modalbox.php:1266
|
1572 |
#: widgets/premium-pricing-table.php:588 widgets/premium-pricing-table.php:631
|
1573 |
#: widgets/premium-pricing-table.php:1213
|
1574 |
#: widgets/premium-pricing-table.php:1427
|
1576 |
#: widgets/premium-pricing-table.php:1718
|
1577 |
#: widgets/premium-pricing-table.php:1796 widgets/premium-progressbar.php:261
|
1578 |
#: widgets/premium-testimonials.php:541 widgets/premium-title.php:512
|
1579 |
+
#: widgets/premium-videobox.php:398 widgets/premium-videobox.php:490
|
1580 |
+
#: widgets/premium-vscroll.php:414 widgets/premium-vscroll.php:539
|
1581 |
+
#: widgets/premium-vscroll.php:712
|
1582 |
msgid "Border Radius"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
+
#: widgets/premium-banner.php:561 widgets/premium-banner.php:631
|
1586 |
+
#: widgets/premium-banner.php:689 widgets/premium-blog.php:796
|
1587 |
+
#: widgets/premium-blog.php:841 widgets/premium-blog.php:887
|
1588 |
+
#: widgets/premium-blog.php:954 widgets/premium-blog.php:1132
|
1589 |
+
#: widgets/premium-blog.php:1169 widgets/premium-blog.php:1255
|
1590 |
+
#: widgets/premium-blog.php:1325 widgets/premium-blog.php:1364
|
1591 |
+
#: widgets/premium-carousel.php:572 widgets/premium-carousel.php:731
|
1592 |
+
#: widgets/premium-countdown.php:371 widgets/premium-countdown.php:459
|
1593 |
+
#: widgets/premium-counter.php:211 widgets/premium-counter.php:388
|
1594 |
+
#: widgets/premium-counter.php:428 widgets/premium-fancytext.php:347
|
1595 |
+
#: widgets/premium-fancytext.php:405 widgets/premium-fancytext.php:452
|
1596 |
+
#: widgets/premium-grid.php:845 widgets/premium-grid.php:876
|
1597 |
+
#: widgets/premium-grid.php:1004 widgets/premium-grid.php:1098
|
1598 |
+
#: widgets/premium-grid.php:1189 widgets/premium-maps.php:397
|
1599 |
+
#: widgets/premium-maps.php:480 widgets/premium-modalbox.php:529
|
1600 |
+
#: widgets/premium-modalbox.php:803 widgets/premium-modalbox.php:884
|
1601 |
+
#: widgets/premium-modalbox.php:936 widgets/premium-modalbox.php:1053
|
1602 |
+
#: widgets/premium-modalbox.php:1113 widgets/premium-person.php:411
|
1603 |
+
#: widgets/premium-person.php:447 widgets/premium-person.php:483
|
1604 |
+
#: widgets/premium-person.php:519 widgets/premium-person.php:560
|
1605 |
+
#: widgets/premium-pricing-table.php:524 widgets/premium-pricing-table.php:695
|
1606 |
+
#: widgets/premium-pricing-table.php:789 widgets/premium-pricing-table.php:833
|
1607 |
+
#: widgets/premium-pricing-table.php:905 widgets/premium-pricing-table.php:950
|
1608 |
+
#: widgets/premium-pricing-table.php:1002
|
1609 |
#: widgets/premium-pricing-table.php:1109
|
1610 |
#: widgets/premium-pricing-table.php:1140
|
1611 |
#: widgets/premium-pricing-table.php:1274
|
1614 |
#: widgets/premium-progressbar.php:552 widgets/premium-testimonials.php:280
|
1615 |
#: widgets/premium-testimonials.php:305 widgets/premium-testimonials.php:355
|
1616 |
#: widgets/premium-testimonials.php:391 widgets/premium-testimonials.php:447
|
1617 |
+
#: widgets/premium-title.php:263 widgets/premium-videobox.php:430
|
1618 |
msgid "Color"
|
1619 |
msgstr ""
|
1620 |
|
1622 |
msgid "Title Background"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
+
#: widgets/premium-banner.php:579
|
1626 |
msgid "Choose a background color for the title"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
+
#: widgets/premium-banner.php:591
|
1630 |
+
msgid "Title Border Color"
|
1631 |
+
msgstr ""
|
1632 |
+
|
1633 |
+
#: widgets/premium-banner.php:614 widgets/premium-banner.php:668
|
1634 |
+
#: widgets/premium-banner.php:767 widgets/premium-dual-header.php:366
|
1635 |
+
#: widgets/premium-dual-header.php:563 widgets/premium-grid.php:780
|
1636 |
+
#: widgets/premium-grid.php:929 widgets/premium-grid.php:1052
|
1637 |
+
#: widgets/premium-grid.php:1146 widgets/premium-maps.php:585
|
1638 |
+
#: widgets/premium-modalbox.php:696 widgets/premium-modalbox.php:774
|
1639 |
#: widgets/premium-pricing-table.php:1440
|
1640 |
#: widgets/premium-pricing-table.php:1518
|
1641 |
#: widgets/premium-pricing-table.php:1731
|
1642 |
#: widgets/premium-pricing-table.php:1809 widgets/premium-title.php:443
|
1643 |
+
#: widgets/premium-videobox.php:410 widgets/premium-videobox.php:621
|
1644 |
+
#: widgets/premium-vscroll.php:551 widgets/premium-vscroll.php:634
|
1645 |
+
#: widgets/premium-vscroll.php:693
|
1646 |
msgid "Shadow"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
+
#: widgets/premium-banner.php:645
|
1650 |
+
msgid "Inner Border Color"
|
1651 |
+
msgstr ""
|
1652 |
+
|
1653 |
+
#: widgets/premium-banner.php:703 widgets/premium-blog.php:818
|
1654 |
+
#: widgets/premium-blog.php:864 widgets/premium-blog.php:909
|
1655 |
+
#: widgets/premium-blog.php:968 widgets/premium-blog.php:1335
|
1656 |
+
#: widgets/premium-modalbox.php:546 widgets/premium-person.php:534
|
1657 |
+
#: widgets/premium-videobox.php:444 widgets/premium-videobox.php:572
|
1658 |
msgid "Hover Color"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
+
#: widgets/premium-banner.php:737 widgets/premium-blog.php:996
|
1662 |
msgid "Hover Background Color"
|
1663 |
msgstr ""
|
1664 |
|
1665 |
+
#: widgets/premium-banner.php:775 widgets/premium-blog.php:1070
|
1666 |
+
#: widgets/premium-blog.php:1232 widgets/premium-blog.php:1305
|
1667 |
+
#: widgets/premium-blog.php:1467 widgets/premium-button.php:602
|
1668 |
#: widgets/premium-button.php:759 widgets/premium-contactform.php:254
|
1669 |
#: widgets/premium-contactform.php:456 widgets/premium-dual-header.php:388
|
1670 |
+
#: widgets/premium-dual-header.php:585 widgets/premium-grid.php:741
|
1671 |
+
#: widgets/premium-grid.php:819 widgets/premium-grid.php:956
|
1672 |
+
#: widgets/premium-grid.php:1070 widgets/premium-grid.php:1164
|
1673 |
+
#: widgets/premium-grid.php:1301 widgets/premium-grid.php:1425
|
1674 |
+
#: widgets/premium-grid.php:1513 widgets/premium-image-button.php:503
|
1675 |
#: widgets/premium-image-button.php:704 widgets/premium-maps.php:432
|
1676 |
#: widgets/premium-maps.php:514 widgets/premium-maps.php:606
|
1677 |
+
#: widgets/premium-modalbox.php:673 widgets/premium-modalbox.php:984
|
1678 |
+
#: widgets/premium-modalbox.php:1169 widgets/premium-modalbox.php:1298
|
1679 |
#: widgets/premium-pricing-table.php:565 widgets/premium-pricing-table.php:662
|
1680 |
#: widgets/premium-pricing-table.php:749 widgets/premium-pricing-table.php:1077
|
1681 |
#: widgets/premium-pricing-table.php:1243
|
1684 |
#: widgets/premium-pricing-table.php:1538
|
1685 |
#: widgets/premium-pricing-table.php:1751
|
1686 |
#: widgets/premium-pricing-table.php:1829 widgets/premium-testimonials.php:560
|
1687 |
+
#: widgets/premium-title.php:536 widgets/premium-videobox.php:505
|
1688 |
+
#: widgets/premium-videobox.php:609 widgets/premium-vscroll.php:453
|
1689 |
+
#: widgets/premium-vscroll.php:734
|
1690 |
msgid "Padding"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
+
#: widgets/premium-blog.php:71 widgets/premium-grid.php:543
|
1694 |
msgid "Choose a hover effect for the image"
|
1695 |
msgstr ""
|
1696 |
|
1697 |
+
#: widgets/premium-blog.php:81 widgets/premium-grid.php:553
|
1698 |
#: widgets/premium-person.php:129
|
1699 |
msgid "Translate"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
+
#: widgets/premium-blog.php:90
|
1703 |
msgid "Color Effect"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
+
#: widgets/premium-blog.php:92
|
1707 |
msgid "Choose an overlay color effect"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
+
#: widgets/premium-blog.php:95
|
1711 |
msgid "Framed"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
+
#: widgets/premium-blog.php:96
|
1715 |
msgid "Diagonal"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
+
#: widgets/premium-blog.php:97
|
1719 |
msgid "Bordered"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
+
#: widgets/premium-blog.php:98
|
1723 |
msgid "Squares"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
+
#: widgets/premium-blog.php:109 widgets/premium-counter.php:133
|
1727 |
+
#: widgets/premium-modalbox.php:249 widgets/premium-pricing-table.php:449
|
1728 |
msgid "Display Options"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: widgets/premium-blog.php:115 widgets/premium-grid.php:505
|
1732 |
msgid "Skin"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
+
#: widgets/premium-blog.php:118
|
1736 |
msgid "Classic"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: widgets/premium-blog.php:119
|
1740 |
msgid "Cards"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: widgets/premium-blog.php:128
|
1744 |
msgid "Title HTML Tag"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
+
#: widgets/premium-blog.php:129
|
1748 |
msgid "Select a heading tag for the post title."
|
1749 |
msgstr ""
|
1750 |
|
1751 |
+
#: widgets/premium-blog.php:154 widgets/premium-grid.php:69
|
1752 |
+
msgid "Layout"
|
1753 |
+
msgstr ""
|
1754 |
+
|
1755 |
+
#: widgets/premium-blog.php:157 widgets/premium-grid.php:78
|
1756 |
+
msgid "Even"
|
1757 |
+
msgstr ""
|
1758 |
+
|
1759 |
+
#: widgets/premium-blog.php:158 widgets/premium-grid.php:79
|
1760 |
msgid "Masonry"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
+
#: widgets/premium-blog.php:169
|
1764 |
msgid "Number of Columns"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
+
#: widgets/premium-blog.php:172 widgets/premium-grid.php:151
|
1768 |
msgid "1 Column"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
+
#: widgets/premium-blog.php:173 widgets/premium-grid.php:152
|
1772 |
msgid "2 Columns"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
+
#: widgets/premium-blog.php:174 widgets/premium-grid.php:153
|
1776 |
msgid "3 Columns"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
+
#: widgets/premium-blog.php:175 widgets/premium-grid.php:154
|
1780 |
msgid "4 Columns"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
+
#: widgets/premium-blog.php:191
|
1784 |
msgid "Thumbnail Min Height"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
+
#: widgets/premium-blog.php:208
|
1788 |
msgid "Thumbnail Max Height"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
+
#: widgets/premium-blog.php:225
|
1792 |
msgid "Thumbnail Fit"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
+
#: widgets/premium-blog.php:228 widgets/premium-grid.php:119
|
1796 |
msgid "Cover"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
+
#: widgets/premium-blog.php:229 widgets/premium-grid.php:118
|
1800 |
msgid "Fill"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
+
#: widgets/premium-blog.php:230
|
1804 |
msgid "Contain"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
+
#: widgets/premium-blog.php:244
|
1808 |
+
msgid "Rows Spacing"
|
1809 |
+
msgstr ""
|
1810 |
+
|
1811 |
+
#: widgets/premium-blog.php:265
|
1812 |
+
msgid "Columns Spacing"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
+
#: widgets/premium-blog.php:312
|
1816 |
msgid "Post Options"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
+
#: widgets/premium-blog.php:318
|
1820 |
msgid "Excerpt"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
+
#: widgets/premium-blog.php:320
|
1824 |
msgid ""
|
1825 |
"Excerpt is used for article summary with a link to the whole entry. The "
|
1826 |
"default except length is 55"
|
1827 |
msgstr ""
|
1828 |
|
1829 |
+
#: widgets/premium-blog.php:327
|
1830 |
msgid "Pull From Content Box"
|
1831 |
msgstr ""
|
1832 |
|
1833 |
+
#: widgets/premium-blog.php:329
|
1834 |
msgid "Post content will be pulled from post content box"
|
1835 |
msgstr ""
|
1836 |
|
1837 |
+
#: widgets/premium-blog.php:337
|
1838 |
msgid "Excerpt Length"
|
1839 |
msgstr ""
|
1840 |
|
1841 |
+
#: widgets/premium-blog.php:348
|
1842 |
msgid "Excerpt Type"
|
1843 |
msgstr ""
|
1844 |
|
1845 |
+
#: widgets/premium-blog.php:351 widgets/premium-carousel.php:129
|
1846 |
+
#: widgets/premium-vscroll.php:469
|
1847 |
msgid "Dots"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
+
#: widgets/premium-blog.php:361
|
1851 |
msgid "Link Text"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
+
#: widgets/premium-blog.php:363
|
1855 |
msgid "continue reading"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
+
#: widgets/premium-blog.php:373
|
1859 |
msgid "Author Meta"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
+
#: widgets/premium-blog.php:381
|
1863 |
msgid "Date Meta"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
+
#: widgets/premium-blog.php:389
|
1867 |
msgid "Categories Meta"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
+
#: widgets/premium-blog.php:391
|
1871 |
msgid "Display or hide categories meta"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
+
#: widgets/premium-blog.php:398
|
1875 |
msgid "Comments Meta"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
+
#: widgets/premium-blog.php:399
|
1879 |
msgid "Display or hide comments meta"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
+
#: widgets/premium-blog.php:407
|
1883 |
msgid "Tags Meta"
|
1884 |
msgstr ""
|
1885 |
|
1886 |
+
#: widgets/premium-blog.php:409
|
1887 |
msgid "Display or hide post tags"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
+
#: widgets/premium-blog.php:416 widgets/premium-blog.php:925
|
1891 |
msgid "Post Format Icon"
|
1892 |
msgstr ""
|
1893 |
|
1894 |
+
#: widgets/premium-blog.php:426 widgets/premium-image-scroll.php:174
|
1895 |
msgid "Advanced Settings"
|
1896 |
msgstr ""
|
1897 |
|
1898 |
+
#: widgets/premium-blog.php:432
|
1899 |
msgid "Filter By Category"
|
1900 |
msgstr ""
|
1901 |
|
1902 |
+
#: widgets/premium-blog.php:434
|
1903 |
msgid "Get posts for specific category(s)"
|
1904 |
msgstr ""
|
1905 |
|
1906 |
+
#: widgets/premium-blog.php:443
|
1907 |
msgid "Filter Tabs"
|
1908 |
msgstr ""
|
1909 |
|
1910 |
+
#: widgets/premium-blog.php:482
|
1911 |
msgid "Filter By Tag"
|
1912 |
msgstr ""
|
1913 |
|
1914 |
+
#: widgets/premium-blog.php:484
|
1915 |
msgid "Get posts for specific tag(s)"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
+
#: widgets/premium-blog.php:493
|
1919 |
msgid "Filter By Author"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
+
#: widgets/premium-blog.php:495
|
1923 |
msgid "Get posts for specific author(s)"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
+
#: widgets/premium-blog.php:504
|
1927 |
msgid "Posts to Exclude"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
+
#: widgets/premium-blog.php:506
|
1931 |
msgid "Add post(s) to exclude"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
+
#: widgets/premium-blog.php:515
|
1935 |
msgid "Order By"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
+
#: widgets/premium-blog.php:520 widgets/premium-videobox.php:84
|
1939 |
msgid "ID"
|
1940 |
msgstr ""
|
1941 |
|
1942 |
+
#: widgets/premium-blog.php:521 widgets/premium-testimonials.php:50
|
1943 |
#: widgets/premium-testimonials.php:297
|
1944 |
msgid "Author"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
+
#: widgets/premium-blog.php:523 widgets/premium-person.php:149
|
1948 |
#: widgets/premium-person.php:402 widgets/premium-testimonials.php:86
|
1949 |
#: widgets/premium-testimonials.php:127
|
1950 |
msgid "Name"
|
1951 |
msgstr ""
|
1952 |
|
1953 |
+
#: widgets/premium-blog.php:524
|
1954 |
msgid "Date"
|
1955 |
msgstr ""
|
1956 |
|
1957 |
+
#: widgets/premium-blog.php:525
|
1958 |
msgid "Last Modified"
|
1959 |
msgstr ""
|
1960 |
|
1961 |
+
#: widgets/premium-blog.php:526
|
1962 |
msgid "Random"
|
1963 |
msgstr ""
|
1964 |
|
1965 |
+
#: widgets/premium-blog.php:527
|
1966 |
msgid "Number of Comments"
|
1967 |
msgstr ""
|
1968 |
|
1969 |
+
#: widgets/premium-blog.php:535
|
1970 |
msgid "Order"
|
1971 |
msgstr ""
|
1972 |
|
1973 |
+
#: widgets/premium-blog.php:539
|
1974 |
msgid "Descending"
|
1975 |
msgstr ""
|
1976 |
|
1977 |
+
#: widgets/premium-blog.php:540
|
1978 |
msgid "Ascending"
|
1979 |
msgstr ""
|
1980 |
|
1981 |
+
#: widgets/premium-blog.php:548
|
1982 |
msgid "Pagination"
|
1983 |
msgstr ""
|
1984 |
|
1985 |
+
#: widgets/premium-blog.php:550
|
1986 |
msgid "Pagination is the process of dividing the posts into discrete pages"
|
1987 |
msgstr ""
|
1988 |
|
1989 |
+
#: widgets/premium-blog.php:556
|
1990 |
msgid "Next Page String"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
+
#: widgets/premium-blog.php:558
|
1994 |
msgid "Next"
|
1995 |
msgstr ""
|
1996 |
|
1997 |
+
#: widgets/premium-blog.php:567
|
1998 |
msgid "Previous Page String"
|
1999 |
msgstr ""
|
2000 |
|
2001 |
+
#: widgets/premium-blog.php:569
|
2002 |
msgid "Previous"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
+
#: widgets/premium-blog.php:606
|
2006 |
msgid "Links in New Tab"
|
2007 |
msgstr ""
|
2008 |
|
2009 |
+
#: widgets/premium-blog.php:608
|
2010 |
msgid "Enable links to be opened in a new tab"
|
2011 |
msgstr ""
|
2012 |
|
2013 |
+
#: widgets/premium-blog.php:615
|
2014 |
msgid "Posts Per Page"
|
2015 |
msgstr ""
|
2016 |
|
2017 |
+
#: widgets/premium-blog.php:616
|
2018 |
msgid "Choose how many posts do you want to be displayed per page"
|
2019 |
msgstr ""
|
2020 |
|
2021 |
+
#: widgets/premium-blog.php:625
|
2022 |
msgid "Total Number of Posts"
|
2023 |
msgstr ""
|
2024 |
|
2025 |
+
#: widgets/premium-blog.php:637
|
2026 |
msgid "Offset Count"
|
2027 |
msgstr ""
|
2028 |
|
2029 |
+
#: widgets/premium-blog.php:638
|
2030 |
msgid "The index of post to start with"
|
2031 |
msgstr ""
|
2032 |
|
2033 |
+
#: widgets/premium-blog.php:658
|
2034 |
msgid "Enable Carousel"
|
2035 |
msgstr ""
|
2036 |
|
2037 |
+
#: widgets/premium-blog.php:665 widgets/premium-carousel.php:252
|
2038 |
msgid "Fade"
|
2039 |
msgstr ""
|
2040 |
|
2041 |
+
#: widgets/premium-blog.php:675
|
2042 |
msgid "Auto Play"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
+
#: widgets/premium-blog.php:685 widgets/premium-carousel.php:292
|
2046 |
msgid "Autoplay Speed"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
+
#: widgets/premium-blog.php:686 widgets/premium-carousel.php:293
|
2050 |
msgid ""
|
2051 |
"Autoplay Speed means at which time the next slide should come. Set a value "
|
2052 |
"in milliseconds (ms)"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
+
#: widgets/premium-blog.php:698
|
2056 |
msgid "Arrows Position"
|
2057 |
msgstr ""
|
2058 |
|
2059 |
+
#: widgets/premium-blog.php:733 widgets/premium-button.php:511
|
2060 |
#: widgets/premium-button.php:636 widgets/premium-button.php:653
|
2061 |
#: widgets/premium-image-button.php:415 widgets/premium-image-button.php:537
|
2062 |
#: widgets/premium-image-button.php:554 widgets/premium-image-scroll.php:279
|
2063 |
+
#: widgets/premium-modalbox.php:563 widgets/premium-title.php:466
|
2064 |
msgid "Icon Color"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
+
#: widgets/premium-blog.php:747 widgets/premium-grid.php:1088
|
2068 |
#: widgets/premium-image-button.php:570 widgets/premium-image-button.php:587
|
2069 |
#: widgets/premium-image-button.php:612 widgets/premium-image-scroll.php:292
|
2070 |
msgid "Overlay Color"
|
2071 |
msgstr ""
|
2072 |
|
2073 |
+
#: widgets/premium-blog.php:761 widgets/premium-carousel.php:629
|
2074 |
#: widgets/premium-contactform.php:554
|
2075 |
msgid "Border Color"
|
2076 |
msgstr ""
|
2077 |
|
2078 |
+
#: widgets/premium-blog.php:834
|
2079 |
msgid "Meta"
|
2080 |
msgstr ""
|
2081 |
|
2082 |
+
#: widgets/premium-blog.php:880
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2083 |
msgid "Tags"
|
2084 |
msgstr ""
|
2085 |
|
2086 |
+
#: widgets/premium-blog.php:935 widgets/premium-blog.php:1269
|
2087 |
+
#: widgets/premium-button.php:412 widgets/premium-carousel.php:589
|
2088 |
#: widgets/premium-counter.php:228 widgets/premium-counter.php:250
|
2089 |
+
#: widgets/premium-image-button.php:316 widgets/premium-modalbox.php:861
|
2090 |
#: widgets/premium-pricing-table.php:396 widgets/premium-pricing-table.php:415
|
2091 |
#: widgets/premium-pricing-table.php:538 widgets/premium-pricing-table.php:1154
|
2092 |
#: widgets/premium-progressbar.php:527 widgets/premium-progressbar.php:568
|
2093 |
#: widgets/premium-testimonials.php:237 widgets/premium-testimonials.php:459
|
2094 |
+
#: widgets/premium-videobox.php:458
|
2095 |
msgid "Size"
|
2096 |
msgstr ""
|
2097 |
|
2098 |
+
#: widgets/premium-blog.php:937
|
2099 |
msgid "Choose icon size in (PX, EM)"
|
2100 |
msgstr ""
|
2101 |
|
2102 |
+
#: widgets/premium-blog.php:1012
|
2103 |
+
msgid "Box"
|
2104 |
+
msgstr ""
|
2105 |
+
|
2106 |
+
#: widgets/premium-blog.php:1019 widgets/premium-button.php:498
|
2107 |
+
#: widgets/premium-button.php:620 widgets/premium-contactform.php:474
|
2108 |
+
#: widgets/premium-contactform.php:532 widgets/premium-dual-header.php:246
|
2109 |
+
#: widgets/premium-dual-header.php:443 widgets/premium-grid.php:1341
|
2110 |
+
#: widgets/premium-image-button.php:402 widgets/premium-image-button.php:521
|
2111 |
+
#: widgets/premium-pricing-table.php:1573 widgets/premium-videobox.php:558
|
2112 |
+
#: widgets/premium-vscroll.php:591 widgets/premium-vscroll.php:650
|
2113 |
+
msgid "Text Color"
|
2114 |
+
msgstr ""
|
2115 |
+
|
2116 |
+
#: widgets/premium-blog.php:1051 widgets/premium-modalbox.php:1235
|
2117 |
+
msgid "Content Background Color"
|
2118 |
+
msgstr ""
|
2119 |
+
|
2120 |
+
#: widgets/premium-blog.php:1081
|
2121 |
+
msgid "Content Margin"
|
2122 |
+
msgstr ""
|
2123 |
+
|
2124 |
+
#: widgets/premium-blog.php:1092
|
2125 |
+
msgid "Content Padding"
|
2126 |
+
msgstr ""
|
2127 |
+
|
2128 |
+
#: widgets/premium-blog.php:1105
|
2129 |
msgid "Pagination Style"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
+
#: widgets/premium-blog.php:1125 widgets/premium-button.php:492
|
2133 |
+
#: widgets/premium-contactform.php:469 widgets/premium-grid.php:998
|
2134 |
+
#: widgets/premium-grid.php:1335 widgets/premium-image-button.php:396
|
2135 |
#: widgets/premium-image-scroll.php:307 widgets/premium-image-scroll.php:386
|
2136 |
+
#: widgets/premium-modalbox.php:614 widgets/premium-modalbox.php:877
|
2137 |
+
#: widgets/premium-modalbox.php:1046 widgets/premium-pricing-table.php:1401
|
2138 |
+
#: widgets/premium-pricing-table.php:1692 widgets/premium-vscroll.php:585
|
2139 |
msgid "Normal"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: widgets/premium-blog.php:1162 widgets/premium-button.php:614
|
2143 |
+
#: widgets/premium-contactform.php:527 widgets/premium-grid.php:1082
|
2144 |
+
#: widgets/premium-grid.php:1438 widgets/premium-image-button.php:515
|
2145 |
#: widgets/premium-image-scroll.php:206 widgets/premium-image-scroll.php:340
|
2146 |
+
#: widgets/premium-image-scroll.php:421 widgets/premium-modalbox.php:721
|
2147 |
+
#: widgets/premium-modalbox.php:929 widgets/premium-modalbox.php:1106
|
2148 |
#: widgets/premium-pricing-table.php:1479
|
2149 |
#: widgets/premium-pricing-table.php:1770
|
2150 |
msgid "Hover"
|
2151 |
msgstr ""
|
2152 |
|
2153 |
+
#: widgets/premium-blog.php:1221 widgets/premium-blog.php:1456
|
2154 |
+
#: widgets/premium-button.php:592 widgets/premium-button.php:749
|
2155 |
+
#: widgets/premium-contactform.php:286 widgets/premium-dual-header.php:375
|
2156 |
+
#: widgets/premium-dual-header.php:572 widgets/premium-grid.php:730
|
2157 |
+
#: widgets/premium-grid.php:808 widgets/premium-grid.php:945
|
2158 |
+
#: widgets/premium-grid.php:1060 widgets/premium-grid.php:1154
|
2159 |
+
#: widgets/premium-grid.php:1290 widgets/premium-grid.php:1414
|
2160 |
+
#: widgets/premium-grid.php:1502 widgets/premium-image-button.php:493
|
2161 |
+
#: widgets/premium-image-button.php:694 widgets/premium-maps.php:420
|
2162 |
+
#: widgets/premium-maps.php:503 widgets/premium-maps.php:594
|
2163 |
+
#: widgets/premium-modalbox.php:1287 widgets/premium-pricing-table.php:643
|
2164 |
+
#: widgets/premium-pricing-table.php:730 widgets/premium-pricing-table.php:814
|
2165 |
+
#: widgets/premium-pricing-table.php:884 widgets/premium-pricing-table.php:931
|
2166 |
+
#: widgets/premium-pricing-table.php:976 widgets/premium-pricing-table.php:1028
|
2167 |
+
#: widgets/premium-pricing-table.php:1058
|
2168 |
+
#: widgets/premium-pricing-table.php:1225
|
2169 |
+
#: widgets/premium-pricing-table.php:1316
|
2170 |
+
#: widgets/premium-pricing-table.php:1449
|
2171 |
+
#: widgets/premium-pricing-table.php:1527
|
2172 |
+
#: widgets/premium-pricing-table.php:1740
|
2173 |
+
#: widgets/premium-pricing-table.php:1818 widgets/premium-progressbar.php:318
|
2174 |
+
#: widgets/premium-progressbar.php:376 widgets/premium-progressbar.php:421
|
2175 |
+
#: widgets/premium-testimonials.php:417 widgets/premium-title.php:430
|
2176 |
+
#: widgets/premium-title.php:524 widgets/premium-vscroll.php:439
|
2177 |
+
#: widgets/premium-vscroll.php:723
|
2178 |
+
msgid "Margin"
|
2179 |
+
msgstr ""
|
2180 |
+
|
2181 |
+
#: widgets/premium-blog.php:1318
|
2182 |
msgid "Read More Text"
|
2183 |
msgstr ""
|
2184 |
|
2185 |
+
#: widgets/premium-blog.php:1355 widgets/premium-grid.php:319
|
2186 |
+
#: widgets/premium-grid.php:1180
|
2187 |
msgid "Filter"
|
2188 |
msgstr ""
|
2189 |
|
2190 |
+
#: widgets/premium-blog.php:1378 widgets/premium-carousel.php:748
|
2191 |
+
#: widgets/premium-grid.php:1203
|
2192 |
msgid "Active Color"
|
2193 |
msgstr ""
|
2194 |
|
2195 |
+
#: widgets/premium-blog.php:1415 widgets/premium-grid.php:1248
|
2196 |
msgid "Background Active Color"
|
2197 |
msgstr ""
|
2198 |
|
|
|
|
|
|
|
|
|
2199 |
#: widgets/premium-button.php:66 widgets/premium-image-button.php:61
|
2200 |
msgid "Click Me"
|
2201 |
msgstr ""
|
2282 |
msgid "Tilted Right"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
+
#: widgets/premium-button.php:192 widgets/premium-carousel.php:554
|
2286 |
#: widgets/premium-countdown.php:61 widgets/premium-counter.php:272
|
2287 |
#: widgets/premium-title.php:66
|
2288 |
msgid "Style"
|
2305 |
msgstr ""
|
2306 |
|
2307 |
#: widgets/premium-button.php:210 widgets/premium-button.php:221
|
2308 |
+
#: widgets/premium-button.php:234 widgets/premium-carousel.php:703
|
2309 |
#: widgets/premium-counter.php:204 widgets/premium-image-button.php:198
|
2310 |
#: widgets/premium-image-button.php:209 widgets/premium-image-button.php:222
|
2311 |
+
#: widgets/premium-image-scroll.php:230 widgets/premium-modalbox.php:86
|
2312 |
+
#: widgets/premium-modalbox.php:286 widgets/premium-modalbox.php:297
|
2313 |
#: widgets/premium-pricing-table.php:56 widgets/premium-pricing-table.php:205
|
2314 |
#: widgets/premium-pricing-table.php:455 widgets/premium-pricing-table.php:513
|
2315 |
#: widgets/premium-pricing-table.php:1132 widgets/premium-title.php:85
|
2317 |
msgstr ""
|
2318 |
|
2319 |
#: widgets/premium-button.php:215 widgets/premium-image-button.php:203
|
2320 |
+
#: widgets/premium-modalbox.php:291
|
2321 |
msgid "Enable or disable button icon"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
#: widgets/premium-button.php:246 widgets/premium-counter.php:176
|
2325 |
+
#: widgets/premium-image-button.php:234 widgets/premium-modalbox.php:310
|
2326 |
msgid "Icon Position"
|
2327 |
msgstr ""
|
2328 |
|
2329 |
#: widgets/premium-button.php:250 widgets/premium-image-button.php:238
|
2330 |
+
#: widgets/premium-modalbox.php:314
|
2331 |
msgid "Before"
|
2332 |
msgstr ""
|
2333 |
|
2334 |
#: widgets/premium-button.php:251 widgets/premium-image-button.php:239
|
2335 |
+
#: widgets/premium-modalbox.php:315
|
2336 |
msgid "After"
|
2337 |
msgstr ""
|
2338 |
|
2339 |
#: widgets/premium-button.php:263 widgets/premium-button.php:277
|
2340 |
#: widgets/premium-image-button.php:251 widgets/premium-image-button.php:265
|
2341 |
+
#: widgets/premium-image-scroll.php:237 widgets/premium-modalbox.php:117
|
2342 |
+
#: widgets/premium-modalbox.php:327 widgets/premium-title.php:481
|
2343 |
msgid "Icon Size"
|
2344 |
msgstr ""
|
2345 |
|
2347 |
#: widgets/premium-button.php:331 widgets/premium-button.php:350
|
2348 |
#: widgets/premium-button.php:370 widgets/premium-button.php:391
|
2349 |
#: widgets/premium-image-button.php:278 widgets/premium-image-button.php:297
|
2350 |
+
#: widgets/premium-modalbox.php:342 widgets/premium-modalbox.php:361
|
2351 |
+
#: widgets/premium-modalbox.php:382 widgets/premium-modalbox.php:401
|
2352 |
msgid "Icon Spacing"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
#: widgets/premium-button.php:416 widgets/premium-image-button.php:320
|
2356 |
+
#: widgets/premium-modalbox.php:425
|
2357 |
msgid "Small"
|
2358 |
msgstr ""
|
2359 |
|
2360 |
#: widgets/premium-button.php:417 widgets/premium-image-button.php:321
|
2361 |
+
#: widgets/premium-modalbox.php:426
|
2362 |
msgid "Medium"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
#: widgets/premium-button.php:418 widgets/premium-image-button.php:322
|
2366 |
+
#: widgets/premium-modalbox.php:427
|
2367 |
msgid "Large"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
#: widgets/premium-button.php:419 widgets/premium-countdown.php:65
|
2371 |
#: widgets/premium-dual-header.php:107 widgets/premium-image-button.php:323
|
2372 |
+
#: widgets/premium-modalbox.php:428
|
2373 |
msgid "Block"
|
2374 |
msgstr ""
|
2375 |
|
2381 |
msgid "Example: myFunction();"
|
2382 |
msgstr ""
|
2383 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2384 |
#: widgets/premium-button.php:562 widgets/premium-button.php:704
|
2385 |
#: widgets/premium-button.php:717 widgets/premium-image-button.php:462
|
2386 |
#: widgets/premium-image-button.php:649 widgets/premium-image-button.php:662
|
2398 |
msgid "Button Shadow"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
+
#: widgets/premium-carousel.php:67 widgets/premium-vscroll.php:76
|
2402 |
msgid "Content Type"
|
2403 |
msgstr ""
|
2404 |
|
2405 |
+
#: widgets/premium-carousel.php:68
|
2406 |
msgid "How templates are selected"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
+
#: widgets/premium-carousel.php:71
|
2410 |
msgid "Select Field"
|
2411 |
msgstr ""
|
2412 |
|
2413 |
+
#: widgets/premium-carousel.php:72
|
2414 |
msgid "Repeater"
|
2415 |
msgstr ""
|
2416 |
|
2417 |
+
#: widgets/premium-carousel.php:81
|
|
|
|
|
|
|
|
|
2418 |
msgid ""
|
2419 |
"Slider content is a template which you can choose from Elementor library. "
|
2420 |
"Each template will be a slider content"
|
2421 |
msgstr ""
|
2422 |
|
2423 |
+
#: widgets/premium-carousel.php:116 widgets/premium-progressbar.php:203
|
2424 |
msgid "Type"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
+
#: widgets/premium-carousel.php:117
|
2428 |
msgid "Set a navigation type"
|
2429 |
msgstr ""
|
2430 |
|
2431 |
+
#: widgets/premium-carousel.php:120 widgets/premium-image-button.php:186
|
2432 |
#: widgets/premium-image-scroll.php:184
|
2433 |
msgid "Horizontal"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
+
#: widgets/premium-carousel.php:121 widgets/premium-image-button.php:187
|
2437 |
#: widgets/premium-image-scroll.php:185
|
2438 |
msgid "Vertical"
|
2439 |
msgstr ""
|
2440 |
|
2441 |
+
#: widgets/premium-carousel.php:130
|
2442 |
msgid "Enable or disable navigation dots"
|
2443 |
msgstr ""
|
2444 |
|
2445 |
+
#: widgets/premium-carousel.php:139 widgets/premium-grid.php:975
|
2446 |
+
#: widgets/premium-pricing-table.php:434 widgets/premium-vscroll.php:185
|
2447 |
msgid "Position"
|
2448 |
msgstr ""
|
2449 |
|
2450 |
+
#: widgets/premium-carousel.php:143
|
2451 |
msgid "Below Slides"
|
2452 |
msgstr ""
|
2453 |
|
2454 |
+
#: widgets/premium-carousel.php:144
|
2455 |
msgid "On Slides"
|
2456 |
msgstr ""
|
2457 |
|
2458 |
+
#: widgets/premium-carousel.php:154
|
2459 |
msgid "Horizontal Offset"
|
2460 |
msgstr ""
|
2461 |
|
2462 |
+
#: widgets/premium-carousel.php:169
|
2463 |
msgid "Vertical Offset"
|
2464 |
msgstr ""
|
2465 |
|
2466 |
+
#: widgets/premium-carousel.php:188
|
2467 |
msgid "Arrows"
|
2468 |
msgstr ""
|
2469 |
|
2470 |
+
#: widgets/premium-carousel.php:189
|
2471 |
msgid "Enable or disable navigation arrows"
|
2472 |
msgstr ""
|
2473 |
|
2474 |
+
#: widgets/premium-carousel.php:198
|
2475 |
msgid "Appearance"
|
2476 |
msgstr ""
|
2477 |
|
2478 |
+
#: widgets/premium-carousel.php:203
|
2479 |
msgid "All visible"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
+
#: widgets/premium-carousel.php:204
|
2483 |
msgid "One at a time"
|
2484 |
msgstr ""
|
2485 |
|
2486 |
+
#: widgets/premium-carousel.php:211
|
2487 |
msgid "Desktop Slides"
|
2488 |
msgstr ""
|
2489 |
|
2490 |
+
#: widgets/premium-carousel.php:219
|
2491 |
msgid "Tabs Slides"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
+
#: widgets/premium-carousel.php:227
|
2495 |
msgid "Mobile Slides"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: widgets/premium-carousel.php:237
|
2499 |
msgid "Slides' Settings"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
+
#: widgets/premium-carousel.php:243
|
2503 |
msgid "Infinite Loop"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
+
#: widgets/premium-carousel.php:245
|
2507 |
msgid "Restart the slider automatically as it passes the last slide"
|
2508 |
msgstr ""
|
2509 |
|
2510 |
+
#: widgets/premium-carousel.php:254
|
2511 |
msgid "Enable fade transition between slides"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
+
#: widgets/premium-carousel.php:263
|
2515 |
msgid "Zoom Effect"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
+
#: widgets/premium-carousel.php:274
|
2519 |
msgid "Transition Speed"
|
2520 |
msgstr ""
|
2521 |
|
2522 |
+
#: widgets/premium-carousel.php:275
|
2523 |
msgid ""
|
2524 |
"Set a navigation speed value. The value will be counted in milliseconds (ms)"
|
2525 |
msgstr ""
|
2526 |
|
2527 |
+
#: widgets/premium-carousel.php:283
|
2528 |
msgid "Autoplay Slides"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
+
#: widgets/premium-carousel.php:284
|
2532 |
msgid "Slide will start automatically"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
+
#: widgets/premium-carousel.php:305 widgets/premium-counter.php:193
|
2536 |
msgid "Animations"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
+
#: widgets/premium-carousel.php:315
|
2540 |
msgid ""
|
2541 |
"Add extra class name that will be applied to the carousel, and you can use "
|
2542 |
"this class for your customizations."
|
2543 |
msgstr ""
|
2544 |
|
2545 |
+
#: widgets/premium-carousel.php:323 widgets/premium-fancytext.php:145
|
2546 |
msgid "Additional Settings"
|
2547 |
msgstr ""
|
2548 |
|
2549 |
+
#: widgets/premium-carousel.php:329
|
2550 |
msgid "Draggable Effect"
|
2551 |
msgstr ""
|
2552 |
|
2553 |
+
#: widgets/premium-carousel.php:330
|
2554 |
msgid "Allow the slides to be dragged by mouse click"
|
2555 |
msgstr ""
|
2556 |
|
2557 |
+
#: widgets/premium-carousel.php:338
|
2558 |
msgid "Touch Move"
|
2559 |
msgstr ""
|
2560 |
|
2561 |
+
#: widgets/premium-carousel.php:339
|
2562 |
msgid "Enable slide moving with touch"
|
2563 |
msgstr ""
|
2564 |
|
2565 |
+
#: widgets/premium-carousel.php:347 widgets/premium-grid.php:600
|
2566 |
msgid "RTL Mode"
|
2567 |
msgstr ""
|
2568 |
|
2569 |
+
#: widgets/premium-carousel.php:348
|
2570 |
msgid "Turn on RTL mode if your language starts from right to left"
|
2571 |
msgstr ""
|
2572 |
|
2573 |
+
#: widgets/premium-carousel.php:358
|
2574 |
msgid "Adaptive Height"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
+
#: widgets/premium-carousel.php:359
|
2578 |
msgid ""
|
2579 |
"Adaptive height setting gives each slide a fixed height to avoid huge white "
|
2580 |
"space gaps"
|
2581 |
msgstr ""
|
2582 |
|
2583 |
+
#: widgets/premium-carousel.php:366 widgets/premium-fancytext.php:295
|
2584 |
msgid "Pause on Hover"
|
2585 |
msgstr ""
|
2586 |
|
2587 |
+
#: widgets/premium-carousel.php:367
|
2588 |
msgid "Pause the slider when mouse hover"
|
2589 |
msgstr ""
|
2590 |
|
2591 |
+
#: widgets/premium-carousel.php:374
|
2592 |
msgid "Center Mode"
|
2593 |
msgstr ""
|
2594 |
|
2595 |
+
#: widgets/premium-carousel.php:375
|
2596 |
msgid ""
|
2597 |
"Center mode enables a centered view with partial next/previous slides. "
|
2598 |
"Animations and all visible scroll type doesn't work with this mode"
|
2599 |
msgstr ""
|
2600 |
|
2601 |
+
#: widgets/premium-carousel.php:382
|
2602 |
msgid "Slides' Spacing"
|
2603 |
msgstr ""
|
2604 |
|
2605 |
+
#: widgets/premium-carousel.php:383
|
2606 |
msgid "Set a spacing value in pixels (px)"
|
2607 |
msgstr ""
|
2608 |
|
2609 |
+
#: widgets/premium-carousel.php:391
|
2610 |
msgid "Tablet Breakpoint"
|
2611 |
msgstr ""
|
2612 |
|
2613 |
+
#: widgets/premium-carousel.php:392
|
2614 |
msgid ""
|
2615 |
"Sets the breakpoint between desktop and tablet devices. Below this "
|
2616 |
"breakpoint tablet layout will appear (Default: 1025px)."
|
2617 |
msgstr ""
|
2618 |
|
2619 |
+
#: widgets/premium-carousel.php:400
|
2620 |
msgid "Mobile Breakpoint"
|
2621 |
msgstr ""
|
2622 |
|
2623 |
+
#: widgets/premium-carousel.php:401
|
2624 |
msgid ""
|
2625 |
"Sets the breakpoint between tablet and mobile devices. Below this breakpoint "
|
2626 |
"mobile layout will appear (Default: 768px)."
|
2627 |
msgstr ""
|
2628 |
|
2629 |
+
#: widgets/premium-carousel.php:411 widgets/premium-grid.php:672
|
2630 |
msgid "Helpful Documentations"
|
2631 |
msgstr ""
|
2632 |
|
2633 |
+
#: widgets/premium-carousel.php:418
|
2634 |
#, php-format
|
2635 |
msgid "%1$s Issue: I can see the first slide only » %2$s"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
+
#: widgets/premium-carousel.php:427
|
2639 |
msgid "Navigation Arrows"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
+
#: widgets/premium-carousel.php:437
|
2643 |
msgid "Right Icon"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
+
#: widgets/premium-carousel.php:467
|
2647 |
msgid "Bottom Icon"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
+
#: widgets/premium-carousel.php:496
|
2651 |
msgid "Top Icon"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
+
#: widgets/premium-carousel.php:525
|
2655 |
msgid "Left Icon"
|
2656 |
msgstr ""
|
2657 |
|
2658 |
+
#: widgets/premium-carousel.php:559 widgets/premium-counter.php:277
|
2659 |
msgid "Circle Background"
|
2660 |
msgstr ""
|
2661 |
|
2662 |
+
#: widgets/premium-carousel.php:560 widgets/premium-counter.php:278
|
2663 |
msgid "Square Background"
|
2664 |
msgstr ""
|
2665 |
|
2666 |
+
#: widgets/premium-carousel.php:561
|
2667 |
msgid "Circle border"
|
2668 |
msgstr ""
|
2669 |
|
2670 |
+
#: widgets/premium-carousel.php:562
|
2671 |
msgid "Square border"
|
2672 |
msgstr ""
|
2673 |
|
2674 |
+
#: widgets/premium-carousel.php:647
|
2675 |
msgid "Border Size"
|
2676 |
msgstr ""
|
2677 |
|
2678 |
+
#: widgets/premium-carousel.php:670
|
2679 |
msgid "Position (PX)"
|
2680 |
msgstr ""
|
2681 |
|
2682 |
+
#: widgets/premium-carousel.php:693 widgets/premium-vscroll.php:337
|
2683 |
msgid "Navigation Dots"
|
2684 |
msgstr ""
|
2685 |
|
2686 |
+
#: widgets/premium-carousel.php:765
|
2687 |
msgid "Ripple Effect"
|
2688 |
msgstr ""
|
2689 |
|
2690 |
+
#: widgets/premium-carousel.php:766
|
2691 |
msgid "Enable a ripple effect when the active dot is hovered/clicked"
|
2692 |
msgstr ""
|
2693 |
|
2694 |
+
#: widgets/premium-carousel.php:776
|
2695 |
msgid "Ripple Color"
|
2696 |
msgstr ""
|
2697 |
|
2708 |
msgstr ""
|
2709 |
|
2710 |
#: widgets/premium-contactform.php:72 widgets/premium-contactform.php:189
|
2711 |
+
#: widgets/premium-grid.php:346 widgets/premium-modalbox.php:1021
|
2712 |
+
#: widgets/premium-modalbox.php:1191 widgets/premium-person.php:67
|
2713 |
msgid "Width"
|
2714 |
msgstr ""
|
2715 |
|
2995 |
msgid "Use a font awesome icon or upload a custom image"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
+
#: widgets/premium-counter.php:143 widgets/premium-modalbox.php:91
|
2999 |
+
#: widgets/premium-modalbox.php:105
|
3000 |
msgid "Font Awesome"
|
3001 |
msgstr ""
|
3002 |
|
3003 |
+
#: widgets/premium-counter.php:144 widgets/premium-modalbox.php:92
|
3004 |
+
#: widgets/premium-modalbox.php:133
|
3005 |
msgid "Custom Image"
|
3006 |
msgstr ""
|
3007 |
|
3193 |
"5 seconds before backspace effect."
|
3194 |
msgstr ""
|
3195 |
|
3196 |
+
#: widgets/premium-fancytext.php:218 widgets/premium-videobox.php:175
|
3197 |
msgid "Loop"
|
3198 |
msgstr ""
|
3199 |
|
3242 |
msgid "Cursor Text"
|
3243 |
msgstr ""
|
3244 |
|
|
|
|
|
|
|
|
|
3245 |
#: widgets/premium-grid.php:75
|
3246 |
msgid "Grid Layout"
|
3247 |
msgstr ""
|
3248 |
|
|
|
|
|
|
|
|
|
3249 |
#: widgets/premium-grid.php:80
|
3250 |
msgid "Metro"
|
3251 |
msgstr ""
|
3278 |
msgid "12 Columns"
|
3279 |
msgstr ""
|
3280 |
|
3281 |
+
#: widgets/premium-grid.php:171 widgets/premium-grid.php:1314
|
3282 |
msgid "Load More Button"
|
3283 |
msgstr ""
|
3284 |
|
3286 |
msgid "Requires number of images larger than 6"
|
3287 |
msgstr ""
|
3288 |
|
3289 |
+
#: widgets/premium-grid.php:179 widgets/premium-modalbox.php:273
|
3290 |
msgid "Button Text"
|
3291 |
msgstr ""
|
3292 |
|
3390 |
msgid "Style 3"
|
3391 |
msgstr ""
|
3392 |
|
3393 |
+
#: widgets/premium-grid.php:562
|
3394 |
msgid "Lightbox"
|
3395 |
msgstr ""
|
3396 |
|
3397 |
+
#: widgets/premium-grid.php:571
|
3398 |
msgid "Lightbox Theme"
|
3399 |
msgstr ""
|
3400 |
|
3401 |
+
#: widgets/premium-grid.php:575
|
3402 |
msgid "Light Rounded"
|
3403 |
msgstr ""
|
3404 |
|
3405 |
+
#: widgets/premium-grid.php:576
|
3406 |
msgid "Dark Rounded"
|
3407 |
msgstr ""
|
3408 |
|
3409 |
+
#: widgets/premium-grid.php:577
|
3410 |
msgid "Light Square"
|
3411 |
msgstr ""
|
3412 |
|
3413 |
+
#: widgets/premium-grid.php:578
|
3414 |
msgid "Dark Square"
|
3415 |
msgstr ""
|
3416 |
|
3417 |
+
#: widgets/premium-grid.php:579 widgets/premium-person.php:252
|
3418 |
msgid "Facebook"
|
3419 |
msgstr ""
|
3420 |
|
3421 |
+
#: widgets/premium-grid.php:590
|
3422 |
msgid "Overlay Gallery Images"
|
3423 |
msgstr ""
|
3424 |
|
3425 |
+
#: widgets/premium-grid.php:601
|
3426 |
+
msgid ""
|
3427 |
+
"This option moves the origin of the grid to the right side. Useful for RTL "
|
3428 |
+
"direction sites"
|
3429 |
+
msgstr ""
|
3430 |
+
|
3431 |
+
#: widgets/premium-grid.php:608
|
3432 |
msgid "Content Alignment"
|
3433 |
msgstr ""
|
3434 |
|
3435 |
+
#: widgets/premium-grid.php:643
|
3436 |
msgid ""
|
3437 |
"If the content text is not suiting well on specific screen sizes, you may "
|
3438 |
"enable this option which will hide the description text."
|
3439 |
msgstr ""
|
3440 |
|
3441 |
+
#: widgets/premium-grid.php:679
|
3442 |
#, php-format
|
3443 |
msgid "%1$s Getting Started » %2$s"
|
3444 |
msgstr ""
|
3445 |
|
3446 |
+
#: widgets/premium-grid.php:688
|
3447 |
msgid "General"
|
3448 |
msgstr ""
|
3449 |
|
3450 |
+
#: widgets/premium-grid.php:800 widgets/premium-person.php:391
|
3451 |
msgid "Hover CSS Filters"
|
3452 |
msgstr ""
|
3453 |
|
3454 |
+
#: widgets/premium-grid.php:969
|
3455 |
msgid "Icons"
|
3456 |
msgstr ""
|
3457 |
|
3458 |
+
#: widgets/premium-grid.php:1226
|
3459 |
msgid "Background"
|
3460 |
msgstr ""
|
3461 |
|
3462 |
+
#: widgets/premium-grid.php:1356
|
3463 |
msgid "Spinner Color"
|
3464 |
msgstr ""
|
3465 |
|
3466 |
+
#: widgets/premium-grid.php:1444 widgets/premium-vscroll.php:605
|
3467 |
+
#: widgets/premium-vscroll.php:664
|
3468 |
msgid "Text Hover Color"
|
3469 |
msgstr ""
|
3470 |
|
3532 |
msgid "Reverse Direction"
|
3533 |
msgstr ""
|
3534 |
|
3535 |
+
#: widgets/premium-image-scroll.php:203 widgets/premium-modalbox.php:518
|
3536 |
msgid "Trigger"
|
3537 |
msgstr ""
|
3538 |
|
3548 |
msgid "Set the scroll speed value. The value will be counted in seconds (s)"
|
3549 |
msgstr ""
|
3550 |
|
3551 |
+
#: widgets/premium-image-scroll.php:260 widgets/premium-videobox.php:235
|
3552 |
+
#: widgets/premium-videobox.php:245
|
3553 |
msgid "Overlay"
|
3554 |
msgstr ""
|
3555 |
|
3569 |
#: widgets/premium-pricing-table.php:1040
|
3570 |
#: widgets/premium-pricing-table.php:1187
|
3571 |
#: widgets/premium-pricing-table.php:1298 widgets/premium-testimonials.php:517
|
3572 |
+
#: widgets/premium-vscroll.php:519
|
3573 |
msgid "Container"
|
3574 |
msgstr ""
|
3575 |
|
3757 |
msgid "Map"
|
3758 |
msgstr ""
|
3759 |
|
3760 |
+
#: widgets/premium-modalbox.php:74
|
3761 |
msgid "Header"
|
3762 |
msgstr ""
|
3763 |
|
3764 |
+
#: widgets/premium-modalbox.php:79
|
3765 |
msgid "Enable or disable modal header"
|
3766 |
msgstr ""
|
3767 |
|
3768 |
+
#: widgets/premium-modalbox.php:88
|
3769 |
msgid "Use font awesome icon or upload a custom image"
|
3770 |
msgstr ""
|
3771 |
|
3772 |
+
#: widgets/premium-modalbox.php:153
|
3773 |
msgid "Add a title for the modal box"
|
3774 |
msgstr ""
|
3775 |
|
3776 |
+
#: widgets/premium-modalbox.php:173
|
3777 |
msgid "Content to Show"
|
3778 |
msgstr ""
|
3779 |
|
3780 |
+
#: widgets/premium-modalbox.php:176
|
3781 |
msgid "Text Editor"
|
3782 |
msgstr ""
|
3783 |
|
3784 |
+
#: widgets/premium-modalbox.php:177 widgets/premium-vscroll.php:91
|
3785 |
msgid "Elementor Template"
|
3786 |
msgstr ""
|
3787 |
|
3788 |
+
#: widgets/premium-modalbox.php:188
|
3789 |
msgid "Modal content is a template which you can choose from Elementor library"
|
3790 |
msgstr ""
|
3791 |
|
3792 |
+
#: widgets/premium-modalbox.php:214 widgets/premium-modalbox.php:849
|
3793 |
msgid "Upper Close Button"
|
3794 |
msgstr ""
|
3795 |
|
3796 |
+
#: widgets/premium-modalbox.php:226 widgets/premium-modalbox.php:999
|
3797 |
msgid "Lower Close Button"
|
3798 |
msgstr ""
|
3799 |
|
3800 |
+
#: widgets/premium-modalbox.php:256
|
|
|
|
|
|
|
|
|
3801 |
msgid "Display Style"
|
3802 |
msgstr ""
|
3803 |
|
3804 |
+
#: widgets/premium-modalbox.php:258
|
3805 |
msgid "Choose where would you like the modal box appear on"
|
3806 |
msgstr ""
|
3807 |
|
3808 |
+
#: widgets/premium-modalbox.php:263
|
3809 |
msgid "Page Load"
|
3810 |
msgstr ""
|
3811 |
|
3812 |
+
#: widgets/premium-modalbox.php:274 widgets/premium-modalbox.php:461
|
3813 |
msgid "Premium Modal Box"
|
3814 |
msgstr ""
|
3815 |
|
3816 |
+
#: widgets/premium-modalbox.php:422
|
3817 |
msgid "Button Size"
|
3818 |
msgstr ""
|
3819 |
|
3820 |
+
#: widgets/premium-modalbox.php:471
|
3821 |
msgid "Delay in Popup Display (Sec)"
|
3822 |
msgstr ""
|
3823 |
|
3824 |
+
#: widgets/premium-modalbox.php:473
|
3825 |
msgid ""
|
3826 |
"When should the popup appear during page load? The value are counted in "
|
3827 |
"seconds"
|
3828 |
msgstr ""
|
3829 |
|
3830 |
+
#: widgets/premium-modalbox.php:580
|
3831 |
msgid "Icon Hover Color"
|
3832 |
msgstr ""
|
3833 |
|
3834 |
+
#: widgets/premium-modalbox.php:600 widgets/premium-modalbox.php:816
|
3835 |
+
#: widgets/premium-modalbox.php:1011 widgets/premium-pricing-table.php:849
|
3836 |
#: widgets/premium-pricing-table.php:922 widgets/premium-pricing-table.php:967
|
3837 |
#: widgets/premium-pricing-table.php:1019
|
3838 |
msgid "Typography"
|
3839 |
msgstr ""
|
3840 |
|
3841 |
+
#: widgets/premium-modalbox.php:792
|
3842 |
msgid "Heading"
|
3843 |
msgstr ""
|
3844 |
|
3845 |
+
#: widgets/premium-modalbox.php:1206
|
3846 |
msgid "Max Height"
|
3847 |
msgstr ""
|
3848 |
|
3849 |
+
#: widgets/premium-modalbox.php:1246
|
|
|
|
|
|
|
|
|
3850 |
msgid "Footer Background Color"
|
3851 |
msgstr ""
|
3852 |
|
3888 |
msgid "Google+"
|
3889 |
msgstr ""
|
3890 |
|
3891 |
+
#: widgets/premium-person.php:296 widgets/premium-videobox.php:71
|
3892 |
msgid "Youtube"
|
3893 |
msgstr ""
|
3894 |
|
3984 |
msgid "Unset"
|
3985 |
msgstr ""
|
3986 |
|
3987 |
+
#: widgets/premium-pricing-table.php:1164
|
3988 |
+
msgid "Spacing"
|
3989 |
+
msgstr ""
|
3990 |
+
|
3991 |
#: widgets/premium-pricing-table.php:1177
|
3992 |
msgid "Vertical Spacing"
|
3993 |
msgstr ""
|
4283 |
msgid "Icon Style"
|
4284 |
msgstr ""
|
4285 |
|
4286 |
+
#: widgets/premium-videobox.php:67
|
4287 |
msgid "Video Type"
|
4288 |
msgstr ""
|
4289 |
|
4290 |
+
#: widgets/premium-videobox.php:72
|
4291 |
msgid "Vimeo"
|
4292 |
msgstr ""
|
4293 |
|
4294 |
+
#: widgets/premium-videobox.php:73
|
4295 |
msgid "Self Hosted"
|
4296 |
msgstr ""
|
4297 |
|
4298 |
+
#: widgets/premium-videobox.php:85 widgets/premium-videobox.php:108
|
4299 |
msgid "Embed URL"
|
4300 |
msgstr ""
|
4301 |
|
4302 |
+
#: widgets/premium-videobox.php:95
|
4303 |
msgid "Video ID"
|
4304 |
msgstr ""
|
4305 |
|
4306 |
+
#: widgets/premium-videobox.php:96
|
4307 |
msgid ""
|
4308 |
"Enter the numbers and letters after the equal sign which located in your "
|
4309 |
"YouTube video link or after the slash sign in your Vimeo video link. For "
|
4310 |
"example, z1hQgVpfTKU"
|
4311 |
msgstr ""
|
4312 |
|
4313 |
+
#: widgets/premium-videobox.php:109
|
4314 |
msgid ""
|
4315 |
"Enter your YouTube/Vimeo video link. For example, https://www.youtube.com/"
|
4316 |
"embed/z1hQgVpfTKU"
|
4317 |
msgstr ""
|
4318 |
|
4319 |
+
#: widgets/premium-videobox.php:158
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4320 |
msgid "Player Controls"
|
4321 |
msgstr ""
|
4322 |
|
4323 |
+
#: widgets/premium-videobox.php:160
|
4324 |
msgid "Show/hide player controls"
|
4325 |
msgstr ""
|
4326 |
|
4327 |
+
#: widgets/premium-videobox.php:167
|
4328 |
msgid "Mute"
|
4329 |
msgstr ""
|
4330 |
|
4331 |
+
#: widgets/premium-videobox.php:169
|
4332 |
msgid "This will play the video muted"
|
4333 |
msgstr ""
|
4334 |
|
4335 |
+
#: widgets/premium-videobox.php:182
|
4336 |
msgid "Start Time"
|
4337 |
msgstr ""
|
4338 |
|
4339 |
+
#: widgets/premium-videobox.php:184
|
4340 |
msgid "Specify a start time (in seconds)"
|
4341 |
msgstr ""
|
4342 |
|
4343 |
+
#: widgets/premium-videobox.php:193
|
4344 |
msgid "End Time"
|
4345 |
msgstr ""
|
4346 |
|
4347 |
+
#: widgets/premium-videobox.php:195
|
4348 |
msgid "Specify an end time (in seconds)"
|
4349 |
msgstr ""
|
4350 |
|
4351 |
+
#: widgets/premium-videobox.php:204
|
4352 |
+
msgid "Suggested Videos From"
|
4353 |
+
msgstr ""
|
4354 |
+
|
4355 |
+
#: widgets/premium-videobox.php:207
|
4356 |
+
msgid "Current Channel"
|
4357 |
+
msgstr ""
|
4358 |
+
|
4359 |
+
#: widgets/premium-videobox.php:208
|
4360 |
+
msgid "Any Channel"
|
4361 |
+
msgstr ""
|
4362 |
+
|
4363 |
+
#: widgets/premium-videobox.php:218
|
4364 |
msgid "Aspect Ratio"
|
4365 |
msgstr ""
|
4366 |
|
4367 |
+
#: widgets/premium-videobox.php:255
|
4368 |
msgid "Choose an image for the video box"
|
4369 |
msgstr ""
|
4370 |
|
4371 |
+
#: widgets/premium-videobox.php:269 widgets/premium-videobox.php:275
|
4372 |
+
#: widgets/premium-videobox.php:420
|
4373 |
msgid "Play Icon"
|
4374 |
msgstr ""
|
4375 |
|
4376 |
+
#: widgets/premium-videobox.php:283 widgets/premium-videobox.php:363
|
4377 |
msgid "Horizontal Position (%)"
|
4378 |
msgstr ""
|
4379 |
|
4380 |
+
#: widgets/premium-videobox.php:300 widgets/premium-videobox.php:346
|
4381 |
msgid "Vertical Position (%)"
|
4382 |
msgstr ""
|
4383 |
|
4384 |
+
#: widgets/premium-videobox.php:325 widgets/premium-videobox.php:548
|
4385 |
msgid "Video Text"
|
4386 |
msgstr ""
|
4387 |
|
4388 |
+
#: widgets/premium-videobox.php:335
|
4389 |
msgid "Play Video"
|
4390 |
msgstr ""
|
4391 |
|
4392 |
+
#: widgets/premium-videobox.php:523
|
4393 |
msgid "Hover Animation"
|
4394 |
msgstr ""
|
4395 |
|
4396 |
+
#: widgets/premium-videobox.php:525
|
4397 |
msgid ""
|
4398 |
"Hover animation works only when you set a background color or image for play "
|
4399 |
"icon"
|
4400 |
msgstr ""
|
4401 |
|
4402 |
+
#: widgets/premium-videobox.php:532
|
4403 |
msgid "Hover Padding"
|
4404 |
msgstr ""
|
4405 |
|
4406 |
+
#: widgets/premium-vscroll.php:79 widgets/premium-vscroll.php:114
|
4407 |
msgid "Section ID"
|
4408 |
msgstr ""
|
4409 |
|
4410 |
+
#: widgets/premium-vscroll.php:80
|
4411 |
msgid "Elementor Templates"
|
4412 |
msgstr ""
|
4413 |
|
4414 |
+
#: widgets/premium-vscroll.php:83
|
4415 |
msgid "Choose which method you prefer to insert sections."
|
4416 |
msgstr ""
|
4417 |
|
4418 |
+
#: widgets/premium-vscroll.php:134
|
|
|
|
|
|
|
|
|
4419 |
msgid "Dots Tooltips"
|
4420 |
msgstr ""
|
4421 |
|
4422 |
+
#: widgets/premium-vscroll.php:142
|
4423 |
msgid "Shape"
|
4424 |
msgstr ""
|
4425 |
|
4426 |
+
#: widgets/premium-vscroll.php:145
|
4427 |
msgid "Circles"
|
4428 |
msgstr ""
|
4429 |
|
4430 |
+
#: widgets/premium-vscroll.php:146
|
4431 |
msgid "Lines"
|
4432 |
msgstr ""
|
4433 |
|
4434 |
+
#: widgets/premium-vscroll.php:157
|
4435 |
msgid "Dots Tooltips Text"
|
4436 |
msgstr ""
|
4437 |
|
4438 |
+
#: widgets/premium-vscroll.php:160
|
4439 |
msgid "Add text for each navigation dot separated by ','"
|
4440 |
msgstr ""
|
4441 |
|
4442 |
+
#: widgets/premium-vscroll.php:171
|
4443 |
msgid "Navigation"
|
4444 |
msgstr ""
|
4445 |
|
4446 |
+
#: widgets/premium-vscroll.php:177 widgets/premium-vscroll.php:565
|
4447 |
msgid "Navigation Menu"
|
4448 |
msgstr ""
|
4449 |
|
4450 |
+
#: widgets/premium-vscroll.php:179
|
4451 |
msgid "This option works only on the frontend"
|
4452 |
msgstr ""
|
4453 |
|
4454 |
+
#: widgets/premium-vscroll.php:200
|
4455 |
msgid "Offset Top"
|
4456 |
msgstr ""
|
4457 |
|
4458 |
+
#: widgets/premium-vscroll.php:214
|
4459 |
msgid "Offset Left"
|
4460 |
msgstr ""
|
4461 |
|
4462 |
+
#: widgets/premium-vscroll.php:229
|
4463 |
msgid "Offset Right"
|
4464 |
msgstr ""
|
4465 |
|
4466 |
+
#: widgets/premium-vscroll.php:246
|
4467 |
msgid "List Item"
|
4468 |
msgstr ""
|
4469 |
|
4470 |
+
#: widgets/premium-vscroll.php:254
|
4471 |
msgid "Menu Items"
|
4472 |
msgstr ""
|
4473 |
|
4474 |
+
#: widgets/premium-vscroll.php:266
|
4475 |
msgid "Dots Horizontal Position"
|
4476 |
msgstr ""
|
4477 |
|
4478 |
+
#: widgets/premium-vscroll.php:278
|
4479 |
msgid "Dots Vertical Position"
|
4480 |
msgstr ""
|
4481 |
|
4482 |
+
#: widgets/premium-vscroll.php:293
|
4483 |
msgid "Scroll Settings"
|
4484 |
msgstr ""
|
4485 |
|
4486 |
+
#: widgets/premium-vscroll.php:299
|
4487 |
msgid "Scroll Speed"
|
4488 |
msgstr ""
|
4489 |
|
4490 |
+
#: widgets/premium-vscroll.php:301
|
4491 |
msgid "Set scolling speed in seconds, default: 0.7"
|
4492 |
msgstr ""
|
4493 |
|
4494 |
+
#: widgets/premium-vscroll.php:307
|
4495 |
msgid "Full Section Scroll"
|
4496 |
msgstr ""
|
4497 |
|
4498 |
+
#: widgets/premium-vscroll.php:315
|
4499 |
msgid "Save to Browser History"
|
4500 |
msgstr ""
|
4501 |
|
4502 |
+
#: widgets/premium-vscroll.php:317
|
4503 |
msgid ""
|
4504 |
"Enabling this option will save the current section ID to the browser history"
|
4505 |
msgstr ""
|
4506 |
|
4507 |
+
#: widgets/premium-vscroll.php:346
|
4508 |
msgid "Tooltips"
|
4509 |
msgstr ""
|
4510 |
|
4511 |
+
#: widgets/premium-vscroll.php:355
|
4512 |
msgid "Tooltips Text Color"
|
4513 |
msgstr ""
|
4514 |
|
4515 |
+
#: widgets/premium-vscroll.php:384
|
4516 |
msgid "Tooltips Background"
|
4517 |
msgstr ""
|
4518 |
|
4519 |
+
#: widgets/premium-vscroll.php:475
|
4520 |
msgid "Dots Color"
|
4521 |
msgstr ""
|
4522 |
|
4523 |
+
#: widgets/premium-vscroll.php:489
|
4524 |
msgid "Active Dot Color"
|
4525 |
msgstr ""
|
4526 |
|
4527 |
+
#: widgets/premium-vscroll.php:503
|
4528 |
msgid "Dots Border Color"
|
4529 |
msgstr ""
|
4530 |
|
4531 |
+
#: widgets/premium-vscroll.php:644
|
4532 |
msgid "Active"
|
4533 |
msgstr ""
|
premium-addons-for-elementor.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Premium Addons for Elementor
|
4 |
Description: Premium Addons Plugin Includes 22+ premium widgets for Elementor Page Builder.
|
5 |
Plugin URI: https://premiumaddons.com
|
6 |
-
Version: 3.6.
|
7 |
Author: Leap13
|
8 |
Author URI: https://leap13.com/
|
9 |
Text Domain: premium-addons-for-elementor
|
@@ -14,12 +14,12 @@ License: GNU General Public License v3.0
|
|
14 |
if ( ! defined('ABSPATH') ) exit; // No access of directly access
|
15 |
|
16 |
// Define Constants
|
17 |
-
define('PREMIUM_ADDONS_VERSION', '3.6.
|
18 |
define('PREMIUM_ADDONS_URL', plugins_url('/', __FILE__));
|
19 |
define('PREMIUM_ADDONS_PATH', plugin_dir_path(__FILE__));
|
20 |
define('PREMIUM_ADDONS_FILE', __FILE__);
|
21 |
define('PREMIUM_ADDONS_BASENAME', plugin_basename( PREMIUM_ADDONS_FILE ) );
|
22 |
-
define('PREMIUM_ADDONS_STABLE_VERSION', '3.6.
|
23 |
|
24 |
if( ! class_exists('Premium_Addons_Elementor') ) {
|
25 |
|
3 |
Plugin Name: Premium Addons for Elementor
|
4 |
Description: Premium Addons Plugin Includes 22+ premium widgets for Elementor Page Builder.
|
5 |
Plugin URI: https://premiumaddons.com
|
6 |
+
Version: 3.6.3
|
7 |
Author: Leap13
|
8 |
Author URI: https://leap13.com/
|
9 |
Text Domain: premium-addons-for-elementor
|
14 |
if ( ! defined('ABSPATH') ) exit; // No access of directly access
|
15 |
|
16 |
// Define Constants
|
17 |
+
define('PREMIUM_ADDONS_VERSION', '3.6.3');
|
18 |
define('PREMIUM_ADDONS_URL', plugins_url('/', __FILE__));
|
19 |
define('PREMIUM_ADDONS_PATH', plugin_dir_path(__FILE__));
|
20 |
define('PREMIUM_ADDONS_FILE', __FILE__);
|
21 |
define('PREMIUM_ADDONS_BASENAME', plugin_basename( PREMIUM_ADDONS_FILE ) );
|
22 |
+
define('PREMIUM_ADDONS_STABLE_VERSION', '3.6.2');
|
23 |
|
24 |
if( ! class_exists('Premium_Addons_Elementor') ) {
|
25 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Donate link: http://premiumaddons.com
|
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 5.2.2
|
7 |
Requires PHP: 5.4
|
8 |
-
Stable tag: 3.6.
|
9 |
License: GPL v3.0
|
10 |
License URI: https://opensource.org/licenses/GPL-3.0
|
11 |
|
@@ -142,6 +142,10 @@ Premium Addons for Elementor is 100% Ads Free, Ads can only be detected from You
|
|
142 |
|
143 |
== Changelog ==
|
144 |
|
|
|
|
|
|
|
|
|
145 |
= 3.6.2 =
|
146 |
|
147 |
- Fixed: `Filter Tabs` option doesn't work after v3.5.7 in Blog widget.
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 5.2.2
|
7 |
Requires PHP: 5.4
|
8 |
+
Stable tag: 3.6.3
|
9 |
License: GPL v3.0
|
10 |
License URI: https://opensource.org/licenses/GPL-3.0
|
11 |
|
142 |
|
143 |
== Changelog ==
|
144 |
|
145 |
+
= 3.6.3 =
|
146 |
+
|
147 |
+
- Fixed: Filter by Widget / Addon, Filter by Category inputs removed after `Back to Library` button is clicked.
|
148 |
+
|
149 |
= 3.6.2 =
|
150 |
|
151 |
- Fixed: `Filter Tabs` option doesn't work after v3.5.7 in Blog widget.
|
widgets/premium-grid.php
CHANGED
@@ -61,6 +61,10 @@ class Premium_Grid extends Widget_Base {
|
|
61 |
public function get_categories() {
|
62 |
return ['premium-elements'];
|
63 |
}
|
|
|
|
|
|
|
|
|
64 |
|
65 |
protected function _register_controls() {
|
66 |
|
@@ -1690,9 +1694,9 @@ class Premium_Grid extends Widget_Base {
|
|
1690 |
$image_src_size = Group_Control_Image_Size::get_attachment_image_src( $image_src['id'], 'thumbnail', $settings );
|
1691 |
if( empty( $image_src_size ) ) : $image_src_size = $image_src['url']; else: $image_src_size = $image_src_size; endif;
|
1692 |
?>
|
1693 |
-
<img src="<?php echo $image_src_size; ?>"
|
1694 |
<?php else : ?>
|
1695 |
-
<img src="<?php echo esc_url($image['premium_gallery_img']['url']); ?>"
|
1696 |
<?php endif; ?>
|
1697 |
</div>
|
1698 |
<?php if( $layout == 'default' || $layout == 'style1' ) : ?>
|
61 |
public function get_categories() {
|
62 |
return ['premium-elements'];
|
63 |
}
|
64 |
+
|
65 |
+
public function get_keywords() {
|
66 |
+
return ['layout', 'gallery', 'images', 'visual', 'masonry'];
|
67 |
+
}
|
68 |
|
69 |
protected function _register_controls() {
|
70 |
|
1694 |
$image_src_size = Group_Control_Image_Size::get_attachment_image_src( $image_src['id'], 'thumbnail', $settings );
|
1695 |
if( empty( $image_src_size ) ) : $image_src_size = $image_src['url']; else: $image_src_size = $image_src_size; endif;
|
1696 |
?>
|
1697 |
+
<img class="pa-gallery-image" src="<?php echo $image_src_size; ?>" alt="<?php echo $alt; ?>">
|
1698 |
<?php else : ?>
|
1699 |
+
<img class="pa-gallery-image" src="<?php echo esc_url($image['premium_gallery_img']['url']); ?>" alt="<?php echo $alt; ?>">
|
1700 |
<?php endif; ?>
|
1701 |
</div>
|
1702 |
<?php if( $layout == 'default' || $layout == 'style1' ) : ?>
|