Version Description
- Tweak: Added Custom ID option for markers in Google Maps widget.
Download this release
Release Info
Developer | leap13 |
Plugin | Premium Addons for Elementor |
Version | 4.1.1 |
Comparing to | |
See all releases |
Code changes from version 4.1.0 to 4.1.1
- assets/frontend/js/premium-maps.js +48 -1
- assets/frontend/min-js/premium-maps.min.js +1 -1
- languages/premium-addons-for-elementor.pot +420 -366
- premium-addons-for-elementor.php +2 -2
- readme.txt +5 -1
- widgets/premium-image-scroll.php +12 -12
- widgets/premium-lottie.php +3 -3
- widgets/premium-maps.php +37 -22
- widgets/premium-videobox.php +12 -12
assets/frontend/js/premium-maps.js
CHANGED
@@ -1,7 +1,9 @@
|
|
1 |
jQuery(window).on("elementor/frontend/init", function () {
|
|
|
2 |
elementorFrontend.hooks.addAction(
|
3 |
"frontend/element_ready/premium-addon-maps.default",
|
4 |
function ($scope, $) {
|
|
|
5 |
var mapElement = $scope.find(".premium_maps_map_height");
|
6 |
|
7 |
var mapSettings = mapElement.data("settings");
|
@@ -60,6 +62,7 @@ jQuery(window).on("elementor/frontend/init", function () {
|
|
60 |
),
|
61 |
icon_img = pin.attr("data-icon"),
|
62 |
maxWidth = pin.attr("data-max-width"),
|
|
|
63 |
iconSize = parseInt(pin.attr("data-icon-size"));
|
64 |
|
65 |
if (icon_img != "") {
|
@@ -84,13 +87,36 @@ jQuery(window).on("elementor/frontend/init", function () {
|
|
84 |
icon: icon
|
85 |
});
|
86 |
|
|
|
87 |
// add to array
|
88 |
map.markers.push(marker);
|
89 |
|
90 |
premiumMapMarkers.push(marker);
|
91 |
|
92 |
-
//
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
|
|
|
94 |
if (
|
95 |
pin.find(".premium-maps-info-title").html() ||
|
96 |
pin.find(".premium-maps-info-desc").html()
|
@@ -115,6 +141,27 @@ jQuery(window).on("elementor/frontend/init", function () {
|
|
115 |
}
|
116 |
// show info window when marker is clicked
|
117 |
google.maps.event.addListener(marker, "click", function () {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
infowindow.open(map, marker);
|
119 |
});
|
120 |
}
|
1 |
jQuery(window).on("elementor/frontend/init", function () {
|
2 |
+
|
3 |
elementorFrontend.hooks.addAction(
|
4 |
"frontend/element_ready/premium-addon-maps.default",
|
5 |
function ($scope, $) {
|
6 |
+
|
7 |
var mapElement = $scope.find(".premium_maps_map_height");
|
8 |
|
9 |
var mapSettings = mapElement.data("settings");
|
62 |
),
|
63 |
icon_img = pin.attr("data-icon"),
|
64 |
maxWidth = pin.attr("data-max-width"),
|
65 |
+
customID = pin.attr("data-id"),
|
66 |
iconSize = parseInt(pin.attr("data-icon-size"));
|
67 |
|
68 |
if (icon_img != "") {
|
87 |
icon: icon
|
88 |
});
|
89 |
|
90 |
+
|
91 |
// add to array
|
92 |
map.markers.push(marker);
|
93 |
|
94 |
premiumMapMarkers.push(marker);
|
95 |
|
96 |
+
//Used with Carousel Custom Navigation option
|
97 |
+
if (customID) {
|
98 |
+
google.maps.event.addListener(marker, "click", function () {
|
99 |
+
console.log(customID);
|
100 |
+
var $carouselWidget = $(".premium-carousel-wrapper");
|
101 |
+
|
102 |
+
if ($carouselWidget.length) {
|
103 |
+
$carouselWidget.map(function (index, item) {
|
104 |
+
var carouselSettings = $(item).data("settings");
|
105 |
+
|
106 |
+
if (carouselSettings.navigation) {
|
107 |
+
if (-1 != carouselSettings.navigation.indexOf("#" + customID)) {
|
108 |
+
var slideIndex = carouselSettings.navigation.indexOf("#" + customID);
|
109 |
+
$(item).find(".premium-carousel-inner").slick("slickGoTo", slideIndex);
|
110 |
+
}
|
111 |
+
}
|
112 |
+
})
|
113 |
+
|
114 |
+
}
|
115 |
+
|
116 |
+
});
|
117 |
+
}
|
118 |
|
119 |
+
// if marker contains HTML, add it to an infoWindow
|
120 |
if (
|
121 |
pin.find(".premium-maps-info-title").html() ||
|
122 |
pin.find(".premium-maps-info-desc").html()
|
141 |
}
|
142 |
// show info window when marker is clicked
|
143 |
google.maps.event.addListener(marker, "click", function () {
|
144 |
+
|
145 |
+
//Used with Carousel Custom Navigation option
|
146 |
+
if (customID) {
|
147 |
+
|
148 |
+
var $carouselWidget = $(".premium-carousel-wrapper");
|
149 |
+
|
150 |
+
if ($carouselWidget.length) {
|
151 |
+
$carouselWidget.map(function (index, item) {
|
152 |
+
var carouselSettings = $(item).data("settings");
|
153 |
+
|
154 |
+
if (carouselSettings.navigation) {
|
155 |
+
if (-1 != carouselSettings.navigation.indexOf("#" + customID)) {
|
156 |
+
var slideIndex = carouselSettings.navigation.indexOf("#" + customID);
|
157 |
+
$carouselWidget.find(".premium-carousel-inner").slick("slickGoTo", slideIndex);
|
158 |
+
}
|
159 |
+
}
|
160 |
+
})
|
161 |
+
|
162 |
+
}
|
163 |
+
|
164 |
+
}
|
165 |
infowindow.open(map, marker);
|
166 |
});
|
167 |
}
|
assets/frontend/min-js/premium-maps.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
jQuery(window).on("elementor/frontend/init",function(){elementorFrontend.hooks.addAction("frontend/element_ready/premium-addon-maps.default",function(e,
|
1 |
+
jQuery(window).on("elementor/frontend/init",function(){elementorFrontend.hooks.addAction("frontend/element_ready/premium-addon-maps.default",function(e,f){var a=e.find(".premium_maps_map_height"),v=a.data("settings"),n=a.data("style"),h=[];if(premiumMap=function(e,a,n){var o=JSON.parse(a.scrollwheel),t=JSON.parse(a.streetViewControl),r=JSON.parse(a.fullScreen),i=JSON.parse(a.zoomControl),s=JSON.parse(a.typeControl),p=JSON.parse(a.centerlat),l=JSON.parse(a.centerlong),m=JSON.parse(a.automaticOpen),d=JSON.parse(a.hoverOpen),c=JSON.parse(a.hoverClose),g={zoom:a.zoom,mapTypeId:a.maptype,center:{lat:p,lng:l},scrollwheel:o,streetViewControl:t,fullscreenControl:r,zoomControl:i,mapTypeControl:s,styles:n};"yes"===v.drag&&(g.gestureHandling="none");var u=e.find(".premium-pin");return(e=new google.maps.Map(e[0],g)).markers=[],u.each(function(){!function(e,a,n,o,t){var r=new google.maps.LatLng(e.attr("data-lat"),e.attr("data-lng")),i=e.attr("data-icon"),s=e.attr("data-max-width"),p=e.attr("data-id"),l=parseInt(e.attr("data-icon-size"));if(""!=i){var m={url:e.attr("data-icon")};l&&(m.scaledSize=new google.maps.Size(l,l),m.origin=new google.maps.Point(0,0),m.anchor=new google.maps.Point(l/2,l))}var d=new google.maps.Marker({position:r,map:a,icon:m});a.markers.push(d),h.push(d),p&&google.maps.event.addListener(d,"click",function(){console.log(p);var e=f(".premium-carousel-wrapper");e.length&&e.map(function(e,a){var n=f(a).data("settings");if(n.navigation&&-1!=n.navigation.indexOf("#"+p)){var o=n.navigation.indexOf("#"+p);f(a).find(".premium-carousel-inner").slick("slickGoTo",o)}})});if(e.find(".premium-maps-info-title").html()||e.find(".premium-maps-info-desc").html()){var c=new google.maps.InfoWindow({maxWidth:s,content:e.html()});n&&c.open(a,d),o&&(google.maps.event.addListener(d,"mouseover",function(){c.open(a,d)}),t&&google.maps.event.addListener(d,"mouseout",function(){c.close(a,d)})),google.maps.event.addListener(d,"click",function(){if(p){var t=f(".premium-carousel-wrapper");t.length&&t.map(function(e,a){var n=f(a).data("settings");if(n.navigation&&-1!=n.navigation.indexOf("#"+p)){var o=n.navigation.indexOf("#"+p);t.find(".premium-carousel-inner").slick("slickGoTo",o)}})}c.open(a,d)})}}(jQuery(this),e,m,d,c)}),e}(a,v,n),JSON.parse(v.cluster))new MarkerClusterer(premiumMap,h,{imagePath:"https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/m"})})});
|
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: 2020-
|
6 |
"PO-Revision-Date: 2018-02-15 10:41+0200\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Leap13\n"
|
@@ -194,8 +194,8 @@ msgstr ""
|
|
194 |
#: modules/woocommerce/widgets/woo-products.php:105
|
195 |
#: modules/woocommerce/widgets/woo-products.php:952
|
196 |
#: widgets/premium-blog.php:911 widgets/premium-carousel.php:37
|
197 |
-
#: widgets/premium-carousel.php:79 widgets/premium-person.php:
|
198 |
-
#: widgets/premium-person.php:
|
199 |
msgid "Carousel"
|
200 |
msgstr ""
|
201 |
|
@@ -229,6 +229,7 @@ msgid "Fancy Text"
|
|
229 |
msgstr ""
|
230 |
|
231 |
#: admin/includes/elements.php:72 admin/includes/elements.php:469
|
|
|
232 |
msgid "Heading"
|
233 |
msgstr ""
|
234 |
|
@@ -359,7 +360,7 @@ msgstr ""
|
|
359 |
|
360 |
#: admin/includes/elements.php:285 admin/includes/elements.php:712
|
361 |
#: widgets/premium-banner.php:372 widgets/premium-banner.php:835
|
362 |
-
#: widgets/premium-blog.php:
|
363 |
#: widgets/premium-button.php:80 widgets/premium-button.php:655
|
364 |
#: widgets/premium-contactform.php:202 widgets/premium-contactform.php:438
|
365 |
#: widgets/premium-image-button.php:77 widgets/premium-image-button.php:561
|
@@ -1108,22 +1109,22 @@ msgstr ""
|
|
1108 |
msgid "Vertical Scroll: Section ID"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: includes/elementor-helper.php:
|
1112 |
msgid "No Comments"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#: includes/elementor-helper.php:
|
1116 |
msgid "1 Comment"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
-
#: includes/elementor-helper.php:
|
1120 |
msgid "% Comments"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
-
#: includes/elementor-helper.php:
|
1124 |
#: modules/woocommerce/widgets/woo-products.php:574
|
1125 |
#: modules/woocommerce/widgets/woo-products.php:774
|
1126 |
-
#: widgets/premium-blog.php:
|
1127 |
msgid "Pagination"
|
1128 |
msgstr ""
|
1129 |
|
@@ -1431,13 +1432,13 @@ msgstr ""
|
|
1431 |
#: modules/woocommerce/skins/skin-5.php:106
|
1432 |
#: modules/woocommerce/skins/skin-6.php:160
|
1433 |
#: modules/woocommerce/widgets/woo-products.php:734
|
1434 |
-
#: widgets/premium-banner.php:82 widgets/premium-blog.php:
|
1435 |
#: widgets/premium-counter.php:200 widgets/premium-grid.php:1098
|
1436 |
#: widgets/premium-icon-list.php:123 widgets/premium-image-scroll.php:82
|
1437 |
#: widgets/premium-image-scroll.php:498 widgets/premium-image-separator.php:92
|
1438 |
#: widgets/premium-image-separator.php:115 widgets/premium-modalbox.php:382
|
1439 |
-
#: widgets/premium-modalbox.php:576 widgets/premium-person.php:
|
1440 |
-
#: widgets/premium-person.php:
|
1441 |
#: widgets/premium-testimonials.php:75 widgets/premium-testimonials.php:297
|
1442 |
#: widgets/premium-title.php:132 widgets/premium-videobox.php:980
|
1443 |
msgid "Image"
|
@@ -1481,14 +1482,14 @@ msgstr ""
|
|
1481 |
#: modules/woocommerce/skins/skin-6.php:215
|
1482 |
#: modules/woocommerce/widgets/woo-products.php:627
|
1483 |
#: widgets/premium-banner.php:447 widgets/premium-blog.php:617
|
1484 |
-
#: widgets/premium-blog.php:870 widgets/premium-blog.php:
|
1485 |
#: widgets/premium-button.php:577 widgets/premium-countdown.php:167
|
1486 |
#: widgets/premium-counter.php:152 widgets/premium-dual-header.php:194
|
1487 |
#: widgets/premium-fancytext.php:134 widgets/premium-grid.php:374
|
1488 |
#: widgets/premium-icon-list.php:707 widgets/premium-image-button.php:483
|
1489 |
#: widgets/premium-image-separator.php:217 widgets/premium-lottie.php:264
|
1490 |
-
#: widgets/premium-maps.php:
|
1491 |
-
#: widgets/premium-modalbox.php:695 widgets/premium-person.php:
|
1492 |
#: widgets/premium-pricing-table.php:421 widgets/premium-pricing-table.php:1549
|
1493 |
#: widgets/premium-title.php:289 widgets/premium-title.php:318
|
1494 |
msgid "Alignment"
|
@@ -1502,7 +1503,7 @@ msgstr ""
|
|
1502 |
#: modules/woocommerce/skins/skin-6.php:219
|
1503 |
#: modules/woocommerce/widgets/woo-products.php:631
|
1504 |
#: widgets/premium-banner.php:451 widgets/premium-blog.php:621
|
1505 |
-
#: widgets/premium-blog.php:874 widgets/premium-blog.php:
|
1506 |
#: widgets/premium-button.php:581 widgets/premium-countdown.php:171
|
1507 |
#: widgets/premium-counter.php:156 widgets/premium-counter.php:288
|
1508 |
#: widgets/premium-counter.php:312 widgets/premium-counter.php:338
|
@@ -1512,9 +1513,9 @@ msgstr ""
|
|
1512 |
#: widgets/premium-grid.php:842 widgets/premium-icon-list.php:712
|
1513 |
#: widgets/premium-icon-list.php:757 widgets/premium-icon-list.php:791
|
1514 |
#: widgets/premium-image-button.php:487 widgets/premium-image-separator.php:221
|
1515 |
-
#: widgets/premium-lottie.php:268 widgets/premium-maps.php:
|
1516 |
-
#: widgets/premium-maps.php:
|
1517 |
-
#: widgets/premium-person.php:
|
1518 |
#: widgets/premium-pricing-table.php:425 widgets/premium-pricing-table.php:652
|
1519 |
#: widgets/premium-pricing-table.php:1553 widgets/premium-progressbar.php:397
|
1520 |
#: widgets/premium-title.php:240 widgets/premium-title.php:293
|
@@ -1532,7 +1533,7 @@ msgstr ""
|
|
1532 |
#: modules/woocommerce/widgets/woo-products.php:635
|
1533 |
#: widgets/premium-banner.php:455 widgets/premium-blog.php:625
|
1534 |
#: widgets/premium-blog.php:652 widgets/premium-blog.php:878
|
1535 |
-
#: widgets/premium-blog.php:
|
1536 |
#: widgets/premium-countdown.php:175 widgets/premium-counter.php:160
|
1537 |
#: widgets/premium-counter.php:316 widgets/premium-counter.php:342
|
1538 |
#: widgets/premium-dual-header.php:202 widgets/premium-dual-header.php:240
|
@@ -1541,9 +1542,9 @@ msgstr ""
|
|
1541 |
#: widgets/premium-grid.php:382 widgets/premium-grid.php:846
|
1542 |
#: widgets/premium-icon-list.php:716 widgets/premium-icon-list.php:761
|
1543 |
#: widgets/premium-image-button.php:491 widgets/premium-image-separator.php:225
|
1544 |
-
#: widgets/premium-lottie.php:272 widgets/premium-maps.php:
|
1545 |
-
#: widgets/premium-maps.php:
|
1546 |
-
#: widgets/premium-person.php:
|
1547 |
#: widgets/premium-pricing-table.php:429 widgets/premium-pricing-table.php:1557
|
1548 |
#: widgets/premium-progressbar.php:401 widgets/premium-title.php:244
|
1549 |
#: widgets/premium-title.php:297 widgets/premium-title.php:326
|
@@ -1559,7 +1560,7 @@ msgstr ""
|
|
1559 |
#: modules/woocommerce/skins/skin-6.php:227
|
1560 |
#: modules/woocommerce/widgets/woo-products.php:639
|
1561 |
#: widgets/premium-banner.php:459 widgets/premium-blog.php:629
|
1562 |
-
#: widgets/premium-blog.php:882 widgets/premium-blog.php:
|
1563 |
#: widgets/premium-button.php:589 widgets/premium-countdown.php:179
|
1564 |
#: widgets/premium-counter.php:164 widgets/premium-counter.php:287
|
1565 |
#: widgets/premium-counter.php:320 widgets/premium-counter.php:346
|
@@ -1569,9 +1570,9 @@ msgstr ""
|
|
1569 |
#: widgets/premium-grid.php:850 widgets/premium-icon-list.php:720
|
1570 |
#: widgets/premium-icon-list.php:765 widgets/premium-icon-list.php:787
|
1571 |
#: widgets/premium-image-button.php:495 widgets/premium-image-separator.php:229
|
1572 |
-
#: widgets/premium-lottie.php:276 widgets/premium-maps.php:
|
1573 |
-
#: widgets/premium-maps.php:
|
1574 |
-
#: widgets/premium-person.php:
|
1575 |
#: widgets/premium-pricing-table.php:433 widgets/premium-pricing-table.php:656
|
1576 |
#: widgets/premium-pricing-table.php:1561 widgets/premium-progressbar.php:405
|
1577 |
#: widgets/premium-title.php:248 widgets/premium-title.php:301
|
@@ -1628,30 +1629,30 @@ msgstr ""
|
|
1628 |
#: modules/woocommerce/skins/skin-6.php:1147
|
1629 |
#: modules/woocommerce/widgets/woo-products.php:785
|
1630 |
#: modules/woocommerce/widgets/woo-products.php:1024
|
1631 |
-
#: widgets/premium-banner.php:942 widgets/premium-blog.php:
|
1632 |
-
#: widgets/premium-blog.php:
|
1633 |
-
#: widgets/premium-blog.php:
|
1634 |
-
#: widgets/premium-blog.php:
|
1635 |
#: widgets/premium-button.php:787 widgets/premium-button.php:952
|
1636 |
#: widgets/premium-contactform.php:270 widgets/premium-contactform.php:454
|
1637 |
-
#: widgets/premium-
|
1638 |
-
#: widgets/premium-
|
1639 |
-
#: widgets/premium-
|
1640 |
-
#: widgets/premium-grid.php:
|
1641 |
-
#: widgets/premium-grid.php:
|
1642 |
-
#: widgets/premium-grid.php:
|
1643 |
-
#: widgets/premium-
|
1644 |
-
#: widgets/premium-icon-list.php:
|
1645 |
-
#: widgets/premium-image-button.php:
|
1646 |
-
#: widgets/premium-
|
1647 |
-
#: widgets/premium-maps.php:
|
1648 |
-
#: widgets/premium-
|
1649 |
-
#: widgets/premium-modalbox.php:
|
1650 |
-
#: widgets/premium-
|
1651 |
-
#: widgets/premium-person.php:
|
1652 |
-
#: widgets/premium-person.php:
|
1653 |
-
#: widgets/premium-
|
1654 |
-
#: widgets/premium-pricing-table.php:1040
|
1655 |
#: widgets/premium-pricing-table.php:1361
|
1656 |
#: widgets/premium-pricing-table.php:1527
|
1657 |
#: widgets/premium-pricing-table.php:1704
|
@@ -1680,17 +1681,17 @@ msgstr ""
|
|
1680 |
#: modules/woocommerce/skins/skin-6.php:297
|
1681 |
#: modules/woocommerce/widgets/woo-products.php:532
|
1682 |
#: widgets/premium-banner.php:321 widgets/premium-banner.php:716
|
1683 |
-
#: widgets/premium-blog.php:388 widgets/premium-blog.php:
|
1684 |
#: widgets/premium-counter.php:80 widgets/premium-counter.php:581
|
1685 |
#: widgets/premium-grid.php:560 widgets/premium-grid.php:1192
|
1686 |
#: widgets/premium-icon-list.php:95 widgets/premium-icon-list.php:1243
|
1687 |
-
#: widgets/premium-maps.php:
|
1688 |
-
#: widgets/premium-modalbox.php:227 widgets/premium-person.php:
|
1689 |
-
#: widgets/premium-person.php:
|
1690 |
#: widgets/premium-pricing-table.php:761 widgets/premium-pricing-table.php:980
|
1691 |
#: widgets/premium-progressbar.php:187 widgets/premium-progressbar.php:632
|
1692 |
-
#: widgets/premium-title.php:
|
1693 |
-
#: widgets/premium-title.php:
|
1694 |
msgid "Title"
|
1695 |
msgstr ""
|
1696 |
|
@@ -1764,32 +1765,33 @@ msgstr ""
|
|
1764 |
#: modules/woocommerce/widgets/woo-products.php:962
|
1765 |
#: modules/woocommerce/widgets/woo-products.php:1038
|
1766 |
#: widgets/premium-banner.php:723 widgets/premium-banner.php:790
|
1767 |
-
#: widgets/premium-banner.php:846 widgets/premium-blog.php:
|
1768 |
-
#: widgets/premium-blog.php:
|
1769 |
-
#: widgets/premium-blog.php:
|
1770 |
-
#: widgets/premium-blog.php:
|
1771 |
-
#: widgets/premium-blog.php:
|
1772 |
-
#: widgets/premium-blog.php:
|
1773 |
-
#: widgets/premium-blog.php:
|
1774 |
#: widgets/premium-carousel.php:718 widgets/premium-carousel.php:806
|
1775 |
-
#: widgets/premium-countdown.php:
|
1776 |
-
#: widgets/premium-countdown.php:
|
1777 |
-
#: widgets/premium-counter.php:
|
1778 |
-
#: widgets/premium-
|
1779 |
-
#: widgets/premium-fancytext.php:
|
1780 |
-
#: widgets/premium-
|
1781 |
-
#: widgets/premium-grid.php:
|
1782 |
-
#: widgets/premium-
|
1783 |
-
#: widgets/premium-icon-list.php:
|
1784 |
-
#: widgets/premium-
|
1785 |
-
#: widgets/premium-
|
1786 |
-
#: widgets/premium-
|
1787 |
-
#: widgets/premium-modalbox.php:
|
1788 |
-
#: widgets/premium-modalbox.php:
|
1789 |
-
#: widgets/premium-
|
1790 |
-
#: widgets/premium-person.php:
|
1791 |
-
#: widgets/premium-person.php:
|
1792 |
-
#: widgets/premium-pricing-table.php:
|
|
|
1793 |
#: widgets/premium-pricing-table.php:1118
|
1794 |
#: widgets/premium-pricing-table.php:1189
|
1795 |
#: widgets/premium-pricing-table.php:1234
|
@@ -1815,11 +1817,11 @@ msgstr ""
|
|
1815 |
#: modules/woocommerce/skins/skin-4.php:346
|
1816 |
#: modules/woocommerce/skins/skin-5.php:255
|
1817 |
#: modules/woocommerce/skins/skin-6.php:318 widgets/premium-banner.php:860
|
1818 |
-
#: widgets/premium-blog.php:
|
1819 |
-
#: widgets/premium-blog.php:
|
1820 |
#: widgets/premium-icon-list.php:1289 widgets/premium-image-separator.php:370
|
1821 |
-
#: widgets/premium-modalbox.php:808 widgets/premium-person.php:
|
1822 |
-
#: widgets/premium-person.php:
|
1823 |
#: widgets/premium-videobox.php:1435
|
1824 |
msgid "Hover Color"
|
1825 |
msgstr ""
|
@@ -1861,24 +1863,24 @@ msgstr ""
|
|
1861 |
#: modules/woocommerce/skins/skin-6.php:937
|
1862 |
#: modules/woocommerce/skins/skin-6.php:1094 widgets/premium-banner.php:770
|
1863 |
#: widgets/premium-banner.php:822 widgets/premium-banner.php:931
|
1864 |
-
#: widgets/premium-blog.php:
|
1865 |
-
#: widgets/premium-blog.php:
|
1866 |
#: widgets/premium-button.php:776 widgets/premium-button.php:941
|
1867 |
-
#: widgets/premium-contactform.php:300 widgets/premium-countdown.php:
|
1868 |
-
#: widgets/premium-
|
1869 |
-
#: widgets/premium-counter.php:
|
1870 |
-
#: widgets/premium-dual-header.php:
|
1871 |
-
#: widgets/premium-grid.php:
|
1872 |
-
#: widgets/premium-grid.php:
|
1873 |
-
#: widgets/premium-grid.php:
|
1874 |
-
#: widgets/premium-grid.php:
|
1875 |
-
#: widgets/premium-icon-list.php:
|
1876 |
-
#: widgets/premium-icon-list.php:
|
1877 |
-
#: widgets/premium-image-button.php:
|
1878 |
-
#: widgets/premium-maps.php:
|
1879 |
-
#: widgets/premium-
|
1880 |
-
#: widgets/premium-person.php:
|
1881 |
-
#: widgets/premium-pricing-table.php:1022
|
1882 |
#: widgets/premium-pricing-table.php:1100
|
1883 |
#: widgets/premium-pricing-table.php:1168
|
1884 |
#: widgets/premium-pricing-table.php:1215
|
@@ -1950,8 +1952,8 @@ msgstr ""
|
|
1950 |
#: modules/woocommerce/skins/skin-4.php:310
|
1951 |
#: modules/woocommerce/skins/skin-4.php:496
|
1952 |
#: modules/woocommerce/skins/skin-5.php:395
|
1953 |
-
#: modules/woocommerce/skins/skin-6.php:468 widgets/premium-blog.php:
|
1954 |
-
#: widgets/premium-blog.php:
|
1955 |
#: widgets/premium-pricing-table.php:1447 widgets/premium-progressbar.php:122
|
1956 |
#: widgets/premium-testimonials.php:159
|
1957 |
msgid "Spacing"
|
@@ -1984,9 +1986,9 @@ msgstr ""
|
|
1984 |
#: modules/woocommerce/skins/skin-6.php:547 widgets/premium-banner.php:354
|
1985 |
#: widgets/premium-banner.php:361 widgets/premium-banner.php:783
|
1986 |
#: widgets/premium-grid.php:568 widgets/premium-grid.php:1222
|
1987 |
-
#: widgets/premium-maps.php:
|
1988 |
-
#: widgets/premium-person.php:
|
1989 |
-
#: widgets/premium-person.php:
|
1990 |
#: widgets/premium-pricing-table.php:463 widgets/premium-pricing-table.php:785
|
1991 |
#: widgets/premium-pricing-table.php:1630 widgets/premium-videobox.php:1069
|
1992 |
msgid "Description"
|
@@ -2018,8 +2020,8 @@ msgstr ""
|
|
2018 |
#: modules/woocommerce/skins/skin-6.php:637
|
2019 |
#: modules/woocommerce/skins/skin-6.php:1160
|
2020 |
#: modules/woocommerce/widgets/woo-products.php:807
|
2021 |
-
#: widgets/premium-banner.php:694 widgets/premium-blog.php:
|
2022 |
-
#: widgets/premium-blog.php:
|
2023 |
#: widgets/premium-button.php:673 widgets/premium-carousel.php:658
|
2024 |
#: widgets/premium-contactform.php:467 widgets/premium-dual-header.php:458
|
2025 |
#: widgets/premium-dual-header.php:643 widgets/premium-dual-header.php:844
|
@@ -2030,7 +2032,7 @@ msgstr ""
|
|
2030 |
#: widgets/premium-image-scroll.php:635 widgets/premium-lottie.php:412
|
2031 |
#: widgets/premium-modalbox.php:343 widgets/premium-modalbox.php:876
|
2032 |
#: widgets/premium-modalbox.php:1130 widgets/premium-modalbox.php:1295
|
2033 |
-
#: widgets/premium-person.php:
|
2034 |
#: widgets/premium-pricing-table.php:2009 widgets/premium-title.php:1070
|
2035 |
#: widgets/premium-videobox.php:518 widgets/premium-vscroll.php:358
|
2036 |
#: widgets/premium-vscroll.php:700
|
@@ -2077,33 +2079,34 @@ msgstr ""
|
|
2077 |
#: modules/woocommerce/widgets/woo-products.php:935
|
2078 |
#: modules/woocommerce/widgets/woo-products.php:1010
|
2079 |
#: widgets/premium-banner.php:680 widgets/premium-banner.php:911
|
2080 |
-
#: widgets/premium-banner.php:970 widgets/premium-blog.php:
|
2081 |
-
#: widgets/premium-blog.php:
|
2082 |
-
#: widgets/premium-blog.php:
|
2083 |
-
#: widgets/premium-blog.php:
|
2084 |
-
#: widgets/premium-blog.php:
|
2085 |
-
#: widgets/premium-blog.php:
|
2086 |
#: widgets/premium-button.php:882 widgets/premium-carousel.php:699
|
2087 |
#: widgets/premium-carousel.php:753 widgets/premium-contactform.php:289
|
2088 |
-
#: widgets/premium-contactform.php:503 widgets/premium-countdown.php:
|
2089 |
-
#: widgets/premium-
|
2090 |
-
#: widgets/premium-counter.php:
|
2091 |
-
#: widgets/premium-dual-header.php:
|
2092 |
-
#: widgets/premium-grid.php:
|
2093 |
-
#: widgets/premium-grid.php:
|
2094 |
-
#: widgets/premium-grid.php:
|
2095 |
-
#: widgets/premium-grid.php:
|
2096 |
-
#: widgets/premium-grid.php:
|
2097 |
-
#: widgets/premium-icon-list.php:
|
2098 |
-
#: widgets/premium-image-button.php:
|
2099 |
-
#: widgets/premium-image-scroll.php:
|
2100 |
-
#: widgets/premium-
|
2101 |
-
#: widgets/premium-
|
2102 |
-
#: widgets/premium-modalbox.php:
|
2103 |
-
#: widgets/premium-modalbox.php:
|
2104 |
-
#: widgets/premium-modalbox.php:
|
2105 |
-
#: widgets/premium-person.php:
|
2106 |
-
#: widgets/premium-pricing-table.php:
|
|
|
2107 |
#: widgets/premium-pricing-table.php:1789
|
2108 |
#: widgets/premium-pricing-table.php:1863
|
2109 |
#: widgets/premium-pricing-table.php:2032
|
@@ -2128,7 +2131,7 @@ msgstr ""
|
|
2128 |
#: modules/woocommerce/skins/skin-6.php:692
|
2129 |
#: modules/woocommerce/skins/skin-6.php:1215
|
2130 |
#: modules/woocommerce/widgets/woo-products.php:854
|
2131 |
-
#: widgets/premium-blog.php:
|
2132 |
#: widgets/premium-button.php:800 widgets/premium-carousel.php:712
|
2133 |
#: widgets/premium-contactform.php:520 widgets/premium-grid.php:1455
|
2134 |
#: widgets/premium-grid.php:1614 widgets/premium-grid.php:1870
|
@@ -2174,8 +2177,7 @@ msgstr ""
|
|
2174 |
#: modules/woocommerce/skins/skin-6.php:774
|
2175 |
#: modules/woocommerce/widgets/woo-products.php:590
|
2176 |
#: widgets/premium-carousel.php:145 widgets/premium-grid.php:467
|
2177 |
-
#: widgets/premium-
|
2178 |
-
#: widgets/premium-progressbar.php:84
|
2179 |
msgid "Type"
|
2180 |
msgstr ""
|
2181 |
|
@@ -2185,7 +2187,7 @@ msgstr ""
|
|
2185 |
#: modules/woocommerce/skins/skin-4.php:805
|
2186 |
#: modules/woocommerce/skins/skin-5.php:699
|
2187 |
#: modules/woocommerce/skins/skin-6.php:777 widgets/premium-banner.php:240
|
2188 |
-
#: widgets/premium-grid.php:920
|
2189 |
msgid "Default"
|
2190 |
msgstr ""
|
2191 |
|
@@ -2283,15 +2285,15 @@ msgstr ""
|
|
2283 |
#: modules/woocommerce/skins/skin-6.php:857
|
2284 |
#: modules/woocommerce/skins/skin-6.php:1014
|
2285 |
#: modules/woocommerce/widgets/woo-products.php:979
|
2286 |
-
#: widgets/premium-blog.php:
|
2287 |
-
#: widgets/premium-carousel.php:610 widgets/premium-countdown.php:
|
2288 |
#: widgets/premium-counter.php:410 widgets/premium-counter.php:437
|
2289 |
#: widgets/premium-grid.php:1350 widgets/premium-icon-list.php:366
|
2290 |
#: widgets/premium-icon-list.php:1069 widgets/premium-image-button.php:467
|
2291 |
#: widgets/premium-image-separator.php:178 widgets/premium-lottie.php:217
|
2292 |
-
#: widgets/premium-maps.php:
|
2293 |
-
#: widgets/premium-modalbox.php:1114 widgets/premium-person.php:
|
2294 |
-
#: widgets/premium-person.php:
|
2295 |
#: widgets/premium-pricing-table.php:608 widgets/premium-pricing-table.php:628
|
2296 |
#: widgets/premium-pricing-table.php:837 widgets/premium-pricing-table.php:1436
|
2297 |
#: widgets/premium-progressbar.php:148 widgets/premium-progressbar.php:811
|
@@ -2320,30 +2322,30 @@ msgstr ""
|
|
2320 |
#: modules/woocommerce/widgets/woo-products.php:917
|
2321 |
#: modules/woocommerce/widgets/woo-products.php:993
|
2322 |
#: widgets/premium-banner.php:540 widgets/premium-banner.php:883
|
2323 |
-
#: widgets/premium-blog.php:
|
2324 |
-
#: widgets/premium-blog.php:
|
2325 |
-
#: widgets/premium-blog.php:
|
2326 |
-
#: widgets/premium-blog.php:
|
2327 |
-
#: widgets/premium-blog.php:
|
2328 |
-
#: widgets/premium-blog.php:
|
2329 |
#: widgets/premium-button.php:860 widgets/premium-carousel.php:681
|
2330 |
#: widgets/premium-carousel.php:735 widgets/premium-contactform.php:481
|
2331 |
-
#: widgets/premium-contactform.php:536 widgets/premium-countdown.php:
|
2332 |
-
#: widgets/premium-countdown.php:
|
2333 |
-
#: widgets/premium-counter.php:
|
2334 |
-
#: widgets/premium-
|
2335 |
-
#: widgets/premium-fancytext.php:
|
2336 |
-
#: widgets/premium-grid.php:
|
2337 |
-
#: widgets/premium-grid.php:
|
2338 |
-
#: widgets/premium-grid.php:
|
2339 |
-
#: widgets/premium-
|
2340 |
-
#: widgets/premium-lottie.php:
|
2341 |
-
#: widgets/premium-modalbox.php:
|
2342 |
-
#: widgets/premium-modalbox.php:
|
2343 |
-
#: widgets/premium-modalbox.php:
|
2344 |
-
#: widgets/premium-
|
2345 |
-
#: widgets/premium-person.php:
|
2346 |
-
#: widgets/premium-pricing-table.php:1608
|
2347 |
#: widgets/premium-pricing-table.php:1951
|
2348 |
#: widgets/premium-pricing-table.php:1969 widgets/premium-progressbar.php:912
|
2349 |
#: widgets/premium-title.php:717 widgets/premium-title.php:734
|
@@ -2464,7 +2466,7 @@ msgstr ""
|
|
2464 |
|
2465 |
#: modules/woocommerce/skins/skin-6.php:119
|
2466 |
#: modules/woocommerce/widgets/woo-products.php:151
|
2467 |
-
#: widgets/premium-grid.php:719 widgets/premium-person.php:
|
2468 |
#: widgets/premium-title.php:105
|
2469 |
msgid "Style 1"
|
2470 |
msgstr ""
|
@@ -2482,21 +2484,21 @@ msgstr ""
|
|
2482 |
#: modules/woocommerce/skins/skin-6.php:122
|
2483 |
#: modules/woocommerce/widgets/woo-products.php:129
|
2484 |
#: widgets/premium-blog.php:192 widgets/premium-grid.php:176
|
2485 |
-
#: widgets/premium-person.php:
|
2486 |
msgid "4 Columns"
|
2487 |
msgstr ""
|
2488 |
|
2489 |
#: modules/woocommerce/skins/skin-6.php:123
|
2490 |
#: modules/woocommerce/widgets/woo-products.php:130
|
2491 |
#: widgets/premium-blog.php:193 widgets/premium-grid.php:177
|
2492 |
-
#: widgets/premium-person.php:
|
2493 |
msgid "5 Columns"
|
2494 |
msgstr ""
|
2495 |
|
2496 |
#: modules/woocommerce/skins/skin-6.php:124
|
2497 |
#: modules/woocommerce/widgets/woo-products.php:131
|
2498 |
#: widgets/premium-blog.php:194 widgets/premium-grid.php:178
|
2499 |
-
#: widgets/premium-person.php:
|
2500 |
msgid "6 Columns"
|
2501 |
msgstr ""
|
2502 |
|
@@ -2555,20 +2557,20 @@ msgid "Products Per Row"
|
|
2555 |
msgstr ""
|
2556 |
|
2557 |
#: modules/woocommerce/widgets/woo-products.php:126
|
2558 |
-
#: widgets/premium-grid.php:173 widgets/premium-person.php:
|
2559 |
#: widgets/premium-videobox.php:243
|
2560 |
msgid "1 Column"
|
2561 |
msgstr ""
|
2562 |
|
2563 |
#: modules/woocommerce/widgets/woo-products.php:127
|
2564 |
#: widgets/premium-blog.php:190 widgets/premium-grid.php:174
|
2565 |
-
#: widgets/premium-person.php:
|
2566 |
msgid "2 Columns"
|
2567 |
msgstr ""
|
2568 |
|
2569 |
#: modules/woocommerce/widgets/woo-products.php:128
|
2570 |
#: widgets/premium-blog.php:191 widgets/premium-grid.php:175
|
2571 |
-
#: widgets/premium-person.php:
|
2572 |
msgid "3 Columns"
|
2573 |
msgstr ""
|
2574 |
|
@@ -2605,7 +2607,7 @@ msgid "Show Arrows"
|
|
2605 |
msgstr ""
|
2606 |
|
2607 |
#: modules/woocommerce/widgets/woo-products.php:222
|
2608 |
-
#: widgets/premium-blog.php:
|
2609 |
msgid "Arrows Position"
|
2610 |
msgstr ""
|
2611 |
|
@@ -2680,8 +2682,8 @@ msgid "Infinite Loop"
|
|
2680 |
msgstr ""
|
2681 |
|
2682 |
#: modules/woocommerce/widgets/woo-products.php:373
|
2683 |
-
#: widgets/premium-blog.php:
|
2684 |
-
#: widgets/premium-person.php:
|
2685 |
msgid "Autoplay Speed"
|
2686 |
msgstr ""
|
2687 |
|
@@ -2775,7 +2777,7 @@ msgstr ""
|
|
2775 |
#: widgets/premium-button.php:144 widgets/premium-grid.php:768
|
2776 |
#: widgets/premium-icon-list.php:889 widgets/premium-image-button.php:141
|
2777 |
#: widgets/premium-lottie.php:146 widgets/premium-modalbox.php:120
|
2778 |
-
#: widgets/premium-person.php:
|
2779 |
#: widgets/premium-videobox.php:776
|
2780 |
msgid "None"
|
2781 |
msgstr ""
|
@@ -2834,7 +2836,7 @@ msgid "No products were found for this query."
|
|
2834 |
msgstr ""
|
2835 |
|
2836 |
#: modules/woocommerce/widgets/woo-products.php:583
|
2837 |
-
#: widgets/premium-blog.php:
|
2838 |
msgid "Enable Pagination"
|
2839 |
msgstr ""
|
2840 |
|
@@ -2882,7 +2884,7 @@ msgstr ""
|
|
2882 |
|
2883 |
#: modules/woocommerce/widgets/woo-products.php:746
|
2884 |
#: widgets/premium-banner.php:223 widgets/premium-blog.php:471
|
2885 |
-
#: widgets/premium-grid.php:769 widgets/premium-person.php:
|
2886 |
#: widgets/premium-videobox.php:777
|
2887 |
msgid "Zoom In"
|
2888 |
msgstr ""
|
@@ -2890,52 +2892,52 @@ msgstr ""
|
|
2890 |
#: modules/woocommerce/widgets/woo-products.php:747
|
2891 |
#: widgets/premium-banner.php:224 widgets/premium-blog.php:472
|
2892 |
#: widgets/premium-fancytext.php:172 widgets/premium-grid.php:770
|
2893 |
-
#: widgets/premium-person.php:
|
2894 |
msgid "Zoom Out"
|
2895 |
msgstr ""
|
2896 |
|
2897 |
#: modules/woocommerce/widgets/woo-products.php:748
|
2898 |
#: widgets/premium-banner.php:225 widgets/premium-blog.php:473
|
2899 |
-
#: widgets/premium-grid.php:771 widgets/premium-person.php:
|
2900 |
#: widgets/premium-videobox.php:779
|
2901 |
msgid "Scale"
|
2902 |
msgstr ""
|
2903 |
|
2904 |
#: modules/woocommerce/widgets/woo-products.php:749
|
2905 |
#: widgets/premium-banner.php:226 widgets/premium-blog.php:474
|
2906 |
-
#: widgets/premium-grid.php:772 widgets/premium-person.php:
|
2907 |
#: widgets/premium-videobox.php:780
|
2908 |
msgid "Grayscale"
|
2909 |
msgstr ""
|
2910 |
|
2911 |
#: modules/woocommerce/widgets/woo-products.php:750
|
2912 |
#: widgets/premium-banner.php:228 widgets/premium-blog.php:476
|
2913 |
-
#: widgets/premium-grid.php:774 widgets/premium-person.php:
|
2914 |
#: widgets/premium-videobox.php:782
|
2915 |
msgid "Bright"
|
2916 |
msgstr ""
|
2917 |
|
2918 |
#: modules/woocommerce/widgets/woo-products.php:751
|
2919 |
#: widgets/premium-banner.php:229 widgets/premium-blog.php:477
|
2920 |
-
#: widgets/premium-grid.php:775 widgets/premium-person.php:
|
2921 |
#: widgets/premium-videobox.php:783
|
2922 |
msgid "Sepia"
|
2923 |
msgstr ""
|
2924 |
|
2925 |
#: modules/woocommerce/widgets/woo-products.php:752
|
2926 |
#: widgets/premium-blog.php:478 widgets/premium-grid.php:776
|
2927 |
-
#: widgets/premium-person.php:
|
2928 |
msgid "Translate"
|
2929 |
msgstr ""
|
2930 |
|
2931 |
#: modules/woocommerce/widgets/woo-products.php:901
|
2932 |
-
#: widgets/premium-blog.php:
|
2933 |
#: widgets/premium-grid.php:1661 widgets/premium-vscroll.php:759
|
2934 |
msgid "Active"
|
2935 |
msgstr ""
|
2936 |
|
2937 |
#: modules/woocommerce/widgets/woo-products.php:1056
|
2938 |
-
#: widgets/premium-blog.php:
|
2939 |
msgid "Active Color"
|
2940 |
msgstr ""
|
2941 |
|
@@ -3089,13 +3091,13 @@ msgstr ""
|
|
3089 |
#: widgets/premium-banner.php:219 widgets/premium-blog.php:466
|
3090 |
#: widgets/premium-button.php:140 widgets/premium-grid.php:764
|
3091 |
#: widgets/premium-icon-list.php:886 widgets/premium-image-button.php:137
|
3092 |
-
#: widgets/premium-person.php:
|
3093 |
msgid "Hover Effect"
|
3094 |
msgstr ""
|
3095 |
|
3096 |
#: widgets/premium-banner.php:227 widgets/premium-blog.php:475
|
3097 |
#: widgets/premium-grid.php:773 widgets/premium-icon-list.php:890
|
3098 |
-
#: widgets/premium-image-scroll.php:341 widgets/premium-person.php:
|
3099 |
#: widgets/premium-videobox.php:781 widgets/premium-videobox.php:940
|
3100 |
msgid "Blur"
|
3101 |
msgstr ""
|
@@ -3103,7 +3105,7 @@ msgstr ""
|
|
3103 |
#: widgets/premium-banner.php:237 widgets/premium-blog.php:504
|
3104 |
#: widgets/premium-contactform.php:151 widgets/premium-contactform.php:230
|
3105 |
#: widgets/premium-grid.php:114 widgets/premium-grid.php:439
|
3106 |
-
#: widgets/premium-grid.php:744 widgets/premium-maps.php:
|
3107 |
#: widgets/premium-progressbar.php:486 widgets/premium-progressbar.php:869
|
3108 |
msgid "Height"
|
3109 |
msgstr ""
|
@@ -3176,7 +3178,7 @@ msgstr ""
|
|
3176 |
|
3177 |
#: widgets/premium-banner.php:315 widgets/premium-carousel.php:114
|
3178 |
#: widgets/premium-modalbox.php:98 widgets/premium-modalbox.php:242
|
3179 |
-
#: widgets/premium-modalbox.php:264 widgets/premium-person.php:
|
3180 |
#: widgets/premium-testimonials.php:261 widgets/premium-testimonials.php:472
|
3181 |
#: widgets/premium-vscroll.php:81
|
3182 |
msgid "Content"
|
@@ -3273,18 +3275,18 @@ msgid "Note: maximum size for extra small screens is 767px."
|
|
3273 |
msgstr ""
|
3274 |
|
3275 |
#: widgets/premium-banner.php:515 widgets/premium-button.php:623
|
3276 |
-
#: widgets/premium-carousel.php:447 widgets/premium-countdown.php:
|
3277 |
#: widgets/premium-counter.php:365 widgets/premium-dual-header.php:402
|
3278 |
#: widgets/premium-grid.php:1001 widgets/premium-icon-list.php:916
|
3279 |
#: widgets/premium-image-button.php:529 widgets/premium-image-scroll.php:480
|
3280 |
-
#: widgets/premium-lottie.php:372 widgets/premium-maps.php:
|
3281 |
-
#: widgets/premium-modalbox.php:725 widgets/premium-person.php:
|
3282 |
#: widgets/premium-testimonials.php:279 widgets/premium-videobox.php:1161
|
3283 |
#: widgets/premium-vscroll.php:422
|
3284 |
msgid "Helpful Documentations"
|
3285 |
msgstr ""
|
3286 |
|
3287 |
-
#: widgets/premium-banner.php:524 widgets/premium-countdown.php:
|
3288 |
#: widgets/premium-counter.php:374 widgets/premium-dual-header.php:411
|
3289 |
#: widgets/premium-icon-list.php:925 widgets/premium-image-scroll.php:489
|
3290 |
msgid "Gettings started »"
|
@@ -3306,14 +3308,14 @@ msgstr ""
|
|
3306 |
msgid "Hover Border Color"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
-
#: widgets/premium-banner.php:664 widgets/premium-blog.php:
|
3310 |
#: widgets/premium-grid.php:1154 widgets/premium-image-separator.php:343
|
3311 |
-
#: widgets/premium-modalbox.php:779 widgets/premium-person.php:
|
3312 |
msgid "Hover CSS Filters"
|
3313 |
msgstr ""
|
3314 |
|
3315 |
#: widgets/premium-banner.php:691 widgets/premium-dual-header.php:841
|
3316 |
-
#: widgets/premium-image-scroll.php:601 widgets/premium-person.php:
|
3317 |
#: widgets/premium-title.php:1067
|
3318 |
msgid "Blend Mode"
|
3319 |
msgstr ""
|
@@ -3332,7 +3334,7 @@ msgstr ""
|
|
3332 |
#: widgets/premium-banner.php:923 widgets/premium-dual-header.php:582
|
3333 |
#: widgets/premium-dual-header.php:767 widgets/premium-grid.php:1134
|
3334 |
#: widgets/premium-grid.php:1283 widgets/premium-grid.php:1425
|
3335 |
-
#: widgets/premium-grid.php:1509 widgets/premium-maps.php:
|
3336 |
#: widgets/premium-modalbox.php:956 widgets/premium-modalbox.php:1032
|
3337 |
#: widgets/premium-pricing-table.php:1801
|
3338 |
#: widgets/premium-pricing-table.php:1875
|
@@ -3344,9 +3346,9 @@ msgstr ""
|
|
3344 |
msgid "Shadow"
|
3345 |
msgstr ""
|
3346 |
|
3347 |
-
#: widgets/premium-banner.php:893 widgets/premium-blog.php:
|
3348 |
#: widgets/premium-icon-list.php:963 widgets/premium-image-separator.php:404
|
3349 |
-
#: widgets/premium-person.php:
|
3350 |
msgid "Hover Background Color"
|
3351 |
msgstr ""
|
3352 |
|
@@ -3396,7 +3398,7 @@ msgstr ""
|
|
3396 |
msgid "Masonry"
|
3397 |
msgstr ""
|
3398 |
|
3399 |
-
#: widgets/premium-blog.php:162 widgets/premium-person.php:
|
3400 |
msgid "Equal Height"
|
3401 |
msgstr ""
|
3402 |
|
@@ -3501,8 +3503,8 @@ msgstr ""
|
|
3501 |
msgid "Author"
|
3502 |
msgstr ""
|
3503 |
|
3504 |
-
#: widgets/premium-blog.php:389 widgets/premium-person.php:
|
3505 |
-
#: widgets/premium-person.php:
|
3506 |
#: widgets/premium-testimonials.php:102 widgets/premium-testimonials.php:183
|
3507 |
msgid "Name"
|
3508 |
msgstr ""
|
@@ -3684,13 +3686,13 @@ msgstr ""
|
|
3684 |
msgid "Get Tabs From"
|
3685 |
msgstr ""
|
3686 |
|
3687 |
-
#: widgets/premium-blog.php:834 widgets/premium-blog.php:
|
3688 |
-
#: widgets/premium-blog.php:
|
3689 |
#: widgets/premium-grid.php:327
|
3690 |
msgid "Categories"
|
3691 |
msgstr ""
|
3692 |
|
3693 |
-
#: widgets/premium-blog.php:835 widgets/premium-blog.php:
|
3694 |
msgid "Tags"
|
3695 |
msgstr ""
|
3696 |
|
@@ -3720,111 +3722,115 @@ msgstr ""
|
|
3720 |
msgid "Fade"
|
3721 |
msgstr ""
|
3722 |
|
3723 |
-
#: widgets/premium-blog.php:939 widgets/premium-person.php:
|
3724 |
msgid "Auto Play"
|
3725 |
msgstr ""
|
3726 |
|
3727 |
-
#: widgets/premium-blog.php:
|
3728 |
-
|
|
|
|
|
|
|
|
|
3729 |
msgid ""
|
3730 |
"Autoplay Speed means at which time the next slide should come. Set a value "
|
3731 |
"in milliseconds (ms)"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
-
#: widgets/premium-blog.php:
|
3735 |
msgid "Center Mode"
|
3736 |
msgstr ""
|
3737 |
|
3738 |
-
#: widgets/premium-blog.php:
|
3739 |
msgid "Slides' Spacing"
|
3740 |
msgstr ""
|
3741 |
|
3742 |
-
#: widgets/premium-blog.php:
|
3743 |
msgid "Set a spacing value in pixels (px)"
|
3744 |
msgstr ""
|
3745 |
|
3746 |
-
#: widgets/premium-blog.php:
|
3747 |
#: widgets/premium-vscroll.php:261 widgets/premium-vscroll.php:438
|
3748 |
msgid "Navigation Dots"
|
3749 |
msgstr ""
|
3750 |
|
3751 |
-
#: widgets/premium-blog.php:
|
3752 |
msgid "Navigation Arrows"
|
3753 |
msgstr ""
|
3754 |
|
3755 |
-
#: widgets/premium-blog.php:
|
3756 |
msgid "Pagination is the process of dividing the posts into discrete pages"
|
3757 |
msgstr ""
|
3758 |
|
3759 |
-
#: widgets/premium-blog.php:
|
3760 |
msgid "Page Limit"
|
3761 |
msgstr ""
|
3762 |
|
3763 |
-
#: widgets/premium-blog.php:
|
3764 |
msgid "Enable Pagination Next/Prev Strings"
|
3765 |
msgstr ""
|
3766 |
|
3767 |
-
#: widgets/premium-blog.php:
|
3768 |
msgid "Previous Page String"
|
3769 |
msgstr ""
|
3770 |
|
3771 |
-
#: widgets/premium-blog.php:
|
3772 |
msgid "Previous"
|
3773 |
msgstr ""
|
3774 |
|
3775 |
-
#: widgets/premium-blog.php:
|
3776 |
msgid "Next Page String"
|
3777 |
msgstr ""
|
3778 |
|
3779 |
-
#: widgets/premium-blog.php:
|
3780 |
msgid "Next"
|
3781 |
msgstr ""
|
3782 |
|
3783 |
-
#: widgets/premium-blog.php:
|
3784 |
msgid "Filter"
|
3785 |
msgstr ""
|
3786 |
|
3787 |
-
#: widgets/premium-blog.php:
|
3788 |
msgid "Plus Sign Color"
|
3789 |
msgstr ""
|
3790 |
|
3791 |
-
#: widgets/premium-blog.php:
|
3792 |
#: widgets/premium-image-button.php:758 widgets/premium-image-button.php:775
|
3793 |
#: widgets/premium-image-button.php:801 widgets/premium-image-scroll.php:518
|
3794 |
msgid "Overlay Color"
|
3795 |
msgstr ""
|
3796 |
|
3797 |
-
#: widgets/premium-blog.php:
|
3798 |
#: widgets/premium-pricing-table.php:1618 widgets/premium-progressbar.php:537
|
3799 |
#: widgets/premium-testimonials.php:345
|
3800 |
msgid "Border Color"
|
3801 |
msgstr ""
|
3802 |
|
3803 |
-
#: widgets/premium-blog.php:
|
3804 |
msgid "Bottom Spacing"
|
3805 |
msgstr ""
|
3806 |
|
3807 |
-
#: widgets/premium-blog.php:
|
3808 |
msgid "Metadata"
|
3809 |
msgstr ""
|
3810 |
|
3811 |
-
#: widgets/premium-blog.php:
|
3812 |
msgid "Metadata Color"
|
3813 |
msgstr ""
|
3814 |
|
3815 |
-
#: widgets/premium-blog.php:
|
3816 |
msgid "Links Hover Color"
|
3817 |
msgstr ""
|
3818 |
|
3819 |
-
#: widgets/premium-blog.php:
|
3820 |
msgid "Separator Color"
|
3821 |
msgstr ""
|
3822 |
|
3823 |
-
#: widgets/premium-blog.php:
|
3824 |
msgid "Content Box"
|
3825 |
msgstr ""
|
3826 |
|
3827 |
-
#: widgets/premium-blog.php:
|
3828 |
#: widgets/premium-button.php:806 widgets/premium-contactform.php:471
|
3829 |
#: widgets/premium-contactform.php:526 widgets/premium-dual-header.php:467
|
3830 |
#: widgets/premium-dual-header.php:652 widgets/premium-grid.php:1569
|
@@ -3838,31 +3844,31 @@ msgstr ""
|
|
3838 |
msgid "Text Color"
|
3839 |
msgstr ""
|
3840 |
|
3841 |
-
#: widgets/premium-blog.php:
|
3842 |
msgid "Text Margin"
|
3843 |
msgstr ""
|
3844 |
|
3845 |
-
#: widgets/premium-blog.php:
|
3846 |
msgid "Box"
|
3847 |
msgstr ""
|
3848 |
|
3849 |
-
#: widgets/premium-blog.php:
|
3850 |
msgid "Spinner Color"
|
3851 |
msgstr ""
|
3852 |
|
3853 |
-
#: widgets/premium-blog.php:
|
3854 |
msgid "Fill Color"
|
3855 |
msgstr ""
|
3856 |
|
3857 |
-
#: widgets/premium-blog.php:
|
3858 |
msgid "Carousel Dots"
|
3859 |
msgstr ""
|
3860 |
|
3861 |
-
#: widgets/premium-blog.php:
|
3862 |
msgid "Carousel Arrows"
|
3863 |
msgstr ""
|
3864 |
|
3865 |
-
#: widgets/premium-blog.php:
|
3866 |
msgid ""
|
3867 |
"The current query has no posts. Please make sure you have published items "
|
3868 |
"matching your query."
|
@@ -3956,7 +3962,7 @@ msgstr ""
|
|
3956 |
|
3957 |
#: widgets/premium-button.php:215 widgets/premium-countdown.php:82
|
3958 |
#: widgets/premium-counter.php:462 widgets/premium-icon-list.php:1606
|
3959 |
-
#: widgets/premium-person.php:
|
3960 |
#: widgets/premium-title.php:101
|
3961 |
msgid "Style"
|
3962 |
msgstr ""
|
@@ -3982,18 +3988,18 @@ msgstr ""
|
|
3982 |
#: widgets/premium-button.php:337 widgets/premium-carousel.php:780
|
3983 |
#: widgets/premium-counter.php:187 widgets/premium-counter.php:199
|
3984 |
#: widgets/premium-counter.php:383 widgets/premium-icon-list.php:122
|
3985 |
-
#: widgets/premium-icon-list.php:137 widgets/premium-
|
3986 |
-
#: widgets/premium-image-button.php:
|
3987 |
-
#: widgets/premium-image-button.php:
|
3988 |
-
#: widgets/premium-image-
|
3989 |
-
#: widgets/premium-
|
3990 |
-
#: widgets/premium-modalbox.php:
|
3991 |
-
#: widgets/premium-pricing-table.php:
|
3992 |
-
#: widgets/premium-pricing-table.php:
|
3993 |
-
#: widgets/premium-pricing-table.php:
|
3994 |
-
#: widgets/premium-
|
3995 |
-
#: widgets/premium-
|
3996 |
-
#: widgets/premium-title.php:
|
3997 |
msgid "Icon"
|
3998 |
msgstr ""
|
3999 |
|
@@ -4042,8 +4048,8 @@ msgid "Loop"
|
|
4042 |
msgstr ""
|
4043 |
|
4044 |
#: widgets/premium-button.php:393 widgets/premium-counter.php:281
|
4045 |
-
#: widgets/premium-
|
4046 |
-
#: widgets/premium-
|
4047 |
msgid "Icon Position"
|
4048 |
msgstr ""
|
4049 |
|
@@ -4381,7 +4387,7 @@ msgstr ""
|
|
4381 |
#: widgets/premium-contactform.php:94 widgets/premium-contactform.php:208
|
4382 |
#: widgets/premium-dual-header.php:307 widgets/premium-grid.php:419
|
4383 |
#: widgets/premium-modalbox.php:1270 widgets/premium-modalbox.php:1461
|
4384 |
-
#: widgets/premium-person.php:
|
4385 |
#: widgets/premium-title.php:556
|
4386 |
msgid "Width"
|
4387 |
msgstr ""
|
@@ -4527,110 +4533,122 @@ msgid "Expire Type"
|
|
4527 |
msgstr ""
|
4528 |
|
4529 |
#: widgets/premium-countdown.php:206
|
4530 |
-
msgid "
|
|
|
|
|
4531 |
msgstr ""
|
4532 |
|
4533 |
-
#: widgets/premium-countdown.php:
|
4534 |
msgid "Message"
|
4535 |
msgstr ""
|
4536 |
|
4537 |
-
#: widgets/premium-countdown.php:
|
4538 |
msgid "Redirection Link"
|
4539 |
msgstr ""
|
4540 |
|
4541 |
#: widgets/premium-countdown.php:218
|
|
|
|
|
|
|
|
|
|
|
|
|
4542 |
msgid "On expiry Text"
|
4543 |
msgstr ""
|
4544 |
|
4545 |
-
#: widgets/premium-countdown.php:
|
4546 |
-
msgid "Countdown
|
4547 |
msgstr ""
|
4548 |
|
4549 |
-
#: widgets/premium-countdown.php:
|
4550 |
msgid "Redirect To"
|
4551 |
msgstr ""
|
4552 |
|
4553 |
-
#: widgets/premium-countdown.php:
|
4554 |
msgid "Strings Translation"
|
4555 |
msgstr ""
|
4556 |
|
4557 |
-
#: widgets/premium-countdown.php:
|
4558 |
msgid "Day (Singular)"
|
4559 |
msgstr ""
|
4560 |
|
4561 |
-
#: widgets/premium-countdown.php:
|
4562 |
msgid "Day (Plural)"
|
4563 |
msgstr ""
|
4564 |
|
4565 |
-
#: widgets/premium-countdown.php:
|
4566 |
msgid "Week (Singular)"
|
4567 |
msgstr ""
|
4568 |
|
4569 |
-
#: widgets/premium-countdown.php:
|
4570 |
msgid "Weeks (Plural)"
|
4571 |
msgstr ""
|
4572 |
|
4573 |
-
#: widgets/premium-countdown.php:
|
4574 |
msgid "Month (Singular)"
|
4575 |
msgstr ""
|
4576 |
|
4577 |
-
#: widgets/premium-countdown.php:
|
4578 |
msgid "Months (Plural)"
|
4579 |
msgstr ""
|
4580 |
|
4581 |
-
#: widgets/premium-countdown.php:
|
4582 |
msgid "Year (Singular)"
|
4583 |
msgstr ""
|
4584 |
|
4585 |
-
#: widgets/premium-countdown.php:
|
4586 |
msgid "Years (Plural)"
|
4587 |
msgstr ""
|
4588 |
|
4589 |
-
#: widgets/premium-countdown.php:
|
4590 |
msgid "Hour (Singular)"
|
4591 |
msgstr ""
|
4592 |
|
4593 |
-
#: widgets/premium-countdown.php:
|
4594 |
msgid "Hours (Plural)"
|
4595 |
msgstr ""
|
4596 |
|
4597 |
-
#: widgets/premium-countdown.php:
|
4598 |
msgid "Minute (Singular)"
|
4599 |
msgstr ""
|
4600 |
|
4601 |
-
#: widgets/premium-countdown.php:
|
4602 |
msgid "Minutes (Plural)"
|
4603 |
msgstr ""
|
4604 |
|
4605 |
-
#: widgets/premium-countdown.php:
|
4606 |
msgid "Second (Singular)"
|
4607 |
msgstr ""
|
4608 |
|
4609 |
-
#: widgets/premium-countdown.php:
|
4610 |
msgid "Seconds (Plural)"
|
4611 |
msgstr ""
|
4612 |
|
4613 |
-
#: widgets/premium-countdown.php:
|
4614 |
msgid "Digits"
|
4615 |
msgstr ""
|
4616 |
|
4617 |
-
#: widgets/premium-countdown.php:
|
4618 |
msgid "Background Size"
|
4619 |
msgstr ""
|
4620 |
|
4621 |
-
#: widgets/premium-countdown.php:
|
4622 |
msgid "Units"
|
4623 |
msgstr ""
|
4624 |
|
4625 |
-
#: widgets/premium-countdown.php:
|
4626 |
msgid "Spacing in Between"
|
4627 |
msgstr ""
|
4628 |
|
4629 |
-
#: widgets/premium-countdown.php:
|
4630 |
#: widgets/premium-testimonials.php:133
|
4631 |
msgid "Separator"
|
4632 |
msgstr ""
|
4633 |
|
|
|
|
|
|
|
|
|
4634 |
#: widgets/premium-counter.php:83
|
4635 |
msgid "Enter title for stats counter block"
|
4636 |
msgstr ""
|
@@ -4850,8 +4868,8 @@ msgstr ""
|
|
4850 |
msgid "Designer"
|
4851 |
msgstr ""
|
4852 |
|
4853 |
-
#: widgets/premium-fancytext.php:108 widgets/premium-person.php:
|
4854 |
-
#: widgets/premium-person.php:
|
4855 |
msgid "Developer"
|
4856 |
msgstr ""
|
4857 |
|
@@ -5076,8 +5094,8 @@ msgstr ""
|
|
5076 |
msgid "Video"
|
5077 |
msgstr ""
|
5078 |
|
5079 |
-
#: widgets/premium-grid.php:470 widgets/premium-person.php:
|
5080 |
-
#: widgets/premium-person.php:
|
5081 |
msgid "YouTube"
|
5082 |
msgstr ""
|
5083 |
|
@@ -5101,7 +5119,7 @@ msgstr ""
|
|
5101 |
msgid "Remote Video URL"
|
5102 |
msgstr ""
|
5103 |
|
5104 |
-
#: widgets/premium-grid.php:537 widgets/premium-maps.php:
|
5105 |
msgid "Controls"
|
5106 |
msgstr ""
|
5107 |
|
@@ -5157,12 +5175,12 @@ msgstr ""
|
|
5157 |
msgid "Choose a layout style for the gallery"
|
5158 |
msgstr ""
|
5159 |
|
5160 |
-
#: widgets/premium-grid.php:720 widgets/premium-person.php:
|
5161 |
#: widgets/premium-title.php:106
|
5162 |
msgid "Style 2"
|
5163 |
msgstr ""
|
5164 |
|
5165 |
-
#: widgets/premium-grid.php:721 widgets/premium-person.php:
|
5166 |
#: widgets/premium-title.php:107
|
5167 |
msgid "Style 3"
|
5168 |
msgstr ""
|
@@ -5197,7 +5215,7 @@ msgid ""
|
|
5197 |
"direction sites"
|
5198 |
msgstr ""
|
5199 |
|
5200 |
-
#: widgets/premium-grid.php:838 widgets/premium-person.php:
|
5201 |
msgid "Content Alignment"
|
5202 |
msgstr ""
|
5203 |
|
@@ -5250,8 +5268,8 @@ msgstr ""
|
|
5250 |
msgid "Dark Square"
|
5251 |
msgstr ""
|
5252 |
|
5253 |
-
#: widgets/premium-grid.php:925 widgets/premium-person.php:
|
5254 |
-
#: widgets/premium-person.php:
|
5255 |
msgid "Facebook"
|
5256 |
msgstr ""
|
5257 |
|
@@ -5307,7 +5325,11 @@ msgid "List Title"
|
|
5307 |
msgstr ""
|
5308 |
|
5309 |
#: widgets/premium-icon-list.php:106
|
5310 |
-
msgid "Show
|
|
|
|
|
|
|
|
|
5311 |
msgstr ""
|
5312 |
|
5313 |
#: widgets/premium-icon-list.php:154 widgets/premium-modalbox.php:122
|
@@ -5363,7 +5385,7 @@ msgstr ""
|
|
5363 |
|
5364 |
#: widgets/premium-icon-list.php:678
|
5365 |
msgid ""
|
5366 |
-
"Please note that
|
5367 |
"visible."
|
5368 |
msgstr ""
|
5369 |
|
@@ -5371,8 +5393,12 @@ msgstr ""
|
|
5371 |
msgid "Layout Type"
|
5372 |
msgstr ""
|
5373 |
|
5374 |
-
#: widgets/premium-icon-list.php:
|
5375 |
-
msgid "
|
|
|
|
|
|
|
|
|
5376 |
msgstr ""
|
5377 |
|
5378 |
#: widgets/premium-icon-list.php:783
|
@@ -5380,7 +5406,7 @@ msgid "Badge Alignment "
|
|
5380 |
msgstr ""
|
5381 |
|
5382 |
#: widgets/premium-icon-list.php:818
|
5383 |
-
msgid "
|
5384 |
msgstr ""
|
5385 |
|
5386 |
#: widgets/premium-icon-list.php:832 widgets/premium-lottie.php:403
|
@@ -5427,6 +5453,10 @@ msgstr ""
|
|
5427 |
msgid "Border"
|
5428 |
msgstr ""
|
5429 |
|
|
|
|
|
|
|
|
|
5430 |
#: widgets/premium-icon-list.php:1060 widgets/premium-icon-list.php:1251
|
5431 |
msgid ""
|
5432 |
"Options below will be applied on items with no style options set "
|
@@ -5438,7 +5468,7 @@ msgid "Color options below will be applied on Font Awesome and Text."
|
|
5438 |
msgstr ""
|
5439 |
|
5440 |
#: widgets/premium-icon-list.php:1135
|
5441 |
-
msgid "Background Color options below will be applied on all
|
5442 |
msgstr ""
|
5443 |
|
5444 |
#: widgets/premium-icon-list.php:1157
|
@@ -5766,151 +5796,159 @@ msgstr ""
|
|
5766 |
msgid "Center Location"
|
5767 |
msgstr ""
|
5768 |
|
5769 |
-
#: widgets/premium-maps.php:
|
5770 |
msgid "Get User Location"
|
5771 |
msgstr ""
|
5772 |
|
5773 |
-
#: widgets/premium-maps.php:
|
5774 |
msgid "Get center location from visitor's location"
|
5775 |
msgstr ""
|
5776 |
|
5777 |
-
#: widgets/premium-maps.php:
|
5778 |
msgid "Latitude & Longitude Finder"
|
5779 |
msgstr ""
|
5780 |
|
5781 |
-
#: widgets/premium-maps.php:
|
5782 |
msgid "Find Latitude & Longitude"
|
5783 |
msgstr ""
|
5784 |
|
5785 |
-
#: widgets/premium-maps.php:
|
5786 |
msgid "Center Latitude"
|
5787 |
msgstr ""
|
5788 |
|
5789 |
-
#: widgets/premium-maps.php:
|
5790 |
msgid "Center latitude and longitude are required to identify your location"
|
5791 |
msgstr ""
|
5792 |
|
5793 |
-
#: widgets/premium-maps.php:
|
5794 |
msgid "Center Longitude"
|
5795 |
msgstr ""
|
5796 |
|
5797 |
-
#: widgets/premium-maps.php:
|
5798 |
msgid "Markers"
|
5799 |
msgstr ""
|
5800 |
|
5801 |
-
#: widgets/premium-maps.php:
|
5802 |
msgid "Max Width"
|
5803 |
msgstr ""
|
5804 |
|
5805 |
-
#: widgets/premium-maps.php:
|
5806 |
msgid "Set the Maximum width for markers description box"
|
5807 |
msgstr ""
|
5808 |
|
5809 |
-
#: widgets/premium-maps.php:
|
5810 |
msgid "Custom Icon"
|
5811 |
msgstr ""
|
5812 |
|
5813 |
-
#: widgets/premium-maps.php:
|
5814 |
msgid "Latitude"
|
5815 |
msgstr ""
|
5816 |
|
5817 |
-
#: widgets/premium-maps.php:
|
5818 |
msgid "Longitude"
|
5819 |
msgstr ""
|
5820 |
|
5821 |
-
#: widgets/premium-maps.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5822 |
msgid "Map Pins"
|
5823 |
msgstr ""
|
5824 |
|
5825 |
-
#: widgets/premium-maps.php:
|
5826 |
msgid "Premium Google Maps"
|
5827 |
msgstr ""
|
5828 |
|
5829 |
-
#: widgets/premium-maps.php:
|
5830 |
msgid "Add an optional description to your map pin"
|
5831 |
msgstr ""
|
5832 |
|
5833 |
-
#: widgets/premium-maps.php:
|
5834 |
msgid "Map Type"
|
5835 |
msgstr ""
|
5836 |
|
5837 |
-
#: widgets/premium-maps.php:
|
5838 |
msgid "Road Map"
|
5839 |
msgstr ""
|
5840 |
|
5841 |
-
#: widgets/premium-maps.php:
|
5842 |
msgid "Satellite"
|
5843 |
msgstr ""
|
5844 |
|
5845 |
-
#: widgets/premium-maps.php:
|
5846 |
msgid "Terrain"
|
5847 |
msgstr ""
|
5848 |
|
5849 |
-
#: widgets/premium-maps.php:
|
5850 |
msgid "Hybrid"
|
5851 |
msgstr ""
|
5852 |
|
5853 |
-
#: widgets/premium-maps.php:
|
5854 |
msgid "Zoom"
|
5855 |
msgstr ""
|
5856 |
|
5857 |
-
#: widgets/premium-maps.php:
|
5858 |
msgid "Disable Map Drag"
|
5859 |
msgstr ""
|
5860 |
|
5861 |
-
#: widgets/premium-maps.php:
|
5862 |
msgid "Map Type Controls"
|
5863 |
msgstr ""
|
5864 |
|
5865 |
-
#: widgets/premium-maps.php:
|
5866 |
msgid "Zoom Controls"
|
5867 |
msgstr ""
|
5868 |
|
5869 |
-
#: widgets/premium-maps.php:
|
5870 |
msgid "Street View Control"
|
5871 |
msgstr ""
|
5872 |
|
5873 |
-
#: widgets/premium-maps.php:
|
5874 |
msgid "Fullscreen Control"
|
5875 |
msgstr ""
|
5876 |
|
5877 |
-
#: widgets/premium-maps.php:
|
5878 |
msgid "Scroll Wheel Zoom"
|
5879 |
msgstr ""
|
5880 |
|
5881 |
-
#: widgets/premium-maps.php:
|
5882 |
msgid "Info Container Always Opened"
|
5883 |
msgstr ""
|
5884 |
|
5885 |
-
#: widgets/premium-maps.php:
|
5886 |
msgid "Info Container Opened when Hovered"
|
5887 |
msgstr ""
|
5888 |
|
5889 |
-
#: widgets/premium-maps.php:
|
5890 |
msgid "Info Container Closed when Mouse Out"
|
5891 |
msgstr ""
|
5892 |
|
5893 |
-
#: widgets/premium-maps.php:
|
5894 |
msgid "Marker Clustering"
|
5895 |
msgstr ""
|
5896 |
|
5897 |
-
#: widgets/premium-maps.php:
|
5898 |
msgid "Map Style"
|
5899 |
msgstr ""
|
5900 |
|
5901 |
-
#: widgets/premium-maps.php:
|
5902 |
msgid "JSON Code"
|
5903 |
msgstr ""
|
5904 |
|
5905 |
-
#: widgets/premium-maps.php:
|
5906 |
msgid "Getting started »"
|
5907 |
msgstr ""
|
5908 |
|
5909 |
-
#: widgets/premium-maps.php:
|
5910 |
msgid "Getting your API key »"
|
5911 |
msgstr ""
|
5912 |
|
5913 |
-
#: widgets/premium-maps.php:
|
5914 |
msgid "Map"
|
5915 |
msgstr ""
|
5916 |
|
@@ -6001,135 +6039,147 @@ msgid "Footer Background Color"
|
|
6001 |
msgstr ""
|
6002 |
|
6003 |
#: widgets/premium-person.php:85
|
|
|
|
|
|
|
|
|
6004 |
msgid "Multiple Member"
|
6005 |
msgstr ""
|
6006 |
|
6007 |
-
#: widgets/premium-person.php:
|
6008 |
msgid "Enable this option if you need to add multiple persons"
|
6009 |
msgstr ""
|
6010 |
|
6011 |
-
#: widgets/premium-person.php:
|
6012 |
msgid "Title Rotate"
|
6013 |
msgstr ""
|
6014 |
|
6015 |
-
#: widgets/premium-person.php:
|
6016 |
msgid "90 Degrees"
|
6017 |
msgstr ""
|
6018 |
|
6019 |
-
#: widgets/premium-person.php:
|
6020 |
msgid "-90 Degrees"
|
6021 |
msgstr ""
|
6022 |
|
6023 |
-
#: widgets/premium-person.php:
|
6024 |
msgid "Enter image width in (PX, EM, %), default is 100%"
|
6025 |
msgstr ""
|
6026 |
|
6027 |
-
#: widgets/premium-person.php:
|
6028 |
msgid "Name Tag"
|
6029 |
msgstr ""
|
6030 |
|
6031 |
-
#: widgets/premium-person.php:
|
6032 |
msgid "Title Tag"
|
6033 |
msgstr ""
|
6034 |
|
6035 |
-
#: widgets/premium-person.php:
|
6036 |
msgid "Members/Row"
|
6037 |
msgstr ""
|
6038 |
|
6039 |
-
#: widgets/premium-person.php:
|
6040 |
msgid "Single Member Settings"
|
6041 |
msgstr ""
|
6042 |
|
6043 |
-
#: widgets/premium-person.php:
|
6044 |
msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit"
|
6045 |
msgstr ""
|
6046 |
|
6047 |
-
#: widgets/premium-person.php:
|
6048 |
msgid "Enable Social Icons"
|
6049 |
msgstr ""
|
6050 |
|
6051 |
-
#: widgets/premium-person.php:
|
6052 |
msgid "Twitter"
|
6053 |
msgstr ""
|
6054 |
|
6055 |
-
#: widgets/premium-person.php:
|
6056 |
msgid "LinkedIn"
|
6057 |
msgstr ""
|
6058 |
|
6059 |
-
#: widgets/premium-person.php:
|
6060 |
msgid "Google+"
|
6061 |
msgstr ""
|
6062 |
|
6063 |
-
#: widgets/premium-person.php:
|
6064 |
msgid "Instagram"
|
6065 |
msgstr ""
|
6066 |
|
6067 |
-
#: widgets/premium-person.php:
|
6068 |
msgid "Skype"
|
6069 |
msgstr ""
|
6070 |
|
6071 |
-
#: widgets/premium-person.php:
|
6072 |
msgid "Pinterest"
|
6073 |
msgstr ""
|
6074 |
|
6075 |
-
#: widgets/premium-person.php:
|
6076 |
msgid "Dribbble"
|
6077 |
msgstr ""
|
6078 |
|
6079 |
-
#: widgets/premium-person.php:
|
6080 |
msgid "Behance"
|
6081 |
msgstr ""
|
6082 |
|
6083 |
-
#: widgets/premium-person.php:
|
6084 |
msgid "WhatsApp"
|
6085 |
msgstr ""
|
6086 |
|
6087 |
-
#: widgets/premium-person.php:
|
6088 |
msgid "Telegram"
|
6089 |
msgstr ""
|
6090 |
|
6091 |
-
#: widgets/premium-person.php:
|
6092 |
msgid "Email Address"
|
6093 |
msgstr ""
|
6094 |
|
6095 |
-
#: widgets/premium-person.php:
|
6096 |
msgid "Website"
|
6097 |
msgstr ""
|
6098 |
|
6099 |
-
#: widgets/premium-person.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6100 |
msgid "Multiple Members Settings"
|
6101 |
msgstr ""
|
6102 |
|
6103 |
-
#: widgets/premium-person.php:
|
6104 |
msgid "Members"
|
6105 |
msgstr ""
|
6106 |
|
6107 |
-
#: widgets/premium-person.php:
|
6108 |
#, php-format
|
6109 |
msgid "%1$s I'm not able to see Font Awesome icons in the widget » %2$s"
|
6110 |
msgstr ""
|
6111 |
|
6112 |
-
#: widgets/premium-person.php:
|
6113 |
msgid "Job Title"
|
6114 |
msgstr ""
|
6115 |
|
6116 |
-
#: widgets/premium-person.php:
|
6117 |
msgid "Social Icons"
|
6118 |
msgstr ""
|
6119 |
|
6120 |
-
#: widgets/premium-person.php:
|
6121 |
msgid "Brands Default Colors"
|
6122 |
msgstr ""
|
6123 |
|
6124 |
-
#: widgets/premium-person.php:
|
6125 |
msgid "Bottom Offset"
|
6126 |
msgstr ""
|
6127 |
|
6128 |
-
#: widgets/premium-person.php:
|
6129 |
msgid "Transition Duration (sec)"
|
6130 |
msgstr ""
|
6131 |
|
6132 |
-
#: widgets/premium-person.php:
|
6133 |
msgid "Background Hover Color"
|
6134 |
msgstr ""
|
6135 |
|
@@ -6489,6 +6539,10 @@ msgstr ""
|
|
6489 |
msgid "Font Awesome Icon"
|
6490 |
msgstr ""
|
6491 |
|
|
|
|
|
|
|
|
|
6492 |
#: widgets/premium-title.php:348
|
6493 |
msgid ""
|
6494 |
"Please note that left/right alignment is reversed when Icon Position is set "
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Premium Addons for Elementor\n"
|
5 |
+
"POT-Creation-Date: 2020-12-13 13:35+0200\n"
|
6 |
"PO-Revision-Date: 2018-02-15 10:41+0200\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Leap13\n"
|
194 |
#: modules/woocommerce/widgets/woo-products.php:105
|
195 |
#: modules/woocommerce/widgets/woo-products.php:952
|
196 |
#: widgets/premium-blog.php:911 widgets/premium-carousel.php:37
|
197 |
+
#: widgets/premium-carousel.php:79 widgets/premium-person.php:857
|
198 |
+
#: widgets/premium-person.php:1353
|
199 |
msgid "Carousel"
|
200 |
msgstr ""
|
201 |
|
229 |
msgstr ""
|
230 |
|
231 |
#: admin/includes/elements.php:72 admin/includes/elements.php:469
|
232 |
+
#: widgets/premium-title.php:43
|
233 |
msgid "Heading"
|
234 |
msgstr ""
|
235 |
|
360 |
|
361 |
#: admin/includes/elements.php:285 admin/includes/elements.php:712
|
362 |
#: widgets/premium-banner.php:372 widgets/premium-banner.php:835
|
363 |
+
#: widgets/premium-blog.php:1708 widgets/premium-button.php:55
|
364 |
#: widgets/premium-button.php:80 widgets/premium-button.php:655
|
365 |
#: widgets/premium-contactform.php:202 widgets/premium-contactform.php:438
|
366 |
#: widgets/premium-image-button.php:77 widgets/premium-image-button.php:561
|
1109 |
msgid "Vertical Scroll: Section ID"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: includes/elementor-helper.php:687
|
1113 |
msgid "No Comments"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: includes/elementor-helper.php:688
|
1117 |
msgid "1 Comment"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: includes/elementor-helper.php:689
|
1121 |
msgid "% Comments"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: includes/elementor-helper.php:1007
|
1125 |
#: modules/woocommerce/widgets/woo-products.php:574
|
1126 |
#: modules/woocommerce/widgets/woo-products.php:774
|
1127 |
+
#: widgets/premium-blog.php:1044 widgets/premium-blog.php:1953
|
1128 |
msgid "Pagination"
|
1129 |
msgstr ""
|
1130 |
|
1432 |
#: modules/woocommerce/skins/skin-5.php:106
|
1433 |
#: modules/woocommerce/skins/skin-6.php:160
|
1434 |
#: modules/woocommerce/widgets/woo-products.php:734
|
1435 |
+
#: widgets/premium-banner.php:82 widgets/premium-blog.php:1305
|
1436 |
#: widgets/premium-counter.php:200 widgets/premium-grid.php:1098
|
1437 |
#: widgets/premium-icon-list.php:123 widgets/premium-image-scroll.php:82
|
1438 |
#: widgets/premium-image-scroll.php:498 widgets/premium-image-separator.php:92
|
1439 |
#: widgets/premium-image-separator.php:115 widgets/premium-modalbox.php:382
|
1440 |
+
#: widgets/premium-modalbox.php:576 widgets/premium-person.php:351
|
1441 |
+
#: widgets/premium-person.php:601 widgets/premium-person.php:932
|
1442 |
#: widgets/premium-testimonials.php:75 widgets/premium-testimonials.php:297
|
1443 |
#: widgets/premium-title.php:132 widgets/premium-videobox.php:980
|
1444 |
msgid "Image"
|
1482 |
#: modules/woocommerce/skins/skin-6.php:215
|
1483 |
#: modules/woocommerce/widgets/woo-products.php:627
|
1484 |
#: widgets/premium-banner.php:447 widgets/premium-blog.php:617
|
1485 |
+
#: widgets/premium-blog.php:870 widgets/premium-blog.php:1107
|
1486 |
#: widgets/premium-button.php:577 widgets/premium-countdown.php:167
|
1487 |
#: widgets/premium-counter.php:152 widgets/premium-dual-header.php:194
|
1488 |
#: widgets/premium-fancytext.php:134 widgets/premium-grid.php:374
|
1489 |
#: widgets/premium-icon-list.php:707 widgets/premium-image-button.php:483
|
1490 |
#: widgets/premium-image-separator.php:217 widgets/premium-lottie.php:264
|
1491 |
+
#: widgets/premium-maps.php:522 widgets/premium-maps.php:603
|
1492 |
+
#: widgets/premium-modalbox.php:695 widgets/premium-person.php:173
|
1493 |
#: widgets/premium-pricing-table.php:421 widgets/premium-pricing-table.php:1549
|
1494 |
#: widgets/premium-title.php:289 widgets/premium-title.php:318
|
1495 |
msgid "Alignment"
|
1503 |
#: modules/woocommerce/skins/skin-6.php:219
|
1504 |
#: modules/woocommerce/widgets/woo-products.php:631
|
1505 |
#: widgets/premium-banner.php:451 widgets/premium-blog.php:621
|
1506 |
+
#: widgets/premium-blog.php:874 widgets/premium-blog.php:1111
|
1507 |
#: widgets/premium-button.php:581 widgets/premium-countdown.php:171
|
1508 |
#: widgets/premium-counter.php:156 widgets/premium-counter.php:288
|
1509 |
#: widgets/premium-counter.php:312 widgets/premium-counter.php:338
|
1513 |
#: widgets/premium-grid.php:842 widgets/premium-icon-list.php:712
|
1514 |
#: widgets/premium-icon-list.php:757 widgets/premium-icon-list.php:791
|
1515 |
#: widgets/premium-image-button.php:487 widgets/premium-image-separator.php:221
|
1516 |
+
#: widgets/premium-lottie.php:268 widgets/premium-maps.php:526
|
1517 |
+
#: widgets/premium-maps.php:607 widgets/premium-modalbox.php:699
|
1518 |
+
#: widgets/premium-person.php:177 widgets/premium-person.php:222
|
1519 |
#: widgets/premium-pricing-table.php:425 widgets/premium-pricing-table.php:652
|
1520 |
#: widgets/premium-pricing-table.php:1553 widgets/premium-progressbar.php:397
|
1521 |
#: widgets/premium-title.php:240 widgets/premium-title.php:293
|
1533 |
#: modules/woocommerce/widgets/woo-products.php:635
|
1534 |
#: widgets/premium-banner.php:455 widgets/premium-blog.php:625
|
1535 |
#: widgets/premium-blog.php:652 widgets/premium-blog.php:878
|
1536 |
+
#: widgets/premium-blog.php:1115 widgets/premium-button.php:585
|
1537 |
#: widgets/premium-countdown.php:175 widgets/premium-counter.php:160
|
1538 |
#: widgets/premium-counter.php:316 widgets/premium-counter.php:342
|
1539 |
#: widgets/premium-dual-header.php:202 widgets/premium-dual-header.php:240
|
1542 |
#: widgets/premium-grid.php:382 widgets/premium-grid.php:846
|
1543 |
#: widgets/premium-icon-list.php:716 widgets/premium-icon-list.php:761
|
1544 |
#: widgets/premium-image-button.php:491 widgets/premium-image-separator.php:225
|
1545 |
+
#: widgets/premium-lottie.php:272 widgets/premium-maps.php:530
|
1546 |
+
#: widgets/premium-maps.php:611 widgets/premium-modalbox.php:703
|
1547 |
+
#: widgets/premium-person.php:181 widgets/premium-person.php:226
|
1548 |
#: widgets/premium-pricing-table.php:429 widgets/premium-pricing-table.php:1557
|
1549 |
#: widgets/premium-progressbar.php:401 widgets/premium-title.php:244
|
1550 |
#: widgets/premium-title.php:297 widgets/premium-title.php:326
|
1560 |
#: modules/woocommerce/skins/skin-6.php:227
|
1561 |
#: modules/woocommerce/widgets/woo-products.php:639
|
1562 |
#: widgets/premium-banner.php:459 widgets/premium-blog.php:629
|
1563 |
+
#: widgets/premium-blog.php:882 widgets/premium-blog.php:1119
|
1564 |
#: widgets/premium-button.php:589 widgets/premium-countdown.php:179
|
1565 |
#: widgets/premium-counter.php:164 widgets/premium-counter.php:287
|
1566 |
#: widgets/premium-counter.php:320 widgets/premium-counter.php:346
|
1570 |
#: widgets/premium-grid.php:850 widgets/premium-icon-list.php:720
|
1571 |
#: widgets/premium-icon-list.php:765 widgets/premium-icon-list.php:787
|
1572 |
#: widgets/premium-image-button.php:495 widgets/premium-image-separator.php:229
|
1573 |
+
#: widgets/premium-lottie.php:276 widgets/premium-maps.php:534
|
1574 |
+
#: widgets/premium-maps.php:615 widgets/premium-modalbox.php:707
|
1575 |
+
#: widgets/premium-person.php:185 widgets/premium-person.php:230
|
1576 |
#: widgets/premium-pricing-table.php:433 widgets/premium-pricing-table.php:656
|
1577 |
#: widgets/premium-pricing-table.php:1561 widgets/premium-progressbar.php:405
|
1578 |
#: widgets/premium-title.php:248 widgets/premium-title.php:301
|
1629 |
#: modules/woocommerce/skins/skin-6.php:1147
|
1630 |
#: modules/woocommerce/widgets/woo-products.php:785
|
1631 |
#: modules/woocommerce/widgets/woo-products.php:1024
|
1632 |
+
#: widgets/premium-banner.php:942 widgets/premium-blog.php:1292
|
1633 |
+
#: widgets/premium-blog.php:1539 widgets/premium-blog.php:1695
|
1634 |
+
#: widgets/premium-blog.php:1836 widgets/premium-blog.php:1940
|
1635 |
+
#: widgets/premium-blog.php:2158 widgets/premium-blog.php:2304
|
1636 |
#: widgets/premium-button.php:787 widgets/premium-button.php:952
|
1637 |
#: widgets/premium-contactform.php:270 widgets/premium-contactform.php:454
|
1638 |
+
#: widgets/premium-countdown.php:731 widgets/premium-counter.php:662
|
1639 |
+
#: widgets/premium-counter.php:746 widgets/premium-dual-header.php:602
|
1640 |
+
#: widgets/premium-dual-header.php:787 widgets/premium-grid.php:1085
|
1641 |
+
#: widgets/premium-grid.php:1173 widgets/premium-grid.php:1310
|
1642 |
+
#: widgets/premium-grid.php:1443 widgets/premium-grid.php:1527
|
1643 |
+
#: widgets/premium-grid.php:1733 widgets/premium-grid.php:1857
|
1644 |
+
#: widgets/premium-grid.php:1945 widgets/premium-icon-list.php:1036
|
1645 |
+
#: widgets/premium-icon-list.php:1227 widgets/premium-icon-list.php:1452
|
1646 |
+
#: widgets/premium-image-button.php:687 widgets/premium-image-button.php:895
|
1647 |
+
#: widgets/premium-image-separator.php:443 widgets/premium-lottie.php:520
|
1648 |
+
#: widgets/premium-maps.php:510 widgets/premium-maps.php:592
|
1649 |
+
#: widgets/premium-maps.php:676 widgets/premium-modalbox.php:934
|
1650 |
+
#: widgets/premium-modalbox.php:1236 widgets/premium-modalbox.php:1417
|
1651 |
+
#: widgets/premium-modalbox.php:1557 widgets/premium-person.php:1030
|
1652 |
+
#: widgets/premium-person.php:1092 widgets/premium-person.php:1143
|
1653 |
+
#: widgets/premium-person.php:1267 widgets/premium-person.php:1340
|
1654 |
+
#: widgets/premium-person.php:1441 widgets/premium-pricing-table.php:867
|
1655 |
+
#: widgets/premium-pricing-table.php:960 widgets/premium-pricing-table.php:1040
|
1656 |
#: widgets/premium-pricing-table.php:1361
|
1657 |
#: widgets/premium-pricing-table.php:1527
|
1658 |
#: widgets/premium-pricing-table.php:1704
|
1681 |
#: modules/woocommerce/skins/skin-6.php:297
|
1682 |
#: modules/woocommerce/widgets/woo-products.php:532
|
1683 |
#: widgets/premium-banner.php:321 widgets/premium-banner.php:716
|
1684 |
+
#: widgets/premium-blog.php:388 widgets/premium-blog.php:1372
|
1685 |
#: widgets/premium-counter.php:80 widgets/premium-counter.php:581
|
1686 |
#: widgets/premium-grid.php:560 widgets/premium-grid.php:1192
|
1687 |
#: widgets/premium-icon-list.php:95 widgets/premium-icon-list.php:1243
|
1688 |
+
#: widgets/premium-maps.php:244 widgets/premium-maps.php:468
|
1689 |
+
#: widgets/premium-modalbox.php:227 widgets/premium-person.php:374
|
1690 |
+
#: widgets/premium-person.php:623 widgets/premium-pricing-table.php:154
|
1691 |
#: widgets/premium-pricing-table.php:761 widgets/premium-pricing-table.php:980
|
1692 |
#: widgets/premium-progressbar.php:187 widgets/premium-progressbar.php:632
|
1693 |
+
#: widgets/premium-title.php:85 widgets/premium-title.php:91
|
1694 |
+
#: widgets/premium-title.php:651
|
1695 |
msgid "Title"
|
1696 |
msgstr ""
|
1697 |
|
1765 |
#: modules/woocommerce/widgets/woo-products.php:962
|
1766 |
#: modules/woocommerce/widgets/woo-products.php:1038
|
1767 |
#: widgets/premium-banner.php:723 widgets/premium-banner.php:790
|
1768 |
+
#: widgets/premium-banner.php:846 widgets/premium-blog.php:1165
|
1769 |
+
#: widgets/premium-blog.php:1221 widgets/premium-blog.php:1388
|
1770 |
+
#: widgets/premium-blog.php:1451 widgets/premium-blog.php:1746
|
1771 |
+
#: widgets/premium-blog.php:1793 widgets/premium-blog.php:1866
|
1772 |
+
#: widgets/premium-blog.php:1980 widgets/premium-blog.php:2037
|
1773 |
+
#: widgets/premium-blog.php:2094 widgets/premium-blog.php:2213
|
1774 |
+
#: widgets/premium-blog.php:2254 widgets/premium-carousel.php:664
|
1775 |
#: widgets/premium-carousel.php:718 widgets/premium-carousel.php:806
|
1776 |
+
#: widgets/premium-countdown.php:447 widgets/premium-countdown.php:543
|
1777 |
+
#: widgets/premium-countdown.php:631 widgets/premium-countdown.php:670
|
1778 |
+
#: widgets/premium-counter.php:393 widgets/premium-counter.php:591
|
1779 |
+
#: widgets/premium-counter.php:682 widgets/premium-dual-header.php:810
|
1780 |
+
#: widgets/premium-fancytext.php:408 widgets/premium-fancytext.php:466
|
1781 |
+
#: widgets/premium-fancytext.php:513 widgets/premium-grid.php:1199
|
1782 |
+
#: widgets/premium-grid.php:1230 widgets/premium-grid.php:1377
|
1783 |
+
#: widgets/premium-grid.php:1461 widgets/premium-icon-list.php:1102
|
1784 |
+
#: widgets/premium-icon-list.php:1272 widgets/premium-icon-list.php:1566
|
1785 |
+
#: widgets/premium-icon-list.php:1688 widgets/premium-image-scroll.php:296
|
1786 |
+
#: widgets/premium-image-separator.php:353 widgets/premium-maps.php:475
|
1787 |
+
#: widgets/premium-maps.php:558 widgets/premium-modalbox.php:790
|
1788 |
+
#: widgets/premium-modalbox.php:1061 widgets/premium-modalbox.php:1137
|
1789 |
+
#: widgets/premium-modalbox.php:1189 widgets/premium-modalbox.php:1302
|
1790 |
+
#: widgets/premium-modalbox.php:1362 widgets/premium-person.php:999
|
1791 |
+
#: widgets/premium-person.php:1050 widgets/premium-person.php:1112
|
1792 |
+
#: widgets/premium-person.php:1178 widgets/premium-person.php:1363
|
1793 |
+
#: widgets/premium-pricing-table.php:820 widgets/premium-pricing-table.php:990
|
1794 |
+
#: widgets/premium-pricing-table.php:1077
|
1795 |
#: widgets/premium-pricing-table.php:1118
|
1796 |
#: widgets/premium-pricing-table.php:1189
|
1797 |
#: widgets/premium-pricing-table.php:1234
|
1817 |
#: modules/woocommerce/skins/skin-4.php:346
|
1818 |
#: modules/woocommerce/skins/skin-5.php:255
|
1819 |
#: modules/woocommerce/skins/skin-6.php:318 widgets/premium-banner.php:860
|
1820 |
+
#: widgets/premium-blog.php:1402 widgets/premium-blog.php:1461
|
1821 |
+
#: widgets/premium-blog.php:1880 widgets/premium-icon-list.php:1119
|
1822 |
#: widgets/premium-icon-list.php:1289 widgets/premium-image-separator.php:370
|
1823 |
+
#: widgets/premium-modalbox.php:808 widgets/premium-person.php:1192
|
1824 |
+
#: widgets/premium-person.php:1377 widgets/premium-videobox.php:1312
|
1825 |
#: widgets/premium-videobox.php:1435
|
1826 |
msgid "Hover Color"
|
1827 |
msgstr ""
|
1863 |
#: modules/woocommerce/skins/skin-6.php:937
|
1864 |
#: modules/woocommerce/skins/skin-6.php:1094 widgets/premium-banner.php:770
|
1865 |
#: widgets/premium-banner.php:822 widgets/premium-banner.php:931
|
1866 |
+
#: widgets/premium-blog.php:1281 widgets/premium-blog.php:1528
|
1867 |
+
#: widgets/premium-blog.php:1684 widgets/premium-blog.php:2146
|
1868 |
#: widgets/premium-button.php:776 widgets/premium-button.php:941
|
1869 |
+
#: widgets/premium-contactform.php:300 widgets/premium-countdown.php:645
|
1870 |
+
#: widgets/premium-countdown.php:742 widgets/premium-counter.php:568
|
1871 |
+
#: widgets/premium-counter.php:651 widgets/premium-counter.php:735
|
1872 |
+
#: widgets/premium-dual-header.php:590 widgets/premium-dual-header.php:775
|
1873 |
+
#: widgets/premium-grid.php:1074 widgets/premium-grid.php:1162
|
1874 |
+
#: widgets/premium-grid.php:1299 widgets/premium-grid.php:1433
|
1875 |
+
#: widgets/premium-grid.php:1517 widgets/premium-grid.php:1722
|
1876 |
+
#: widgets/premium-grid.php:1846 widgets/premium-grid.php:1934
|
1877 |
+
#: widgets/premium-icon-list.php:1023 widgets/premium-icon-list.php:1213
|
1878 |
+
#: widgets/premium-icon-list.php:1316 widgets/premium-icon-list.php:1433
|
1879 |
+
#: widgets/premium-image-button.php:677 widgets/premium-image-button.php:885
|
1880 |
+
#: widgets/premium-maps.php:498 widgets/premium-maps.php:581
|
1881 |
+
#: widgets/premium-maps.php:665 widgets/premium-modalbox.php:1545
|
1882 |
+
#: widgets/premium-person.php:1081 widgets/premium-person.php:1256
|
1883 |
+
#: widgets/premium-pricing-table.php:941 widgets/premium-pricing-table.php:1022
|
1884 |
#: widgets/premium-pricing-table.php:1100
|
1885 |
#: widgets/premium-pricing-table.php:1168
|
1886 |
#: widgets/premium-pricing-table.php:1215
|
1952 |
#: modules/woocommerce/skins/skin-4.php:310
|
1953 |
#: modules/woocommerce/skins/skin-4.php:496
|
1954 |
#: modules/woocommerce/skins/skin-5.php:395
|
1955 |
+
#: modules/woocommerce/skins/skin-6.php:468 widgets/premium-blog.php:1727
|
1956 |
+
#: widgets/premium-blog.php:1929 widgets/premium-person.php:308
|
1957 |
#: widgets/premium-pricing-table.php:1447 widgets/premium-progressbar.php:122
|
1958 |
#: widgets/premium-testimonials.php:159
|
1959 |
msgid "Spacing"
|
1986 |
#: modules/woocommerce/skins/skin-6.php:547 widgets/premium-banner.php:354
|
1987 |
#: widgets/premium-banner.php:361 widgets/premium-banner.php:783
|
1988 |
#: widgets/premium-grid.php:568 widgets/premium-grid.php:1222
|
1989 |
+
#: widgets/premium-maps.php:253 widgets/premium-maps.php:551
|
1990 |
+
#: widgets/premium-person.php:384 widgets/premium-person.php:633
|
1991 |
+
#: widgets/premium-person.php:1105 widgets/premium-pricing-table.php:454
|
1992 |
#: widgets/premium-pricing-table.php:463 widgets/premium-pricing-table.php:785
|
1993 |
#: widgets/premium-pricing-table.php:1630 widgets/premium-videobox.php:1069
|
1994 |
msgid "Description"
|
2020 |
#: modules/woocommerce/skins/skin-6.php:637
|
2021 |
#: modules/woocommerce/skins/skin-6.php:1160
|
2022 |
#: modules/woocommerce/widgets/woo-products.php:807
|
2023 |
+
#: widgets/premium-banner.php:694 widgets/premium-blog.php:1159
|
2024 |
+
#: widgets/premium-blog.php:1739 widgets/premium-blog.php:1973
|
2025 |
#: widgets/premium-button.php:673 widgets/premium-carousel.php:658
|
2026 |
#: widgets/premium-contactform.php:467 widgets/premium-dual-header.php:458
|
2027 |
#: widgets/premium-dual-header.php:643 widgets/premium-dual-header.php:844
|
2032 |
#: widgets/premium-image-scroll.php:635 widgets/premium-lottie.php:412
|
2033 |
#: widgets/premium-modalbox.php:343 widgets/premium-modalbox.php:876
|
2034 |
#: widgets/premium-modalbox.php:1130 widgets/premium-modalbox.php:1295
|
2035 |
+
#: widgets/premium-person.php:970 widgets/premium-pricing-table.php:1766
|
2036 |
#: widgets/premium-pricing-table.php:2009 widgets/premium-title.php:1070
|
2037 |
#: widgets/premium-videobox.php:518 widgets/premium-vscroll.php:358
|
2038 |
#: widgets/premium-vscroll.php:700
|
2079 |
#: modules/woocommerce/widgets/woo-products.php:935
|
2080 |
#: modules/woocommerce/widgets/woo-products.php:1010
|
2081 |
#: widgets/premium-banner.php:680 widgets/premium-banner.php:911
|
2082 |
+
#: widgets/premium-banner.php:970 widgets/premium-blog.php:1201
|
2083 |
+
#: widgets/premium-blog.php:1257 widgets/premium-blog.php:1499
|
2084 |
+
#: widgets/premium-blog.php:1774 widgets/premium-blog.php:1821
|
2085 |
+
#: widgets/premium-blog.php:1918 widgets/premium-blog.php:2017
|
2086 |
+
#: widgets/premium-blog.php:2074 widgets/premium-blog.php:2131
|
2087 |
+
#: widgets/premium-blog.php:2293 widgets/premium-button.php:733
|
2088 |
#: widgets/premium-button.php:882 widgets/premium-carousel.php:699
|
2089 |
#: widgets/premium-carousel.php:753 widgets/premium-contactform.php:289
|
2090 |
+
#: widgets/premium-contactform.php:503 widgets/premium-countdown.php:522
|
2091 |
+
#: widgets/premium-countdown.php:712 widgets/premium-counter.php:550
|
2092 |
+
#: widgets/premium-counter.php:632 widgets/premium-counter.php:724
|
2093 |
+
#: widgets/premium-dual-header.php:570 widgets/premium-dual-header.php:755
|
2094 |
+
#: widgets/premium-grid.php:1055 widgets/premium-grid.php:1122
|
2095 |
+
#: widgets/premium-grid.php:1271 widgets/premium-grid.php:1413
|
2096 |
+
#: widgets/premium-grid.php:1497 widgets/premium-grid.php:1601
|
2097 |
+
#: widgets/premium-grid.php:1648 widgets/premium-grid.php:1699
|
2098 |
+
#: widgets/premium-grid.php:1827 widgets/premium-grid.php:1915
|
2099 |
+
#: widgets/premium-icon-list.php:1004 widgets/premium-icon-list.php:1200
|
2100 |
+
#: widgets/premium-image-button.php:634 widgets/premium-image-button.php:826
|
2101 |
+
#: widgets/premium-image-scroll.php:649 widgets/premium-image-scroll.php:684
|
2102 |
+
#: widgets/premium-image-separator.php:421 widgets/premium-lottie.php:509
|
2103 |
+
#: widgets/premium-maps.php:645 widgets/premium-modalbox.php:915
|
2104 |
+
#: widgets/premium-modalbox.php:1017 widgets/premium-modalbox.php:1167
|
2105 |
+
#: widgets/premium-modalbox.php:1219 widgets/premium-modalbox.php:1340
|
2106 |
+
#: widgets/premium-modalbox.php:1400 widgets/premium-modalbox.php:1525
|
2107 |
+
#: widgets/premium-person.php:1245 widgets/premium-person.php:1430
|
2108 |
+
#: widgets/premium-pricing-table.php:890 widgets/premium-pricing-table.php:930
|
2109 |
+
#: widgets/premium-pricing-table.php:1497
|
2110 |
#: widgets/premium-pricing-table.php:1789
|
2111 |
#: widgets/premium-pricing-table.php:1863
|
2112 |
#: widgets/premium-pricing-table.php:2032
|
2131 |
#: modules/woocommerce/skins/skin-6.php:692
|
2132 |
#: modules/woocommerce/skins/skin-6.php:1215
|
2133 |
#: modules/woocommerce/widgets/woo-products.php:854
|
2134 |
+
#: widgets/premium-blog.php:1787 widgets/premium-blog.php:2030
|
2135 |
#: widgets/premium-button.php:800 widgets/premium-carousel.php:712
|
2136 |
#: widgets/premium-contactform.php:520 widgets/premium-grid.php:1455
|
2137 |
#: widgets/premium-grid.php:1614 widgets/premium-grid.php:1870
|
2177 |
#: modules/woocommerce/skins/skin-6.php:774
|
2178 |
#: modules/woocommerce/widgets/woo-products.php:590
|
2179 |
#: widgets/premium-carousel.php:145 widgets/premium-grid.php:467
|
2180 |
+
#: widgets/premium-pricing-table.php:564 widgets/premium-progressbar.php:84
|
|
|
2181 |
msgid "Type"
|
2182 |
msgstr ""
|
2183 |
|
2187 |
#: modules/woocommerce/skins/skin-4.php:805
|
2188 |
#: modules/woocommerce/skins/skin-5.php:699
|
2189 |
#: modules/woocommerce/skins/skin-6.php:777 widgets/premium-banner.php:240
|
2190 |
+
#: widgets/premium-countdown.php:208 widgets/premium-grid.php:920
|
2191 |
msgid "Default"
|
2192 |
msgstr ""
|
2193 |
|
2285 |
#: modules/woocommerce/skins/skin-6.php:857
|
2286 |
#: modules/woocommerce/skins/skin-6.php:1014
|
2287 |
#: modules/woocommerce/widgets/woo-products.php:979
|
2288 |
+
#: widgets/premium-blog.php:2268 widgets/premium-button.php:561
|
2289 |
+
#: widgets/premium-carousel.php:610 widgets/premium-countdown.php:614
|
2290 |
#: widgets/premium-counter.php:410 widgets/premium-counter.php:437
|
2291 |
#: widgets/premium-grid.php:1350 widgets/premium-icon-list.php:366
|
2292 |
#: widgets/premium-icon-list.php:1069 widgets/premium-image-button.php:467
|
2293 |
#: widgets/premium-image-separator.php:178 widgets/premium-lottie.php:217
|
2294 |
+
#: widgets/premium-maps.php:186 widgets/premium-modalbox.php:656
|
2295 |
+
#: widgets/premium-modalbox.php:1114 widgets/premium-person.php:1166
|
2296 |
+
#: widgets/premium-person.php:1391 widgets/premium-pricing-table.php:588
|
2297 |
#: widgets/premium-pricing-table.php:608 widgets/premium-pricing-table.php:628
|
2298 |
#: widgets/premium-pricing-table.php:837 widgets/premium-pricing-table.php:1436
|
2299 |
#: widgets/premium-progressbar.php:148 widgets/premium-progressbar.php:811
|
2322 |
#: modules/woocommerce/widgets/woo-products.php:917
|
2323 |
#: modules/woocommerce/widgets/woo-products.php:993
|
2324 |
#: widgets/premium-banner.php:540 widgets/premium-banner.php:883
|
2325 |
+
#: widgets/premium-blog.php:1179 widgets/premium-blog.php:1235
|
2326 |
+
#: widgets/premium-blog.php:1471 widgets/premium-blog.php:1650
|
2327 |
+
#: widgets/premium-blog.php:1756 widgets/premium-blog.php:1803
|
2328 |
+
#: widgets/premium-blog.php:1899 widgets/premium-blog.php:1994
|
2329 |
+
#: widgets/premium-blog.php:2051 widgets/premium-blog.php:2108
|
2330 |
+
#: widgets/premium-blog.php:2279 widgets/premium-button.php:711
|
2331 |
#: widgets/premium-button.php:860 widgets/premium-carousel.php:681
|
2332 |
#: widgets/premium-carousel.php:735 widgets/premium-contactform.php:481
|
2333 |
+
#: widgets/premium-contactform.php:536 widgets/premium-countdown.php:472
|
2334 |
+
#: widgets/premium-countdown.php:567 widgets/premium-countdown.php:685
|
2335 |
+
#: widgets/premium-counter.php:477 widgets/premium-counter.php:614
|
2336 |
+
#: widgets/premium-counter.php:706 widgets/premium-fancytext.php:433
|
2337 |
+
#: widgets/premium-fancytext.php:491 widgets/premium-fancytext.php:538
|
2338 |
+
#: widgets/premium-grid.php:1391 widgets/premium-grid.php:1475
|
2339 |
+
#: widgets/premium-grid.php:1583 widgets/premium-grid.php:1630
|
2340 |
+
#: widgets/premium-grid.php:1681 widgets/premium-grid.php:1972
|
2341 |
+
#: widgets/premium-icon-list.php:951 widgets/premium-image-separator.php:387
|
2342 |
+
#: widgets/premium-lottie.php:418 widgets/premium-lottie.php:461
|
2343 |
+
#: widgets/premium-modalbox.php:886 widgets/premium-modalbox.php:991
|
2344 |
+
#: widgets/premium-modalbox.php:1081 widgets/premium-modalbox.php:1148
|
2345 |
+
#: widgets/premium-modalbox.php:1200 widgets/premium-modalbox.php:1317
|
2346 |
+
#: widgets/premium-modalbox.php:1377 widgets/premium-person.php:1206
|
2347 |
+
#: widgets/premium-person.php:1287 widgets/premium-person.php:1402
|
2348 |
+
#: widgets/premium-pricing-table.php:853 widgets/premium-pricing-table.php:1608
|
2349 |
#: widgets/premium-pricing-table.php:1951
|
2350 |
#: widgets/premium-pricing-table.php:1969 widgets/premium-progressbar.php:912
|
2351 |
#: widgets/premium-title.php:717 widgets/premium-title.php:734
|
2466 |
|
2467 |
#: modules/woocommerce/skins/skin-6.php:119
|
2468 |
#: modules/woocommerce/widgets/woo-products.php:151
|
2469 |
+
#: widgets/premium-grid.php:719 widgets/premium-person.php:105
|
2470 |
#: widgets/premium-title.php:105
|
2471 |
msgid "Style 1"
|
2472 |
msgstr ""
|
2484 |
#: modules/woocommerce/skins/skin-6.php:122
|
2485 |
#: modules/woocommerce/widgets/woo-products.php:129
|
2486 |
#: widgets/premium-blog.php:192 widgets/premium-grid.php:176
|
2487 |
+
#: widgets/premium-person.php:289 widgets/premium-videobox.php:246
|
2488 |
msgid "4 Columns"
|
2489 |
msgstr ""
|
2490 |
|
2491 |
#: modules/woocommerce/skins/skin-6.php:123
|
2492 |
#: modules/woocommerce/widgets/woo-products.php:130
|
2493 |
#: widgets/premium-blog.php:193 widgets/premium-grid.php:177
|
2494 |
+
#: widgets/premium-person.php:290 widgets/premium-videobox.php:247
|
2495 |
msgid "5 Columns"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
#: modules/woocommerce/skins/skin-6.php:124
|
2499 |
#: modules/woocommerce/widgets/woo-products.php:131
|
2500 |
#: widgets/premium-blog.php:194 widgets/premium-grid.php:178
|
2501 |
+
#: widgets/premium-person.php:291 widgets/premium-videobox.php:248
|
2502 |
msgid "6 Columns"
|
2503 |
msgstr ""
|
2504 |
|
2557 |
msgstr ""
|
2558 |
|
2559 |
#: modules/woocommerce/widgets/woo-products.php:126
|
2560 |
+
#: widgets/premium-grid.php:173 widgets/premium-person.php:286
|
2561 |
#: widgets/premium-videobox.php:243
|
2562 |
msgid "1 Column"
|
2563 |
msgstr ""
|
2564 |
|
2565 |
#: modules/woocommerce/widgets/woo-products.php:127
|
2566 |
#: widgets/premium-blog.php:190 widgets/premium-grid.php:174
|
2567 |
+
#: widgets/premium-person.php:287 widgets/premium-videobox.php:244
|
2568 |
msgid "2 Columns"
|
2569 |
msgstr ""
|
2570 |
|
2571 |
#: modules/woocommerce/widgets/woo-products.php:128
|
2572 |
#: widgets/premium-blog.php:191 widgets/premium-grid.php:175
|
2573 |
+
#: widgets/premium-person.php:288 widgets/premium-videobox.php:245
|
2574 |
msgid "3 Columns"
|
2575 |
msgstr ""
|
2576 |
|
2607 |
msgstr ""
|
2608 |
|
2609 |
#: modules/woocommerce/widgets/woo-products.php:222
|
2610 |
+
#: widgets/premium-blog.php:1015 widgets/premium-person.php:887
|
2611 |
msgid "Arrows Position"
|
2612 |
msgstr ""
|
2613 |
|
2682 |
msgstr ""
|
2683 |
|
2684 |
#: modules/woocommerce/widgets/woo-products.php:373
|
2685 |
+
#: widgets/premium-blog.php:959 widgets/premium-carousel.php:329
|
2686 |
+
#: widgets/premium-person.php:874
|
2687 |
msgid "Autoplay Speed"
|
2688 |
msgstr ""
|
2689 |
|
2777 |
#: widgets/premium-button.php:144 widgets/premium-grid.php:768
|
2778 |
#: widgets/premium-icon-list.php:889 widgets/premium-image-button.php:141
|
2779 |
#: widgets/premium-lottie.php:146 widgets/premium-modalbox.php:120
|
2780 |
+
#: widgets/premium-person.php:201 widgets/premium-progressbar.php:380
|
2781 |
#: widgets/premium-videobox.php:776
|
2782 |
msgid "None"
|
2783 |
msgstr ""
|
2836 |
msgstr ""
|
2837 |
|
2838 |
#: modules/woocommerce/widgets/woo-products.php:583
|
2839 |
+
#: widgets/premium-blog.php:1053
|
2840 |
msgid "Enable Pagination"
|
2841 |
msgstr ""
|
2842 |
|
2884 |
|
2885 |
#: modules/woocommerce/widgets/woo-products.php:746
|
2886 |
#: widgets/premium-banner.php:223 widgets/premium-blog.php:471
|
2887 |
+
#: widgets/premium-grid.php:769 widgets/premium-person.php:202
|
2888 |
#: widgets/premium-videobox.php:777
|
2889 |
msgid "Zoom In"
|
2890 |
msgstr ""
|
2892 |
#: modules/woocommerce/widgets/woo-products.php:747
|
2893 |
#: widgets/premium-banner.php:224 widgets/premium-blog.php:472
|
2894 |
#: widgets/premium-fancytext.php:172 widgets/premium-grid.php:770
|
2895 |
+
#: widgets/premium-person.php:203 widgets/premium-videobox.php:778
|
2896 |
msgid "Zoom Out"
|
2897 |
msgstr ""
|
2898 |
|
2899 |
#: modules/woocommerce/widgets/woo-products.php:748
|
2900 |
#: widgets/premium-banner.php:225 widgets/premium-blog.php:473
|
2901 |
+
#: widgets/premium-grid.php:771 widgets/premium-person.php:204
|
2902 |
#: widgets/premium-videobox.php:779
|
2903 |
msgid "Scale"
|
2904 |
msgstr ""
|
2905 |
|
2906 |
#: modules/woocommerce/widgets/woo-products.php:749
|
2907 |
#: widgets/premium-banner.php:226 widgets/premium-blog.php:474
|
2908 |
+
#: widgets/premium-grid.php:772 widgets/premium-person.php:205
|
2909 |
#: widgets/premium-videobox.php:780
|
2910 |
msgid "Grayscale"
|
2911 |
msgstr ""
|
2912 |
|
2913 |
#: modules/woocommerce/widgets/woo-products.php:750
|
2914 |
#: widgets/premium-banner.php:228 widgets/premium-blog.php:476
|
2915 |
+
#: widgets/premium-grid.php:774 widgets/premium-person.php:207
|
2916 |
#: widgets/premium-videobox.php:782
|
2917 |
msgid "Bright"
|
2918 |
msgstr ""
|
2919 |
|
2920 |
#: modules/woocommerce/widgets/woo-products.php:751
|
2921 |
#: widgets/premium-banner.php:229 widgets/premium-blog.php:477
|
2922 |
+
#: widgets/premium-grid.php:775 widgets/premium-person.php:208
|
2923 |
#: widgets/premium-videobox.php:783
|
2924 |
msgid "Sepia"
|
2925 |
msgstr ""
|
2926 |
|
2927 |
#: modules/woocommerce/widgets/woo-products.php:752
|
2928 |
#: widgets/premium-blog.php:478 widgets/premium-grid.php:776
|
2929 |
+
#: widgets/premium-person.php:209 widgets/premium-videobox.php:784
|
2930 |
msgid "Translate"
|
2931 |
msgstr ""
|
2932 |
|
2933 |
#: modules/woocommerce/widgets/woo-products.php:901
|
2934 |
+
#: widgets/premium-blog.php:1215 widgets/premium-blog.php:2087
|
2935 |
#: widgets/premium-grid.php:1661 widgets/premium-vscroll.php:759
|
2936 |
msgid "Active"
|
2937 |
msgstr ""
|
2938 |
|
2939 |
#: modules/woocommerce/widgets/woo-products.php:1056
|
2940 |
+
#: widgets/premium-blog.php:2227 widgets/premium-carousel.php:823
|
2941 |
msgid "Active Color"
|
2942 |
msgstr ""
|
2943 |
|
3091 |
#: widgets/premium-banner.php:219 widgets/premium-blog.php:466
|
3092 |
#: widgets/premium-button.php:140 widgets/premium-grid.php:764
|
3093 |
#: widgets/premium-icon-list.php:886 widgets/premium-image-button.php:137
|
3094 |
+
#: widgets/premium-person.php:198 widgets/premium-videobox.php:772
|
3095 |
msgid "Hover Effect"
|
3096 |
msgstr ""
|
3097 |
|
3098 |
#: widgets/premium-banner.php:227 widgets/premium-blog.php:475
|
3099 |
#: widgets/premium-grid.php:773 widgets/premium-icon-list.php:890
|
3100 |
+
#: widgets/premium-image-scroll.php:341 widgets/premium-person.php:206
|
3101 |
#: widgets/premium-videobox.php:781 widgets/premium-videobox.php:940
|
3102 |
msgid "Blur"
|
3103 |
msgstr ""
|
3105 |
#: widgets/premium-banner.php:237 widgets/premium-blog.php:504
|
3106 |
#: widgets/premium-contactform.php:151 widgets/premium-contactform.php:230
|
3107 |
#: widgets/premium-grid.php:114 widgets/premium-grid.php:439
|
3108 |
+
#: widgets/premium-grid.php:744 widgets/premium-maps.php:310
|
3109 |
#: widgets/premium-progressbar.php:486 widgets/premium-progressbar.php:869
|
3110 |
msgid "Height"
|
3111 |
msgstr ""
|
3178 |
|
3179 |
#: widgets/premium-banner.php:315 widgets/premium-carousel.php:114
|
3180 |
#: widgets/premium-modalbox.php:98 widgets/premium-modalbox.php:242
|
3181 |
+
#: widgets/premium-modalbox.php:264 widgets/premium-person.php:1280
|
3182 |
#: widgets/premium-testimonials.php:261 widgets/premium-testimonials.php:472
|
3183 |
#: widgets/premium-vscroll.php:81
|
3184 |
msgid "Content"
|
3275 |
msgstr ""
|
3276 |
|
3277 |
#: widgets/premium-banner.php:515 widgets/premium-button.php:623
|
3278 |
+
#: widgets/premium-carousel.php:447 widgets/premium-countdown.php:420
|
3279 |
#: widgets/premium-counter.php:365 widgets/premium-dual-header.php:402
|
3280 |
#: widgets/premium-grid.php:1001 widgets/premium-icon-list.php:916
|
3281 |
#: widgets/premium-image-button.php:529 widgets/premium-image-scroll.php:480
|
3282 |
+
#: widgets/premium-lottie.php:372 widgets/premium-maps.php:440
|
3283 |
+
#: widgets/premium-modalbox.php:725 widgets/premium-person.php:914
|
3284 |
#: widgets/premium-testimonials.php:279 widgets/premium-videobox.php:1161
|
3285 |
#: widgets/premium-vscroll.php:422
|
3286 |
msgid "Helpful Documentations"
|
3287 |
msgstr ""
|
3288 |
|
3289 |
+
#: widgets/premium-banner.php:524 widgets/premium-countdown.php:429
|
3290 |
#: widgets/premium-counter.php:374 widgets/premium-dual-header.php:411
|
3291 |
#: widgets/premium-icon-list.php:925 widgets/premium-image-scroll.php:489
|
3292 |
msgid "Gettings started »"
|
3308 |
msgid "Hover Border Color"
|
3309 |
msgstr ""
|
3310 |
|
3311 |
+
#: widgets/premium-banner.php:664 widgets/premium-blog.php:1363
|
3312 |
#: widgets/premium-grid.php:1154 widgets/premium-image-separator.php:343
|
3313 |
+
#: widgets/premium-modalbox.php:779 widgets/premium-person.php:949
|
3314 |
msgid "Hover CSS Filters"
|
3315 |
msgstr ""
|
3316 |
|
3317 |
#: widgets/premium-banner.php:691 widgets/premium-dual-header.php:841
|
3318 |
+
#: widgets/premium-image-scroll.php:601 widgets/premium-person.php:967
|
3319 |
#: widgets/premium-title.php:1067
|
3320 |
msgid "Blend Mode"
|
3321 |
msgstr ""
|
3334 |
#: widgets/premium-banner.php:923 widgets/premium-dual-header.php:582
|
3335 |
#: widgets/premium-dual-header.php:767 widgets/premium-grid.php:1134
|
3336 |
#: widgets/premium-grid.php:1283 widgets/premium-grid.php:1425
|
3337 |
+
#: widgets/premium-grid.php:1509 widgets/premium-maps.php:657
|
3338 |
#: widgets/premium-modalbox.php:956 widgets/premium-modalbox.php:1032
|
3339 |
#: widgets/premium-pricing-table.php:1801
|
3340 |
#: widgets/premium-pricing-table.php:1875
|
3346 |
msgid "Shadow"
|
3347 |
msgstr ""
|
3348 |
|
3349 |
+
#: widgets/premium-banner.php:893 widgets/premium-blog.php:1481
|
3350 |
#: widgets/premium-icon-list.php:963 widgets/premium-image-separator.php:404
|
3351 |
+
#: widgets/premium-person.php:1224
|
3352 |
msgid "Hover Background Color"
|
3353 |
msgstr ""
|
3354 |
|
3398 |
msgid "Masonry"
|
3399 |
msgstr ""
|
3400 |
|
3401 |
+
#: widgets/premium-blog.php:162 widgets/premium-person.php:329
|
3402 |
msgid "Equal Height"
|
3403 |
msgstr ""
|
3404 |
|
3503 |
msgid "Author"
|
3504 |
msgstr ""
|
3505 |
|
3506 |
+
#: widgets/premium-blog.php:389 widgets/premium-person.php:363
|
3507 |
+
#: widgets/premium-person.php:612 widgets/premium-person.php:992
|
3508 |
#: widgets/premium-testimonials.php:102 widgets/premium-testimonials.php:183
|
3509 |
msgid "Name"
|
3510 |
msgstr ""
|
3686 |
msgid "Get Tabs From"
|
3687 |
msgstr ""
|
3688 |
|
3689 |
+
#: widgets/premium-blog.php:834 widgets/premium-blog.php:1429
|
3690 |
+
#: widgets/premium-blog.php:1510 widgets/premium-grid.php:267
|
3691 |
#: widgets/premium-grid.php:327
|
3692 |
msgid "Categories"
|
3693 |
msgstr ""
|
3694 |
|
3695 |
+
#: widgets/premium-blog.php:835 widgets/premium-blog.php:1850
|
3696 |
msgid "Tags"
|
3697 |
msgstr ""
|
3698 |
|
3722 |
msgid "Fade"
|
3723 |
msgstr ""
|
3724 |
|
3725 |
+
#: widgets/premium-blog.php:939 widgets/premium-person.php:864
|
3726 |
msgid "Auto Play"
|
3727 |
msgstr ""
|
3728 |
|
3729 |
+
#: widgets/premium-blog.php:949
|
3730 |
+
msgid "Slides To Scroll"
|
3731 |
+
msgstr ""
|
3732 |
+
|
3733 |
+
#: widgets/premium-blog.php:960 widgets/premium-carousel.php:330
|
3734 |
+
#: widgets/premium-person.php:875
|
3735 |
msgid ""
|
3736 |
"Autoplay Speed means at which time the next slide should come. Set a value "
|
3737 |
"in milliseconds (ms)"
|
3738 |
msgstr ""
|
3739 |
|
3740 |
+
#: widgets/premium-blog.php:972 widgets/premium-carousel.php:410
|
3741 |
msgid "Center Mode"
|
3742 |
msgstr ""
|
3743 |
|
3744 |
+
#: widgets/premium-blog.php:982 widgets/premium-carousel.php:418
|
3745 |
msgid "Slides' Spacing"
|
3746 |
msgstr ""
|
3747 |
|
3748 |
+
#: widgets/premium-blog.php:983 widgets/premium-carousel.php:419
|
3749 |
msgid "Set a spacing value in pixels (px)"
|
3750 |
msgstr ""
|
3751 |
|
3752 |
+
#: widgets/premium-blog.php:994 widgets/premium-carousel.php:770
|
3753 |
#: widgets/premium-vscroll.php:261 widgets/premium-vscroll.php:438
|
3754 |
msgid "Navigation Dots"
|
3755 |
msgstr ""
|
3756 |
|
3757 |
+
#: widgets/premium-blog.php:1004 widgets/premium-carousel.php:480
|
3758 |
msgid "Navigation Arrows"
|
3759 |
msgstr ""
|
3760 |
|
3761 |
+
#: widgets/premium-blog.php:1055
|
3762 |
msgid "Pagination is the process of dividing the posts into discrete pages"
|
3763 |
msgstr ""
|
3764 |
|
3765 |
+
#: widgets/premium-blog.php:1061
|
3766 |
msgid "Page Limit"
|
3767 |
msgstr ""
|
3768 |
|
3769 |
+
#: widgets/premium-blog.php:1072
|
3770 |
msgid "Enable Pagination Next/Prev Strings"
|
3771 |
msgstr ""
|
3772 |
|
3773 |
+
#: widgets/premium-blog.php:1083
|
3774 |
msgid "Previous Page String"
|
3775 |
msgstr ""
|
3776 |
|
3777 |
+
#: widgets/premium-blog.php:1085
|
3778 |
msgid "Previous"
|
3779 |
msgstr ""
|
3780 |
|
3781 |
+
#: widgets/premium-blog.php:1095
|
3782 |
msgid "Next Page String"
|
3783 |
msgstr ""
|
3784 |
|
3785 |
+
#: widgets/premium-blog.php:1097
|
3786 |
msgid "Next"
|
3787 |
msgstr ""
|
3788 |
|
3789 |
+
#: widgets/premium-blog.php:1138 widgets/premium-grid.php:1543
|
3790 |
msgid "Filter"
|
3791 |
msgstr ""
|
3792 |
|
3793 |
+
#: widgets/premium-blog.php:1313
|
3794 |
msgid "Plus Sign Color"
|
3795 |
msgstr ""
|
3796 |
|
3797 |
+
#: widgets/premium-blog.php:1326 widgets/premium-blog.php:2169
|
3798 |
#: widgets/premium-image-button.php:758 widgets/premium-image-button.php:775
|
3799 |
#: widgets/premium-image-button.php:801 widgets/premium-image-scroll.php:518
|
3800 |
msgid "Overlay Color"
|
3801 |
msgstr ""
|
3802 |
|
3803 |
+
#: widgets/premium-blog.php:1336 widgets/premium-contactform.php:546
|
3804 |
#: widgets/premium-pricing-table.php:1618 widgets/premium-progressbar.php:537
|
3805 |
#: widgets/premium-testimonials.php:345
|
3806 |
msgid "Border Color"
|
3807 |
msgstr ""
|
3808 |
|
3809 |
+
#: widgets/premium-blog.php:1416
|
3810 |
msgid "Bottom Spacing"
|
3811 |
msgstr ""
|
3812 |
|
3813 |
+
#: widgets/premium-blog.php:1552
|
3814 |
msgid "Metadata"
|
3815 |
msgstr ""
|
3816 |
|
3817 |
+
#: widgets/premium-blog.php:1568
|
3818 |
msgid "Metadata Color"
|
3819 |
msgstr ""
|
3820 |
|
3821 |
+
#: widgets/premium-blog.php:1578
|
3822 |
msgid "Links Hover Color"
|
3823 |
msgstr ""
|
3824 |
|
3825 |
+
#: widgets/premium-blog.php:1588 widgets/premium-testimonials.php:400
|
3826 |
msgid "Separator Color"
|
3827 |
msgstr ""
|
3828 |
|
3829 |
+
#: widgets/premium-blog.php:1601
|
3830 |
msgid "Content Box"
|
3831 |
msgstr ""
|
3832 |
|
3833 |
+
#: widgets/premium-blog.php:1619 widgets/premium-button.php:679
|
3834 |
#: widgets/premium-button.php:806 widgets/premium-contactform.php:471
|
3835 |
#: widgets/premium-contactform.php:526 widgets/premium-dual-header.php:467
|
3836 |
#: widgets/premium-dual-header.php:652 widgets/premium-grid.php:1569
|
3844 |
msgid "Text Color"
|
3845 |
msgstr ""
|
3846 |
|
3847 |
+
#: widgets/premium-blog.php:1636
|
3848 |
msgid "Text Margin"
|
3849 |
msgstr ""
|
3850 |
|
3851 |
+
#: widgets/premium-blog.php:1892
|
3852 |
msgid "Box"
|
3853 |
msgstr ""
|
3854 |
|
3855 |
+
#: widgets/premium-blog.php:2180 widgets/premium-grid.php:1788
|
3856 |
msgid "Spinner Color"
|
3857 |
msgstr ""
|
3858 |
|
3859 |
+
#: widgets/premium-blog.php:2190
|
3860 |
msgid "Fill Color"
|
3861 |
msgstr ""
|
3862 |
|
3863 |
+
#: widgets/premium-blog.php:2202
|
3864 |
msgid "Carousel Dots"
|
3865 |
msgstr ""
|
3866 |
|
3867 |
+
#: widgets/premium-blog.php:2243
|
3868 |
msgid "Carousel Arrows"
|
3869 |
msgstr ""
|
3870 |
|
3871 |
+
#: widgets/premium-blog.php:2644
|
3872 |
msgid ""
|
3873 |
"The current query has no posts. Please make sure you have published items "
|
3874 |
"matching your query."
|
3962 |
|
3963 |
#: widgets/premium-button.php:215 widgets/premium-countdown.php:82
|
3964 |
#: widgets/premium-counter.php:462 widgets/premium-icon-list.php:1606
|
3965 |
+
#: widgets/premium-person.php:101 widgets/premium-progressbar.php:428
|
3966 |
#: widgets/premium-title.php:101
|
3967 |
msgid "Style"
|
3968 |
msgstr ""
|
3988 |
#: widgets/premium-button.php:337 widgets/premium-carousel.php:780
|
3989 |
#: widgets/premium-counter.php:187 widgets/premium-counter.php:199
|
3990 |
#: widgets/premium-counter.php:383 widgets/premium-icon-list.php:122
|
3991 |
+
#: widgets/premium-icon-list.php:137 widgets/premium-image-button.php:223
|
3992 |
+
#: widgets/premium-image-button.php:237 widgets/premium-image-button.php:251
|
3993 |
+
#: widgets/premium-image-button.php:314 widgets/premium-image-button.php:327
|
3994 |
+
#: widgets/premium-image-scroll.php:438 widgets/premium-image-separator.php:91
|
3995 |
+
#: widgets/premium-modalbox.php:121 widgets/premium-modalbox.php:409
|
3996 |
+
#: widgets/premium-modalbox.php:421 widgets/premium-pricing-table.php:80
|
3997 |
+
#: widgets/premium-pricing-table.php:92 widgets/premium-pricing-table.php:287
|
3998 |
+
#: widgets/premium-pricing-table.php:296 widgets/premium-pricing-table.php:754
|
3999 |
+
#: widgets/premium-pricing-table.php:810 widgets/premium-pricing-table.php:1414
|
4000 |
+
#: widgets/premium-progressbar.php:217 widgets/premium-progressbar.php:885
|
4001 |
+
#: widgets/premium-title.php:121 widgets/premium-title.php:131
|
4002 |
+
#: widgets/premium-title.php:911
|
4003 |
msgid "Icon"
|
4004 |
msgstr ""
|
4005 |
|
4048 |
msgstr ""
|
4049 |
|
4050 |
#: widgets/premium-button.php:393 widgets/premium-counter.php:281
|
4051 |
+
#: widgets/premium-image-button.php:383 widgets/premium-modalbox.php:439
|
4052 |
+
#: widgets/premium-title.php:214
|
4053 |
msgid "Icon Position"
|
4054 |
msgstr ""
|
4055 |
|
4387 |
#: widgets/premium-contactform.php:94 widgets/premium-contactform.php:208
|
4388 |
#: widgets/premium-dual-header.php:307 widgets/premium-grid.php:419
|
4389 |
#: widgets/premium-modalbox.php:1270 widgets/premium-modalbox.php:1461
|
4390 |
+
#: widgets/premium-person.php:146 widgets/premium-pricing-table.php:1573
|
4391 |
#: widgets/premium-title.php:556
|
4392 |
msgid "Width"
|
4393 |
msgstr ""
|
4533 |
msgstr ""
|
4534 |
|
4535 |
#: widgets/premium-countdown.php:206
|
4536 |
+
msgid ""
|
4537 |
+
"Choose whether if you want to set a message or a redirect link or leave it "
|
4538 |
+
"as digits"
|
4539 |
msgstr ""
|
4540 |
|
4541 |
+
#: widgets/premium-countdown.php:209
|
4542 |
msgid "Message"
|
4543 |
msgstr ""
|
4544 |
|
4545 |
+
#: widgets/premium-countdown.php:210
|
4546 |
msgid "Redirection Link"
|
4547 |
msgstr ""
|
4548 |
|
4549 |
#: widgets/premium-countdown.php:218
|
4550 |
+
msgid ""
|
4551 |
+
"Default option will show the expiration message as <b>Digits [00:00:00]. </"
|
4552 |
+
"b> ."
|
4553 |
+
msgstr ""
|
4554 |
+
|
4555 |
+
#: widgets/premium-countdown.php:231
|
4556 |
msgid "On expiry Text"
|
4557 |
msgstr ""
|
4558 |
|
4559 |
+
#: widgets/premium-countdown.php:234
|
4560 |
+
msgid "Countdown Expired!"
|
4561 |
msgstr ""
|
4562 |
|
4563 |
+
#: widgets/premium-countdown.php:244
|
4564 |
msgid "Redirect To"
|
4565 |
msgstr ""
|
4566 |
|
4567 |
+
#: widgets/premium-countdown.php:265
|
4568 |
msgid "Strings Translation"
|
4569 |
msgstr ""
|
4570 |
|
4571 |
+
#: widgets/premium-countdown.php:272
|
4572 |
msgid "Day (Singular)"
|
4573 |
msgstr ""
|
4574 |
|
4575 |
+
#: widgets/premium-countdown.php:282
|
4576 |
msgid "Day (Plural)"
|
4577 |
msgstr ""
|
4578 |
|
4579 |
+
#: widgets/premium-countdown.php:292
|
4580 |
msgid "Week (Singular)"
|
4581 |
msgstr ""
|
4582 |
|
4583 |
+
#: widgets/premium-countdown.php:302
|
4584 |
msgid "Weeks (Plural)"
|
4585 |
msgstr ""
|
4586 |
|
4587 |
+
#: widgets/premium-countdown.php:313
|
4588 |
msgid "Month (Singular)"
|
4589 |
msgstr ""
|
4590 |
|
4591 |
+
#: widgets/premium-countdown.php:324
|
4592 |
msgid "Months (Plural)"
|
4593 |
msgstr ""
|
4594 |
|
4595 |
+
#: widgets/premium-countdown.php:335
|
4596 |
msgid "Year (Singular)"
|
4597 |
msgstr ""
|
4598 |
|
4599 |
+
#: widgets/premium-countdown.php:346
|
4600 |
msgid "Years (Plural)"
|
4601 |
msgstr ""
|
4602 |
|
4603 |
+
#: widgets/premium-countdown.php:357
|
4604 |
msgid "Hour (Singular)"
|
4605 |
msgstr ""
|
4606 |
|
4607 |
+
#: widgets/premium-countdown.php:368
|
4608 |
msgid "Hours (Plural)"
|
4609 |
msgstr ""
|
4610 |
|
4611 |
+
#: widgets/premium-countdown.php:379
|
4612 |
msgid "Minute (Singular)"
|
4613 |
msgstr ""
|
4614 |
|
4615 |
+
#: widgets/premium-countdown.php:389
|
4616 |
msgid "Minutes (Plural)"
|
4617 |
msgstr ""
|
4618 |
|
4619 |
+
#: widgets/premium-countdown.php:399
|
4620 |
msgid "Second (Singular)"
|
4621 |
msgstr ""
|
4622 |
|
4623 |
+
#: widgets/premium-countdown.php:409
|
4624 |
msgid "Seconds (Plural)"
|
4625 |
msgstr ""
|
4626 |
|
4627 |
+
#: widgets/premium-countdown.php:439
|
4628 |
msgid "Digits"
|
4629 |
msgstr ""
|
4630 |
|
4631 |
+
#: widgets/premium-countdown.php:495
|
4632 |
msgid "Background Size"
|
4633 |
msgstr ""
|
4634 |
|
4635 |
+
#: widgets/premium-countdown.php:535
|
4636 |
msgid "Units"
|
4637 |
msgstr ""
|
4638 |
|
4639 |
+
#: widgets/premium-countdown.php:578
|
4640 |
msgid "Spacing in Between"
|
4641 |
msgstr ""
|
4642 |
|
4643 |
+
#: widgets/premium-countdown.php:602 widgets/premium-image-separator.php:323
|
4644 |
#: widgets/premium-testimonials.php:133
|
4645 |
msgid "Separator"
|
4646 |
msgstr ""
|
4647 |
|
4648 |
+
#: widgets/premium-countdown.php:659
|
4649 |
+
msgid "Expiration Message"
|
4650 |
+
msgstr ""
|
4651 |
+
|
4652 |
#: widgets/premium-counter.php:83
|
4653 |
msgid "Enter title for stats counter block"
|
4654 |
msgstr ""
|
4868 |
msgid "Designer"
|
4869 |
msgstr ""
|
4870 |
|
4871 |
+
#: widgets/premium-fancytext.php:108 widgets/premium-person.php:377
|
4872 |
+
#: widgets/premium-person.php:626
|
4873 |
msgid "Developer"
|
4874 |
msgstr ""
|
4875 |
|
5094 |
msgid "Video"
|
5095 |
msgstr ""
|
5096 |
|
5097 |
+
#: widgets/premium-grid.php:470 widgets/premium-person.php:452
|
5098 |
+
#: widgets/premium-person.php:701
|
5099 |
msgid "YouTube"
|
5100 |
msgstr ""
|
5101 |
|
5119 |
msgid "Remote Video URL"
|
5120 |
msgstr ""
|
5121 |
|
5122 |
+
#: widgets/premium-grid.php:537 widgets/premium-maps.php:290
|
5123 |
msgid "Controls"
|
5124 |
msgstr ""
|
5125 |
|
5175 |
msgid "Choose a layout style for the gallery"
|
5176 |
msgstr ""
|
5177 |
|
5178 |
+
#: widgets/premium-grid.php:720 widgets/premium-person.php:106
|
5179 |
#: widgets/premium-title.php:106
|
5180 |
msgid "Style 2"
|
5181 |
msgstr ""
|
5182 |
|
5183 |
+
#: widgets/premium-grid.php:721 widgets/premium-person.php:107
|
5184 |
#: widgets/premium-title.php:107
|
5185 |
msgid "Style 3"
|
5186 |
msgstr ""
|
5215 |
"direction sites"
|
5216 |
msgstr ""
|
5217 |
|
5218 |
+
#: widgets/premium-grid.php:838 widgets/premium-person.php:218
|
5219 |
msgid "Content Alignment"
|
5220 |
msgstr ""
|
5221 |
|
5268 |
msgid "Dark Square"
|
5269 |
msgstr ""
|
5270 |
|
5271 |
+
#: widgets/premium-grid.php:925 widgets/premium-person.php:402
|
5272 |
+
#: widgets/premium-person.php:651
|
5273 |
msgid "Facebook"
|
5274 |
msgstr ""
|
5275 |
|
5325 |
msgstr ""
|
5326 |
|
5327 |
#: widgets/premium-icon-list.php:106
|
5328 |
+
msgid "Show Bullet"
|
5329 |
+
msgstr ""
|
5330 |
+
|
5331 |
+
#: widgets/premium-icon-list.php:117
|
5332 |
+
msgid "Bullet Type"
|
5333 |
msgstr ""
|
5334 |
|
5335 |
#: widgets/premium-icon-list.php:154 widgets/premium-modalbox.php:122
|
5385 |
|
5386 |
#: widgets/premium-icon-list.php:678
|
5387 |
msgid ""
|
5388 |
+
"Please note that bullet connector option only appears when overflow set to "
|
5389 |
"visible."
|
5390 |
msgstr ""
|
5391 |
|
5393 |
msgid "Layout Type"
|
5394 |
msgstr ""
|
5395 |
|
5396 |
+
#: widgets/premium-icon-list.php:736
|
5397 |
+
msgid "Bullet Position"
|
5398 |
+
msgstr ""
|
5399 |
+
|
5400 |
+
#: widgets/premium-icon-list.php:753
|
5401 |
+
msgid "Bullet Alignment"
|
5402 |
msgstr ""
|
5403 |
|
5404 |
#: widgets/premium-icon-list.php:783
|
5406 |
msgstr ""
|
5407 |
|
5408 |
#: widgets/premium-icon-list.php:818
|
5409 |
+
msgid "Bullet Connector"
|
5410 |
msgstr ""
|
5411 |
|
5412 |
#: widgets/premium-icon-list.php:832 widgets/premium-lottie.php:403
|
5453 |
msgid "Border"
|
5454 |
msgstr ""
|
5455 |
|
5456 |
+
#: widgets/premium-icon-list.php:1052
|
5457 |
+
msgid "Bullet"
|
5458 |
+
msgstr ""
|
5459 |
+
|
5460 |
#: widgets/premium-icon-list.php:1060 widgets/premium-icon-list.php:1251
|
5461 |
msgid ""
|
5462 |
"Options below will be applied on items with no style options set "
|
5468 |
msgstr ""
|
5469 |
|
5470 |
#: widgets/premium-icon-list.php:1135
|
5471 |
+
msgid "Background Color options below will be applied on all bullet types."
|
5472 |
msgstr ""
|
5473 |
|
5474 |
#: widgets/premium-icon-list.php:1157
|
5796 |
msgid "Center Location"
|
5797 |
msgstr ""
|
5798 |
|
5799 |
+
#: widgets/premium-maps.php:99
|
5800 |
msgid "Get User Location"
|
5801 |
msgstr ""
|
5802 |
|
5803 |
+
#: widgets/premium-maps.php:100
|
5804 |
msgid "Get center location from visitor's location"
|
5805 |
msgstr ""
|
5806 |
|
5807 |
+
#: widgets/premium-maps.php:108 widgets/premium-maps.php:204
|
5808 |
msgid "Latitude & Longitude Finder"
|
5809 |
msgstr ""
|
5810 |
|
5811 |
+
#: widgets/premium-maps.php:118 widgets/premium-maps.php:211
|
5812 |
msgid "Find Latitude & Longitude"
|
5813 |
msgstr ""
|
5814 |
|
5815 |
+
#: widgets/premium-maps.php:132
|
5816 |
msgid "Center Latitude"
|
5817 |
msgstr ""
|
5818 |
|
5819 |
+
#: widgets/premium-maps.php:135 widgets/premium-maps.php:149
|
5820 |
msgid "Center latitude and longitude are required to identify your location"
|
5821 |
msgstr ""
|
5822 |
|
5823 |
+
#: widgets/premium-maps.php:146
|
5824 |
msgid "Center Longitude"
|
5825 |
msgstr ""
|
5826 |
|
5827 |
+
#: widgets/premium-maps.php:162
|
5828 |
msgid "Markers"
|
5829 |
msgstr ""
|
5830 |
|
5831 |
+
#: widgets/premium-maps.php:168
|
5832 |
msgid "Max Width"
|
5833 |
msgstr ""
|
5834 |
|
5835 |
+
#: widgets/premium-maps.php:170
|
5836 |
msgid "Set the Maximum width for markers description box"
|
5837 |
msgstr ""
|
5838 |
|
5839 |
+
#: widgets/premium-maps.php:178
|
5840 |
msgid "Custom Icon"
|
5841 |
msgstr ""
|
5842 |
|
5843 |
+
#: widgets/premium-maps.php:223
|
5844 |
msgid "Latitude"
|
5845 |
msgstr ""
|
5846 |
|
5847 |
+
#: widgets/premium-maps.php:234
|
5848 |
msgid "Longitude"
|
5849 |
msgstr ""
|
5850 |
|
5851 |
+
#: widgets/premium-maps.php:262
|
5852 |
+
msgid "Custom ID"
|
5853 |
+
msgstr ""
|
5854 |
+
|
5855 |
+
#: widgets/premium-maps.php:264
|
5856 |
+
msgid "Use this with Premium Carousel widget "
|
5857 |
+
msgstr ""
|
5858 |
+
|
5859 |
+
#: widgets/premium-maps.php:273
|
5860 |
msgid "Map Pins"
|
5861 |
msgstr ""
|
5862 |
|
5863 |
+
#: widgets/premium-maps.php:278
|
5864 |
msgid "Premium Google Maps"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
+
#: widgets/premium-maps.php:279
|
5868 |
msgid "Add an optional description to your map pin"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
+
#: widgets/premium-maps.php:296
|
5872 |
msgid "Map Type"
|
5873 |
msgstr ""
|
5874 |
|
5875 |
+
#: widgets/premium-maps.php:299
|
5876 |
msgid "Road Map"
|
5877 |
msgstr ""
|
5878 |
|
5879 |
+
#: widgets/premium-maps.php:300
|
5880 |
msgid "Satellite"
|
5881 |
msgstr ""
|
5882 |
|
5883 |
+
#: widgets/premium-maps.php:301
|
5884 |
msgid "Terrain"
|
5885 |
msgstr ""
|
5886 |
|
5887 |
+
#: widgets/premium-maps.php:302
|
5888 |
msgid "Hybrid"
|
5889 |
msgstr ""
|
5890 |
|
5891 |
+
#: widgets/premium-maps.php:329
|
5892 |
msgid "Zoom"
|
5893 |
msgstr ""
|
5894 |
|
5895 |
+
#: widgets/premium-maps.php:345
|
5896 |
msgid "Disable Map Drag"
|
5897 |
msgstr ""
|
5898 |
|
5899 |
+
#: widgets/premium-maps.php:352
|
5900 |
msgid "Map Type Controls"
|
5901 |
msgstr ""
|
5902 |
|
5903 |
+
#: widgets/premium-maps.php:359
|
5904 |
msgid "Zoom Controls"
|
5905 |
msgstr ""
|
5906 |
|
5907 |
+
#: widgets/premium-maps.php:366
|
5908 |
msgid "Street View Control"
|
5909 |
msgstr ""
|
5910 |
|
5911 |
+
#: widgets/premium-maps.php:373
|
5912 |
msgid "Fullscreen Control"
|
5913 |
msgstr ""
|
5914 |
|
5915 |
+
#: widgets/premium-maps.php:380
|
5916 |
msgid "Scroll Wheel Zoom"
|
5917 |
msgstr ""
|
5918 |
|
5919 |
+
#: widgets/premium-maps.php:387
|
5920 |
msgid "Info Container Always Opened"
|
5921 |
msgstr ""
|
5922 |
|
5923 |
+
#: widgets/premium-maps.php:394
|
5924 |
msgid "Info Container Opened when Hovered"
|
5925 |
msgstr ""
|
5926 |
|
5927 |
+
#: widgets/premium-maps.php:401
|
5928 |
msgid "Info Container Closed when Mouse Out"
|
5929 |
msgstr ""
|
5930 |
|
5931 |
+
#: widgets/premium-maps.php:412
|
5932 |
msgid "Marker Clustering"
|
5933 |
msgstr ""
|
5934 |
|
5935 |
+
#: widgets/premium-maps.php:423
|
5936 |
msgid "Map Style"
|
5937 |
msgstr ""
|
5938 |
|
5939 |
+
#: widgets/premium-maps.php:429
|
5940 |
msgid "JSON Code"
|
5941 |
msgstr ""
|
5942 |
|
5943 |
+
#: widgets/premium-maps.php:449
|
5944 |
msgid "Getting started »"
|
5945 |
msgstr ""
|
5946 |
|
5947 |
+
#: widgets/premium-maps.php:459
|
5948 |
msgid "Getting your API key »"
|
5949 |
msgstr ""
|
5950 |
|
5951 |
+
#: widgets/premium-maps.php:630
|
5952 |
msgid "Map"
|
5953 |
msgstr ""
|
5954 |
|
6039 |
msgstr ""
|
6040 |
|
6041 |
#: widgets/premium-person.php:85
|
6042 |
+
msgid "Please note that Phone Number icon will show only on mobile devices."
|
6043 |
+
msgstr ""
|
6044 |
+
|
6045 |
+
#: widgets/premium-person.php:93
|
6046 |
msgid "Multiple Member"
|
6047 |
msgstr ""
|
6048 |
|
6049 |
+
#: widgets/premium-person.php:94
|
6050 |
msgid "Enable this option if you need to add multiple persons"
|
6051 |
msgstr ""
|
6052 |
|
6053 |
+
#: widgets/premium-person.php:116
|
6054 |
msgid "Title Rotate"
|
6055 |
msgstr ""
|
6056 |
|
6057 |
+
#: widgets/premium-person.php:119
|
6058 |
msgid "90 Degrees"
|
6059 |
msgstr ""
|
6060 |
|
6061 |
+
#: widgets/premium-person.php:120
|
6062 |
msgid "-90 Degrees"
|
6063 |
msgstr ""
|
6064 |
|
6065 |
+
#: widgets/premium-person.php:148
|
6066 |
msgid "Enter image width in (PX, EM, %), default is 100%"
|
6067 |
msgstr ""
|
6068 |
|
6069 |
+
#: widgets/premium-person.php:243
|
6070 |
msgid "Name Tag"
|
6071 |
msgstr ""
|
6072 |
|
6073 |
+
#: widgets/premium-person.php:263
|
6074 |
msgid "Title Tag"
|
6075 |
msgstr ""
|
6076 |
|
6077 |
+
#: widgets/premium-person.php:283
|
6078 |
msgid "Members/Row"
|
6079 |
msgstr ""
|
6080 |
|
6081 |
+
#: widgets/premium-person.php:342
|
6082 |
msgid "Single Member Settings"
|
6083 |
msgstr ""
|
6084 |
|
6085 |
+
#: widgets/premium-person.php:387 widgets/premium-person.php:636
|
6086 |
msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit"
|
6087 |
msgstr ""
|
6088 |
|
6089 |
+
#: widgets/premium-person.php:393 widgets/premium-person.php:642
|
6090 |
msgid "Enable Social Icons"
|
6091 |
msgstr ""
|
6092 |
|
6093 |
+
#: widgets/premium-person.php:415 widgets/premium-person.php:664
|
6094 |
msgid "Twitter"
|
6095 |
msgstr ""
|
6096 |
|
6097 |
+
#: widgets/premium-person.php:428 widgets/premium-person.php:677
|
6098 |
msgid "LinkedIn"
|
6099 |
msgstr ""
|
6100 |
|
6101 |
+
#: widgets/premium-person.php:440 widgets/premium-person.php:689
|
6102 |
msgid "Google+"
|
6103 |
msgstr ""
|
6104 |
|
6105 |
+
#: widgets/premium-person.php:464 widgets/premium-person.php:713
|
6106 |
msgid "Instagram"
|
6107 |
msgstr ""
|
6108 |
|
6109 |
+
#: widgets/premium-person.php:477 widgets/premium-person.php:726
|
6110 |
msgid "Skype"
|
6111 |
msgstr ""
|
6112 |
|
6113 |
+
#: widgets/premium-person.php:489 widgets/premium-person.php:738
|
6114 |
msgid "Pinterest"
|
6115 |
msgstr ""
|
6116 |
|
6117 |
+
#: widgets/premium-person.php:501 widgets/premium-person.php:750
|
6118 |
msgid "Dribbble"
|
6119 |
msgstr ""
|
6120 |
|
6121 |
+
#: widgets/premium-person.php:514 widgets/premium-person.php:763
|
6122 |
msgid "Behance"
|
6123 |
msgstr ""
|
6124 |
|
6125 |
+
#: widgets/premium-person.php:526 widgets/premium-person.php:775
|
6126 |
msgid "WhatsApp"
|
6127 |
msgstr ""
|
6128 |
|
6129 |
+
#: widgets/premium-person.php:538 widgets/premium-person.php:787
|
6130 |
msgid "Telegram"
|
6131 |
msgstr ""
|
6132 |
|
6133 |
+
#: widgets/premium-person.php:550 widgets/premium-person.php:799
|
6134 |
msgid "Email Address"
|
6135 |
msgstr ""
|
6136 |
|
6137 |
+
#: widgets/premium-person.php:562 widgets/premium-person.php:811
|
6138 |
msgid "Website"
|
6139 |
msgstr ""
|
6140 |
|
6141 |
+
#: widgets/premium-person.php:574 widgets/premium-person.php:823
|
6142 |
+
msgid "Phone Number"
|
6143 |
+
msgstr ""
|
6144 |
+
|
6145 |
+
#: widgets/premium-person.php:577 widgets/premium-person.php:826
|
6146 |
+
msgid "Example: tel: +012 345 678 910"
|
6147 |
+
msgstr ""
|
6148 |
+
|
6149 |
+
#: widgets/premium-person.php:590
|
6150 |
msgid "Multiple Members Settings"
|
6151 |
msgstr ""
|
6152 |
|
6153 |
+
#: widgets/premium-person.php:836
|
6154 |
msgid "Members"
|
6155 |
msgstr ""
|
6156 |
|
6157 |
+
#: widgets/premium-person.php:923 widgets/premium-testimonials.php:288
|
6158 |
#, php-format
|
6159 |
msgid "%1$s I'm not able to see Font Awesome icons in the widget » %2$s"
|
6160 |
msgstr ""
|
6161 |
|
6162 |
+
#: widgets/premium-person.php:1043
|
6163 |
msgid "Job Title"
|
6164 |
msgstr ""
|
6165 |
|
6166 |
+
#: widgets/premium-person.php:1156
|
6167 |
msgid "Social Icons"
|
6168 |
msgstr ""
|
6169 |
|
6170 |
+
#: widgets/premium-person.php:1216
|
6171 |
msgid "Brands Default Colors"
|
6172 |
msgstr ""
|
6173 |
|
6174 |
+
#: widgets/premium-person.php:1298
|
6175 |
msgid "Bottom Offset"
|
6176 |
msgstr ""
|
6177 |
|
6178 |
+
#: widgets/premium-person.php:1323
|
6179 |
msgid "Transition Duration (sec)"
|
6180 |
msgstr ""
|
6181 |
|
6182 |
+
#: widgets/premium-person.php:1416
|
6183 |
msgid "Background Hover Color"
|
6184 |
msgstr ""
|
6185 |
|
6539 |
msgid "Font Awesome Icon"
|
6540 |
msgstr ""
|
6541 |
|
6542 |
+
#: widgets/premium-title.php:236
|
6543 |
+
msgid "Icon Alignment"
|
6544 |
+
msgstr ""
|
6545 |
+
|
6546 |
#: widgets/premium-title.php:348
|
6547 |
msgid ""
|
6548 |
"Please note that left/right alignment is reversed when Icon Position is set "
|
premium-addons-for-elementor.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Premium Addons for Elementor
|
4 |
Description: Premium Addons for Elementor plugin includes widgets and addons like Blog Post Grid, Gallery, Carousel, Modal Popup, Google Maps, Pricing Tables, Lottie Animations, Countdown, Testimonials.
|
5 |
Plugin URI: https://premiumaddons.com
|
6 |
-
Version: 4.1.
|
7 |
Author: Leap13
|
8 |
Author URI: https://leap13.com/
|
9 |
Text Domain: premium-addons-for-elementor
|
@@ -14,7 +14,7 @@ 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', '4.1.
|
18 |
define('PREMIUM_ADDONS_URL', plugins_url( '/', __FILE__ ) );
|
19 |
define('PREMIUM_ADDONS_PATH', plugin_dir_path( __FILE__ ) );
|
20 |
define('PREMIUM_ADDONS_FILE', __FILE__);
|
3 |
Plugin Name: Premium Addons for Elementor
|
4 |
Description: Premium Addons for Elementor plugin includes widgets and addons like Blog Post Grid, Gallery, Carousel, Modal Popup, Google Maps, Pricing Tables, Lottie Animations, Countdown, Testimonials.
|
5 |
Plugin URI: https://premiumaddons.com
|
6 |
+
Version: 4.1.1
|
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', '4.1.1');
|
18 |
define('PREMIUM_ADDONS_URL', plugins_url( '/', __FILE__ ) );
|
19 |
define('PREMIUM_ADDONS_PATH', plugin_dir_path( __FILE__ ) );
|
20 |
define('PREMIUM_ADDONS_FILE', __FILE__);
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Donate Link: https://premiumaddons.com/?utm_source=wp-repo&utm_medium=link&utm_c
|
|
5 |
Requires at least: 5.0
|
6 |
Tested Up To: 5.6
|
7 |
Requires PHP: 5.4
|
8 |
-
Stable Tag: 4.1.
|
9 |
License: GPL v3.0
|
10 |
License URI: https://opensource.org/licenses/GPL-3.0
|
11 |
|
@@ -185,6 +185,10 @@ Premium Addons for Elementor is 100% Ads Free, Ads can only be detected from You
|
|
185 |
|
186 |
== Changelog ==
|
187 |
|
|
|
|
|
|
|
|
|
188 |
= 4.1.0 =
|
189 |
|
190 |
- Tweak: Added Digits option to Expire Type in Countdown widget.
|
5 |
Requires at least: 5.0
|
6 |
Tested Up To: 5.6
|
7 |
Requires PHP: 5.4
|
8 |
+
Stable Tag: 4.1.1
|
9 |
License: GPL v3.0
|
10 |
License URI: https://opensource.org/licenses/GPL-3.0
|
11 |
|
185 |
|
186 |
== Changelog ==
|
187 |
|
188 |
+
= 4.1.1 =
|
189 |
+
|
190 |
+
- Tweak: Added Custom ID option for markers in Google Maps widget.
|
191 |
+
|
192 |
= 4.1.0 =
|
193 |
|
194 |
- Tweak: Added Digits option to Expire Type in Countdown widget.
|
widgets/premium-image-scroll.php
CHANGED
@@ -236,15 +236,15 @@ class Premium_Image_Scroll extends Widget_Base {
|
|
236 |
'label' => __( 'Mask Position', 'premium-addons-for-elementor' ),
|
237 |
'type' => Controls_Manager::SELECT,
|
238 |
'options' => [
|
239 |
-
'center center' => __( 'Center Center','premium-addons-
|
240 |
-
'center left' => __( 'Center Left', 'premium-addons-
|
241 |
-
'center right' => __( 'Center Right', 'premium-addons-
|
242 |
-
'top center' => __( 'Top Center', 'premium-addons-
|
243 |
-
'top left' => __( 'Top Left', 'premium-addons-
|
244 |
-
'top right' => __( 'Top Right', 'premium-addons-
|
245 |
-
'bottom center' => __( 'Bottom Center', 'premium-addons-
|
246 |
-
'bottom left' => __( 'Bottom Left', 'premium-addons-
|
247 |
-
'bottom right' => __( 'Bottom Right', 'premium-addons-
|
248 |
],
|
249 |
'default' => 'center center',
|
250 |
'selectors' => [
|
@@ -262,9 +262,9 @@ class Premium_Image_Scroll extends Widget_Base {
|
|
262 |
'label' => __( 'Mask Position', 'premium-addons-for-elementor' ),
|
263 |
'type' => Controls_Manager::SELECT,
|
264 |
'options' => [
|
265 |
-
'center center' => __( 'Center Center','premium-addons-
|
266 |
-
'top center' => __( 'Top Center', 'premium-addons-
|
267 |
-
'bottom center' => __( 'Bottom Center', 'premium-addons-
|
268 |
],
|
269 |
'default' => 'center center',
|
270 |
'selectors' => [
|
236 |
'label' => __( 'Mask Position', 'premium-addons-for-elementor' ),
|
237 |
'type' => Controls_Manager::SELECT,
|
238 |
'options' => [
|
239 |
+
'center center' => __( 'Center Center','premium-addons-for-elementor' ),
|
240 |
+
'center left' => __( 'Center Left', 'premium-addons-for-elementor' ),
|
241 |
+
'center right' => __( 'Center Right', 'premium-addons-for-elementor' ),
|
242 |
+
'top center' => __( 'Top Center', 'premium-addons-for-elementor' ),
|
243 |
+
'top left' => __( 'Top Left', 'premium-addons-for-elementor' ),
|
244 |
+
'top right' => __( 'Top Right', 'premium-addons-for-elementor' ),
|
245 |
+
'bottom center' => __( 'Bottom Center', 'premium-addons-for-elementor' ),
|
246 |
+
'bottom left' => __( 'Bottom Left', 'premium-addons-for-elementor' ),
|
247 |
+
'bottom right' => __( 'Bottom Right', 'premium-addons-for-elementor' ),
|
248 |
],
|
249 |
'default' => 'center center',
|
250 |
'selectors' => [
|
262 |
'label' => __( 'Mask Position', 'premium-addons-for-elementor' ),
|
263 |
'type' => Controls_Manager::SELECT,
|
264 |
'options' => [
|
265 |
+
'center center' => __( 'Center Center','premium-addons-for-elementor' ),
|
266 |
+
'top center' => __( 'Top Center', 'premium-addons-for-elementor' ),
|
267 |
+
'bottom center' => __( 'Bottom Center', 'premium-addons-for-elementor' ),
|
268 |
],
|
269 |
'default' => 'center center',
|
270 |
'selectors' => [
|
widgets/premium-lottie.php
CHANGED
@@ -75,11 +75,11 @@ class Premium_Lottie extends Widget_Base {
|
|
75 |
|
76 |
$this->add_control('source',
|
77 |
[
|
78 |
-
'label' => __('File Source', 'premium-addons-
|
79 |
'type' => Controls_Manager::SELECT,
|
80 |
'options' => [
|
81 |
-
'url' => __('External URL','premium-addons-
|
82 |
-
'file' => __('Media File', 'premium-addons-
|
83 |
],
|
84 |
'default' => 'url'
|
85 |
]
|
75 |
|
76 |
$this->add_control('source',
|
77 |
[
|
78 |
+
'label' => __('File Source', 'premium-addons-for-elementor'),
|
79 |
'type' => Controls_Manager::SELECT,
|
80 |
'options' => [
|
81 |
+
'url' => __('External URL','premium-addons-for-elementor'),
|
82 |
+
'file' => __('Media File', 'premium-addons-for-elementor')
|
83 |
],
|
84 |
'default' => 'url'
|
85 |
]
|
widgets/premium-maps.php
CHANGED
@@ -187,14 +187,14 @@ class Premium_Maps extends Widget_Base {
|
|
187 |
'type' => Controls_Manager::SLIDER,
|
188 |
'size_units' => ['px', 'em'],
|
189 |
'range' => [
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
],
|
194 |
'em' => [
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
]
|
199 |
]
|
200 |
);
|
@@ -207,16 +207,16 @@ class Premium_Maps extends Widget_Base {
|
|
207 |
);
|
208 |
|
209 |
$repeater->add_control('premium_map_pin_notice',
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
'condition' => [
|
216 |
'premium_map_pin_location_finder' => 'yes'
|
217 |
]
|
218 |
-
|
219 |
-
|
220 |
|
221 |
$repeater->add_control('map_latitude',
|
222 |
[
|
@@ -256,6 +256,17 @@ class Premium_Maps extends Widget_Base {
|
|
256 |
'label_block' => true,
|
257 |
]
|
258 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
259 |
|
260 |
$this->add_control('premium_maps_map_pins',
|
261 |
[
|
@@ -762,7 +773,7 @@ class Premium_Maps extends Widget_Base {
|
|
762 |
<?php if( count( $map_pins ) ) { ?>
|
763 |
<div class="premium_maps_map_height" data-settings='<?php echo wp_json_encode( $map_settings ); ?>' <?php echo $this->get_render_attribute_string('style_wrapper'); ?>>
|
764 |
<?php
|
765 |
-
|
766 |
|
767 |
$key = 'map_marker_' . $index;
|
768 |
|
@@ -775,16 +786,20 @@ class Premium_Maps extends Widget_Base {
|
|
775 |
'data-max-width' => $marker_width
|
776 |
]);
|
777 |
|
778 |
-
|
779 |
-
|
780 |
-
|
|
|
|
|
|
|
|
|
781 |
<div class='premium-maps-info-container'><p class='premium-maps-info-title'><?php echo $pin['pin_title']; ?></p><div class='premium-maps-info-desc'><?php echo $pin['pin_desc']; ?></div></div>
|
782 |
<?php endif; ?>
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
<?php
|
789 |
} ?>
|
790 |
</div>
|
187 |
'type' => Controls_Manager::SLIDER,
|
188 |
'size_units' => ['px', 'em'],
|
189 |
'range' => [
|
190 |
+
'px' => [
|
191 |
+
'min' => 1,
|
192 |
+
'max' => 200,
|
193 |
],
|
194 |
'em' => [
|
195 |
+
'min' => 1,
|
196 |
+
'max' => 20,
|
197 |
+
]
|
198 |
]
|
199 |
]
|
200 |
);
|
207 |
);
|
208 |
|
209 |
$repeater->add_control('premium_map_pin_notice',
|
210 |
+
[
|
211 |
+
'label' => __( 'Find Latitude & Longitude', 'elementor' ),
|
212 |
+
'type' => Controls_Manager::RAW_HTML,
|
213 |
+
'raw' => '<form onsubmit="getPinAddress(this);" action="javascript:void(0);"><input type="text" id="premium-map-get-address" class="premium-map-get-address" style="margin-top:10px; margin-bottom:10px;"><input type="submit" value="Search" class="elementor-button elementor-button-default" onclick="getPinAddress(this)"></form><div class="premium-address-result" style="margin-top:10px; line-height: 1.3; font-size: 12px;"></div>',
|
214 |
+
'label_block' => true,
|
215 |
'condition' => [
|
216 |
'premium_map_pin_location_finder' => 'yes'
|
217 |
]
|
218 |
+
]
|
219 |
+
);
|
220 |
|
221 |
$repeater->add_control('map_latitude',
|
222 |
[
|
256 |
'label_block' => true,
|
257 |
]
|
258 |
);
|
259 |
+
|
260 |
+
$repeater->add_control('custom_id',
|
261 |
+
[
|
262 |
+
'label' => __('Custom ID', 'premium-addons-for-elementor'),
|
263 |
+
'type' => Controls_Manager::TEXT,
|
264 |
+
'description' => __('Use this with Premium Carousel widget ','premium-addons-for-elementor') . '<a href="https://premiumaddons.com/docs/how-to-use-elementor-widgets-to-navigate-through-carousel-widget-slides/" target="_blank">Custom Navigation option</a>',
|
265 |
+
'dynamic' => [ 'active' => true ],
|
266 |
+
'separator' => 'before',
|
267 |
+
'label_block' => true,
|
268 |
+
]
|
269 |
+
);
|
270 |
|
271 |
$this->add_control('premium_maps_map_pins',
|
272 |
[
|
773 |
<?php if( count( $map_pins ) ) { ?>
|
774 |
<div class="premium_maps_map_height" data-settings='<?php echo wp_json_encode( $map_settings ); ?>' <?php echo $this->get_render_attribute_string('style_wrapper'); ?>>
|
775 |
<?php
|
776 |
+
foreach( $map_pins as $index => $pin ) {
|
777 |
|
778 |
$key = 'map_marker_' . $index;
|
779 |
|
786 |
'data-max-width' => $marker_width
|
787 |
]);
|
788 |
|
789 |
+
if( ! empty( $pin['custom_id'] ) ) {
|
790 |
+
$this->add_render_attribute( $key, 'data-id', esc_attr( $pin['custom_id'] ) );
|
791 |
+
}
|
792 |
+
|
793 |
+
?>
|
794 |
+
<div <?php echo $this->get_render_attribute_string( $key ); ?>>
|
795 |
+
<?php if( ! empty( $pin['pin_title'] )|| ! empty( $pin['pin_desc'] ) ) : ?>
|
796 |
<div class='premium-maps-info-container'><p class='premium-maps-info-title'><?php echo $pin['pin_title']; ?></p><div class='premium-maps-info-desc'><?php echo $pin['pin_desc']; ?></div></div>
|
797 |
<?php endif; ?>
|
798 |
+
</div>
|
799 |
+
<?php
|
800 |
+
}
|
801 |
+
?>
|
802 |
+
</div>
|
803 |
<?php
|
804 |
} ?>
|
805 |
</div>
|
widgets/premium-videobox.php
CHANGED
@@ -836,15 +836,15 @@ class Premium_Videobox extends Widget_Base {
|
|
836 |
'label' => __( 'Mask Position', 'premium-addons-for-elementor' ),
|
837 |
'type' => Controls_Manager::SELECT,
|
838 |
'options' => [
|
839 |
-
'center center' => __( 'Center Center','premium-addons-
|
840 |
-
'center left' => __( 'Center Left', 'premium-addons-
|
841 |
-
'center right' => __( 'Center Right', 'premium-addons-
|
842 |
-
'top center' => __( 'Top Center', 'premium-addons-
|
843 |
-
'top left' => __( 'Top Left', 'premium-addons-
|
844 |
-
'top right' => __( 'Top Right', 'premium-addons-
|
845 |
-
'bottom center' => __( 'Bottom Center', 'premium-addons-
|
846 |
-
'bottom left' => __( 'Bottom Left', 'premium-addons-
|
847 |
-
'bottom right' => __( 'Bottom Right', 'premium-addons-
|
848 |
],
|
849 |
'default' => 'center center',
|
850 |
'selectors' => [
|
@@ -862,9 +862,9 @@ class Premium_Videobox extends Widget_Base {
|
|
862 |
'label' => __( 'Mask Position', 'premium-addons-for-elementor' ),
|
863 |
'type' => Controls_Manager::SELECT,
|
864 |
'options' => [
|
865 |
-
'center center' => __( 'Center Center','premium-addons-
|
866 |
-
'top center' => __( 'Top Center', 'premium-addons-
|
867 |
-
'bottom center' => __( 'Bottom Center', 'premium-addons-
|
868 |
],
|
869 |
'default' => 'center center',
|
870 |
'selectors' => [
|
836 |
'label' => __( 'Mask Position', 'premium-addons-for-elementor' ),
|
837 |
'type' => Controls_Manager::SELECT,
|
838 |
'options' => [
|
839 |
+
'center center' => __( 'Center Center','premium-addons-for-elementor' ),
|
840 |
+
'center left' => __( 'Center Left', 'premium-addons-for-elementor' ),
|
841 |
+
'center right' => __( 'Center Right', 'premium-addons-for-elementor' ),
|
842 |
+
'top center' => __( 'Top Center', 'premium-addons-for-elementor' ),
|
843 |
+
'top left' => __( 'Top Left', 'premium-addons-for-elementor' ),
|
844 |
+
'top right' => __( 'Top Right', 'premium-addons-for-elementor' ),
|
845 |
+
'bottom center' => __( 'Bottom Center', 'premium-addons-for-elementor' ),
|
846 |
+
'bottom left' => __( 'Bottom Left', 'premium-addons-for-elementor' ),
|
847 |
+
'bottom right' => __( 'Bottom Right', 'premium-addons-for-elementor' ),
|
848 |
],
|
849 |
'default' => 'center center',
|
850 |
'selectors' => [
|
862 |
'label' => __( 'Mask Position', 'premium-addons-for-elementor' ),
|
863 |
'type' => Controls_Manager::SELECT,
|
864 |
'options' => [
|
865 |
+
'center center' => __( 'Center Center','premium-addons-for-elementor' ),
|
866 |
+
'top center' => __( 'Top Center', 'premium-addons-for-elementor' ),
|
867 |
+
'bottom center' => __( 'Bottom Center', 'premium-addons-for-elementor' ),
|
868 |
],
|
869 |
'default' => 'center center',
|
870 |
'selectors' => [
|