HT Mega – Addons for Elementor Page Builder ( Elementor Addons, Post Grid, Post Slider, Post Carousel, Mega Menu, Elementor Widgets, Elementor Templates, Accordion, Forms, Tables) - Version 1.9.4

Version Description

Download this release

Release Info

Developer devitemsllc
Plugin Icon 128x128 HT Mega – Addons for Elementor Page Builder ( Elementor Addons, Post Grid, Post Slider, Post Carousel, Mega Menu, Elementor Widgets, Elementor Templates, Accordion, Forms, Tables)
Version 1.9.4
Comparing to
See all releases

Code changes from version 1.9.3 to 1.9.4

admin/admin-init.php CHANGED
@@ -13,6 +13,7 @@ class HTMega_Admin_Setting{
13
  * Setting Page
14
  */
15
  public function HTMega_Admin_Settings_page() {
 
16
  require_once('include/class.settings-api.php');
17
  require_once('include/template-library.php');
18
  require_once ('include/class.htmega-elementor-template-library.php' );
13
  * Setting Page
14
  */
15
  public function HTMega_Admin_Settings_page() {
16
+ require_once('include/class.diagnostic-data.php');
17
  require_once('include/class.settings-api.php');
18
  require_once('include/template-library.php');
19
  require_once ('include/class.htmega-elementor-template-library.php' );
admin/assets/css/htmega_admin.css CHANGED
@@ -115,6 +115,11 @@
115
  .htmega_table_row.pro span,.htmegapro .description span {
116
  color: #FF0000;
117
  }
 
 
 
 
 
118
  /*
119
  * General Tab HTML
120
  */
115
  .htmega_table_row.pro span,.htmegapro .description span {
116
  color: #FF0000;
117
  }
118
+ .htmega_table_row >th{
119
+ min-width: 200px;
120
+ width: auto;
121
+ }
122
+
123
  /*
124
  * General Tab HTML
125
  */
admin/assets/js/template_library_manager.js CHANGED
@@ -1,498 +1,498 @@
1
- ;jQuery(document).ready(function($) {
2
- "use strict";
3
-
4
- const
5
- $window = $(window),
6
- $body = $('body'),
7
-
8
- // Project Search
9
- htwptSearchSection = $('#htwpt-search-section'),
10
- htwptDemos = $('#htwpt-demos'),
11
- htwptBuilder = $('#htwpt-builder'),
12
- htwptSearchField = $('#htwpt-search-field'),
13
- htwptType = $('#htwpt-type'),
14
-
15
- // Project
16
- htwptProjectSection = $('#htwpt-project-section'),
17
- htwptProjectGrid = $('#htwpt-project-grid'),
18
- htwptProjectLoadMore = $('#htwpt-load-more-project'),
19
-
20
- // Project Count
21
- htwptInitProjectStartCount = 0,
22
- htwptInitProjectEndCount = 8,
23
- htwptProjectLoadCount = 4,
24
-
25
- // Project Loading/Load more
26
- htwptLoaderHtml = '<span id="htwpt-loader"></span>',
27
- htwptLoaderSelector = '#htwpt-loader',
28
- htwptLoadingText = '<span class="htwpt-pro-loading"></span>',
29
- htwptLoadedText = HTTM.message.allload,
30
- htwptNothingFoundText = HTTM.message.notfound,
31
-
32
- // Group Project
33
- htwptGroupProjectSection = $('#htwpt-group-section'),
34
- htwptGroupProjectGrid = $('#htwpt-group-grid'),
35
- htwptGroupProjectBack = $('#htwpt-group-close'),
36
- htwptGroupProjectTitle = $('#htwpt-group-name');
37
-
38
- let
39
- // Project Data
40
- htwptProjectData = HTTM.alldata,
41
-
42
- // Project Count
43
- htwptProjectStartCount = htwptInitProjectStartCount,
44
- htwptProjectEndCount = htwptInitProjectEndCount,
45
-
46
- // Project Options Value
47
- htwptDemosValue = htwptDemos.val(),
48
- htwptBuilderValue = htwptBuilder.val(),
49
- htwptSearchFieldValue = htwptSearchField.val(),
50
- htwptTypeValue = htwptType.val(),
51
-
52
- // Project Start End Count Fnction for Options
53
- htwptProjectStartEndCount,
54
-
55
- // Project Print Function
56
- htwptProjectPirnt,
57
-
58
- // Check Image Load Function
59
- imageLoad,
60
-
61
- // Scroll Magic Infinity & Reveal Function
62
- htwptInfinityLoad,
63
- htwptElementReveal,
64
-
65
- // Ajax Fail Message
66
- failMessage,
67
- msg = '';
68
-
69
- // Project Start End Count Fnction for Options
70
- htwptProjectStartEndCount = () => {
71
- htwptProjectStartCount = htwptInitProjectStartCount;
72
- htwptProjectEndCount = htwptInitProjectEndCount;
73
- }
74
-
75
- // Projects Demo Type Select
76
- htwptDemos.selectric({
77
- onChange: (e) => {
78
- htwptDemosValue = $(e).val();
79
- htwptSearchFieldValue = '';
80
- htwptSearchField.val('');
81
- htwptProjectStartEndCount();
82
- htwptProjectPirnt(htwptProjectData);
83
- },
84
- });
85
-
86
- // Projects Builder Type Select
87
- htwptBuilder.selectric({
88
- onChange: (e) => {
89
- htwptBuilderValue = $(e).val();
90
- htwptProjectStartEndCount();
91
- htwptProjectPirnt(htwptProjectData);
92
- },
93
- });
94
-
95
- // Projects Pro/Free Type Select
96
- htwptType.selectric({
97
- onChange: (e) => {
98
- htwptTypeValue = $(e).val();
99
- htwptProjectStartEndCount();
100
- htwptProjectPirnt(htwptProjectData);
101
- },
102
- });
103
-
104
- // Projects Search
105
- htwptSearchField.on('input', () => {
106
- if (!htwptSearchField.val()) {
107
- htwptSearchFieldValue = htwptSearchField.val().toLowerCase();
108
- htwptProjectStartEndCount();
109
- htwptProjectPirnt(htwptProjectData);
110
- }
111
- });
112
- htwptSearchField.on('keyup', (e) => {
113
- if (e.keyCode == 13) {
114
- htwptSearchFieldValue = htwptSearchField.val().toLowerCase();
115
- htwptProjectStartEndCount();
116
- htwptProjectPirnt(htwptProjectData);
117
- }
118
- });
119
-
120
- // Check Image Load Function
121
- imageLoad = () => {
122
- $('.htwpt-image img').each((i, e) => $(e).on('load', () => $(e).addClass('finish')));
123
- };
124
-
125
- // Projects Print/Append on HTML Dom Function
126
- htwptProjectPirnt = function (htwptProjectData, types = 'push') {
127
-
128
- // Projects Data Filter for Template/Blocks
129
- htwptProjectData = htwptProjectData.filter(i => i.demoType == htwptDemosValue)
130
- // Projects Data Filter for Builder Support
131
- if (htwptBuilderValue != "all") {
132
- htwptProjectData = htwptProjectData.filter(i => i.builder.filter(j => j == htwptBuilderValue)[0])
133
- }
134
- // Projects Data Filter for Free/Pro
135
- if (htwptTypeValue != "all") {
136
- // htwptProjectData = htwptProjectData.filter(i => i.isPro == htwptTypeValue)
137
- htwptProjectData = htwptProjectData.filter(i => i.tmpType == htwptTypeValue)
138
- }
139
- // Projects Data Filter by Search
140
- if (htwptSearchFieldValue != "") {
141
- htwptProjectData = htwptProjectData.filter(i => i.tags.filter(j => j == htwptSearchFieldValue)[0])
142
- }
143
-
144
- let htwptPrintDataArray = Array.from(new Set(htwptProjectData.map(i => i.shareId))).map(j => htwptProjectData.find(a => a.shareId === j)),
145
- htwptPrintData = htwptPrintDataArray.slice(htwptProjectStartCount, htwptProjectEndCount),
146
- html = '';
147
- for (let i = 0; i < htwptPrintData.length; i++) {
148
- let {
149
- thumbnail,
150
- id,
151
- url,
152
- shareId,
153
- title
154
- } = htwptPrintData[i],
155
- totalItem = htwptProjectData.filter(i => i.shareId == shareId).length,
156
- singleItem = totalItem == 1 ? 'htwpt-project-item-signle' : '';
157
- html += `<div class="${singleItem} col-xl-4 col-md-6 col-12">
158
- <div class="htwpt-project-item ${singleItem}" data-group="${shareId}">
159
- <div class="htwpt-project-thumb">
160
- <div class="htwpt-image">
161
- <img src="${thumbnail}" alt="${title}" />
162
- <span class="img-loader"></span>
163
- </div>
164
- </div>
165
- <div class="htwpt-project-info">
166
- <h5 class="title">${shareId}</h5>
167
- <h6 class="sub-title">${totalItem} ${htwpUcfirst(htwptDemosValue)} ${HTTM.message.packagedesc}</h6>
168
- </div>
169
- </div>
170
- </div>`;
171
- }
172
- if (types == "append") {
173
- htwptProjectGrid.append(html);
174
- } else {
175
- htwptProjectGrid.html(html);
176
- }
177
- if (htwptPrintDataArray.length == 0) {
178
- htwptProjectGrid.html(`<h2 class="htwpt-project-message text-danger">${htwptNothingFoundText}</h2>`);
179
- $(htwptLoaderSelector).addClass('finish').html('');
180
- } else {
181
- if (htwptPrintDataArray.length <= htwptProjectEndCount) {
182
- $(htwptLoaderSelector).addClass('finish').html(htwptLoadedText);
183
- } else {
184
- $(htwptLoaderSelector).removeClass('finish').html(htwptLoadingText);
185
- }
186
- }
187
- imageLoad();
188
- }
189
-
190
- // Scroll Magic for Infinity Load Function
191
- htwptInfinityLoad = () => {
192
- setTimeout(() => {
193
- let htwptInfinityController = new ScrollMagic.Controller(),
194
- htwptInfinityscene = new ScrollMagic.Scene({
195
- triggerElement: '#htwpt-loader',
196
- triggerHook: 'onEnter',
197
- offset: 0
198
- })
199
- .addTo(htwptInfinityController)
200
- .on('enter', (e) => {
201
- if (!$(htwptLoaderSelector).hasClass('finish')) {
202
- htwptProjectStartCount = htwptProjectEndCount;
203
- htwptProjectEndCount += htwptProjectLoadCount;
204
- setTimeout(() => {
205
- htwptProjectPirnt(htwptProjectData, 'append')
206
- }, 200);
207
- }
208
- });
209
- });
210
- }
211
-
212
- // Scroll Magic for Reveal Element Function
213
- htwptElementReveal = () => {
214
- let htwptInfinityController = new ScrollMagic.Controller();
215
- $('.htwpt-group-item').each(function () {
216
- new ScrollMagic.Scene({
217
- triggerElement: this,
218
- triggerHook: 'onEnter',
219
- offset: 50
220
- })
221
- .setClassToggle(this, "visible")
222
- .addTo(htwptInfinityController);
223
- })
224
- }
225
-
226
- if(htwptProjectData.length) {
227
- htwptProjectLoadMore.append(htwptLoaderHtml);
228
- htwptProjectPirnt(htwptProjectData);
229
- htwptInfinityLoad();
230
- }
231
-
232
- function htwpUcfirst(string) {
233
- return string.charAt(0).toUpperCase() + string.slice(1);
234
- }
235
-
236
- // Group Project Open Function
237
- htwptProjectGrid.on('click', '.htwpt-project-item', function (e) {
238
- e.preventDefault();
239
- let htwptProjectGroupData = htwptProjectData;
240
- // Projects Data Filter for Template/Blocks
241
- htwptProjectGroupData = htwptProjectGroupData.filter(i => i.demoType == htwptDemosValue)
242
- // Projects Data Filter for Builder Support
243
- if (htwptBuilderValue != "all") {
244
- htwptProjectGroupData = htwptProjectGroupData.filter(i => i.builder.filter(j => j == htwptBuilderValue)[0])
245
- }
246
- // Projects Data Filter for Free/Pro
247
- if (htwptTypeValue != "all") {
248
- htwptProjectGroupData = htwptProjectGroupData.filter(i => i.tmpType == htwptTypeValue)
249
- }
250
- // Projects Data Filter by Search
251
- if (htwptSearchFieldValue != "") {
252
- htwptProjectGroupData = htwptProjectGroupData.filter(i => i.tags.filter(j => j == htwptSearchFieldValue)[0])
253
- }
254
-
255
- let $this = $(this),
256
- $group = $this.data('group'),
257
- htwptPrintGroupData = htwptProjectGroupData.filter(i => i.shareId == $group),
258
- htwptGroupHTML = '',
259
- $impbutton = '',
260
- $tmptitle = '';
261
- for (let i = 0; i < htwptPrintGroupData.length; i++) {
262
- let {
263
- thumbnail,
264
- id,
265
- url,
266
- shareId,
267
- title,
268
- isPro,
269
- freePlugins,
270
- proPlugins,
271
- requiredtheme,
272
- } = htwptPrintGroupData[i];
273
- if(isPro == '1' ){
274
- $impbutton = `<a href="${HTTM.prolink}" target="_blank">${HTTM.buttontxt.buynow}</a>`;
275
- $tmptitle = `<h5 class="title">${title} <span>(${HTTM.prolabel})</span></h5>`;
276
- }else{
277
- $impbutton = `<a href="#" class="htwpttemplateimp button" data-templpateopt='{"parentid":"${shareId}","templpateid":"${id}","templpattitle":"${title}","message":"Successfully ${htwpUcfirst(shareId)+ ' -> ' + title} has been imported.","thumbnail":"${thumbnail}","freePlugins":"${freePlugins}", "proPlugins":"${proPlugins}","requiredtheme":"${requiredtheme}" }'>${HTTM.buttontxt.import}</a>`;
278
- $tmptitle = `<h5 class="title">${title}</h5>`;
279
- }
280
- htwptGroupHTML += `<div class="htwpt-group-item col-xl-4 col-md-6 col-12">
281
- <div class="htwpt-project-item">
282
- <div class="htwpt-project-thumb">
283
- <a href="${thumbnail}" class="htwpt-image htwpt-image-popup">
284
- <img src="${thumbnail}" data-preview='{"templpateid":"${id}","templpattitle":"${title}","parentid":"${shareId}","fullimage":"${thumbnail}"}' alt="${title}" />
285
- <span class="img-loader"></span>
286
- </a>
287
- <div class="htwpt-actions">
288
- <a href="${url}" target="_blank">${HTTM.buttontxt.preview}</a>
289
- ${$impbutton}
290
- </div>
291
- </div>
292
- <div class="htwpt-project-info">
293
- ${$tmptitle}
294
- <h6 class="sub-title">${shareId}</h6>
295
- </div>
296
- </div>
297
- <div id="htwpt-popup-prev-${id}" style="display: none;"><img src="${thumbnail}" alt="${title}" style="width:100%;"/></div>
298
- </div>`;
299
- }
300
- if (!$(htwptLoaderSelector).hasClass('finish')) {
301
- $(htwptLoaderSelector).addClass('finish group-loaded');
302
- }
303
- htwptProjectSection.addClass('group-project-open');
304
- htwptSearchSection.addClass('group-project-open');
305
- let topPotision;
306
-
307
- htwptSearchSection.offset().top > 32 && $(window).scrollTop() < htwptSearchSection.offset().top ? topPotision = htwptSearchSection.offset().top - $(window).scrollTop() : topPotision = 32;
308
-
309
- htwptGroupProjectSection.fadeIn().css({
310
- "top": topPotision + 'px',
311
- "left": htwptSearchSection.offset().left + 'px'
312
- });
313
- $body.css('overflow-y', 'hidden');
314
- htwptGroupProjectTitle.html($group);
315
- htwptGroupProjectGrid.html(htwptGroupHTML);
316
- htwptElementReveal();
317
- imageLoad();
318
- });
319
-
320
- // Group Project Close Function
321
- htwptGroupProjectBack.on('click', function (e) {
322
- e.preventDefault();
323
- htwptGroupProjectSection.fadeOut('fast');
324
- htwptGroupProjectTitle.html('');
325
- htwptGroupProjectGrid.html('');
326
- htwptProjectSection.removeClass('group-project-open');
327
- htwptSearchSection.removeClass('group-project-open');
328
- $body.css('overflow-y', 'auto');
329
- imageLoad();
330
- if ($(htwptLoaderSelector).hasClass('group-loaded')) {
331
- $(htwptLoaderSelector).removeClass('finish group-loaded');
332
- }
333
- });
334
-
335
- // Scroll To Top
336
- let $htwptScrollToTop = $(".htwpt-scrollToTop"),
337
- $htwptGroupScrollToTop = $(".htwpt-groupScrollToTop");
338
- $window.on('scroll', function () {
339
- if ($window.scrollTop() > 100) {
340
- $htwptScrollToTop.addClass('show');
341
- } else {
342
- $htwptScrollToTop.removeClass('show');
343
- }
344
- });
345
- $htwptScrollToTop.on('click', function (e) {
346
- e.preventDefault();
347
- $("html, body").animate({
348
- scrollTop: 0
349
- });
350
- });
351
- htwptGroupProjectSection.on('scroll', function () {
352
- if (htwptGroupProjectSection.scrollTop() > 100) {
353
- $htwptGroupScrollToTop.addClass('show');
354
- } else {
355
- $htwptGroupScrollToTop.removeClass('show');
356
- }
357
- });
358
- $htwptGroupScrollToTop.on('click', function (e) {
359
- e.preventDefault();
360
- htwptGroupProjectSection.animate({
361
- scrollTop: 0
362
- });
363
- });
364
-
365
-
366
- /*
367
- * PopUp button
368
- * Preview PopUp
369
- * Data Import Request
370
- */
371
- $('body').on('click', 'a.htwpttemplateimp', function(e) {
372
- e.preventDefault();
373
-
374
- var $this = $(this),
375
- template_opt = $this.data('templpateopt');
376
-
377
- $('.htwpt-edit').html('');
378
- $('#htwptpagetitle').val('');
379
- $(".htwptpopupcontent").show();
380
- $(".htwptmessage").hide();
381
- $(".htwptmessage p").html( template_opt.message );
382
-
383
- // dialog header
384
- $("#htwpt-popup-area").attr( "title", htwpUcfirst(template_opt.parentid) + ' → ' +template_opt.templpattitle );
385
-
386
- var htbtnMarkuplibrary = `<a href="#" class="wptemplataimpbtn" data-btnattr='{"templateid":"${template_opt.templpateid}","parentid":"${template_opt.parentid}","templpattitle":"${template_opt.templpattitle}"}'>${HTTM.buttontxt.tmplibrary}</a>`;
387
- var htbtnMarkuppage = `<a href="#" class="wptemplataimpbtn htwptdisabled" data-btnattr='{"templateid":"${template_opt.templpateid}","parentid":"${template_opt.parentid}","templpattitle":"${template_opt.templpattitle}"}'>${HTTM.buttontxt.tmppage}</a>`;
388
-
389
- // Enter page title then enable button
390
- $('#htwptpagetitle').on('input', function () {
391
- if( !$('#htwptpagetitle').val() == '' ){
392
- $(".htwptimport-button-dynamic-page .wptemplataimpbtn").removeClass('htwptdisabled');
393
- } else {
394
- $(".htwptimport-button-dynamic-page .wptemplataimpbtn").addClass('htwptdisabled');
395
- }
396
- });
397
-
398
- // button Dynamic content
399
- $( ".htwptimport-button-dynamic" ).html( htbtnMarkuplibrary );
400
- $( ".htwptimport-button-dynamic-page" ).html( htbtnMarkuppage );
401
- $( ".ui-dialog-title" ).html( htwpUcfirst( template_opt.parentid ) + ' &#8594; ' +template_opt.templpattitle );
402
-
403
- $this.addClass( 'updating-message' );
404
- // call dialog
405
- function OpenPopup(){
406
- $( "#htwpt-popup-area" ).dialog({
407
- modal: true,
408
- minWidth: 500,
409
- minHeight:300,
410
- buttons: {
411
- Close: function() {
412
- $( this ).dialog( "close" );
413
- }
414
- }
415
- });
416
- }
417
-
418
- $.ajax( {
419
- url: HTTM.ajaxurl,
420
- type: 'POST',
421
- data: {
422
- action: 'htmega_ajax_get_required_plugin',
423
- freeplugins: template_opt.freePlugins,
424
- proplugins: template_opt.proPlugins,
425
- requiredtheme: template_opt.requiredtheme,
426
- },
427
- complete: function( data ) {
428
- $( ".htwptemplata-requiredplugins" ).html( data.responseText );
429
- OpenPopup();
430
- $this.removeClass( 'updating-message' );
431
- }
432
- });
433
-
434
-
435
- });
436
-
437
- // Preview PopUp
438
- $('body').on( 'click','.htwpt-image-popup img', function(e){
439
- e.preventDefault();
440
-
441
- var $this = $(this),
442
- preview_opt = $this.data('preview');
443
-
444
- // dialog header
445
- $( "#htwpt-popup-prev-"+preview_opt.templpateid ).attr( "title", htwpUcfirst(preview_opt.parentid) + ' → ' + preview_opt.templpattitle );
446
- $( ".ui-dialog-title" ).html( htwpUcfirst( preview_opt.parentid ) + ' &#8594; ' +preview_opt.templpattitle );
447
-
448
- $( "#htwpt-popup-prev-"+preview_opt.templpateid ).dialog({
449
- modal: true,
450
- width: 'auto',
451
- maxHeight: ( $(window).height()-50 ),
452
- buttons: {
453
- Close: function() {
454
- $( this ).dialog( "close" );
455
- }
456
- }
457
- });
458
-
459
- });
460
-
461
- // Import data request
462
- $('body').on('click', 'a.wptemplataimpbtn', function(e) {
463
- e.preventDefault();
464
-
465
- var $this = $(this),
466
- pagetitle = ( $('#htwptpagetitle').val() ) ? ( $('#htwptpagetitle').val() ) : '',
467
- databtnattr = $this.data('btnattr');
468
- $.ajax({
469
- url: HTTM.ajaxurl,
470
- data: {
471
- 'action' : 'htmega_ajax_request',
472
- 'httemplateid' : databtnattr.templateid,
473
- 'htparentid' : databtnattr.parentid,
474
- 'httitle' : databtnattr.templpattitle,
475
- 'pagetitle' : pagetitle,
476
- },
477
- dataType: 'JSON',
478
- beforeSend: function(){
479
- $(".htwptspinner").addClass('loading');
480
- $(".htwptpopupcontent").hide();
481
- },
482
- success:function(data) {
483
- $(".htwptmessage").show();
484
- var tmediturl = HTTM.adminURL+"post.php?post="+ data.id +"&action=elementor";
485
- $('.htwpt-edit').html('<a href="'+ tmediturl +'" target="_blank">'+ data.edittxt +'</a>');
486
- },
487
- complete:function(data){
488
- $(".htwptspinner").removeClass('loading');
489
- $(".htwptmessage").css( "display","block" );
490
- },
491
- error: function(errorThrown){
492
- }
493
- });
494
-
495
- });
496
-
497
-
498
- });
1
+ ;jQuery(document).ready(function($) {
2
+ "use strict";
3
+
4
+ const
5
+ $window = $(window),
6
+ $body = $('body'),
7
+
8
+ // Project Search
9
+ htwptSearchSection = $('#htwpt-search-section'),
10
+ htwptDemos = $('#htwpt-demos'),
11
+ htwptBuilder = $('#htwpt-builder'),
12
+ htwptSearchField = $('#htwpt-search-field'),
13
+ htwptType = $('#htwpt-type'),
14
+
15
+ // Project
16
+ htwptProjectSection = $('#htwpt-project-section'),
17
+ htwptProjectGrid = $('#htwpt-project-grid'),
18
+ htwptProjectLoadMore = $('#htwpt-load-more-project'),
19
+
20
+ // Project Count
21
+ htwptInitProjectStartCount = 0,
22
+ htwptInitProjectEndCount = 8,
23
+ htwptProjectLoadCount = 4,
24
+
25
+ // Project Loading/Load more
26
+ htwptLoaderHtml = '<span id="htwpt-loader"></span>',
27
+ htwptLoaderSelector = '#htwpt-loader',
28
+ htwptLoadingText = '<span class="htwpt-pro-loading"></span>',
29
+ htwptLoadedText = HTTM.message.allload,
30
+ htwptNothingFoundText = HTTM.message.notfound,
31
+
32
+ // Group Project
33
+ htwptGroupProjectSection = $('#htwpt-group-section'),
34
+ htwptGroupProjectGrid = $('#htwpt-group-grid'),
35
+ htwptGroupProjectBack = $('#htwpt-group-close'),
36
+ htwptGroupProjectTitle = $('#htwpt-group-name');
37
+
38
+ let
39
+ // Project Data
40
+ htwptProjectData = HTTM.alldata,
41
+
42
+ // Project Count
43
+ htwptProjectStartCount = htwptInitProjectStartCount,
44
+ htwptProjectEndCount = htwptInitProjectEndCount,
45
+
46
+ // Project Options Value
47
+ htwptDemosValue = htwptDemos.val(),
48
+ htwptBuilderValue = htwptBuilder.val(),
49
+ htwptSearchFieldValue = htwptSearchField.val(),
50
+ htwptTypeValue = htwptType.val(),
51
+
52
+ // Project Start End Count Fnction for Options
53
+ htwptProjectStartEndCount,
54
+
55
+ // Project Print Function
56
+ htwptProjectPirnt,
57
+
58
+ // Check Image Load Function
59
+ imageLoad,
60
+
61
+ // Scroll Magic Infinity & Reveal Function
62
+ htwptInfinityLoad,
63
+ htwptElementReveal,
64
+
65
+ // Ajax Fail Message
66
+ failMessage,
67
+ msg = '';
68
+
69
+ // Project Start End Count Fnction for Options
70
+ htwptProjectStartEndCount = () => {
71
+ htwptProjectStartCount = htwptInitProjectStartCount;
72
+ htwptProjectEndCount = htwptInitProjectEndCount;
73
+ }
74
+
75
+ // Projects Demo Type Select
76
+ htwptDemos.selectric({
77
+ onChange: (e) => {
78
+ htwptDemosValue = $(e).val();
79
+ htwptSearchFieldValue = '';
80
+ htwptSearchField.val('');
81
+ htwptProjectStartEndCount();
82
+ htwptProjectPirnt(htwptProjectData);
83
+ },
84
+ });
85
+
86
+ // Projects Builder Type Select
87
+ htwptBuilder.selectric({
88
+ onChange: (e) => {
89
+ htwptBuilderValue = $(e).val();
90
+ htwptProjectStartEndCount();
91
+ htwptProjectPirnt(htwptProjectData);
92
+ },
93
+ });
94
+
95
+ // Projects Pro/Free Type Select
96
+ htwptType.selectric({
97
+ onChange: (e) => {
98
+ htwptTypeValue = $(e).val();
99
+ htwptProjectStartEndCount();
100
+ htwptProjectPirnt(htwptProjectData);
101
+ },
102
+ });
103
+
104
+ // Projects Search
105
+ htwptSearchField.on('input', () => {
106
+ if (!htwptSearchField.val()) {
107
+ htwptSearchFieldValue = htwptSearchField.val().toLowerCase();
108
+ htwptProjectStartEndCount();
109
+ htwptProjectPirnt(htwptProjectData);
110
+ }
111
+ });
112
+ htwptSearchField.on('keyup', (e) => {
113
+ if (e.keyCode == 13) {
114
+ htwptSearchFieldValue = htwptSearchField.val().toLowerCase();
115
+ htwptProjectStartEndCount();
116
+ htwptProjectPirnt(htwptProjectData);
117
+ }
118
+ });
119
+
120
+ // Check Image Load Function
121
+ imageLoad = () => {
122
+ $('.htwpt-image img').each((i, e) => $(e).on('load', () => $(e).addClass('finish')));
123
+ };
124
+
125
+ // Projects Print/Append on HTML Dom Function
126
+ htwptProjectPirnt = function (htwptProjectData, types = 'push') {
127
+
128
+ // Projects Data Filter for Template/Blocks
129
+ htwptProjectData = htwptProjectData.filter(i => i.demoType == htwptDemosValue)
130
+ // Projects Data Filter for Builder Support
131
+ if (htwptBuilderValue != "all") {
132
+ htwptProjectData = htwptProjectData.filter(i => i.builder.filter(j => j == htwptBuilderValue)[0])
133
+ }
134
+ // Projects Data Filter for Free/Pro
135
+ if (htwptTypeValue != "all") {
136
+ // htwptProjectData = htwptProjectData.filter(i => i.isPro == htwptTypeValue)
137
+ htwptProjectData = htwptProjectData.filter(i => i.tmpType == htwptTypeValue)
138
+ }
139
+ // Projects Data Filter by Search
140
+ if (htwptSearchFieldValue != "") {
141
+ htwptProjectData = htwptProjectData.filter(i => i.tags.filter(j => j == htwptSearchFieldValue)[0])
142
+ }
143
+
144
+ let htwptPrintDataArray = Array.from(new Set(htwptProjectData.map(i => i.shareId))).map(j => htwptProjectData.find(a => a.shareId === j)),
145
+ htwptPrintData = htwptPrintDataArray.slice(htwptProjectStartCount, htwptProjectEndCount),
146
+ html = '';
147
+ for (let i = 0; i < htwptPrintData.length; i++) {
148
+ let {
149
+ thumbnail,
150
+ id,
151
+ url,
152
+ shareId,
153
+ title
154
+ } = htwptPrintData[i],
155
+ totalItem = htwptProjectData.filter(i => i.shareId == shareId).length,
156
+ singleItem = totalItem == 1 ? 'htwpt-project-item-signle' : '';
157
+ html += `<div class="${singleItem} col-xl-4 col-md-6 col-12">
158
+ <div class="htwpt-project-item ${singleItem}" data-group="${shareId}">
159
+ <div class="htwpt-project-thumb">
160
+ <div class="htwpt-image">
161
+ <img src="${thumbnail}" alt="${title}" />
162
+ <span class="img-loader"></span>
163
+ </div>
164
+ </div>
165
+ <div class="htwpt-project-info">
166
+ <h5 class="title">${shareId}</h5>
167
+ <h6 class="sub-title">${totalItem} ${htwpUcfirst(htwptDemosValue)} ${HTTM.message.packagedesc}</h6>
168
+ </div>
169
+ </div>
170
+ </div>`;
171
+ }
172
+ if (types == "append") {
173
+ htwptProjectGrid.append(html);
174
+ } else {
175
+ htwptProjectGrid.html(html);
176
+ }
177
+ if (htwptPrintDataArray.length == 0) {
178
+ htwptProjectGrid.html(`<h2 class="htwpt-project-message text-danger">${htwptNothingFoundText}</h2>`);
179
+ $(htwptLoaderSelector).addClass('finish').html('');
180
+ } else {
181
+ if (htwptPrintDataArray.length <= htwptProjectEndCount) {
182
+ $(htwptLoaderSelector).addClass('finish').html(htwptLoadedText);
183
+ } else {
184
+ $(htwptLoaderSelector).removeClass('finish').html(htwptLoadingText);
185
+ }
186
+ }
187
+ imageLoad();
188
+ }
189
+
190
+ // Scroll Magic for Infinity Load Function
191
+ htwptInfinityLoad = () => {
192
+ setTimeout(() => {
193
+ let htwptInfinityController = new ScrollMagic.Controller(),
194
+ htwptInfinityscene = new ScrollMagic.Scene({
195
+ triggerElement: '#htwpt-loader',
196
+ triggerHook: 'onEnter',
197
+ offset: 0
198
+ })
199
+ .addTo(htwptInfinityController)
200
+ .on('enter', (e) => {
201
+ if (!$(htwptLoaderSelector).hasClass('finish')) {
202
+ htwptProjectStartCount = htwptProjectEndCount;
203
+ htwptProjectEndCount += htwptProjectLoadCount;
204
+ setTimeout(() => {
205
+ htwptProjectPirnt(htwptProjectData, 'append')
206
+ }, 200);
207
+ }
208
+ });
209
+ });
210
+ }
211
+
212
+ // Scroll Magic for Reveal Element Function
213
+ htwptElementReveal = () => {
214
+ let htwptInfinityController = new ScrollMagic.Controller();
215
+ $('.htwpt-group-item').each(function () {
216
+ new ScrollMagic.Scene({
217
+ triggerElement: this,
218
+ triggerHook: 'onEnter',
219
+ offset: 50
220
+ })
221
+ .setClassToggle(this, "visible")
222
+ .addTo(htwptInfinityController);
223
+ })
224
+ }
225
+
226
+ if(htwptProjectData.length) {
227
+ htwptProjectLoadMore.append(htwptLoaderHtml);
228
+ htwptProjectPirnt(htwptProjectData);
229
+ htwptInfinityLoad();
230
+ }
231
+
232
+ function htwpUcfirst(string) {
233
+ return string.charAt(0).toUpperCase() + string.slice(1);
234
+ }
235
+
236
+ // Group Project Open Function
237
+ htwptProjectGrid.on('click', '.htwpt-project-item', function (e) {
238
+ e.preventDefault();
239
+ let htwptProjectGroupData = htwptProjectData;
240
+ // Projects Data Filter for Template/Blocks
241
+ htwptProjectGroupData = htwptProjectGroupData.filter(i => i.demoType == htwptDemosValue)
242
+ // Projects Data Filter for Builder Support
243
+ if (htwptBuilderValue != "all") {
244
+ htwptProjectGroupData = htwptProjectGroupData.filter(i => i.builder.filter(j => j == htwptBuilderValue)[0])
245
+ }
246
+ // Projects Data Filter for Free/Pro
247
+ if (htwptTypeValue != "all") {
248
+ htwptProjectGroupData = htwptProjectGroupData.filter(i => i.tmpType == htwptTypeValue)
249
+ }
250
+ // Projects Data Filter by Search
251
+ if (htwptSearchFieldValue != "") {
252
+ htwptProjectGroupData = htwptProjectGroupData.filter(i => i.tags.filter(j => j == htwptSearchFieldValue)[0])
253
+ }
254
+
255
+ let $this = $(this),
256
+ $group = $this.data('group'),
257
+ htwptPrintGroupData = htwptProjectGroupData.filter(i => i.shareId == $group),
258
+ htwptGroupHTML = '',
259
+ $impbutton = '',
260
+ $tmptitle = '';
261
+ for (let i = 0; i < htwptPrintGroupData.length; i++) {
262
+ let {
263
+ thumbnail,
264
+ id,
265
+ url,
266
+ shareId,
267
+ title,
268
+ isPro,
269
+ freePlugins,
270
+ proPlugins,
271
+ requiredtheme,
272
+ } = htwptPrintGroupData[i];
273
+ if(isPro == '1' ){
274
+ $impbutton = `<a href="${HTTM.prolink}" target="_blank">${HTTM.buttontxt.buynow}</a>`;
275
+ $tmptitle = `<h5 class="title">${title} <span>(${HTTM.prolabel})</span></h5>`;
276
+ }else{
277
+ $impbutton = `<a href="#" class="htwpttemplateimp button" data-templpateopt='{"parentid":"${shareId}","templpateid":"${id}","templpattitle":"${title}","message":"Successfully ${htwpUcfirst(shareId)+ ' -> ' + title} has been imported.","thumbnail":"${thumbnail}","freePlugins":"${freePlugins}", "proPlugins":"${proPlugins}","requiredtheme":"${requiredtheme}" }'>${HTTM.buttontxt.import}</a>`;
278
+ $tmptitle = `<h5 class="title">${title}</h5>`;
279
+ }
280
+ htwptGroupHTML += `<div class="htwpt-group-item col-xl-4 col-md-6 col-12">
281
+ <div class="htwpt-project-item">
282
+ <div class="htwpt-project-thumb">
283
+ <a href="${thumbnail}" class="htwpt-image htwpt-image-popup">
284
+ <img src="${thumbnail}" data-preview='{"templpateid":"${id}","templpattitle":"${title}","parentid":"${shareId}","fullimage":"${thumbnail}"}' alt="${title}" />
285
+ <span class="img-loader"></span>
286
+ </a>
287
+ <div class="htwpt-actions">
288
+ <a href="${url}" target="_blank">${HTTM.buttontxt.preview}</a>
289
+ ${$impbutton}
290
+ </div>
291
+ </div>
292
+ <div class="htwpt-project-info">
293
+ ${$tmptitle}
294
+ <h6 class="sub-title">${shareId}</h6>
295
+ </div>
296
+ </div>
297
+ <div id="htwpt-popup-prev-${id}" style="display: none;"><img src="${thumbnail}" alt="${title}" style="width:100%;"/></div>
298
+ </div>`;
299
+ }
300
+ if (!$(htwptLoaderSelector).hasClass('finish')) {
301
+ $(htwptLoaderSelector).addClass('finish group-loaded');
302
+ }
303
+ htwptProjectSection.addClass('group-project-open');
304
+ htwptSearchSection.addClass('group-project-open');
305
+ let topPotision;
306
+
307
+ htwptSearchSection.offset().top > 32 && $(window).scrollTop() < htwptSearchSection.offset().top ? topPotision = htwptSearchSection.offset().top - $(window).scrollTop() : topPotision = 32;
308
+
309
+ htwptGroupProjectSection.fadeIn().css({
310
+ "top": topPotision + 'px',
311
+ "left": htwptSearchSection.offset().left + 'px'
312
+ });
313
+ $body.css('overflow-y', 'hidden');
314
+ htwptGroupProjectTitle.html($group);
315
+ htwptGroupProjectGrid.html(htwptGroupHTML);
316
+ htwptElementReveal();
317
+ imageLoad();
318
+ });
319
+
320
+ // Group Project Close Function
321
+ htwptGroupProjectBack.on('click', function (e) {
322
+ e.preventDefault();
323
+ htwptGroupProjectSection.fadeOut('fast');
324
+ htwptGroupProjectTitle.html('');
325
+ htwptGroupProjectGrid.html('');
326
+ htwptProjectSection.removeClass('group-project-open');
327
+ htwptSearchSection.removeClass('group-project-open');
328
+ $body.css('overflow-y', 'auto');
329
+ imageLoad();
330
+ if ($(htwptLoaderSelector).hasClass('group-loaded')) {
331
+ $(htwptLoaderSelector).removeClass('finish group-loaded');
332
+ }
333
+ });
334
+
335
+ // Scroll To Top
336
+ let $htwptScrollToTop = $(".htwpt-scrollToTop"),
337
+ $htwptGroupScrollToTop = $(".htwpt-groupScrollToTop");
338
+ $window.on('scroll', function () {
339
+ if ($window.scrollTop() > 100) {
340
+ $htwptScrollToTop.addClass('show');
341
+ } else {
342
+ $htwptScrollToTop.removeClass('show');
343
+ }
344
+ });
345
+ $htwptScrollToTop.on('click', function (e) {
346
+ e.preventDefault();
347
+ $("html, body").animate({
348
+ scrollTop: 0
349
+ });
350
+ });
351
+ htwptGroupProjectSection.on('scroll', function () {
352
+ if (htwptGroupProjectSection.scrollTop() > 100) {
353
+ $htwptGroupScrollToTop.addClass('show');
354
+ } else {
355
+ $htwptGroupScrollToTop.removeClass('show');
356
+ }
357
+ });
358
+ $htwptGroupScrollToTop.on('click', function (e) {
359
+ e.preventDefault();
360
+ htwptGroupProjectSection.animate({
361
+ scrollTop: 0
362
+ });
363
+ });
364
+
365
+
366
+ /*
367
+ * PopUp button
368
+ * Preview PopUp
369
+ * Data Import Request
370
+ */
371
+ $('body').on('click', 'a.htwpttemplateimp', function(e) {
372
+ e.preventDefault();
373
+
374
+ var $this = $(this),
375
+ template_opt = $this.data('templpateopt');
376
+
377
+ $('.htwpt-edit').html('');
378
+ $('#htwptpagetitle').val('');
379
+ $(".htwptpopupcontent").show();
380
+ $(".htwptmessage").hide();
381
+ $(".htwptmessage p").html( template_opt.message );
382
+
383
+ // dialog header
384
+ $("#htwpt-popup-area").attr( "title", htwpUcfirst(template_opt.parentid) + ' → ' +template_opt.templpattitle );
385
+
386
+ var htbtnMarkuplibrary = `<a href="#" class="wptemplataimpbtn" data-btnattr='{"templateid":"${template_opt.templpateid}","parentid":"${template_opt.parentid}","templpattitle":"${template_opt.templpattitle}"}'>${HTTM.buttontxt.tmplibrary}</a>`;
387
+ var htbtnMarkuppage = `<a href="#" class="wptemplataimpbtn htwptdisabled" data-btnattr='{"templateid":"${template_opt.templpateid}","parentid":"${template_opt.parentid}","templpattitle":"${template_opt.templpattitle}"}'>${HTTM.buttontxt.tmppage}</a>`;
388
+
389
+ // Enter page title then enable button
390
+ $('#htwptpagetitle').on('input', function () {
391
+ if( !$('#htwptpagetitle').val() == '' ){
392
+ $(".htwptimport-button-dynamic-page .wptemplataimpbtn").removeClass('htwptdisabled');
393
+ } else {
394
+ $(".htwptimport-button-dynamic-page .wptemplataimpbtn").addClass('htwptdisabled');
395
+ }
396
+ });
397
+
398
+ // button Dynamic content
399
+ $( ".htwptimport-button-dynamic" ).html( htbtnMarkuplibrary );
400
+ $( ".htwptimport-button-dynamic-page" ).html( htbtnMarkuppage );
401
+ $( ".ui-dialog-title" ).html( htwpUcfirst( template_opt.parentid ) + ' &#8594; ' +template_opt.templpattitle );
402
+
403
+ $this.addClass( 'updating-message' );
404
+ // call dialog
405
+ function OpenPopup(){
406
+ $( "#htwpt-popup-area" ).dialog({
407
+ modal: true,
408
+ minWidth: 500,
409
+ minHeight:300,
410
+ buttons: {
411
+ Close: function() {
412
+ $( this ).dialog( "close" );
413
+ }
414
+ }
415
+ });
416
+ }
417
+
418
+ $.ajax( {
419
+ url: HTTM.ajaxurl,
420
+ type: 'POST',
421
+ data: {
422
+ action: 'htmega_ajax_get_required_plugin',
423
+ freeplugins: template_opt.freePlugins,
424
+ proplugins: template_opt.proPlugins,
425
+ requiredtheme: template_opt.requiredtheme,
426
+ },
427
+ complete: function( data ) {
428
+ $( ".htwptemplata-requiredplugins" ).html( data.responseText );
429
+ OpenPopup();
430
+ $this.removeClass( 'updating-message' );
431
+ }
432
+ });
433
+
434
+
435
+ });
436
+
437
+ // Preview PopUp
438
+ $('body').on( 'click','.htwpt-image-popup img', function(e){
439
+ e.preventDefault();
440
+
441
+ var $this = $(this),
442
+ preview_opt = $this.data('preview');
443
+
444
+ // dialog header
445
+ $( "#htwpt-popup-prev-"+preview_opt.templpateid ).attr( "title", htwpUcfirst(preview_opt.parentid) + ' → ' + preview_opt.templpattitle );
446
+ $( ".ui-dialog-title" ).html( htwpUcfirst( preview_opt.parentid ) + ' &#8594; ' +preview_opt.templpattitle );
447
+
448
+ $( "#htwpt-popup-prev-"+preview_opt.templpateid ).dialog({
449
+ modal: true,
450
+ width: 'auto',
451
+ maxHeight: ( $(window).height()-50 ),
452
+ buttons: {
453
+ Close: function() {
454
+ $( this ).dialog( "close" );
455
+ }
456
+ }
457
+ });
458
+
459
+ });
460
+
461
+ // Import data request
462
+ $('body').on('click', 'a.wptemplataimpbtn', function(e) {
463
+ e.preventDefault();
464
+
465
+ var $this = $(this),
466
+ pagetitle = ( $('#htwptpagetitle').val() ) ? ( $('#htwptpagetitle').val() ) : '',
467
+ databtnattr = $this.data('btnattr');
468
+ $.ajax({
469
+ url: HTTM.ajaxurl,
470
+ data: {
471
+ 'action' : 'htmega_ajax_request',
472
+ 'httemplateid' : databtnattr.templateid,
473
+ 'htparentid' : databtnattr.parentid,
474
+ 'httitle' : databtnattr.templpattitle,
475
+ 'pagetitle' : pagetitle,
476
+ },
477
+ dataType: 'JSON',
478
+ beforeSend: function(){
479
+ $(".htwptspinner").addClass('loading');
480
+ $(".htwptpopupcontent").hide();
481
+ },
482
+ success:function(data) {
483
+ $(".htwptmessage").show();
484
+ var tmediturl = HTTM.adminURL+"post.php?post="+ data.id +"&action=elementor";
485
+ $('.htwpt-edit').html('<a href="'+ tmediturl +'" target="_blank">'+ data.edittxt +'</a>');
486
+ },
487
+ complete:function(data){
488
+ $(".htwptspinner").removeClass('loading');
489
+ $(".htwptmessage").css( "display","block" );
490
+ },
491
+ error: function(errorThrown){
492
+ }
493
+ });
494
+
495
+ });
496
+
497
+
498
+ });
admin/include/admin-setting.php CHANGED
@@ -731,6 +731,27 @@ class HTMega_Admin_Settings {
731
  'default'=>'off',
732
  'class'=>'htmega_table_row pro',
733
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
734
  ),
735
 
736
  'htmega_general_tabs'=>array(
@@ -810,7 +831,20 @@ class HTMega_Admin_Settings {
810
  'class'=>'htmega_table_row',
811
  ),
812
 
813
-
 
 
 
 
 
 
 
 
 
 
 
 
 
814
  ),
815
 
816
  'htmega_themebuilder_element_tabs'=>array(
731
  'default'=>'off',
732
  'class'=>'htmega_table_row pro',
733
  ),
734
+ array(
735
+ 'name' => 'whatsapp_chatp',
736
+ 'label' => __( 'WhatsApp Chat <span>( Pro )</span>', 'htmega-pro' ),
737
+ 'type' => 'checkbox',
738
+ 'default'=>'off',
739
+ 'class'=>'htmega_table_row pro',
740
+ ),
741
+ array(
742
+ 'name' => 'filterable_galleryp',
743
+ 'label' => __( 'Filterable Gallery <span>( Pro )</span>', 'htmega-pro' ),
744
+ 'type' => 'checkbox',
745
+ 'default'=>'off',
746
+ 'class'=>'htmega_table_row pro',
747
+ ),
748
+ array(
749
+ 'name' => 'event_boxp',
750
+ 'label' => __( 'Event Box <span>( Pro )</span>', 'htmega-pro' ),
751
+ 'type' => 'checkbox',
752
+ 'default'=>'off',
753
+ 'class'=>'htmega_table_row pro',
754
+ ),
755
  ),
756
 
757
  'htmega_general_tabs'=>array(
831
  'class'=>'htmega_table_row',
832
  ),
833
 
834
+ array(
835
+ 'name' => 'crossdomaincpp',
836
+ 'label' => __( 'Cross Domain Copy Paste <span> ( Pro )</span>', 'htmega-pro' ),
837
+ 'type' => 'checkbox',
838
+ 'default'=>'off',
839
+ 'class'=>'htmega_table_row pro',
840
+ ),
841
+ array(
842
+ 'name' => 'parallax_modulep',
843
+ 'label' => __( 'Parallax<span> ( Pro )</span>', 'htmega-addons' ),
844
+ 'type' => 'checkbox',
845
+ 'default'=>'off',
846
+ 'class'=>'htmega_table_row pro',
847
+ ),
848
  ),
849
 
850
  'htmega_themebuilder_element_tabs'=>array(
admin/include/class.diagnostic-data.php ADDED
@@ -0,0 +1,494 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Diagnostic data.
4
+ */
5
+
6
+ // If this file is accessed directly, exit.
7
+ if ( ! defined( 'ABSPATH' ) ) {
8
+ exit;
9
+ }
10
+
11
+ /**
12
+ * Class.
13
+ */
14
+ if ( ! class_exists( 'HTMega_Diagnostic_Data' ) ) {
15
+ class HTMega_Diagnostic_Data {
16
+
17
+ /**
18
+ * Project name.
19
+ */
20
+ private $project_name;
21
+
22
+ /**
23
+ * Project type.
24
+ */
25
+ private $project_type;
26
+
27
+ /**
28
+ * Project version.
29
+ */
30
+ private $project_version;
31
+
32
+ /**
33
+ * Pro active.
34
+ */
35
+ private $project_pro_active;
36
+
37
+ /**
38
+ * Pro installed.
39
+ */
40
+ private $project_pro_installed;
41
+
42
+ /**
43
+ * Pro version.
44
+ */
45
+ private $project_pro_version;
46
+
47
+ /**
48
+ * Data center.
49
+ */
50
+ private $data_center;
51
+
52
+ /**
53
+ * Privacy policy.
54
+ */
55
+ private $privacy_policy;
56
+
57
+ /**
58
+ * Instance.
59
+ */
60
+ private static $_instance = null;
61
+
62
+ /**
63
+ * Get instance.
64
+ */
65
+ public static function get_instance() {
66
+ if ( is_null( self::$_instance ) ) {
67
+ self::$_instance = new self();
68
+ }
69
+
70
+ return self::$_instance;
71
+ }
72
+
73
+ /**
74
+ * Constructor.
75
+ */
76
+ private function __construct() {
77
+ $this->includes();
78
+
79
+ $this->project_name = 'HT Mega';
80
+ $this->project_type = 'wordpress-plugin';
81
+ $this->project_version = HTMEGA_VERSION;
82
+ $this->data_center = 'https://connect.pabbly.com/workflow/sendwebhookdata/IjU3NjAwNTY1MDYzZTA0MzM1MjY1NTUzNyI_3D_pc';
83
+ $this->privacy_policy = 'https://wphtmega.com/privacy-policy/';
84
+
85
+ $this->project_pro_active = $this->is_pro_plugin_active();
86
+ $this->project_pro_installed = $this->is_pro_plugin_installed();
87
+ $this->project_pro_version = $this->get_pro_version();
88
+
89
+ add_action( 'admin_notices', function () {
90
+ $this->show_notices();
91
+ }, 0 );
92
+
93
+ add_action( 'wp_ajax_htmega_diagnostic_data', function () {
94
+ $this->process_data();
95
+ } );
96
+ }
97
+
98
+ /**
99
+ * Is capable user.
100
+ */
101
+ private function includes() {
102
+ if ( ! function_exists( 'is_plugin_active' ) || ! function_exists( 'get_plugins' ) || ! function_exists( 'get_plugin_data' ) ) {
103
+ require_once ABSPATH . 'wp-admin/includes/plugin.php';
104
+ }
105
+ }
106
+
107
+ /**
108
+ * Is capable user.
109
+ */
110
+ private function is_capable_user() {
111
+ $result = 'no';
112
+
113
+ if ( current_user_can( 'manage_options' ) ) {
114
+ $result = 'yes';
115
+ }
116
+
117
+ return $result;
118
+ }
119
+
120
+ /**
121
+ * Is show core notice.
122
+ */
123
+ private function is_show_core_notice() {
124
+ $result = get_option( 'htmega_diagnostic_data_notice', 'yes' );
125
+ $result = ( ( 'yes' === $result ) ? 'yes' : 'no' );
126
+
127
+ return $result;
128
+ }
129
+
130
+ /**
131
+ * Is pro active.
132
+ */
133
+ private function is_pro_plugin_active() {
134
+ $plugin = 'htmega-pro/htmega_pro.php';
135
+
136
+ $result = is_plugin_active( $plugin );
137
+ $result = ( ( true === $result ) ? 'yes' : 'no' );
138
+
139
+ return $result;
140
+ }
141
+
142
+ /**
143
+ * Is pro installed.
144
+ */
145
+ private function is_pro_plugin_installed() {
146
+ $plugin = 'htmega-pro/htmega_pro.php';
147
+
148
+ $plugins = get_plugins();
149
+ $result = ( isset( $plugins[ $plugin ] ) ? 'yes' : 'no' );
150
+
151
+ return $result;
152
+ }
153
+
154
+ /**
155
+ * Get pro version.
156
+ */
157
+ private function get_pro_version() {
158
+ $plugin = 'htmega-pro/htmega_pro.php';
159
+
160
+ $plugins = get_plugins();
161
+ $data = ( ( isset( $plugins[ $plugin ] ) && is_array( $plugins[ $plugin ] ) ) ? $plugins[ $plugin ] : array() );
162
+ $version = ( isset( $data['Version'] ) ? sanitize_text_field( $data['Version'] ) : '' );
163
+
164
+ return $version;
165
+ }
166
+
167
+ /**
168
+ * Process data.
169
+ */
170
+ private function process_data() {
171
+ $agreed = ( isset( $_POST['agreed'] ) ? sanitize_key( $_POST['agreed'] ) : 'no' );
172
+ $agreed = ( ( 'yes' === $agreed ) ? 'yes' : 'no' );
173
+
174
+ $notice = 'no';
175
+
176
+ if ( 'yes' === $agreed ) {
177
+ $data = $this->get_data();
178
+
179
+ if ( ! empty( $data ) ) {
180
+ $response = $this->send_request( $data );
181
+
182
+ if ( is_wp_error( $response ) ) {
183
+ $agreed = 'no';
184
+ $notice = 'yes';
185
+ }
186
+ }
187
+ }
188
+
189
+ update_option( 'htmega_diagnostic_data_agreed', $agreed );
190
+ update_option( 'htmega_diagnostic_data_notice', $notice );
191
+
192
+ $response = array(
193
+ 'success' => $agreed,
194
+ 'notice' => $notice,
195
+ );
196
+
197
+ if ( 'yes' === $agreed ) {
198
+ $response['thanks_notice'] = $this->get_thanks_notice();
199
+ }
200
+
201
+ wp_send_json( $response );
202
+ }
203
+
204
+ /**
205
+ * Get data.
206
+ */
207
+ private function get_data() {
208
+ $hash = md5( current_time( 'U', true ) );
209
+
210
+ $project = array(
211
+ 'name' => $this->project_name,
212
+ 'type' => $this->project_type,
213
+ 'version' => $this->project_version,
214
+ 'pro_active' => $this->project_pro_active,
215
+ 'pro_installed' => $this->project_pro_installed,
216
+ 'pro_version' => $this->project_pro_version,
217
+ );
218
+
219
+ $site_title = get_bloginfo( 'name' );
220
+ $site_description = get_bloginfo( 'description' );
221
+ $site_url = wp_parse_url( home_url(), PHP_URL_HOST );
222
+ $admin_email = get_option( 'admin_email' );
223
+
224
+ $admin_first_name = '';
225
+ $admin_last_name = '';
226
+ $admin_display_name = '';
227
+
228
+ $users = get_users( array(
229
+ 'role' => 'administrator',
230
+ 'orderby' => 'ID',
231
+ 'order' => 'ASC',
232
+ 'number' => 1,
233
+ 'paged' => 1,
234
+ ) );
235
+
236
+ $admin_user = ( ( is_array( $users ) && isset( $users[0] ) && is_object( $users[0] ) ) ? $users[0] : null );
237
+
238
+ if ( ! empty( $admin_user ) ) {
239
+ $admin_first_name = ( isset( $admin_user->first_name ) ? $admin_user->first_name : '' );
240
+ $admin_last_name = ( isset( $admin_user->last_name ) ? $admin_user->last_name : '' );
241
+ $admin_display_name = ( isset( $admin_user->display_name ) ? $admin_user->display_name : '' );
242
+ }
243
+
244
+ $data = array(
245
+ 'hash' => $hash,
246
+ 'project' => $project,
247
+ 'site_title' => $site_title,
248
+ 'site_description' => $site_description,
249
+ 'site_address' => $site_url,
250
+ 'site_url' => $site_url,
251
+ 'admin_email' => $admin_email,
252
+ 'admin_first_name' => $admin_first_name,
253
+ 'admin_last_name' => $admin_last_name,
254
+ 'admin_display_name' => $admin_display_name,
255
+ 'server_info' => $this->get_server_info(),
256
+ 'wordpress_info' => $this->get_wordpress_info(),
257
+ 'users_count' => $this->get_users_count(),
258
+ 'plugins_count' => $this->get_plugins_count(),
259
+ 'ip_address' => $this->get_ip_address(),
260
+ );
261
+
262
+ return $data;
263
+ }
264
+
265
+ /**
266
+ * Get server info.
267
+ */
268
+ private function get_server_info() {
269
+ global $wpdb;
270
+
271
+ $software = ( ( isset( $_SERVER['SERVER_SOFTWARE'] ) && ! empty( $_SERVER['SERVER_SOFTWARE'] ) ) ? $_SERVER['SERVER_SOFTWARE'] : '' );
272
+ $php_version = ( function_exists( 'phpversion' ) ? phpversion() : '' );
273
+ $mysql_version = ( method_exists( $wpdb, 'db_version' ) ? $wpdb->db_version() : '' );
274
+ $php_max_upload_size = size_format( wp_max_upload_size() );
275
+ $php_default_timezone = date_default_timezone_get();
276
+ $php_soap = ( class_exists( 'SoapClient' ) ? 'yes' : 'no' );
277
+ $php_fsockopen = ( function_exists( 'fsockopen' ) ? 'yes' : 'no' );
278
+ $php_curl = ( function_exists( 'curl_init' ) ? 'yes' : 'no' );
279
+
280
+ $server_info = array(
281
+ 'software' => $software,
282
+ 'php_version' => $php_version,
283
+ 'mysql_version' => $mysql_version,
284
+ 'php_max_upload_size' => $php_max_upload_size,
285
+ 'php_default_timezone' => $php_default_timezone,
286
+ 'php_soap' => $php_soap,
287
+ 'php_fsockopen' => $php_fsockopen,
288
+ 'php_curl' => $php_curl,
289
+ );
290
+
291
+ return $server_info;
292
+ }
293
+
294
+ /**
295
+ * Get wordpress info.
296
+ */
297
+ private function get_wordpress_info() {
298
+ $wordpress_info = array();
299
+
300
+ $memory_limit = ( defined( 'WP_MEMORY_LIMIT' ) ? WP_MEMORY_LIMIT : '' );
301
+ $debug_mode = ( ( defined('WP_DEBUG') && WP_DEBUG ) ? 'yes' : 'no' );
302
+ $locale = get_locale();
303
+ $version = get_bloginfo( 'version' );
304
+ $multisite = ( is_multisite() ? 'yes' : 'no' );
305
+ $theme_slug = get_stylesheet();
306
+
307
+ $wordpress_info = array(
308
+ 'memory_limit' => $memory_limit,
309
+ 'debug_mode' => $debug_mode,
310
+ 'locale' => $locale,
311
+ 'version' => $version,
312
+ 'multisite' => $multisite,
313
+ 'theme_slug' => $theme_slug,
314
+ );
315
+
316
+ $theme = wp_get_theme( $wordpress_info['theme_slug'] );
317
+
318
+ if ( is_object( $theme ) && ! empty( $theme ) && method_exists( $theme, 'get' ) ) {
319
+ $theme_name = $theme->get( 'Name' );
320
+ $theme_version = $theme->get( 'Version' );
321
+ $theme_uri = $theme->get( 'ThemeURI' );
322
+ $theme_author = $theme->get( 'Author' );
323
+
324
+ $wordpress_info = array_merge( $wordpress_info, array(
325
+ 'theme_name' => $theme_name,
326
+ 'theme_version' => $theme_version,
327
+ 'theme_uri' => $theme_uri,
328
+ 'theme_author' => $theme_author,
329
+ ) );
330
+ }
331
+
332
+ return $wordpress_info;
333
+ }
334
+
335
+ /**
336
+ * Get users count.
337
+ */
338
+ private function get_users_count() {
339
+ $users_count = array();
340
+
341
+ $users_count_data = count_users();
342
+
343
+ $total_users = ( isset( $users_count_data['total_users'] ) ? $users_count_data['total_users'] : 0 );
344
+ $avail_roles = ( isset( $users_count_data['avail_roles'] ) ? $users_count_data['avail_roles'] : array() );
345
+
346
+ $users_count['total'] = $total_users;
347
+
348
+ if ( is_array( $avail_roles ) && ! empty( $avail_roles ) ) {
349
+ foreach ( $avail_roles as $role => $count ) {
350
+ $users_count[ $role ] = $count;
351
+ }
352
+ }
353
+
354
+ return $users_count;
355
+ }
356
+
357
+ /**
358
+ * Get plugins count.
359
+ */
360
+ private function get_plugins_count() {
361
+ $total_plugins_count = 0;
362
+ $active_plugins_count = 0;
363
+ $inactive_plugins_count = 0;
364
+
365
+ $plugins = get_plugins();
366
+ $plugins = ( is_array( $plugins ) ? $plugins : array() );
367
+
368
+ $active_plugins = get_option( 'active_plugins', array() );
369
+ $active_plugins = ( is_array( $active_plugins ) ? $active_plugins : array() );
370
+
371
+ if ( ! empty( $plugins ) ) {
372
+ foreach ( $plugins as $key => $data ) {
373
+ if ( in_array( $key, $active_plugins, true ) ) {
374
+ $active_plugins_count++;
375
+ } else {
376
+ $inactive_plugins_count++;
377
+ }
378
+
379
+ $total_plugins_count++;
380
+ }
381
+ }
382
+
383
+ $plugins_count = array(
384
+ 'total' => $total_plugins_count,
385
+ 'active' => $active_plugins_count,
386
+ 'inactive' => $inactive_plugins_count,
387
+ );
388
+
389
+ return $plugins_count;
390
+ }
391
+
392
+ /**
393
+ * Get IP Address
394
+ */
395
+ private function get_ip_address() {
396
+ $response = wp_remote_get( 'https://icanhazip.com/' );
397
+
398
+ if ( is_wp_error( $response ) ) {
399
+ return '';
400
+ }
401
+
402
+ $ip_address = wp_remote_retrieve_body( $response );
403
+ $ip_address = trim( $ip_address );
404
+
405
+ if ( ! filter_var( $ip_address, FILTER_VALIDATE_IP ) ) {
406
+ return '';
407
+ }
408
+
409
+ return $ip_address;
410
+ }
411
+
412
+ /**
413
+ * Send request.
414
+ */
415
+ private function send_request( $data = array() ) {
416
+ if ( ! is_array( $data ) || empty( $data ) ) {
417
+ return;
418
+ }
419
+
420
+ $site_url = wp_parse_url( home_url(), PHP_URL_HOST );
421
+
422
+ $headers = array(
423
+ 'user-agent' => $this->project_name . '/' . md5( $site_url ) . ';',
424
+ 'Accept' => 'application/json',
425
+ );
426
+
427
+ $response = wp_remote_post( $this->data_center, array(
428
+ 'method' => 'POST',
429
+ 'timeout' => 30,
430
+ 'redirection' => 5,
431
+ 'httpversion' => '1.0',
432
+ 'blocking' => false,
433
+ 'headers' => $headers,
434
+ 'body' => $data,
435
+ 'cookies' => array(),
436
+ ) );
437
+
438
+ return $response;
439
+ }
440
+
441
+ /**
442
+ * Show notices.
443
+ */
444
+ private function show_notices() {
445
+ if ( 'no' === $this->is_capable_user() ) {
446
+ return;
447
+ }
448
+
449
+ if ( 'yes' === $this->is_show_core_notice() ) {
450
+ $this->show_core_notice();
451
+ }
452
+ }
453
+
454
+ /**
455
+ * Show core notice.
456
+ */
457
+ private function show_core_notice() {
458
+ $message_l1 = sprintf( esc_html__( 'If you want to help us improve the %4$s%1$s%5$s plugin even more, please allow us to collect non-sensitive diagnostic data and usages information. Over %2$shere%3$s, you can see what kind of data we collect.', 'htmega-addons' ), esc_html( $this->project_name ), '<a href="#" class="htmega-diagnostic-data-list-toogle">', '</a>', '<strong>', '</strong>' );
459
+ $message_l2 = sprintf( esc_html__( 'Server information (Web server, PHP version, MySQL version), WordPress information, site name, site URL, number of plugins, number of users, your name, and email address. You can rest assured that no sensitive data will be collected or tracked. %1$sLearn more%2$s.', 'htmega-addons' ), '<a target="_blank" href="' . esc_url( $this->privacy_policy ) . '">', '</a>' );
460
+
461
+ $button_text_1 = esc_html__( 'Yes, I Agree', 'htmega-addons' );
462
+ $button_link_1 = add_query_arg( array( 'htmega-diagnostic-data-agreed' => 1 ) );
463
+
464
+ $button_text_2 = esc_html__( 'No Thanks', 'htmega-addons' );
465
+ $button_link_2 = add_query_arg( array( 'htmega-diagnostic-data-agreed' => 0 ) );
466
+ ?>
467
+ <div class="htmega-diagnostic-data-style"><style>.htmega-diagnostic-data-notice,.woocommerce-embed-page .htmega-diagnostic-data-notice{padding-top:.75em;padding-bottom:.75em;}.htmega-diagnostic-data-notice .htmega-diagnostic-data-buttons,.htmega-diagnostic-data-notice .htmega-diagnostic-data-list,.htmega-diagnostic-data-notice .htmega-diagnostic-data-message{padding:.25em 2px;margin:0;}.htmega-diagnostic-data-notice .htmega-diagnostic-data-list{display:none;color:#646970;}.htmega-diagnostic-data-notice .htmega-diagnostic-data-buttons{padding-top:.75em;}.htmega-diagnostic-data-notice .htmega-diagnostic-data-buttons .button{margin-right:5px;}.htmega-diagnostic-data-loading{position:relative;}.htmega-diagnostic-data-loading::before{position:absolute;content:"";width:100%;height:100%;top:0;left:0;background-color:rgba(255,255,255,.5);z-index:999;}</style></div>
468
+ <div class="htmega-diagnostic-data-notice notice notice-success">
469
+ <p class="htmega-diagnostic-data-message"><?php echo wp_kses_post( $message_l1 ); ?></p>
470
+ <p class="htmega-diagnostic-data-list"><?php echo wp_kses_post( $message_l2 ); ?></p>
471
+ <p class="htmega-diagnostic-data-buttons">
472
+ <a href="<?php echo esc_url( $button_link_1 ); ?>" class="htmega-diagnostic-data-button htmega-diagnostic-data-agree button button-primary"><?php echo esc_html( $button_text_1 ); ?></a>
473
+ <a href="<?php echo esc_url( $button_link_2 ); ?>" class="htmega-diagnostic-data-button htmega-diagnostic-data-disagree button button-secondary"><?php echo esc_html( $button_text_2 ); ?></a>
474
+ </p>
475
+ </div>
476
+ <div class="htmega-diagnostic-data-script"><script type="text/javascript">;(function($){"use strict";function htmegaDissmissThanksNotice(noticeWrap){$('.htmega-diagnostic-data-thanks .notice-dismiss').on('click',function(e){e.preventDefault();let thisButton=$(this),noticeWrap=thisButton.closest('.htmega-diagnostic-data-thanks');noticeWrap.fadeTo(100,0,function(){noticeWrap.slideUp(100,function(){noticeWrap.remove()})})})};$(".htmega-diagnostic-data-list-toogle").on("click",function(e){e.preventDefault();$(this).parents(".htmega-diagnostic-data-notice").find(".htmega-diagnostic-data-list").slideToggle("fast")});$(".htmega-diagnostic-data-button").on("click",function(e){e.preventDefault();let thisButton=$(this),noticeWrap=thisButton.closest(".htmega-diagnostic-data-notice"),agreed=thisButton.hasClass("htmega-diagnostic-data-agree")?"yes":"no",styleWrap=$(".htmega-diagnostic-data-style"),scriptWrap=$(".htmega-diagnostic-data-script");$.ajax({type:"POST",url:ajaxurl,data:{action:"htmega_diagnostic_data",agreed:agreed},beforeSend:function(){noticeWrap.addClass("htmega-diagnostic-data-loading")},success:function(response){response="object"===typeof response?response:{};let success=response.hasOwnProperty("success")?response.success:"no",notice=response.hasOwnProperty("notice")?response.notice:"no",thanks_notice=response.hasOwnProperty("thanks_notice")?response.thanks_notice:"";if("yes"===success){noticeWrap.replaceWith(thanks_notice);styleWrap.remove();scriptWrap.remove()}else if("no"===notice){noticeWrap.remove();styleWrap.remove();scriptWrap.remove()};noticeWrap.removeClass("htmega-diagnostic-data-loading");htmegaDissmissThanksNotice()},error:function(){noticeWrap.removeClass("htmega-diagnostic-data-loading")},})})})(jQuery);</script></div>
477
+ <?php
478
+ }
479
+
480
+ /**
481
+ * Get thanks notice.
482
+ */
483
+ private function get_thanks_notice() {
484
+ $message = sprintf( esc_html__( 'Thank you very much for supporting %2$s%1$s%3$s.', 'htmega-addons' ), $this->project_name, '<strong>', '</strong>' );
485
+ $notice = sprintf( '<div class="htmega-diagnostic-data-thanks notice notice-success is-dismissible"><p>%1$s</p><button type="button" class="notice-dismiss"><span class="screen-reader-text"></span></button></div>', wp_kses_post( $message ) );
486
+
487
+ return $notice;
488
+ }
489
+
490
+ }
491
+
492
+ // Returns the instance.
493
+ HTMega_Diagnostic_Data::get_instance();
494
+ }
assets/css/htmega-widgets.css CHANGED
@@ -15794,7 +15794,9 @@ ul.htmega-testimonial-rating * {
15794
  .htmega-justify-single-image .thumb a img{
15795
  width: 100%;
15796
  }
15797
-
 
 
15798
 
15799
  /*
15800
  * Business Hours
15794
  .htmega-justify-single-image .thumb a img{
15795
  width: 100%;
15796
  }
15797
+ .htmega-justify-single-image .thumb{
15798
+ line-height: 0;
15799
+ }
15800
 
15801
  /*
15802
  * Business Hours
htmega_addons_elementor.php CHANGED
@@ -5,17 +5,17 @@
5
  * Plugin URI: https://wphtmega.com/
6
  * Author: HasThemes
7
  * Author URI: https://hasthemes.com/
8
- * Version: 1.9.3
9
  * License: GPL2
10
  * License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
  * Text Domain: htmega-addons
12
  * Domain Path: /languages
13
- * Elementor tested up to: 3.7.1
14
- * Elementor Pro tested up to: 3.7.3
15
  */
16
 
17
  if( ! defined( 'ABSPATH' ) ) exit(); // Exit if accessed directly
18
- define( 'HTMEGA_VERSION', '1.9.3' );
19
  define( 'HTMEGA_ADDONS_PL_ROOT', __FILE__ );
20
  define( 'HTMEGA_ADDONS_PL_URL', plugins_url( '/', HTMEGA_ADDONS_PL_ROOT ) );
21
  define( 'HTMEGA_ADDONS_PL_PATH', plugin_dir_path( HTMEGA_ADDONS_PL_ROOT ) );
5
  * Plugin URI: https://wphtmega.com/
6
  * Author: HasThemes
7
  * Author URI: https://hasthemes.com/
8
+ * Version: 1.9.4
9
  * License: GPL2
10
  * License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
  * Text Domain: htmega-addons
12
  * Domain Path: /languages
13
+ * Elementor tested up to: 3.7.3
14
+ * Elementor Pro tested up to: 3.7.4
15
  */
16
 
17
  if( ! defined( 'ABSPATH' ) ) exit(); // Exit if accessed directly
18
+ define( 'HTMEGA_VERSION', '1.9.4' );
19
  define( 'HTMEGA_ADDONS_PL_ROOT', __FILE__ );
20
  define( 'HTMEGA_ADDONS_PL_URL', plugins_url( '/', HTMEGA_ADDONS_PL_ROOT ) );
21
  define( 'HTMEGA_ADDONS_PL_PATH', plugin_dir_path( HTMEGA_ADDONS_PL_ROOT ) );
includes/class.htmega.php CHANGED
@@ -156,14 +156,14 @@ final class HTMega_Addons_Elementor {
156
 
157
  $activation_url = wp_nonce_url( 'plugins.php?action=activate&amp;plugin=' . $elementor . '&amp;plugin_status=all&amp;paged=1&amp;s', 'activate-plugin_' . $elementor );
158
 
159
- $message = '<p>' . __( 'HTMEGA Addons not working because you need to activate the Elementor plugin.', 'htmega-addons' ) . '</p>';
160
  $message .= '<p>' . sprintf( '<a href="%s" class="button-primary">%s</a>', $activation_url, __( 'Elementor Activate Now', 'htmega-addons' ) ) . '</p>';
161
  } else {
162
  if ( ! current_user_can( 'install_plugins' ) ) { return; }
163
 
164
  $install_url = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=elementor' ), 'install-plugin_elementor' );
165
 
166
- $message = '<p>' . __( 'HTMEGA Addons not working because you need to install the Elementor plugin', 'htmega-addons' ) . '</p>';
167
 
168
  $message .= '<p>' . sprintf( '<a href="%s" class="button-primary">%s</a>', $install_url, __( 'Elementor Install Now', 'htmega-addons' ) ) . '</p>';
169
  }
156
 
157
  $activation_url = wp_nonce_url( 'plugins.php?action=activate&amp;plugin=' . $elementor . '&amp;plugin_status=all&amp;paged=1&amp;s', 'activate-plugin_' . $elementor );
158
 
159
+ $message = '<p>' . __( '<strong>HTMEGA Addons for Elementor</strong> requires "<strong>Elementor</strong>" plugin to be active. Please activate Elementor to continue.', 'htmega-addons' ) . '</p>';
160
  $message .= '<p>' . sprintf( '<a href="%s" class="button-primary">%s</a>', $activation_url, __( 'Elementor Activate Now', 'htmega-addons' ) ) . '</p>';
161
  } else {
162
  if ( ! current_user_can( 'install_plugins' ) ) { return; }
163
 
164
  $install_url = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=elementor' ), 'install-plugin_elementor' );
165
 
166
+ $message = '<p>' . __( '<strong>HTMEGA Addons for Elementor</strong> requires "<strong>Elementor</strong>" plugin to be active. Please install the Elementor plugin to continue.', 'htmega-addons' ) . '</p>';
167
 
168
  $message .= '<p>' . sprintf( '<a href="%s" class="button-primary">%s</a>', $install_url, __( 'Elementor Install Now', 'htmega-addons' ) ) . '</p>';
169
  }
includes/widgets/htmega_data_table.php CHANGED
@@ -76,7 +76,6 @@ class HTMega_Elementor_Widget_Data_Table extends Widget_Base {
76
  ]
77
  ]
78
  );
79
-
80
  $this->add_control(
81
  'show_datatable_paging',
82
  [
@@ -88,7 +87,76 @@ class HTMega_Elementor_Widget_Data_Table extends Widget_Base {
88
  'default' => 'no',
89
  ]
90
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
91
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92
  $this->add_control(
93
  'show_datatable_searching',
94
  [
@@ -98,6 +166,7 @@ class HTMega_Elementor_Widget_Data_Table extends Widget_Base {
98
  'label_off' => __( 'Hide', 'htmega-addons' ),
99
  'return_value' => 'yes',
100
  'default' => 'no',
 
101
  ]
102
  );
103
 
@@ -125,6 +194,8 @@ class HTMega_Elementor_Widget_Data_Table extends Widget_Base {
125
  ]
126
  );
127
 
 
 
128
  $this->end_controls_section();
129
 
130
  // Table Header
@@ -1161,7 +1232,24 @@ class HTMega_Elementor_Widget_Data_Table extends Widget_Base {
1161
  </tbody>
1162
  </table>
1163
  </div>
1164
- <?php if( $settings['show_datatable_sorting'] == 'yes' ): ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1165
  <script>
1166
  jQuery(document).ready(function($) {
1167
  'use strict';
@@ -1169,7 +1257,9 @@ class HTMega_Elementor_Widget_Data_Table extends Widget_Base {
1169
  paging: <?php echo esc_js(( $settings['show_datatable_paging'] == 'yes' ) ? 'true' : 'false'); ?>,
1170
  searching: <?php echo esc_js(( $settings['show_datatable_searching'] == 'yes' ) ? 'true' : 'false'); ?>,
1171
  ordering: <?php echo esc_js(( $settings['show_datatable_ordering'] == 'yes' ) ? 'true' : 'false'); ?>,
1172
- "info": <?php echo esc_js(( $settings['show_datatable_info'] == 'yes' ) ? 'true' : 'false'); ?>,
 
 
1173
  });
1174
  });
1175
  </script>
76
  ]
77
  ]
78
  );
 
79
  $this->add_control(
80
  'show_datatable_paging',
81
  [
87
  'default' => 'no',
88
  ]
89
  );
90
+ $this->add_control(
91
+ 'default_row_number',
92
+ [
93
+ 'label' => __( 'Default option for number of Rows', 'htmega-addons' ),
94
+ 'type' => Controls_Manager::NUMBER,
95
+ 'min' => 1,
96
+ 'step' => 1,
97
+ 'default' => 10,
98
+ 'condition' =>[
99
+ 'show_datatable_paging'=>'yes',
100
+ ]
101
+ ]
102
+ );
103
+ $this->add_control(
104
+ 'custom_display_row',
105
+ [
106
+ 'label' => __( 'Custom options for number of Rows?', 'htmega-addons' ),
107
+ 'type' => Controls_Manager::SWITCHER,
108
+ 'label_on' => __( 'Show', 'htmega-addons' ),
109
+ 'label_off' => __( 'Hide', 'htmega-addons' ),
110
+ 'return_value' => 'yes',
111
+ 'default' => 'no',
112
+ 'condition' =>[
113
+ 'show_datatable_paging'=>'yes'
114
+ ]
115
+ ]
116
+ );
117
+ $this->add_control(
118
+ 'display_options',
119
+ [
120
+ 'label' => __( 'Options for number of Rows', 'htmega-addons' ),
121
+ 'type' => Controls_Manager::TEXTAREA,
122
+ 'default' => __( '10,25,50,100', 'htmega-addons' ),
123
+ 'description'=> esc_html__( 'Enter the number separate by comma(10,25,50,100)','htmega-addons'),
124
+ 'condition'=> [
125
+ 'custom_display_row'=>'yes',
126
+ 'show_datatable_paging'=>'yes'
127
+ ]
128
+ ]
129
+ );
130
 
131
+ $this->add_control(
132
+ 'show_all_button',
133
+ [
134
+ 'label' => __( 'Add all option', 'htmega-addons' ),
135
+ 'type' => Controls_Manager::SWITCHER,
136
+ 'label_on' => __( 'Show', 'htmega-addons' ),
137
+ 'label_off' => __( 'Hide', 'htmega-addons' ),
138
+ 'return_value' => 'yes',
139
+ 'default' => 'no',
140
+ 'condition' =>[
141
+ 'show_datatable_paging'=>'yes',
142
+ 'custom_display_row'=>'yes'
143
+ ]
144
+ ]
145
+ );
146
+ $this->add_control(
147
+ 'show_all_text',
148
+ [
149
+ 'type' => Controls_Manager::TEXT,
150
+ 'default' => __( 'All', 'htmega-addons' ),
151
+ 'label_block'=>true,
152
+ 'condition'=>[
153
+ 'show_all_button'=>'yes',
154
+ 'show_datatable_paging'=>'yes',
155
+ 'custom_display_row'=>'yes'
156
+ ],
157
+
158
+ ]
159
+ );
160
  $this->add_control(
161
  'show_datatable_searching',
162
  [
166
  'label_off' => __( 'Hide', 'htmega-addons' ),
167
  'return_value' => 'yes',
168
  'default' => 'no',
169
+ 'separator' =>'before'
170
  ]
171
  );
172
 
194
  ]
195
  );
196
 
197
+
198
+
199
  $this->end_controls_section();
200
 
201
  // Table Header
1232
  </tbody>
1233
  </table>
1234
  </div>
1235
+ <?php if( $settings['show_datatable_sorting'] == 'yes' ):
1236
+
1237
+ $display_options = '10, 25, 50, 100';
1238
+ $show_all_num ='';
1239
+ $show_all_text ='';
1240
+ $default_row_number = 10;
1241
+ if( 'yes' == $settings['custom_display_row'] && !empty( $settings['display_options'] ) ){
1242
+ $display_options = $settings['display_options'];
1243
+ }
1244
+ if( 'yes'== $settings['show_all_button'] && !empty( $settings['show_all_text'] ) ){
1245
+ $show_all_text = " ,'".esc_html($settings['show_all_text'])."'";
1246
+ $show_all_num =', -1';
1247
+ }
1248
+ if(!empty($settings['default_row_number'])){
1249
+ $default_row_number = $settings['default_row_number'];
1250
+ }
1251
+ ?>
1252
+
1253
  <script>
1254
  jQuery(document).ready(function($) {
1255
  'use strict';
1257
  paging: <?php echo esc_js(( $settings['show_datatable_paging'] == 'yes' ) ? 'true' : 'false'); ?>,
1258
  searching: <?php echo esc_js(( $settings['show_datatable_searching'] == 'yes' ) ? 'true' : 'false'); ?>,
1259
  ordering: <?php echo esc_js(( $settings['show_datatable_ordering'] == 'yes' ) ? 'true' : 'false'); ?>,
1260
+ info: <?php echo esc_js(( $settings['show_datatable_info'] == 'yes' ) ? 'true' : 'false'); ?>,
1261
+ pageLength: <?php echo esc_js($default_row_number ); ?>,
1262
+ lengthMenu: [ [<?php echo esc_js( $display_options ).$show_all_num;?>], [<?php echo esc_js( $display_options ).$show_all_text;?>] ]
1263
  });
1264
  });
1265
  </script>
includes/widgets/htmega_double_button.php CHANGED
@@ -374,6 +374,22 @@ class HTMega_Elementor_Widget_Double_Button extends Widget_Base {
374
  ],
375
  ]
376
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
377
 
378
  $this->start_controls_tabs('doule_button_style_tabs');
379
 
374
  ],
375
  ]
376
  );
377
+ $this->add_responsive_control(
378
+ 'double_button_height',
379
+ [
380
+ 'label' => __( 'Button Height', 'htmega-addons' ),
381
+ 'type' => Controls_Manager::SLIDER,
382
+ 'range' => [
383
+ 'px' => [
384
+ 'max' => 300,
385
+ 'min' => 0,
386
+ ],
387
+ ],
388
+ 'selectors' => [
389
+ '{{WRAPPER}} .htmega-doublebutton a' => 'height: {{SIZE}}px;',
390
+ ],
391
+ ]
392
+ );
393
 
394
  $this->start_controls_tabs('doule_button_style_tabs');
395
 
includes/widgets/htmega_teammember.php CHANGED
@@ -580,7 +580,7 @@ class HTMega_Elementor_Widget_TeamMember extends Widget_Base {
580
  $this->add_responsive_control(
581
  'team_content_margin_box',
582
  [
583
- 'label' => __( 'Margin', 'htmega-addons' ),
584
  'type' => Controls_Manager::DIMENSIONS,
585
  'size_units' => [ 'px', '%', 'em' ],
586
  'selectors' => [
@@ -588,7 +588,7 @@ class HTMega_Elementor_Widget_TeamMember extends Widget_Base {
588
  '{{WRAPPER}} .htmega-team-style-2 .htmega-team-hover-action' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
589
  ],
590
  'condition' =>[
591
- 'htmega_team_style!' => array( '4','6','3','5' ),
592
  ],
593
  ]
594
  );
@@ -602,7 +602,7 @@ class HTMega_Elementor_Widget_TeamMember extends Widget_Base {
602
  '{{WRAPPER}} .htmega-team .htmega-team-content,{{WRAPPER}} .htmega-team-style-2 .htmega-team-hover-action .htmega-hover-action,{{WRAPPER}} .htmega-team-style-5 .htmega-team-hover-action .htmega-hover-action,{{WRAPPER}} .htmega-team-style-4 .htmega-team-hover-action .htmega-hover-action' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
603
  ],
604
  'condition' =>[
605
- 'htmega_team_style!' => array('6','3' ),
606
  ],
607
  ]
608
  );
580
  $this->add_responsive_control(
581
  'team_content_margin_box',
582
  [
583
+ 'label' => __( 'Content Box Margin', 'htmega-addons' ),
584
  'type' => Controls_Manager::DIMENSIONS,
585
  'size_units' => [ 'px', '%', 'em' ],
586
  'selectors' => [
588
  '{{WRAPPER}} .htmega-team-style-2 .htmega-team-hover-action' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
589
  ],
590
  'condition' =>[
591
+ 'htmega_team_style!' => array( '4','3','5', ),
592
  ],
593
  ]
594
  );
602
  '{{WRAPPER}} .htmega-team .htmega-team-content,{{WRAPPER}} .htmega-team-style-2 .htmega-team-hover-action .htmega-hover-action,{{WRAPPER}} .htmega-team-style-5 .htmega-team-hover-action .htmega-hover-action,{{WRAPPER}} .htmega-team-style-4 .htmega-team-hover-action .htmega-hover-action' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
603
  ],
604
  'condition' =>[
605
+ 'htmega_team_style!' => array('3' ),
606
  ],
607
  ]
608
  );
languages/htmega-addons.pot CHANGED
@@ -1,12872 +1,13043 @@
1
- #, fuzzy
2
- msgid ""
3
- msgstr ""
4
- "Project-Id-Version: HT Mega - Absolute Addons for Elementor Page Builder\n"
5
- "Report-Msgid-Bugs-To: \n"
6
- "POT-Creation-Date: 2022-06-14 05:47+0000\n"
7
- "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
8
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
9
- "Language-Team: \n"
10
- "Language: \n"
11
- "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
12
- "MIME-Version: 1.0\n"
13
- "Content-Type: text/plain; charset=UTF-8\n"
14
- "Content-Transfer-Encoding: 8bit\n"
15
- "X-Generator: Loco https://localise.biz/\n"
16
- "X-Loco-Version: 2.6.2; wp-6.0\n"
17
- "X-Domain: htmega-addons"
18
-
19
- #: includes/widgets/htmega_twitter_feed.php:1680
20
- msgid " days ago"
21
- msgstr ""
22
-
23
- #: includes/widgets/htmega_verticle_time_line.php:600
24
- msgid " Dot Border Hover Gradient Color"
25
- msgstr ""
26
-
27
- #: includes/widgets/htmega_twitter_feed.php:1674
28
- msgid " hours ago"
29
- msgstr ""
30
-
31
- #: includes/widgets/htmega_twitter_feed.php:1668
32
- msgid " min ago"
33
- msgstr ""
34
-
35
- #: includes/widgets/htmega_twitter_feed.php:1684
36
- msgid " months ago"
37
- msgstr ""
38
-
39
- #: includes/widgets/htmega_twitter_feed.php:1687
40
- msgid " years ago"
41
- msgstr ""
42
-
43
- #: includes/class.htmega.php:158 includes/class.htmega.php:173
44
- #, php-format
45
- msgid "\"%1$s\" requires \"%2$s\" version %3$s or greater."
46
- msgstr ""
47
-
48
- #: includes/widgets/htmega_brand.php:93 includes/widgets/htmega_brand.php:106
49
- #: includes/widgets/htmega_image_grid.php:172
50
- #: includes/widgets/htmega_image_masonry.php:161
51
- msgid "#"
52
- msgstr ""
53
-
54
- #: includes/widgets/htmega_counter.php:175
55
- msgid "$"
56
- msgstr ""
57
-
58
- #: includes/widgets/htmega_pricing_list_view.php:165
59
- msgid "$42"
60
- msgstr ""
61
-
62
- #: includes/widgets/htmega_pricing_list_view.php:159
63
- msgid "$46"
64
- msgstr ""
65
-
66
- #: includes/widgets/htmega_pricing_list_view.php:153
67
- msgid "$48"
68
- msgstr ""
69
-
70
- #: includes/widgets/htmega_pricing_list_view.php:147
71
- msgid "$52"
72
- msgstr ""
73
-
74
- #: includes/widgets/htmega_pricing_list_view.php:99
75
- msgid "$56"
76
- msgstr ""
77
-
78
- #. %s: Number of installations.
79
- #: includes/recommended-plugins/class.recommended-plugins.php:297
80
- #, php-format
81
- msgid "%s Active Installations"
82
- msgstr ""
83
-
84
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:238
85
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:575
86
- #, php-format
87
- msgid "%s Comments"
88
- msgstr ""
89
-
90
- #: extensions/ht-menu/menu/templates.php:107
91
- #: extensions/ht-menu/menu/templates.php:115
92
- #: extensions/ht-menu/menu/templates.php:129
93
- #: extensions/ht-menu/menu/templates.php:144
94
- #: extensions/ht-menu/menu/templates.php:180
95
- msgid "( Pro )"
96
- msgstr ""
97
-
98
- #: includes/widgets/htmega_tablepress.php:36
99
- msgid "(no name)"
100
- msgstr ""
101
-
102
- #: extensions/ht-menu/menu/templates.php:136
103
- msgid "(Pro)"
104
- msgstr ""
105
-
106
- #: includes/widgets/htmega_counter.php:184
107
- msgid "+"
108
- msgstr ""
109
-
110
- #: includes/widgets/htmega_booked_calender.php:67
111
- msgid "01"
112
- msgstr ""
113
-
114
- #: includes/widgets/htmega_booked_calender.php:68
115
- msgid "02"
116
- msgstr ""
117
-
118
- #: includes/widgets/htmega_booked_calender.php:69
119
- msgid "03"
120
- msgstr ""
121
-
122
- #: includes/widgets/htmega_booked_calender.php:70
123
- msgid "04"
124
- msgstr ""
125
-
126
- #: includes/widgets/htmega_booked_calender.php:71
127
- msgid "05"
128
- msgstr ""
129
-
130
- #: includes/widgets/htmega_booked_calender.php:72
131
- msgid "06"
132
- msgstr ""
133
-
134
- #: includes/widgets/htmega_booked_calender.php:73
135
- msgid "07"
136
- msgstr ""
137
-
138
- #: includes/widgets/htmega_booked_calender.php:74
139
- msgid "08"
140
- msgstr ""
141
-
142
- #: includes/widgets/htmega_booked_calender.php:75
143
- msgid "09"
144
- msgstr ""
145
-
146
- #: includes/widgets/htmega_data_table.php:456
147
- #: includes/widgets/htmega_data_table.php:457
148
- #: includes/widgets/htmega_data_table.php:463
149
- #: includes/widgets/htmega_data_table.php:469
150
- #: includes/widgets/htmega_data_table.php:476
151
- #: includes/widgets/htmega_instagram.php:162
152
- #: includes/widgets/htmega_pricing_list_view.php:1093
153
- #: includes/widgets/htmega_pricing_list_view.php:1094
154
- #: includes/widgets/htmega_pricing_list_view.php:1100
155
- #: includes/widgets/htmega_pricing_list_view.php:1106
156
- #: includes/widgets/htmega_pricing_list_view.php:1113
157
- #: extensions/ht-builder/widgets/bl_post_archive.php:60
158
- msgid "1"
159
- msgstr ""
160
-
161
- #: includes/widgets/htmega_twitter_feed.php:1671
162
- msgid "1 hour ago"
163
- msgstr ""
164
-
165
- #: includes/widgets/htmega_twitter_feed.php:1665
166
- msgid "1 min ago"
167
- msgstr ""
168
-
169
- #: extensions/wc-sales-notification/admin/setting.php:132
170
- msgid "1 minute"
171
- msgstr ""
172
-
173
- #: includes/widgets/htmega_twitter_feed.php:1684
174
- msgid "1 month ago"
175
- msgstr ""
176
-
177
- #: extensions/wc-sales-notification/admin/setting.php:157
178
- msgid "1 week"
179
- msgstr ""
180
-
181
- #: includes/widgets/htmega_twitter_feed.php:1687
182
- msgid "1 year ago"
183
- msgstr ""
184
-
185
- #: includes/widgets/htmega_countdown.php:425
186
- msgid "1. Background Days"
187
- msgstr ""
188
-
189
- #: extensions/wc-sales-notification/admin/setting.php:133
190
- msgid "1.5 minutes"
191
- msgstr ""
192
-
193
- #: includes/widgets/htmega_booked_calender.php:76
194
- msgid "10"
195
- msgstr ""
196
-
197
- #: extensions/wc-sales-notification/admin/setting.php:127
198
- msgid "10 seconds"
199
- msgstr ""
200
-
201
- #: includes/widgets/htmega_booked_calender.php:77
202
- msgid "11"
203
- msgstr ""
204
-
205
- #: includes/widgets/htmega_booked_calender.php:78
206
- msgid "12"
207
- msgstr ""
208
-
209
- #: includes/widgets/htmega_booked_calender.php:79
210
- msgid "13"
211
- msgstr ""
212
-
213
- #: includes/widgets/htmega_booked_calender.php:80
214
- msgid "14"
215
- msgstr ""
216
-
217
- #: includes/widgets/htmega_booked_calender.php:81
218
- msgid "15"
219
- msgstr ""
220
-
221
- #: admin/include/admin-setting.php:1244
222
- msgid "15 Categories / Template set"
223
- msgstr ""
224
-
225
- #: admin/include/admin-setting.php:1245
226
- msgid "15 Templates"
227
- msgstr ""
228
-
229
- #: includes/widgets/htmega_booked_calender.php:82
230
- msgid "16"
231
- msgstr ""
232
-
233
- #: includes/widgets/htmega_booked_calender.php:83
234
- msgid "17"
235
- msgstr ""
236
-
237
- #: includes/widgets/htmega_booked_calender.php:84
238
- msgid "18"
239
- msgstr ""
240
-
241
- #: includes/widgets/htmega_booked_calender.php:85
242
- msgid "19"
243
- msgstr ""
244
-
245
- #: includes/widgets/htmega_instagram.php:163
246
- #: extensions/ht-builder/widgets/bl_post_archive.php:61
247
- msgid "2"
248
- msgstr ""
249
-
250
- #: extensions/wc-sales-notification/admin/setting.php:134
251
- msgid "2 minutes"
252
- msgstr ""
253
-
254
- #: extensions/wc-sales-notification/admin/setting.php:119
255
- msgid "2 seconds"
256
- msgstr ""
257
-
258
- #: includes/widgets/htmega_countdown.php:450
259
- msgid "2. Background Hours"
260
- msgstr ""
261
-
262
- #: includes/widgets/htmega_booked_calender.php:86
263
- msgid "20"
264
- msgstr ""
265
-
266
- #: extensions/wc-sales-notification/admin/setting.php:128
267
- msgid "20 seconds"
268
- msgstr ""
269
-
270
- #: includes/widgets/htmega_booked_calender.php:132
271
- msgid "2018"
272
- msgstr ""
273
-
274
- #: includes/widgets/htmega_booked_calender.php:133
275
- msgid "2019"
276
- msgstr ""
277
-
278
- #: includes/widgets/htmega_booked_calender.php:134
279
- msgid "2020"
280
- msgstr ""
281
-
282
- #: includes/widgets/htmega_booked_calender.php:135
283
- msgid "2021"
284
- msgstr ""
285
-
286
- #: includes/widgets/htmega_booked_calender.php:136
287
- msgid "2022"
288
- msgstr ""
289
-
290
- #: includes/widgets/htmega_booked_calender.php:137
291
- msgid "2023"
292
- msgstr ""
293
-
294
- #: includes/widgets/htmega_booked_calender.php:138
295
- msgid "2024"
296
- msgstr ""
297
-
298
- #: includes/widgets/htmega_booked_calender.php:139
299
- msgid "2025"
300
- msgstr ""
301
-
302
- #: includes/widgets/htmega_booked_calender.php:140
303
- msgid "2026"
304
- msgstr ""
305
-
306
- #: includes/widgets/htmega_booked_calender.php:141
307
- msgid "2027"
308
- msgstr ""
309
-
310
- #: includes/widgets/htmega_booked_calender.php:142
311
- msgid "2028"
312
- msgstr ""
313
-
314
- #: includes/widgets/htmega_booked_calender.php:143
315
- msgid "2029"
316
- msgstr ""
317
-
318
- #: includes/widgets/htmega_booked_calender.php:144
319
- msgid "2030"
320
- msgstr ""
321
-
322
- #: includes/widgets/htmega_booked_calender.php:145
323
- msgid "2031"
324
- msgstr ""
325
-
326
- #: includes/widgets/htmega_booked_calender.php:146
327
- msgid "2032"
328
- msgstr ""
329
-
330
- #: includes/widgets/htmega_booked_calender.php:147
331
- msgid "2033"
332
- msgstr ""
333
-
334
- #: includes/widgets/htmega_booked_calender.php:148
335
- msgid "2034"
336
- msgstr ""
337
-
338
- #: includes/widgets/htmega_booked_calender.php:149
339
- msgid "2035"
340
- msgstr ""
341
-
342
- #: includes/widgets/htmega_booked_calender.php:150
343
- msgid "2036"
344
- msgstr ""
345
-
346
- #: includes/widgets/htmega_booked_calender.php:151
347
- msgid "2037"
348
- msgstr ""
349
-
350
- #: includes/widgets/htmega_booked_calender.php:152
351
- msgid "2038"
352
- msgstr ""
353
-
354
- #: includes/widgets/htmega_booked_calender.php:153
355
- msgid "2039"
356
- msgstr ""
357
-
358
- #: includes/widgets/htmega_booked_calender.php:154
359
- msgid "2040"
360
- msgstr ""
361
-
362
- #: includes/widgets/htmega_booked_calender.php:87
363
- msgid "21"
364
- msgstr ""
365
-
366
- #: includes/widgets/htmega_booked_calender.php:88
367
- msgid "22"
368
- msgstr ""
369
-
370
- #: includes/widgets/htmega_booked_calender.php:89
371
- msgid "23"
372
- msgstr ""
373
-
374
- #: includes/widgets/htmega_googlemap.php:251
375
- msgid "23.8103"
376
- msgstr ""
377
-
378
- #: includes/widgets/htmega_booked_calender.php:90
379
- msgid "24"
380
- msgstr ""
381
-
382
- #: includes/widgets/htmega_booked_calender.php:91
383
- msgid "25"
384
- msgstr ""
385
-
386
- #: includes/widgets/htmega_booked_calender.php:92
387
- msgid "26"
388
- msgstr ""
389
-
390
- #: includes/widgets/htmega_booked_calender.php:93
391
- msgid "27"
392
- msgstr ""
393
-
394
- #: includes/widgets/htmega_booked_calender.php:94
395
- msgid "28"
396
- msgstr ""
397
-
398
- #: includes/widgets/htmega_booked_calender.php:95
399
- msgid "29"
400
- msgstr ""
401
-
402
- #: includes/widgets/htmega_mailchimp_wp.php:68
403
- msgid "294"
404
- msgstr ""
405
-
406
- #: includes/widgets/htmega_instagram.php:164
407
- #: extensions/ht-builder/widgets/bl_post_archive.php:62
408
- msgid "3"
409
- msgstr ""
410
-
411
- #: includes/widgets/htmega_weather.php:84
412
- msgid "3 Days"
413
- msgstr ""
414
-
415
- #: extensions/wc-sales-notification/admin/setting.php:120
416
- msgid "3 seconds"
417
- msgstr ""
418
-
419
- #: includes/widgets/htmega_countdown.php:475
420
- msgid "3. Background Minutes"
421
- msgstr ""
422
-
423
- #: includes/widgets/htmega_booked_calender.php:96
424
- msgid "30"
425
- msgstr ""
426
-
427
- #: extensions/wc-sales-notification/admin/setting.php:129
428
- msgid "30 seconds"
429
- msgstr ""
430
-
431
- #: includes/widgets/htmega_booked_calender.php:97
432
- msgid "31"
433
- msgstr ""
434
-
435
- #: admin/include/admin-setting.php:1269
436
- msgid "325 Blocks / Sections"
437
- msgstr ""
438
-
439
- #: admin/include/admin-setting.php:1270
440
- msgid "35 Categories / Template set"
441
- msgstr ""
442
-
443
- #: admin/include/admin-setting.php:1246
444
- msgid "360 Blocks / Sections"
445
- msgstr ""
446
-
447
- #: admin/include/admin-setting.php:1167
448
- msgid "360 Elementor Blocks"
449
- msgstr ""
450
-
451
- #: admin/include/admin-setting.php:1168
452
- msgid "39 Categories and 491 Page Templates."
453
- msgstr ""
454
-
455
- #: includes/widgets/htmega_instagram.php:165
456
- #: extensions/ht-builder/widgets/bl_post_archive.php:63
457
- msgid "4"
458
- msgstr ""
459
-
460
- #: includes/widgets/htmega_weather.php:85
461
- msgid "4 Days"
462
- msgstr ""
463
-
464
- #: extensions/wc-sales-notification/admin/setting.php:121
465
- #: extensions/wc-sales-notification/admin/setting.php:145
466
- msgid "4 seconds"
467
- msgstr ""
468
-
469
- #: includes/widgets/htmega_countdown.php:500
470
- msgid "4. Background Seconds"
471
- msgstr ""
472
-
473
- #: extensions/wc-sales-notification/admin/setting.php:130
474
- msgid "40 seconds"
475
- msgstr ""
476
-
477
- #: admin/include/admin-setting.php:607
478
- #: includes/widgets/htmega_errorcontent.php:13
479
- #: includes/widgets/htmega_errorcontent.php:43
480
- msgid "404 Content"
481
- msgstr ""
482
-
483
- #: admin/include/admin-setting.php:1248 admin/include/admin-setting.php:1273
484
- msgid "404 Error Page Builder"
485
- msgstr ""
486
-
487
- #: extensions/ht-builder/admin/setting.php:112
488
- msgid "404 Page Template."
489
- msgstr ""
490
-
491
- #: includes/widgets/htmega_instagram.php:166
492
- msgid "5"
493
- msgstr ""
494
-
495
- #: includes/widgets/htmega_weather.php:86
496
- msgid "5 Days"
497
- msgstr ""
498
-
499
- #: extensions/wc-sales-notification/admin/setting.php:122
500
- msgid "5 seconds"
501
- msgstr ""
502
-
503
- #: extensions/wc-sales-notification/admin/setting.php:131
504
- msgid "50 seconds"
505
- msgstr ""
506
-
507
- #: includes/widgets/htmega_special_day_banner.php:107
508
- msgid "50%"
509
- msgstr ""
510
-
511
- #: admin/include/admin-setting.php:1271
512
- msgid "524 Templates"
513
- msgstr ""
514
-
515
- #: includes/widgets/htmega_instagram.php:167
516
- msgid "6"
517
- msgstr ""
518
-
519
- #: includes/widgets/htmega_weather.php:87
520
- msgid "6 Days"
521
- msgstr ""
522
-
523
- #: extensions/wc-sales-notification/admin/setting.php:123
524
- msgid "6 seconds"
525
- msgstr ""
526
-
527
- #: extensions/wc-sales-notification/admin/setting.php:124
528
- msgid "7 seconds"
529
- msgstr ""
530
-
531
- #: extensions/wc-sales-notification/admin/setting.php:125
532
- msgid "8 seconds"
533
- msgstr ""
534
-
535
- #: admin/include/admin-setting.php:1166
536
- msgid "80+ Elementor Elements"
537
- msgstr ""
538
-
539
- #: admin/include/admin-setting.php:1243 admin/include/admin-setting.php:1268
540
- msgid "84 Elements"
541
- msgstr ""
542
-
543
- #: extensions/wc-sales-notification/admin/setting.php:126
544
- msgid "9 seconds"
545
- msgstr ""
546
-
547
- #: includes/widgets/htmega_googlemap.php:252
548
- #: includes/widgets/htmega_googlemap.php:253
549
- msgid "90.4125"
550
- msgstr ""
551
-
552
- #: includes/widgets/htmega_business_hours.php:94
553
- msgid "9:00 AM - 6:00 PM"
554
- msgstr ""
555
-
556
- #: includes/widgets/htmega_business_hours.php:164
557
- #: includes/widgets/htmega_business_hours.php:175
558
- #: includes/widgets/htmega_business_hours.php:180
559
- #: includes/widgets/htmega_business_hours.php:185
560
- #: includes/widgets/htmega_business_hours.php:190
561
- msgid "9:00 AM to 6:00 PM"
562
- msgstr ""
563
-
564
- #: includes/widgets/htmega_business_hours.php:195
565
- msgid "9:00 AM to 6:30 PM"
566
- msgstr ""
567
-
568
- #: includes/widgets/htmega_inlinemenu.php:89
569
- #: extensions/ht-builder/widgets/bl_nav_menu.php:83
570
- #, php-format
571
- msgid ""
572
- "<strong>There are no menus in your site.</strong><br>Go to the <a "
573
- "href=\"%s\" target=\"_blank\">Menus Option</a> to create one."
574
- msgstr ""
575
-
576
- #: includes/widgets/htmega_notify.php:80
577
- msgid "<strong>Welcome,</strong>to Notification."
578
- msgstr ""
579
-
580
- #: includes/widgets/htmega_twitter_feed.php:102
581
- msgid "Access Token"
582
- msgstr ""
583
-
584
- #: includes/widgets/htmega_twitter_feed.php:112
585
- msgid "Access Token Secret"
586
- msgstr ""
587
-
588
- #: admin/include/admin-setting.php:118 admin/include/admin-setting.php:119
589
- #: includes/widgets/htmega_accordion.php:44
590
- msgid "Accordion"
591
- msgstr ""
592
-
593
- #: includes/widgets/htmega_accordion.php:13
594
- msgid "Accordion / FAQ"
595
- msgstr ""
596
-
597
- #: includes/widgets/htmega_accordion.php:89
598
- #: includes/widgets/htmega_accordion.php:100
599
- #: includes/widgets/htmega_accordion.php:230
600
- #: includes/widgets/htmega_accordion.php:232
601
- #: includes/widgets/htmega_accordion.php:241
602
- #: includes/widgets/htmega_accordion.php:1299
603
- msgid "Accordion Content"
604
- msgstr ""
605
-
606
- #: includes/widgets/htmega_accordion.php:447
607
- msgid "Accordion Height"
608
- msgstr ""
609
-
610
- #: includes/widgets/htmega_accordion.php:1054
611
- msgid "Accordion Icon"
612
- msgstr ""
613
-
614
- #: includes/widgets/htmega_accordion.php:485
615
- msgid "Accordion Item"
616
- msgstr ""
617
-
618
- #: includes/widgets/htmega_accordion.php:831
619
- msgid "Accordion Item Box"
620
- msgstr ""
621
-
622
- #: includes/widgets/htmega_accordion.php:507
623
- msgid "Accordion Item Spacing"
624
- msgstr ""
625
-
626
- #: includes/widgets/htmega_accordion.php:113
627
- #: includes/widgets/htmega_accordion.php:175
628
- #: includes/widgets/htmega_accordion.php:254
629
- msgid "Accordion Items"
630
- msgstr ""
631
-
632
- #: includes/widgets/htmega_accordion.php:183
633
- #: includes/widgets/htmega_accordion.php:530
634
- #: includes/widgets/htmega_accordion.php:901
635
- msgid "Accordion Title"
636
- msgstr ""
637
-
638
- #: includes/widgets/htmega_accordion.php:733
639
- msgid "Accordion Title Collapsed"
640
- msgstr ""
641
-
642
- #: includes/widgets/htmega_accordion.php:133
643
- #: includes/widgets/htmega_accordion.php:262
644
- msgid "Accordion Title One"
645
- msgstr ""
646
-
647
- #: includes/widgets/htmega_accordion.php:138
648
- #: includes/widgets/htmega_accordion.php:142
649
- msgid "Accordion Title Two"
650
- msgstr ""
651
-
652
- #: admin/include/template-library.php:261
653
- #: admin/include/template-library.php:313
654
- #: includes/recommended-plugins/class.recommended-plugins.php:242
655
- msgid "Activate"
656
- msgstr ""
657
-
658
- #: admin/include/template-library.php:272
659
- #: admin/include/template-library.php:324
660
- #: includes/recommended-plugins/class.recommended-plugins.php:126
661
- #: includes/recommended-plugins/class.recommended-plugins.php:253
662
- msgid "Activated"
663
- msgstr ""
664
-
665
- #: includes/class.assests.php:389
666
- #: includes/recommended-plugins/class.recommended-plugins.php:125
667
- msgid "Activating.."
668
- msgstr ""
669
-
670
- #: includes/class.assests.php:390 includes/widgets/htmega_accordion.php:667
671
- #: includes/widgets/htmega_accordion.php:1230
672
- #: includes/widgets/htmega_buddy_press.php:68
673
- #: includes/widgets/htmega_carousel.php:988
674
- #: includes/widgets/htmega_carousel.php:1188
675
- #: includes/widgets/htmega_carousel.php:1386
676
- #: includes/widgets/htmega_inlinemenu.php:407
677
- #: includes/widgets/htmega_instagram.php:1239
678
- #: includes/widgets/htmega_panel_slider.php:1205
679
- #: includes/widgets/htmega_popover.php:204
680
- #: includes/widgets/htmega_post_slider.php:1860
681
- #: includes/widgets/htmega_post_slider.php:2009
682
- #: includes/widgets/htmega_scroll_navigation.php:412
683
- #: includes/widgets/htmega_slider_thumb_gallery.php:1168
684
- #: includes/widgets/htmega_slider_thumb_gallery.php:1285
685
- #: includes/widgets/htmega_switcher.php:468
686
- #: includes/widgets/htmega_tabs.php:616 includes/widgets/htmega_tabs.php:795
687
- #: includes/widgets/htmega_twitter_feed.php:1435
688
- #: extensions/ht-builder/widgets/bl_nav_menu.php:280
689
- msgid "Active"
690
- msgstr ""
691
-
692
- #: includes/widgets/htmega_easy_digital_download.php:719
693
- msgid "Active Color"
694
- msgstr ""
695
-
696
- #: includes/widgets/htmega_booked_calender.php:449
697
- msgid "Active Date Background Color"
698
- msgstr ""
699
-
700
- #: includes/widgets/htmega_tabs.php:193
701
- msgid "Active Icon Color"
702
- msgstr ""
703
-
704
- #: includes/widgets/htmega_accordion.php:1035
705
- msgid "Active Title Line Height"
706
- msgstr ""
707
-
708
- #: includes/widgets/htmega_accordion.php:1020
709
- msgid "Active Title Space"
710
- msgstr ""
711
-
712
- #: includes/widgets/htmega_add_banner.php:13
713
- msgid "Add Banner"
714
- msgstr ""
715
-
716
- #: includes/widgets/htmega_panel_slider.php:219
717
- #: includes/widgets/htmega_testimonial_grid.php:147
718
- msgid "Add Column gap Ex. 15px"
719
- msgstr ""
720
-
721
- #: includes/widgets/htmega_buddy_press.php:282
722
- msgid "Add Column Width Ex. 25%"
723
- msgstr ""
724
-
725
- #: includes/widgets/htmega_gallery_justify.php:58
726
- msgid "Add Images"
727
- msgstr ""
728
-
729
- #: includes/widgets/htmega_wc_add_to_cart.php:120
730
- #: includes/widgets/htmega_wc_add_to_cart.php:121
731
- msgid "Add to Cart"
732
- msgstr ""
733
-
734
- #: includes/widgets/htmega_section_title.php:60
735
- msgid "Add Your Heading Text Here"
736
- msgstr ""
737
-
738
- #: includes/widgets/htmega_singlepost.php:87
739
- msgid "Additional Option"
740
- msgstr ""
741
-
742
- #: includes/widgets/htmega_accordion.php:420
743
- #: extensions/ht-builder/widgets/bl_post_archive.php:90
744
- msgid "Additional Options"
745
- msgstr ""
746
-
747
- #: includes/widgets/htmega_image_comparison.php:147
748
- msgid "Additional Setting"
749
- msgstr ""
750
-
751
- #: extensions/ht-builder/widgets/bl_post_author_info.php:99
752
- msgid "Admin Posts"
753
- msgstr ""
754
-
755
- #: admin/include/admin-setting.php:135
756
- msgid "Ads Banner"
757
- msgstr ""
758
-
759
- #: admin/include/admin-setting.php:91
760
- msgid "Advance Addons"
761
- msgstr ""
762
-
763
- #: includes/widgets/htmega_section_title.php:80
764
- msgid "Advance Title"
765
- msgstr ""
766
-
767
- #: includes/widgets/htmega_section_title.php:281
768
- msgid "Advance Title Setting"
769
- msgstr ""
770
-
771
- #: includes/widgets/htmega_section_title.php:931
772
- msgid "Advance Title style"
773
- msgstr ""
774
-
775
- #: includes/widgets/htmega_blockquote.php:405
776
- #: includes/widgets/htmega_image_comparison.php:165
777
- msgid "After"
778
- msgstr ""
779
-
780
- #: includes/widgets/htmega_counter.php:776
781
- msgid "After Border Color"
782
- msgstr ""
783
-
784
- #: includes/widgets/htmega_counter.php:701
785
- msgid "After Border Height"
786
- msgstr ""
787
-
788
- #: includes/widgets/htmega_counter.php:731
789
- msgid "After Border Position"
790
- msgstr ""
791
-
792
- #: includes/widgets/htmega_counter.php:671
793
- msgid "After Border Width"
794
- msgstr ""
795
-
796
- #: includes/widgets/htmega_image_comparison.php:70
797
- msgid "After Image"
798
- msgstr ""
799
-
800
- #: includes/widgets/htmega_pricing_list_view.php:106
801
- msgid "After Price Label"
802
- msgstr ""
803
-
804
- #: includes/widgets/htmega_pricing_list_view.php:1700
805
- msgid "After Price Style"
806
- msgstr ""
807
-
808
- #: includes/widgets/htmega_animated_heading.php:282
809
- msgid "After Text Style"
810
- msgstr ""
811
-
812
- #: includes/widgets/htmega_image_comparison.php:163
813
- #: includes/widgets/htmega_image_comparison.php:309
814
- msgid "After Title"
815
- msgstr ""
816
-
817
- #: includes/widgets/htmega_user_login_form.php:301
818
- msgid "After/Bottom Login Button"
819
- msgstr ""
820
-
821
- #: includes/widgets/htmega_imagemarker.php:450
822
- msgid "Aleart Note"
823
- msgstr ""
824
-
825
- #: includes/widgets/htmega_accordion.php:563
826
- #: includes/widgets/htmega_accordion.php:754
827
- #: includes/widgets/htmega_accordion.php:912
828
- #: includes/widgets/htmega_accordion.php:1105
829
- #: includes/widgets/htmega_accordion.php:1310
830
- #: includes/widgets/htmega_accordion.php:1428
831
- #: includes/widgets/htmega_add_banner.php:364
832
- #: includes/widgets/htmega_blockquote.php:179
833
- #: includes/widgets/htmega_buddy_press.php:250
834
- #: includes/widgets/htmega_business_hours.php:387
835
- #: includes/widgets/htmega_button.php:157
836
- #: includes/widgets/htmega_caldera_form.php:68
837
- #: includes/widgets/htmega_caldera_form.php:343
838
- #: includes/widgets/htmega_call_to_action.php:326
839
- #: includes/widgets/htmega_carousel.php:833
840
- #: includes/widgets/htmega_contact_form_seven.php:113
841
- #: includes/widgets/htmega_counter.php:66
842
- #: includes/widgets/htmega_counter.php:284
843
- #: includes/widgets/htmega_counter.php:317
844
- #: includes/widgets/htmega_counter.php:423
845
- #: includes/widgets/htmega_counter.php:549
846
- #: includes/widgets/htmega_data_table.php:635
847
- #: includes/widgets/htmega_data_table.php:754
848
- #: includes/widgets/htmega_double_button.php:321
849
- #: includes/widgets/htmega_dropcaps.php:80
850
- #: includes/widgets/htmega_easy_digital_download.php:314
851
- #: includes/widgets/htmega_easy_digital_download.php:682
852
- #: includes/widgets/htmega_errorcontent.php:245
853
- #: includes/widgets/htmega_gravity_forms.php:145
854
- #: includes/widgets/htmega_gravity_forms.php:201
855
- #: includes/widgets/htmega_gravity_forms.php:235
856
- #: includes/widgets/htmega_gravity_forms.php:540
857
- #: includes/widgets/htmega_gravity_forms.php:771
858
- #: includes/widgets/htmega_imagemarker.php:706
859
- #: includes/widgets/htmega_image_grid.php:279
860
- #: includes/widgets/htmega_image_grid.php:376
861
- #: includes/widgets/htmega_image_masonry.php:263
862
- #: includes/widgets/htmega_image_masonry.php:360
863
- #: includes/widgets/htmega_inlinemenu.php:117
864
- #: includes/widgets/htmega_instagram.php:1480
865
- #: includes/widgets/htmega_lightbox.php:192
866
- #: includes/widgets/htmega_lightbox.php:305
867
- #: includes/widgets/htmega_mailchimp_wp.php:125
868
- #: includes/widgets/htmega_modal.php:346 includes/widgets/htmega_modal.php:1001
869
- #: includes/widgets/htmega_newsticker.php:456
870
- #: includes/widgets/htmega_ninja_form.php:184
871
- #: includes/widgets/htmega_ninja_form.php:286
872
- #: includes/widgets/htmega_ninja_form.php:320
873
- #: includes/widgets/htmega_ninja_form.php:607
874
- #: includes/widgets/htmega_ninja_form.php:818
875
- #: includes/widgets/htmega_ninja_form.php:1030
876
- #: includes/widgets/htmega_notify.php:278
877
- #: includes/widgets/htmega_notify.php:558
878
- #: includes/widgets/htmega_notify.php:824
879
- #: includes/widgets/htmega_offcanvas.php:279
880
- #: includes/widgets/htmega_offcanvas.php:371
881
- #: includes/widgets/htmega_panel_slider.php:599
882
- #: includes/widgets/htmega_popover.php:261
883
- #: includes/widgets/htmega_popover.php:657
884
- #: includes/widgets/htmega_popover.php:761
885
- #: includes/widgets/htmega_postgrid.php:289
886
- #: includes/widgets/htmega_postgrid.php:513
887
- #: includes/widgets/htmega_postgrid.php:626
888
- #: includes/widgets/htmega_post_grid_tab.php:397
889
- #: includes/widgets/htmega_post_grid_tab.php:491
890
- #: includes/widgets/htmega_post_grid_tab.php:578
891
- #: includes/widgets/htmega_post_grid_tab.php:801
892
- #: includes/widgets/htmega_post_slider.php:832
893
- #: includes/widgets/htmega_post_slider.php:926
894
- #: includes/widgets/htmega_post_slider.php:1013
895
- #: includes/widgets/htmega_post_slider.php:1229
896
- #: includes/widgets/htmega_pricing_list_view.php:469
897
- #: includes/widgets/htmega_pricing_list_view.php:1124
898
- #: includes/widgets/htmega_quforms.php:86
899
- #: includes/widgets/htmega_quforms.php:206
900
- #: includes/widgets/htmega_quforms.php:327
901
- #: includes/widgets/htmega_quforms.php:547
902
- #: includes/widgets/htmega_quforms.php:765
903
- #: includes/widgets/htmega_search.php:152
904
- #: includes/widgets/htmega_section_title.php:411
905
- #: includes/widgets/htmega_service.php:237
906
- #: includes/widgets/htmega_service.php:421
907
- #: includes/widgets/htmega_service.php:526
908
- #: includes/widgets/htmega_service.php:715
909
- #: includes/widgets/htmega_service.php:977
910
- #: includes/widgets/htmega_singlepost.php:217
911
- #: includes/widgets/htmega_singlepost.php:313
912
- #: includes/widgets/htmega_singlepost.php:420
913
- #: includes/widgets/htmega_socialshere.php:370
914
- #: includes/widgets/htmega_special_day_banner.php:261
915
- #: includes/widgets/htmega_tablepress.php:209
916
- #: includes/widgets/htmega_tablepress.php:366
917
- #: includes/widgets/htmega_tabs.php:509
918
- #: includes/widgets/htmega_teammember.php:612
919
- #: includes/widgets/htmega_teammember.php:741
920
- #: includes/widgets/htmega_teammember.php:831
921
- #: includes/widgets/htmega_teammember.php:922
922
- #: includes/widgets/htmega_teammember.php:989
923
- #: includes/widgets/htmega_testimonial_grid.php:549
924
- #: includes/widgets/htmega_toggle.php:192
925
- #: includes/widgets/htmega_tooltip.php:237
926
- #: includes/widgets/htmega_user_login_form.php:145
927
- #: includes/widgets/htmega_user_login_form.php:367
928
- #: includes/widgets/htmega_user_login_form.php:567
929
- #: includes/widgets/htmega_videoplayer.php:292
930
- #: includes/widgets/htmega_wc_categories.php:375
931
- #: includes/widgets/htmega_wpforms.php:176
932
- #: includes/widgets/htmega_wpforms.php:278
933
- #: includes/widgets/htmega_wpforms.php:313
934
- #: includes/widgets/htmega_wpforms.php:610
935
- #: includes/widgets/htmega_wpforms.php:829
936
- #: includes/widgets/htmega_wpforms.php:1057
937
- #: extensions/ht-builder/widgets/bl_nav_menu.php:111
938
- #: extensions/ht-builder/widgets/bl_page_title.php:133
939
- #: extensions/ht-builder/widgets/bl_post_archive.php:298
940
- #: extensions/ht-builder/widgets/bl_post_archive.php:379
941
- #: extensions/ht-builder/widgets/bl_post_archive.php:486
942
- #: extensions/ht-builder/widgets/bl_post_archive.php:592
943
- #: extensions/ht-builder/widgets/bl_post_archive.php:672
944
- #: extensions/ht-builder/widgets/bl_post_archive_title.php:135
945
- #: extensions/ht-builder/widgets/bl_post_content.php:68
946
- #: extensions/ht-builder/widgets/bl_post_excerpt.php:68
947
- #: extensions/ht-builder/widgets/bl_post_featured_image.php:67
948
- #: extensions/ht-builder/widgets/bl_post_title.php:101
949
- #: extensions/ht-builder/widgets/bl_site_logo.php:155
950
- #: extensions/ht-builder/widgets/bl_site_title.php:135
951
- #: extensions/ht-menu/widgets/inline-mega-menu.php:162
952
- #: extensions/ht-menu/widgets/verticle-mega-menu.php:163
953
- msgid "Alignment"
954
- msgstr ""
955
-
956
- #: admin/include/templates_list.php:52
957
- msgid "ALL"
958
- msgstr ""
959
-
960
- #: admin/include/templates_list.php:41
961
- msgid "All Builders"
962
- msgstr ""
963
-
964
- #: includes/widgets/htmega_service.php:305
965
- #: includes/widgets/htmega_testimonial_grid.php:359
966
- #: includes/widgets/htmega_working_process.php:599
967
- msgid "All Content Color"
968
- msgstr ""
969
-
970
- #: extensions/ht-menu/classes/class.mega-menu.php:246
971
- #: extensions/ht-menu/menu/templates.php:194
972
- msgid "All Data Saved"
973
- msgstr ""
974
-
975
- #: includes/class.assests.php:379
976
- msgid "All Items have been Loaded"
977
- msgstr ""
978
-
979
- #: includes/widgets/htmega_accordion.php:134
980
- #: includes/widgets/htmega_accordion.php:139
981
- #: includes/widgets/htmega_accordion.php:143
982
- #: includes/widgets/htmega_accordion.php:263
983
- msgid ""
984
- "Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry "
985
- "richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard "
986
- "dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon "
987
- "tempor, sunt aliqua put a bird on it squid single-origin coffee nulla "
988
- "assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore "
989
- "wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher "
990
- "vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic "
991
- "synth nesciunt you probably have not heard of them accusamus labore "
992
- "sustainable VHS."
993
- msgstr ""
994
-
995
- #: admin/include/admin-setting.php:127
996
- msgid "Animate Heading"
997
- msgstr ""
998
-
999
- #: includes/widgets/htmega_teammember.php:119
1000
- msgid "Animate Top on Mobile Layout"
1001
- msgstr ""
1002
-
1003
- #: includes/widgets/htmega_animated_heading.php:13
1004
- #: includes/widgets/htmega_animated_heading.php:42
1005
- msgid "Animated Heading"
1006
- msgstr ""
1007
-
1008
- #: includes/widgets/htmega_animated_heading.php:102
1009
- msgid "Animated Heading Text"
1010
- msgstr ""
1011
-
1012
- #: includes/widgets/htmega_animated_heading.php:369
1013
- msgid "Animated Text Style"
1014
- msgstr ""
1015
-
1016
- #: includes/widgets/htmega_newsticker.php:119
1017
- msgid "Animatied duration"
1018
- msgstr ""
1019
-
1020
- #: includes/widgets/htmega_videoplayer.php:429
1021
- msgid "Animation Border Color"
1022
- msgstr ""
1023
-
1024
- #: extensions/wc-sales-notification/admin/setting.php:164
1025
- msgid "Animation In"
1026
- msgstr ""
1027
-
1028
- #: extensions/wc-sales-notification/admin/setting.php:176
1029
- msgid "Animation Out"
1030
- msgstr ""
1031
-
1032
- #: includes/widgets/htmega_newsticker.php:110
1033
- msgid "Animation Speed"
1034
- msgstr ""
1035
-
1036
- #: includes/widgets/htmega_carousel.php:429
1037
- msgid "Animation Style"
1038
- msgstr ""
1039
-
1040
- #: includes/widgets/htmega_animated_heading.php:67
1041
- msgid "Animation Type"
1042
- msgstr ""
1043
-
1044
- #: includes/widgets/htmega_googlemap.php:163
1045
- msgid "Another Place"
1046
- msgstr ""
1047
-
1048
- #: includes/widgets/htmega_booked_calender.php:563
1049
- msgid "Appointment Button"
1050
- msgstr ""
1051
-
1052
- #: includes/widgets/htmega_booked_calender.php:414
1053
- msgid "Appointments"
1054
- msgstr ""
1055
-
1056
- #: includes/widgets/htmega_booked_calender.php:112
1057
- msgid "April"
1058
- msgstr ""
1059
-
1060
- #: admin/include/admin-setting.php:778 admin/include/admin-setting.php:779
1061
- msgid "Archive Posts"
1062
- msgstr ""
1063
-
1064
- #: admin/include/admin-setting.php:787 admin/include/admin-setting.php:788
1065
- #: extensions/ht-builder/widgets/bl_post_archive_title.php:39
1066
- #: extensions/ht-builder/widgets/bl_post_archive_title.php:60
1067
- #: extensions/ht-builder/widgets/bl_post_archive_title.php:170
1068
- msgid "Archive Title"
1069
- msgstr ""
1070
-
1071
- #: includes/widgets/htmega_buddy_press.php:175
1072
- #: includes/widgets/htmega_popover.php:508
1073
- msgid "Area"
1074
- msgstr ""
1075
-
1076
- #: includes/widgets/htmega_imagemarker.php:100
1077
- msgid "Area padding"
1078
- msgstr ""
1079
-
1080
- #: includes/widgets/htmega_carousel.php:535
1081
- #: includes/widgets/htmega_instagram.php:912
1082
- #: includes/widgets/htmega_panel_slider.php:793
1083
- #: includes/widgets/htmega_popover.php:795
1084
- #: includes/widgets/htmega_post_slider.php:1410
1085
- #: includes/widgets/htmega_slider_thumb_gallery.php:802
1086
- #: includes/widgets/htmega_tooltip.php:548
1087
- #: includes/widgets/htmega_twitter_feed.php:1053
1088
- msgid "Arrow"
1089
- msgstr ""
1090
-
1091
- #: includes/widgets/htmega_popover.php:821
1092
- msgid "Arrow Background Color"
1093
- msgstr ""
1094
-
1095
- #: includes/widgets/htmega_popover.php:802
1096
- msgid "Arrow Border Color"
1097
- msgstr ""
1098
-
1099
- #: includes/widgets/htmega_working_process.php:270
1100
- msgid "Arrow Border Height"
1101
- msgstr ""
1102
-
1103
- #: includes/widgets/htmega_testimonial_grid.php:655
1104
- #: includes/widgets/htmega_tooltip.php:554
1105
- #: includes/widgets/htmega_verticle_time_line.php:414
1106
- #: includes/widgets/htmega_verticle_time_line.php:455
1107
- msgid "Arrow Color"
1108
- msgstr ""
1109
-
1110
- #: includes/widgets/htmega_working_process.php:320
1111
- msgid "Arrow Hover Color"
1112
- msgstr ""
1113
-
1114
- #: includes/widgets/htmega_working_process.php:291
1115
- msgid "Arrow Left Color"
1116
- msgstr ""
1117
-
1118
- #: includes/widgets/htmega_working_process.php:306
1119
- msgid "Arrow Right Color"
1120
- msgstr ""
1121
-
1122
- #: includes/widgets/htmega_easy_digital_download.php:213
1123
- msgid "ASC"
1124
- msgstr ""
1125
-
1126
- #: includes/widgets/htmega_job_manager.php:83
1127
- #: includes/widgets/htmega_newsticker.php:278
1128
- #: includes/widgets/htmega_postgrid.php:132
1129
- #: includes/widgets/htmega_post_grid_tab.php:139
1130
- #: includes/widgets/htmega_post_slider.php:143
1131
- #: includes/widgets/htmega_wc_categories.php:144
1132
- #: extensions/ht-builder/widgets/bl_post_archive.php:220
1133
- msgid "Ascending"
1134
- msgstr ""
1135
-
1136
- #: includes/widgets/htmega_verticle_time_line.php:109
1137
- msgid "Aug<br/>2018"
1138
- msgstr ""
1139
-
1140
- #: includes/widgets/htmega_booked_calender.php:116
1141
- msgid "August"
1142
- msgstr ""
1143
-
1144
- #: includes/widgets/htmega_job_manager.php:101
1145
- #: includes/widgets/htmega_post_slider.php:255
1146
- #: includes/widgets/htmega_singlepost.php:130
1147
- #: includes/widgets/htmega_twitter_feed.php:688
1148
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:65
1149
- msgid "Author"
1150
- msgstr ""
1151
-
1152
- #: includes/widgets/htmega_twitter_feed.php:754
1153
- msgid "Author Image Style"
1154
- msgstr ""
1155
-
1156
- #: admin/include/admin-setting.php:832 admin/include/admin-setting.php:833
1157
- #: extensions/ht-builder/widgets/bl_post_author_info.php:39
1158
- msgid "Author Info"
1159
- msgstr ""
1160
-
1161
- #: includes/widgets/htmega_instragram_feed.php:71
1162
- #: includes/widgets/htmega_notify.php:235
1163
- msgid "Auto"
1164
- msgstr ""
1165
-
1166
- #: includes/widgets/htmega_videoplayer.php:162
1167
- msgid "Auto Play"
1168
- msgstr ""
1169
-
1170
- #: includes/widgets/htmega_newsticker.php:164
1171
- msgid "Auto Start"
1172
- msgstr ""
1173
-
1174
- #: includes/widgets/htmega_carousel.php:281
1175
- #: includes/widgets/htmega_instagram.php:476
1176
- #: includes/widgets/htmega_panel_slider.php:381
1177
- #: includes/widgets/htmega_post_slider.php:461
1178
- #: includes/widgets/htmega_slider_thumb_gallery.php:271
1179
- #: includes/widgets/htmega_twitter_feed.php:403
1180
- msgid "Autoplay animation speed"
1181
- msgstr ""
1182
-
1183
- #: includes/widgets/htmega_carousel.php:268
1184
- #: includes/widgets/htmega_instagram.php:463
1185
- #: includes/widgets/htmega_panel_slider.php:368
1186
- #: includes/widgets/htmega_post_slider.php:448
1187
- #: includes/widgets/htmega_slider_thumb_gallery.php:260
1188
- #: includes/widgets/htmega_twitter_feed.php:390
1189
- msgid "Autoplay speed"
1190
- msgstr ""
1191
-
1192
- #: includes/widgets/htmega_booked_calender.php:302
1193
- msgid "Available Date"
1194
- msgstr ""
1195
-
1196
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:170
1197
- msgid "Avatar"
1198
- msgstr ""
1199
-
1200
- #: extensions/ht-builder/widgets/bl_post_author_info.php:108
1201
- msgid "Avater Image Position"
1202
- msgstr ""
1203
-
1204
- #: includes/widgets/htmega_errorcontent.php:136
1205
- #: includes/widgets/htmega_errorcontent.php:542
1206
- msgid "Back Button"
1207
- msgstr ""
1208
-
1209
- #: includes/widgets/htmega_errorcontent.php:144
1210
- #: includes/widgets/htmega_errorcontent.php:145
1211
- #: includes/widgets/htmega_errorcontent.php:193
1212
- msgid "Back To Home"
1213
- msgstr ""
1214
-
1215
- #: admin/include/templates_list.php:72
1216
- #: admin/include/templates/library/templates.php:83
1217
- msgid "Back to Library"
1218
- msgstr ""
1219
-
1220
- #: includes/widgets/htmega_accordion.php:589
1221
- #: includes/widgets/htmega_accordion.php:674
1222
- #: includes/widgets/htmega_accordion.php:792
1223
- #: includes/widgets/htmega_accordion.php:843
1224
- #: includes/widgets/htmega_accordion.php:939
1225
- #: includes/widgets/htmega_accordion.php:1127
1226
- #: includes/widgets/htmega_accordion.php:1238
1227
- #: includes/widgets/htmega_accordion.php:1388
1228
- #: includes/widgets/htmega_add_banner.php:394
1229
- #: includes/widgets/htmega_add_banner.php:668
1230
- #: includes/widgets/htmega_add_banner.php:747
1231
- #: includes/widgets/htmega_animated_heading.php:203
1232
- #: includes/widgets/htmega_animated_heading.php:334
1233
- #: includes/widgets/htmega_animated_heading.php:422
1234
- #: includes/widgets/htmega_blockquote.php:211
1235
- #: includes/widgets/htmega_blockquote.php:520
1236
- #: includes/widgets/htmega_blockquote.php:701
1237
- #: includes/widgets/htmega_booked_calender.php:256
1238
- #: includes/widgets/htmega_booked_calender.php:309
1239
- #: includes/widgets/htmega_booked_calender.php:425
1240
- #: includes/widgets/htmega_brand.php:178 includes/widgets/htmega_brand.php:203
1241
- #: includes/widgets/htmega_brand.php:239 includes/widgets/htmega_brand.php:264
1242
- #: includes/widgets/htmega_buddy_press.php:204
1243
- #: includes/widgets/htmega_business_hours.php:217
1244
- #: includes/widgets/htmega_business_hours.php:230
1245
- #: includes/widgets/htmega_business_hours.php:309
1246
- #: includes/widgets/htmega_business_hours.php:437
1247
- #: includes/widgets/htmega_business_hours.php:532
1248
- #: includes/widgets/htmega_business_hours.php:571
1249
- #: includes/widgets/htmega_button.php:249
1250
- #: includes/widgets/htmega_button.php:277
1251
- #: includes/widgets/htmega_button.php:372
1252
- #: includes/widgets/htmega_button.php:392
1253
- #: includes/widgets/htmega_call_to_action.php:358
1254
- #: includes/widgets/htmega_call_to_action.php:435
1255
- #: includes/widgets/htmega_call_to_action.php:720
1256
- #: includes/widgets/htmega_call_to_action.php:857
1257
- #: includes/widgets/htmega_call_to_action.php:926
1258
- #: includes/widgets/htmega_call_to_action.php:1063
1259
- #: includes/widgets/htmega_carousel.php:598
1260
- #: includes/widgets/htmega_carousel.php:773
1261
- #: includes/widgets/htmega_carousel.php:863
1262
- #: includes/widgets/htmega_carousel.php:996
1263
- #: includes/widgets/htmega_carousel.php:1102
1264
- #: includes/widgets/htmega_carousel.php:1196
1265
- #: includes/widgets/htmega_carousel.php:1329
1266
- #: includes/widgets/htmega_carousel.php:1413
1267
- #: includes/widgets/htmega_contact_form_seven.php:140
1268
- #: includes/widgets/htmega_countdown.php:413
1269
- #: includes/widgets/htmega_countdown.php:438
1270
- #: includes/widgets/htmega_countdown.php:463
1271
- #: includes/widgets/htmega_countdown.php:488
1272
- #: includes/widgets/htmega_countdown.php:513
1273
- #: includes/widgets/htmega_countdown.php:783
1274
- #: includes/widgets/htmega_countdown.php:869
1275
- #: includes/widgets/htmega_countdown.php:953
1276
- #: includes/widgets/htmega_counter.php:202
1277
- #: includes/widgets/htmega_counter.php:478
1278
- #: includes/widgets/htmega_counter.php:603
1279
- #: includes/widgets/htmega_counter.php:869
1280
- #: includes/widgets/htmega_counter.php:959
1281
- #: includes/widgets/htmega_counter.php:1048
1282
- #: includes/widgets/htmega_data_table.php:162
1283
- #: includes/widgets/htmega_data_table.php:423
1284
- #: includes/widgets/htmega_data_table.php:499
1285
- #: includes/widgets/htmega_data_table.php:585
1286
- #: includes/widgets/htmega_data_table.php:878
1287
- #: includes/widgets/htmega_data_table.php:957
1288
- #: includes/widgets/htmega_double_button.php:508
1289
- #: includes/widgets/htmega_double_button.php:595
1290
- #: includes/widgets/htmega_double_button.php:681
1291
- #: includes/widgets/htmega_double_button.php:767
1292
- #: includes/widgets/htmega_double_button.php:864
1293
- #: includes/widgets/htmega_dropcaps.php:131
1294
- #: includes/widgets/htmega_dropcaps.php:230
1295
- #: includes/widgets/htmega_easy_digital_download.php:553
1296
- #: includes/widgets/htmega_easy_digital_download.php:632
1297
- #: includes/widgets/htmega_errorcontent.php:570
1298
- #: includes/widgets/htmega_errorcontent.php:656
1299
- #: includes/widgets/htmega_errorcontent.php:721
1300
- #: includes/widgets/htmega_errorcontent.php:807
1301
- #: includes/widgets/htmega_googlemap.php:306
1302
- #: includes/widgets/htmega_googlemap.php:391
1303
- #: includes/widgets/htmega_googlemap.php:447
1304
- #: includes/widgets/htmega_gravity_forms.php:259
1305
- #: includes/widgets/htmega_imagemarker.php:52
1306
- #: includes/widgets/htmega_imagemarker.php:654
1307
- #: includes/widgets/htmega_imagemarker.php:733
1308
- #: includes/widgets/htmega_image_comparison.php:102
1309
- #: includes/widgets/htmega_image_comparison.php:284
1310
- #: includes/widgets/htmega_image_comparison.php:365
1311
- #: includes/widgets/htmega_image_comparison.php:454
1312
- #: includes/widgets/htmega_image_comparison.php:520
1313
- #: includes/widgets/htmega_image_comparison.php:540
1314
- #: includes/widgets/htmega_image_grid.php:323
1315
- #: includes/widgets/htmega_image_grid.php:482
1316
- #: includes/widgets/htmega_image_grid.php:554
1317
- #: includes/widgets/htmega_image_masonry.php:307
1318
- #: includes/widgets/htmega_image_masonry.php:477
1319
- #: includes/widgets/htmega_image_masonry.php:558
1320
- #: includes/widgets/htmega_inlinemenu.php:166
1321
- #: includes/widgets/htmega_inlinemenu.php:265
1322
- #: includes/widgets/htmega_inlinemenu.php:428
1323
- #: includes/widgets/htmega_instagram.php:625
1324
- #: includes/widgets/htmega_instagram.php:671
1325
- #: includes/widgets/htmega_instagram.php:814
1326
- #: includes/widgets/htmega_instagram.php:974
1327
- #: includes/widgets/htmega_instagram.php:1093
1328
- #: includes/widgets/htmega_instagram.php:1153
1329
- #: includes/widgets/htmega_instagram.php:1247
1330
- #: includes/widgets/htmega_instagram.php:1313
1331
- #: includes/widgets/htmega_instagram.php:1410
1332
- #: includes/widgets/htmega_lightbox.php:354
1333
- #: includes/widgets/htmega_mailchimp_wp.php:116
1334
- #: includes/widgets/htmega_modal.php:249 includes/widgets/htmega_modal.php:455
1335
- #: includes/widgets/htmega_modal.php:516 includes/widgets/htmega_modal.php:613
1336
- #: includes/widgets/htmega_modal.php:701 includes/widgets/htmega_modal.php:776
1337
- #: includes/widgets/htmega_modal.php:868 includes/widgets/htmega_modal.php:946
1338
- #: includes/widgets/htmega_newsticker.php:361
1339
- #: includes/widgets/htmega_newsticker.php:520
1340
- #: includes/widgets/htmega_newsticker.php:649
1341
- #: includes/widgets/htmega_newsticker.php:756
1342
- #: includes/widgets/htmega_newsticker.php:880
1343
- #: includes/widgets/htmega_newsticker.php:937
1344
- #: includes/widgets/htmega_ninja_form.php:344
1345
- #: includes/widgets/htmega_notify.php:370
1346
- #: includes/widgets/htmega_notify.php:437
1347
- #: includes/widgets/htmega_notify.php:522
1348
- #: includes/widgets/htmega_notify.php:671
1349
- #: includes/widgets/htmega_offcanvas.php:362
1350
- #: includes/widgets/htmega_offcanvas.php:474
1351
- #: includes/widgets/htmega_offcanvas.php:505
1352
- #: includes/widgets/htmega_panel_slider.php:580
1353
- #: includes/widgets/htmega_panel_slider.php:639
1354
- #: includes/widgets/htmega_panel_slider.php:853
1355
- #: includes/widgets/htmega_panel_slider.php:1042
1356
- #: includes/widgets/htmega_panel_slider.php:1162
1357
- #: includes/widgets/htmega_panel_slider.php:1213
1358
- #: includes/widgets/htmega_popover.php:395
1359
- #: includes/widgets/htmega_popover.php:473
1360
- #: includes/widgets/htmega_popover.php:542
1361
- #: includes/widgets/htmega_popover.php:628
1362
- #: includes/widgets/htmega_popover.php:732
1363
- #: includes/widgets/htmega_postgrid.php:227
1364
- #: includes/widgets/htmega_postgrid.php:714
1365
- #: includes/widgets/htmega_post_grid_tab.php:268
1366
- #: includes/widgets/htmega_post_grid_tab.php:344
1367
- #: includes/widgets/htmega_post_grid_tab.php:677
1368
- #: includes/widgets/htmega_post_grid_tab.php:707
1369
- #: includes/widgets/htmega_post_grid_tab.php:897
1370
- #: includes/widgets/htmega_post_grid_tab.php:947
1371
- #: includes/widgets/htmega_post_grid_tab.php:1012
1372
- #: includes/widgets/htmega_post_grid_tab.php:1070
1373
- #: includes/widgets/htmega_post_grid_tab.php:1101
1374
- #: includes/widgets/htmega_post_slider.php:657
1375
- #: includes/widgets/htmega_post_slider.php:694
1376
- #: includes/widgets/htmega_post_slider.php:717
1377
- #: includes/widgets/htmega_post_slider.php:1111
1378
- #: includes/widgets/htmega_post_slider.php:1141
1379
- #: includes/widgets/htmega_post_slider.php:1324
1380
- #: includes/widgets/htmega_post_slider.php:1374
1381
- #: includes/widgets/htmega_post_slider.php:1584
1382
- #: includes/widgets/htmega_post_slider.php:1704
1383
- #: includes/widgets/htmega_post_slider.php:1817
1384
- #: includes/widgets/htmega_post_slider.php:1868
1385
- #: includes/widgets/htmega_post_slider.php:1969
1386
- #: includes/widgets/htmega_post_slider.php:2017
1387
- #: includes/widgets/htmega_progress_bar.php:487
1388
- #: includes/widgets/htmega_progress_bar.php:668
1389
- #: includes/widgets/htmega_quforms.php:110
1390
- #: includes/widgets/htmega_quforms.php:230
1391
- #: includes/widgets/htmega_scroll_image.php:174
1392
- #: includes/widgets/htmega_scroll_image.php:317
1393
- #: includes/widgets/htmega_scroll_navigation.php:326
1394
- #: includes/widgets/htmega_scroll_navigation.php:420
1395
- #: includes/widgets/htmega_search.php:262
1396
- #: includes/widgets/htmega_search.php:407
1397
- #: includes/widgets/htmega_search.php:494
1398
- #: includes/widgets/htmega_search.php:624
1399
- #: includes/widgets/htmega_search.php:748
1400
- #: includes/widgets/htmega_search.php:922
1401
- #: includes/widgets/htmega_search.php:969
1402
- #: includes/widgets/htmega_section_title.php:378
1403
- #: includes/widgets/htmega_section_title.php:635
1404
- #: includes/widgets/htmega_section_title.php:866
1405
- #: includes/widgets/htmega_section_title.php:1016
1406
- #: includes/widgets/htmega_service.php:210
1407
- #: includes/widgets/htmega_service.php:278
1408
- #: includes/widgets/htmega_service.php:330
1409
- #: includes/widgets/htmega_service.php:686
1410
- #: includes/widgets/htmega_service.php:768
1411
- #: includes/widgets/htmega_service.php:813
1412
- #: includes/widgets/htmega_service.php:948
1413
- #: includes/widgets/htmega_service.php:1076
1414
- #: includes/widgets/htmega_service.php:1128
1415
- #: includes/widgets/htmega_singlepost.php:305
1416
- #: includes/widgets/htmega_singlepost.php:483
1417
- #: includes/widgets/htmega_slider_thumb_gallery.php:790
1418
- #: includes/widgets/htmega_slider_thumb_gallery.php:865
1419
- #: includes/widgets/htmega_slider_thumb_gallery.php:1010
1420
- #: includes/widgets/htmega_slider_thumb_gallery.php:1082
1421
- #: includes/widgets/htmega_slider_thumb_gallery.php:1176
1422
- #: includes/widgets/htmega_slider_thumb_gallery.php:1293
1423
- #: includes/widgets/htmega_socialshere.php:131
1424
- #: includes/widgets/htmega_socialshere.php:241
1425
- #: includes/widgets/htmega_socialshere.php:292
1426
- #: includes/widgets/htmega_socialshere.php:591
1427
- #: includes/widgets/htmega_socialshere.php:702
1428
- #: includes/widgets/htmega_socialshere.php:733
1429
- #: includes/widgets/htmega_special_day_banner.php:322
1430
- #: includes/widgets/htmega_special_day_banner.php:691
1431
- #: includes/widgets/htmega_special_day_banner.php:770
1432
- #: includes/widgets/htmega_switcher.php:284
1433
- #: includes/widgets/htmega_switcher.php:416
1434
- #: includes/widgets/htmega_switcher.php:491
1435
- #: includes/widgets/htmega_switcher.php:603
1436
- #: includes/widgets/htmega_tablepress.php:151
1437
- #: includes/widgets/htmega_tablepress.php:270
1438
- #: includes/widgets/htmega_tablepress.php:314
1439
- #: includes/widgets/htmega_tabs.php:147 includes/widgets/htmega_tabs.php:168
1440
- #: includes/widgets/htmega_tabs.php:306 includes/widgets/htmega_tabs.php:559
1441
- #: includes/widgets/htmega_tabs.php:636 includes/widgets/htmega_tabs.php:722
1442
- #: includes/widgets/htmega_tabs.php:816 includes/widgets/htmega_tabs.php:882
1443
- #: includes/widgets/htmega_teammember.php:386
1444
- #: includes/widgets/htmega_teammember.php:487
1445
- #: includes/widgets/htmega_teammember.php:523
1446
- #: includes/widgets/htmega_teammember.php:546
1447
- #: includes/widgets/htmega_testimonial_grid.php:298
1448
- #: includes/widgets/htmega_testimonial_grid.php:343
1449
- #: includes/widgets/htmega_testimonial_grid.php:644
1450
- #: includes/widgets/htmega_toggle.php:311
1451
- #: includes/widgets/htmega_toggle.php:363
1452
- #: includes/widgets/htmega_tooltip.php:372
1453
- #: includes/widgets/htmega_tooltip.php:450
1454
- #: includes/widgets/htmega_tooltip.php:525
1455
- #: includes/widgets/htmega_twitter_feed.php:552
1456
- #: includes/widgets/htmega_twitter_feed.php:1117
1457
- #: includes/widgets/htmega_twitter_feed.php:1254
1458
- #: includes/widgets/htmega_twitter_feed.php:1314
1459
- #: includes/widgets/htmega_twitter_feed.php:1443
1460
- #: includes/widgets/htmega_user_login_form.php:558
1461
- #: includes/widgets/htmega_user_login_form.php:852
1462
- #: includes/widgets/htmega_user_login_form.php:1124
1463
- #: includes/widgets/htmega_user_login_form.php:1243
1464
- #: includes/widgets/htmega_user_login_form.php:1322
1465
- #: includes/widgets/htmega_user_login_form.php:1427
1466
- #: includes/widgets/htmega_user_login_form.php:1492
1467
- #: includes/widgets/htmega_verticle_time_line.php:403
1468
- #: includes/widgets/htmega_verticle_time_line.php:444
1469
- #: includes/widgets/htmega_verticle_time_line.php:484
1470
- #: includes/widgets/htmega_verticle_time_line.php:613
1471
- #: includes/widgets/htmega_videoplayer.php:242
1472
- #: includes/widgets/htmega_videoplayer.php:357
1473
- #: includes/widgets/htmega_videoplayer.php:494
1474
- #: includes/widgets/htmega_wc_categories.php:184
1475
- #: includes/widgets/htmega_wc_categories.php:246
1476
- #: includes/widgets/htmega_wc_categories.php:321
1477
- #: includes/widgets/htmega_wc_categories.php:423
1478
- #: includes/widgets/htmega_wc_element_pages.php:1735
1479
- #: includes/widgets/htmega_wc_element_pages.php:1812
1480
- #: includes/widgets/htmega_weather.php:297
1481
- #: includes/widgets/htmega_working_process.php:200
1482
- #: includes/widgets/htmega_working_process.php:378
1483
- #: includes/widgets/htmega_working_process.php:392
1484
- #: includes/widgets/htmega_working_process.php:587
1485
- #: includes/widgets/htmega_working_process.php:802
1486
- #: includes/widgets/htmega_working_process.php:1004
1487
- #: includes/widgets/htmega_working_process.php:1083
1488
- #: includes/widgets/htmega_wpforms.php:337
1489
- #: extensions/ht-builder/widgets/bl_nav_menu.php:162
1490
- #: extensions/ht-builder/widgets/bl_nav_menu.php:247
1491
- #: extensions/ht-builder/widgets/bl_nav_menu.php:300
1492
- #: extensions/ht-builder/widgets/bl_nav_menu.php:353
1493
- #: extensions/ht-builder/widgets/bl_nav_menu.php:395
1494
- #: extensions/ht-builder/widgets/bl_nav_menu.php:448
1495
- #: extensions/ht-menu/menu/templates.php:143
1496
- msgid "Background"
1497
- msgstr ""
1498
-
1499
- #: includes/widgets/htmega_booked_calender.php:675
1500
- #: includes/widgets/htmega_business_hours.php:144
1501
- #: includes/widgets/htmega_caldera_form.php:227
1502
- #: includes/widgets/htmega_caldera_form.php:387
1503
- #: includes/widgets/htmega_caldera_form.php:465
1504
- #: includes/widgets/htmega_caldera_form.php:574
1505
- #: includes/widgets/htmega_caldera_form.php:646
1506
- #: includes/widgets/htmega_caldera_form.php:685
1507
- #: includes/widgets/htmega_caldera_form.php:724
1508
- #: includes/widgets/htmega_carousel.php:445
1509
- #: includes/widgets/htmega_contact_form_seven.php:221
1510
- #: includes/widgets/htmega_contact_form_seven.php:372
1511
- #: includes/widgets/htmega_contact_form_seven.php:482
1512
- #: includes/widgets/htmega_contact_form_seven.php:588
1513
- #: includes/widgets/htmega_contact_form_seven.php:651
1514
- #: includes/widgets/htmega_contact_form_seven.php:835
1515
- #: includes/widgets/htmega_contact_form_seven.php:923
1516
- #: includes/widgets/htmega_custom_event.php:342
1517
- #: includes/widgets/htmega_gravity_forms.php:404
1518
- #: includes/widgets/htmega_gravity_forms.php:574
1519
- #: includes/widgets/htmega_gravity_forms.php:706
1520
- #: includes/widgets/htmega_gravity_forms.php:816
1521
- #: includes/widgets/htmega_mailchimp_wp.php:195
1522
- #: includes/widgets/htmega_mailchimp_wp.php:383
1523
- #: includes/widgets/htmega_mailchimp_wp.php:471
1524
- #: includes/widgets/htmega_ninja_form.php:490
1525
- #: includes/widgets/htmega_ninja_form.php:640
1526
- #: includes/widgets/htmega_ninja_form.php:712
1527
- #: includes/widgets/htmega_ninja_form.php:859
1528
- #: includes/widgets/htmega_ninja_form.php:965
1529
- #: includes/widgets/htmega_ninja_form.php:1075
1530
- #: includes/widgets/htmega_pricing_list_view.php:337
1531
- #: includes/widgets/htmega_pricing_list_view.php:707
1532
- #: includes/widgets/htmega_pricing_list_view.php:966
1533
- #: includes/widgets/htmega_pricing_list_view.php:1228
1534
- #: includes/widgets/htmega_pricing_list_view.php:1298
1535
- #: includes/widgets/htmega_pricing_list_view.php:1468
1536
- #: includes/widgets/htmega_pricing_list_view.php:1574
1537
- #: includes/widgets/htmega_pricing_list_view.php:1651
1538
- #: includes/widgets/htmega_pricing_list_view.php:1732
1539
- #: includes/widgets/htmega_pricing_list_view.php:1809
1540
- #: includes/widgets/htmega_quforms.php:351
1541
- #: includes/widgets/htmega_quforms.php:476
1542
- #: includes/widgets/htmega_quforms.php:571
1543
- #: includes/widgets/htmega_quforms.php:693
1544
- #: includes/widgets/htmega_quforms.php:849
1545
- #: includes/widgets/htmega_quforms.php:936
1546
- #: includes/widgets/htmega_quforms.php:1004
1547
- #: includes/widgets/htmega_quforms.php:1043
1548
- #: includes/widgets/htmega_verticle_time_line.php:219
1549
- #: includes/widgets/htmega_verticle_time_line.php:296
1550
- #: includes/widgets/htmega_wc_element_pages.php:108
1551
- #: includes/widgets/htmega_wc_element_pages.php:143
1552
- #: includes/widgets/htmega_wc_element_pages.php:224
1553
- #: includes/widgets/htmega_wc_element_pages.php:309
1554
- #: includes/widgets/htmega_wc_element_pages.php:415
1555
- #: includes/widgets/htmega_wc_element_pages.php:489
1556
- #: includes/widgets/htmega_wc_element_pages.php:566
1557
- #: includes/widgets/htmega_wc_element_pages.php:587
1558
- #: includes/widgets/htmega_wc_element_pages.php:725
1559
- #: includes/widgets/htmega_wc_element_pages.php:850
1560
- #: includes/widgets/htmega_wc_element_pages.php:910
1561
- #: includes/widgets/htmega_wc_element_pages.php:964
1562
- #: includes/widgets/htmega_wc_element_pages.php:1040
1563
- #: includes/widgets/htmega_wc_element_pages.php:1181
1564
- #: includes/widgets/htmega_wc_element_pages.php:1222
1565
- #: includes/widgets/htmega_wc_element_pages.php:1253
1566
- #: includes/widgets/htmega_wc_element_pages.php:1288
1567
- #: includes/widgets/htmega_wc_element_pages.php:1369
1568
- #: includes/widgets/htmega_wc_element_pages.php:1407
1569
- #: includes/widgets/htmega_wc_element_pages.php:1542
1570
- #: includes/widgets/htmega_wc_element_pages.php:1630
1571
- #: includes/widgets/htmega_wpforms.php:493
1572
- #: includes/widgets/htmega_wpforms.php:643
1573
- #: includes/widgets/htmega_wpforms.php:715
1574
- #: includes/widgets/htmega_wpforms.php:861
1575
- #: includes/widgets/htmega_wpforms.php:992
1576
- #: includes/widgets/htmega_wpforms.php:1102
1577
- #: extensions/ht-builder/widgets/bl_post_comments.php:109
1578
- #: extensions/ht-builder/widgets/bl_post_comments.php:159
1579
- #: extensions/ht-builder/widgets/bl_post_search_form.php:195
1580
- #: extensions/ht-builder/widgets/bl_post_search_form.php:269
1581
- #: extensions/ht-menu/menu/templates.php:179
1582
- #: extensions/wc-sales-notification/admin/setting.php:188
1583
- msgid "Background Color"
1584
- msgstr ""
1585
-
1586
- #: includes/widgets/htmega_pricing_list_view.php:1377
1587
- msgid "Background Color ( Even )"
1588
- msgstr ""
1589
-
1590
- #: includes/widgets/htmega_data_table.php:677
1591
- msgid "Background Color ( Event )"
1592
- msgstr ""
1593
-
1594
- #: includes/widgets/htmega_data_table.php:689
1595
- #: includes/widgets/htmega_pricing_list_view.php:1389
1596
- msgid "Background Color ( Odd )"
1597
- msgstr ""
1598
-
1599
- #: admin/include/admin-setting.php:1259 admin/include/admin-setting.php:1284
1600
- msgid "Background color option"
1601
- msgstr ""
1602
-
1603
- #: includes/widgets/htmega_counter.php:211
1604
- #: includes/widgets/htmega_weather.php:218
1605
- msgid "Background Overlay"
1606
- msgstr ""
1607
-
1608
- #: extensions/ht-menu/menu/templates.php:185
1609
- msgid "Background Second Color"
1610
- msgstr ""
1611
-
1612
- #: includes/widgets/htmega_dropcaps.php:195
1613
- msgid "Backround Image as Text Color"
1614
- msgstr ""
1615
-
1616
- #: includes/widgets/htmega_scroll_image.php:241
1617
- msgid "Badge"
1618
- msgstr ""
1619
-
1620
- #: includes/widgets/htmega_special_day_banner.php:157
1621
- msgid "Badge Image"
1622
- msgstr ""
1623
-
1624
- #: includes/widgets/htmega_scroll_image.php:132
1625
- #: includes/widgets/htmega_scroll_image.php:136
1626
- msgid "Badge Text"
1627
- msgstr ""
1628
-
1629
- #: extensions/ht-menu/menu/templates.php:50
1630
- msgid "Badges"
1631
- msgstr ""
1632
-
1633
- #: includes/widgets/htmega_socialshere.php:85
1634
- msgid "Baidu"
1635
- msgstr ""
1636
-
1637
- #: includes/widgets/htmega_googlemap.php:103
1638
- msgid "Bangladesh"
1639
- msgstr ""
1640
-
1641
- #: includes/widgets/htmega_add_banner.php:34
1642
- #: includes/widgets/htmega_special_day_banner.php:35
1643
- msgid "Banner"
1644
- msgstr ""
1645
-
1646
- #: includes/widgets/htmega_special_day_banner.php:147
1647
- msgid "Banner Badge"
1648
- msgstr ""
1649
-
1650
- #: includes/widgets/htmega_add_banner.php:112
1651
- #: includes/widgets/htmega_special_day_banner.php:98
1652
- msgid "Banner Description"
1653
- msgstr ""
1654
-
1655
- #: includes/widgets/htmega_special_day_banner.php:313
1656
- msgid "Banner Hover Color"
1657
- msgstr ""
1658
-
1659
- #: includes/widgets/htmega_add_banner.php:119
1660
- #: includes/widgets/htmega_special_day_banner.php:123
1661
- msgid "Banner Link"
1662
- msgstr ""
1663
-
1664
- #: includes/widgets/htmega_add_banner.php:103
1665
- #: includes/widgets/htmega_special_day_banner.php:89
1666
- msgid "Banner Sub Title"
1667
- msgstr ""
1668
-
1669
- #: includes/widgets/htmega_add_banner.php:94
1670
- #: includes/widgets/htmega_special_day_banner.php:80
1671
- msgid "Banner Title"
1672
- msgstr ""
1673
-
1674
- #: includes/widgets/htmega_pricing_list_view.php:1159
1675
- msgid "Baseline"
1676
- msgstr ""
1677
-
1678
- #: includes/widgets/htmega_bbpress.php:13
1679
- #: includes/widgets/htmega_bbpress.php:43
1680
- msgid "Bbpress"
1681
- msgstr ""
1682
-
1683
- #: admin/include/admin-setting.php:919
1684
- msgid "bbPress"
1685
- msgstr ""
1686
-
1687
- #: includes/widgets/htmega_section_title.php:710
1688
- #: includes/widgets/htmega_section_title.php:875
1689
- msgid "Befor, After Border"
1690
- msgstr ""
1691
-
1692
- #: includes/widgets/htmega_blockquote.php:404
1693
- #: includes/widgets/htmega_image_comparison.php:156
1694
- msgid "Before"
1695
- msgstr ""
1696
-
1697
- #: includes/widgets/htmega_section_title.php:447
1698
- msgid "Before And After Border Color"
1699
- msgstr ""
1700
-
1701
- #: includes/widgets/htmega_inlinemenu.php:296
1702
- #: includes/widgets/htmega_inlinemenu.php:458
1703
- msgid "Before Background"
1704
- msgstr ""
1705
-
1706
- #: includes/widgets/htmega_inlinemenu.php:382
1707
- #: includes/widgets/htmega_inlinemenu.php:544
1708
- msgid "Before Border Botton Position"
1709
- msgstr ""
1710
-
1711
- #: includes/widgets/htmega_inlinemenu.php:337
1712
- #: includes/widgets/htmega_inlinemenu.php:499
1713
- msgid "Before Border Size"
1714
- msgstr ""
1715
-
1716
- #: includes/widgets/htmega_inlinemenu.php:359
1717
- #: includes/widgets/htmega_inlinemenu.php:521
1718
- msgid "Before Border Top Position"
1719
- msgstr ""
1720
-
1721
- #: includes/widgets/htmega_image_comparison.php:50
1722
- msgid "Before Image"
1723
- msgstr ""
1724
-
1725
- #: includes/widgets/htmega_pricing_list_view.php:89
1726
- msgid "Before Price Label"
1727
- msgstr ""
1728
-
1729
- #: includes/widgets/htmega_pricing_list_view.php:1542
1730
- msgid "Before Price Style"
1731
- msgstr ""
1732
-
1733
- #: includes/widgets/htmega_image_comparison.php:172
1734
- msgid "Before Start Amount"
1735
- msgstr ""
1736
-
1737
- #: includes/widgets/htmega_animated_heading.php:151
1738
- msgid "Before Text Style"
1739
- msgstr ""
1740
-
1741
- #: includes/widgets/htmega_image_comparison.php:154
1742
- #: includes/widgets/htmega_image_comparison.php:228
1743
- msgid "Before Title"
1744
- msgstr ""
1745
-
1746
- #: includes/widgets/htmega_inlinemenu.php:311
1747
- #: includes/widgets/htmega_inlinemenu.php:473
1748
- msgid "Before/After Border"
1749
- msgstr ""
1750
-
1751
- #: includes/widgets/htmega_user_login_form.php:300
1752
- msgid "Before/Top Login Button"
1753
- msgstr ""
1754
-
1755
- #: includes/widgets/htmega_teammember.php:175
1756
- msgid "Bio Info"
1757
- msgstr ""
1758
-
1759
- #: includes/widgets/htmega_teammember.php:864
1760
- msgid "Bio info"
1761
- msgstr ""
1762
-
1763
- #: extensions/ht-builder/widgets/bl_post_author_info.php:256
1764
- msgid "Biography"
1765
- msgstr ""
1766
-
1767
- #: extensions/ht-builder/widgets/bl_post_archive.php:23
1768
- msgid "BL: Archive Posts"
1769
- msgstr ""
1770
-
1771
- #: extensions/ht-builder/widgets/bl_post_archive_title.php:22
1772
- msgid "BL: Archive Title"
1773
- msgstr ""
1774
-
1775
- #: extensions/ht-builder/widgets/bl_post_author_info.php:22
1776
- msgid "BL: Author Info"
1777
- msgstr ""
1778
-
1779
- #: extensions/ht-builder/widgets/bl_nav_menu.php:23
1780
- msgid "BL: Nav Menu"
1781
- msgstr ""
1782
-
1783
- #: extensions/ht-builder/widgets/bl_page_title.php:22
1784
- msgid "BL: Page Title"
1785
- msgstr ""
1786
-
1787
- #: extensions/ht-builder/widgets/bl_post_comments.php:23
1788
- msgid "BL: Post Comments"
1789
- msgstr ""
1790
-
1791
- #: extensions/ht-builder/widgets/bl_post_content.php:22
1792
- msgid "BL: Post Content"
1793
- msgstr ""
1794
-
1795
- #: extensions/ht-builder/widgets/bl_post_excerpt.php:22
1796
- msgid "BL: Post Excerpt"
1797
- msgstr ""
1798
-
1799
- #: extensions/ht-builder/widgets/bl_post_featured_image.php:23
1800
- msgid "BL: Post Featured Image"
1801
- msgstr ""
1802
-
1803
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:23
1804
- msgid "BL: Post Meta Info"
1805
- msgstr ""
1806
-
1807
- #: extensions/ht-builder/widgets/bl_post_search_form.php:22
1808
- msgid "BL: Post Search Form"
1809
- msgstr ""
1810
-
1811
- #: extensions/ht-builder/widgets/bl_post_title.php:23
1812
- msgid "BL: Post Title"
1813
- msgstr ""
1814
-
1815
- #: extensions/ht-builder/widgets/bl_site_logo.php:24
1816
- msgid "BL: Site Logo"
1817
- msgstr ""
1818
-
1819
- #: extensions/ht-builder/widgets/bl_site_title.php:22
1820
- msgid "BL: Site Title"
1821
- msgstr ""
1822
-
1823
- #: includes/widgets/htmega_section_title.php:616
1824
- #: includes/widgets/htmega_section_title.php:847
1825
- msgid "Block"
1826
- msgstr ""
1827
-
1828
- #: admin/include/admin-setting.php:151
1829
- #: includes/widgets/htmega_blockquote.php:13
1830
- #: includes/widgets/htmega_blockquote.php:34
1831
- msgid "Blockquote"
1832
- msgstr ""
1833
-
1834
- #: includes/widgets/htmega_blockquote.php:79
1835
- msgid "Blockquote By"
1836
- msgstr ""
1837
-
1838
- #: includes/widgets/htmega_blockquote.php:69
1839
- msgid "Blockquote Content"
1840
- msgstr ""
1841
-
1842
- #: includes/widgets/htmega_blockquote.php:149
1843
- msgid "Blockquote Position"
1844
- msgstr ""
1845
-
1846
- #: includes/widgets/htmega_blockquote.php:89
1847
- msgid "Blockquote Type"
1848
- msgstr ""
1849
-
1850
- #: admin/include/templates_list.php:34
1851
- msgid "Blocks"
1852
- msgstr ""
1853
-
1854
- #: admin/include/admin-setting.php:1250 admin/include/admin-setting.php:1275
1855
- msgid "Blog Archive Category Wise Individual layout"
1856
- msgstr ""
1857
-
1858
- #: admin/include/admin-setting.php:1251 admin/include/admin-setting.php:1276
1859
- msgid "Blog Archive Tag Wise Individual layout"
1860
- msgstr ""
1861
-
1862
- #: admin/include/admin-setting.php:1247 admin/include/admin-setting.php:1272
1863
- msgid "Blog Search Page Builder"
1864
- msgstr ""
1865
-
1866
- #: extensions/ht-builder/admin/setting.php:73
1867
- msgid "Blog Template."
1868
- msgstr ""
1869
-
1870
- #: extensions/ht-builder/widgets/bl_post_title.php:136
1871
- msgid "Blog Title"
1872
- msgstr ""
1873
-
1874
- #: includes/widgets/htmega_socialshere.php:72
1875
- msgid "Blogger"
1876
- msgstr ""
1877
-
1878
- #: includes/widgets/htmega_booked_calender.php:246
1879
- #: includes/widgets/htmega_notify.php:100
1880
- #: includes/widgets/htmega_tablepress.php:242
1881
- msgid "Body"
1882
- msgstr ""
1883
-
1884
- #: includes/widgets/htmega_booked_calender.php:13
1885
- msgid "Booked Calendar"
1886
- msgstr ""
1887
-
1888
- #: admin/include/admin-setting.php:929
1889
- #: includes/widgets/htmega_booked_calender.php:43
1890
- msgid "Booked Calender"
1891
- msgstr ""
1892
-
1893
- #: includes/widgets/htmega_notify.php:231
1894
- msgid "Bootstrap Column Width"
1895
- msgstr ""
1896
-
1897
- #: includes/widgets/htmega_accordion.php:612
1898
- #: includes/widgets/htmega_accordion.php:696
1899
- #: includes/widgets/htmega_accordion.php:866
1900
- #: includes/widgets/htmega_accordion.php:964
1901
- #: includes/widgets/htmega_accordion.php:1150
1902
- #: includes/widgets/htmega_accordion.php:1261
1903
- #: includes/widgets/htmega_accordion.php:1398
1904
- #: includes/widgets/htmega_add_banner.php:188
1905
- #: includes/widgets/htmega_add_banner.php:216
1906
- #: includes/widgets/htmega_add_banner.php:276
1907
- #: includes/widgets/htmega_add_banner.php:330
1908
- #: includes/widgets/htmega_add_banner.php:648
1909
- #: includes/widgets/htmega_add_banner.php:727
1910
- #: includes/widgets/htmega_animated_heading.php:183
1911
- #: includes/widgets/htmega_animated_heading.php:314
1912
- #: includes/widgets/htmega_animated_heading.php:402
1913
- #: includes/widgets/htmega_blockquote.php:247
1914
- #: includes/widgets/htmega_blockquote.php:381
1915
- #: includes/widgets/htmega_blockquote.php:556
1916
- #: includes/widgets/htmega_blockquote.php:736
1917
- #: includes/widgets/htmega_brand.php:343 includes/widgets/htmega_brand.php:355
1918
- #: includes/widgets/htmega_buddy_press.php:184
1919
- #: includes/widgets/htmega_business_hours.php:269
1920
- #: includes/widgets/htmega_business_hours.php:345
1921
- #: includes/widgets/htmega_business_hours.php:473
1922
- #: includes/widgets/htmega_button.php:229
1923
- #: includes/widgets/htmega_button.php:352
1924
- #: includes/widgets/htmega_button.php:556
1925
- #: includes/widgets/htmega_caldera_form.php:310
1926
- #: includes/widgets/htmega_caldera_form.php:399
1927
- #: includes/widgets/htmega_caldera_form.php:486
1928
- #: includes/widgets/htmega_call_to_action.php:401
1929
- #: includes/widgets/htmega_call_to_action.php:478
1930
- #: includes/widgets/htmega_call_to_action.php:757
1931
- #: includes/widgets/htmega_call_to_action.php:837
1932
- #: includes/widgets/htmega_call_to_action.php:963
1933
- #: includes/widgets/htmega_call_to_action.php:1043
1934
- #: includes/widgets/htmega_carousel.php:512
1935
- #: includes/widgets/htmega_carousel.php:608
1936
- #: includes/widgets/htmega_carousel.php:783
1937
- #: includes/widgets/htmega_carousel.php:873
1938
- #: includes/widgets/htmega_carousel.php:1006
1939
- #: includes/widgets/htmega_carousel.php:1112
1940
- #: includes/widgets/htmega_carousel.php:1206
1941
- #: includes/widgets/htmega_carousel.php:1339
1942
- #: includes/widgets/htmega_carousel.php:1423
1943
- #: includes/widgets/htmega_contact_form_seven.php:292
1944
- #: includes/widgets/htmega_contact_form_seven.php:406
1945
- #: includes/widgets/htmega_contact_form_seven.php:526
1946
- #: includes/widgets/htmega_contact_form_seven.php:611
1947
- #: includes/widgets/htmega_contact_form_seven.php:682
1948
- #: includes/widgets/htmega_contact_form_seven.php:873
1949
- #: includes/widgets/htmega_contact_form_seven.php:935
1950
- #: includes/widgets/htmega_contact_form_seven.php:975
1951
- #: includes/widgets/htmega_contact_form_seven.php:1009
1952
- #: includes/widgets/htmega_countdown.php:535
1953
- #: includes/widgets/htmega_countdown.php:547
1954
- #: includes/widgets/htmega_countdown.php:796
1955
- #: includes/widgets/htmega_countdown.php:963
1956
- #: includes/widgets/htmega_countdown.php:1073
1957
- #: includes/widgets/htmega_countdown.php:1158
1958
- #: includes/widgets/htmega_counter.php:253
1959
- #: includes/widgets/htmega_counter.php:515
1960
- #: includes/widgets/htmega_counter.php:638
1961
- #: includes/widgets/htmega_counter.php:906
1962
- #: includes/widgets/htmega_counter.php:994
1963
- #: includes/widgets/htmega_counter.php:1084
1964
- #: includes/widgets/htmega_custom_event.php:419
1965
- #: includes/widgets/htmega_custom_event.php:461
1966
- #: includes/widgets/htmega_data_table.php:172
1967
- #: includes/widgets/htmega_data_table.php:436
1968
- #: includes/widgets/htmega_data_table.php:534
1969
- #: includes/widgets/htmega_data_table.php:616
1970
- #: includes/widgets/htmega_data_table.php:735
1971
- #: includes/widgets/htmega_data_table.php:839
1972
- #: includes/widgets/htmega_data_table.php:891
1973
- #: includes/widgets/htmega_data_table.php:970
1974
- #: includes/widgets/htmega_double_button.php:392
1975
- #: includes/widgets/htmega_double_button.php:422
1976
- #: includes/widgets/htmega_double_button.php:488
1977
- #: includes/widgets/htmega_double_button.php:575
1978
- #: includes/widgets/htmega_double_button.php:661
1979
- #: includes/widgets/htmega_double_button.php:747
1980
- #: includes/widgets/htmega_double_button.php:844
1981
- #: includes/widgets/htmega_download_monitor.php:169
1982
- #: includes/widgets/htmega_download_monitor.php:357
1983
- #: includes/widgets/htmega_dropcaps.php:166
1984
- #: includes/widgets/htmega_dropcaps.php:267
1985
- #: includes/widgets/htmega_easy_digital_download.php:282
1986
- #: includes/widgets/htmega_easy_digital_download.php:564
1987
- #: includes/widgets/htmega_easy_digital_download.php:643
1988
- #: includes/widgets/htmega_errorcontent.php:336
1989
- #: includes/widgets/htmega_errorcontent.php:415
1990
- #: includes/widgets/htmega_errorcontent.php:494
1991
- #: includes/widgets/htmega_errorcontent.php:616
1992
- #: includes/widgets/htmega_errorcontent.php:667
1993
- #: includes/widgets/htmega_errorcontent.php:767
1994
- #: includes/widgets/htmega_errorcontent.php:818
1995
- #: includes/widgets/htmega_gallery_justify.php:85
1996
- #: includes/widgets/htmega_googlemap.php:316
1997
- #: includes/widgets/htmega_googlemap.php:457
1998
- #: includes/widgets/htmega_gravity_forms.php:300
1999
- #: includes/widgets/htmega_gravity_forms.php:511
2000
- #: includes/widgets/htmega_gravity_forms.php:596
2001
- #: includes/widgets/htmega_gravity_forms.php:744
2002
- #: includes/widgets/htmega_gravity_forms.php:828
2003
- #: includes/widgets/htmega_imagemarker.php:664
2004
- #: includes/widgets/htmega_imagemarker.php:743
2005
- #: includes/widgets/htmega_imagemarker.php:876
2006
- #: includes/widgets/htmega_image_comparison.php:125
2007
- #: includes/widgets/htmega_image_comparison.php:263
2008
- #: includes/widgets/htmega_image_comparison.php:344
2009
- #: includes/widgets/htmega_image_comparison.php:399
2010
- #: includes/widgets/htmega_image_comparison.php:433
2011
- #: includes/widgets/htmega_image_comparison.php:550
2012
- #: includes/widgets/htmega_image_grid.php:221
2013
- #: includes/widgets/htmega_image_grid.php:514
2014
- #: includes/widgets/htmega_image_grid.php:573
2015
- #: includes/widgets/htmega_image_magnifier.php:111
2016
- #: includes/widgets/htmega_image_masonry.php:220
2017
- #: includes/widgets/htmega_image_masonry.php:509
2018
- #: includes/widgets/htmega_image_masonry.php:577
2019
- #: includes/widgets/htmega_inlinemenu.php:201
2020
- #: includes/widgets/htmega_inlinemenu.php:275
2021
- #: includes/widgets/htmega_inlinemenu.php:438
2022
- #: includes/widgets/htmega_instagram.php:706
2023
- #: includes/widgets/htmega_instagram.php:836
2024
- #: includes/widgets/htmega_instagram.php:984
2025
- #: includes/widgets/htmega_instagram.php:1103
2026
- #: includes/widgets/htmega_instagram.php:1163
2027
- #: includes/widgets/htmega_instagram.php:1257
2028
- #: includes/widgets/htmega_instagram.php:1323
2029
- #: includes/widgets/htmega_instagram.php:1459
2030
- #: includes/widgets/htmega_lightbox.php:265
2031
- #: includes/widgets/htmega_lightbox.php:453
2032
- #: includes/widgets/htmega_mailchimp_wp.php:238
2033
- #: includes/widgets/htmega_mailchimp_wp.php:421
2034
- #: includes/widgets/htmega_mailchimp_wp.php:483
2035
- #: includes/widgets/htmega_modal.php:259 includes/widgets/htmega_modal.php:465
2036
- #: includes/widgets/htmega_modal.php:552 includes/widgets/htmega_modal.php:623
2037
- #: includes/widgets/htmega_modal.php:724 includes/widgets/htmega_modal.php:786
2038
- #: includes/widgets/htmega_modal.php:894 includes/widgets/htmega_modal.php:956
2039
- #: includes/widgets/htmega_newsticker.php:371
2040
- #: includes/widgets/htmega_newsticker.php:543
2041
- #: includes/widgets/htmega_newsticker.php:802
2042
- #: includes/widgets/htmega_newsticker.php:890
2043
- #: includes/widgets/htmega_newsticker.php:947
2044
- #: includes/widgets/htmega_ninja_form.php:166
2045
- #: includes/widgets/htmega_ninja_form.php:268
2046
- #: includes/widgets/htmega_ninja_form.php:386
2047
- #: includes/widgets/htmega_ninja_form.php:580
2048
- #: includes/widgets/htmega_ninja_form.php:662
2049
- #: includes/widgets/htmega_ninja_form.php:800
2050
- #: includes/widgets/htmega_ninja_form.php:881
2051
- #: includes/widgets/htmega_ninja_form.php:1003
2052
- #: includes/widgets/htmega_ninja_form.php:1087
2053
- #: includes/widgets/htmega_notify.php:350
2054
- #: includes/widgets/htmega_notify.php:448
2055
- #: includes/widgets/htmega_notify.php:502
2056
- #: includes/widgets/htmega_offcanvas.php:454
2057
- #: includes/widgets/htmega_offcanvas.php:515
2058
- #: includes/widgets/htmega_panel_slider.php:555
2059
- #: includes/widgets/htmega_panel_slider.php:863
2060
- #: includes/widgets/htmega_panel_slider.php:1052
2061
- #: includes/widgets/htmega_panel_slider.php:1184
2062
- #: includes/widgets/htmega_panel_slider.php:1223
2063
- #: includes/widgets/htmega_popover.php:405
2064
- #: includes/widgets/htmega_popover.php:483
2065
- #: includes/widgets/htmega_popover.php:562
2066
- #: includes/widgets/htmega_popover.php:638
2067
- #: includes/widgets/htmega_popover.php:742
2068
- #: includes/widgets/htmega_post_grid_tab.php:278
2069
- #: includes/widgets/htmega_post_grid_tab.php:354
2070
- #: includes/widgets/htmega_post_grid_tab.php:907
2071
- #: includes/widgets/htmega_post_grid_tab.php:957
2072
- #: includes/widgets/htmega_post_grid_tab.php:1021
2073
- #: includes/widgets/htmega_post_grid_tab.php:1079
2074
- #: includes/widgets/htmega_post_grid_tab.php:1111
2075
- #: includes/widgets/htmega_post_slider.php:778
2076
- #: includes/widgets/htmega_post_slider.php:1334
2077
- #: includes/widgets/htmega_post_slider.php:1384
2078
- #: includes/widgets/htmega_post_slider.php:1594
2079
- #: includes/widgets/htmega_post_slider.php:1714
2080
- #: includes/widgets/htmega_post_slider.php:1839
2081
- #: includes/widgets/htmega_post_slider.php:1878
2082
- #: includes/widgets/htmega_post_slider.php:1950
2083
- #: includes/widgets/htmega_post_slider.php:2027
2084
- #: includes/widgets/htmega_pricing_list_view.php:920
2085
- #: includes/widgets/htmega_pricing_list_view.php:1265
2086
- #: includes/widgets/htmega_pricing_list_view.php:1344
2087
- #: includes/widgets/htmega_pricing_list_view.php:1435
2088
- #: includes/widgets/htmega_progress_bar.php:361
2089
- #: includes/widgets/htmega_progress_bar.php:497
2090
- #: includes/widgets/htmega_progress_bar.php:615
2091
- #: includes/widgets/htmega_progress_bar.php:706
2092
- #: includes/widgets/htmega_progress_bar.php:798
2093
- #: includes/widgets/htmega_quforms.php:150
2094
- #: includes/widgets/htmega_quforms.php:261
2095
- #: includes/widgets/htmega_quforms.php:441
2096
- #: includes/widgets/htmega_quforms.php:499
2097
- #: includes/widgets/htmega_quforms.php:659
2098
- #: includes/widgets/htmega_quforms.php:717
2099
- #: includes/widgets/htmega_quforms.php:887
2100
- #: includes/widgets/htmega_quforms.php:948
2101
- #: includes/widgets/htmega_scroll_image.php:84
2102
- #: includes/widgets/htmega_scroll_image.php:184
2103
- #: includes/widgets/htmega_scroll_image.php:344
2104
- #: includes/widgets/htmega_scroll_navigation.php:336
2105
- #: includes/widgets/htmega_scroll_navigation.php:430
2106
- #: includes/widgets/htmega_search.php:369
2107
- #: includes/widgets/htmega_search.php:582
2108
- #: includes/widgets/htmega_search.php:634
2109
- #: includes/widgets/htmega_search.php:820
2110
- #: includes/widgets/htmega_search.php:982
2111
- #: includes/widgets/htmega_section_title.php:439
2112
- #: includes/widgets/htmega_section_title.php:567
2113
- #: includes/widgets/htmega_section_title.php:800
2114
- #: includes/widgets/htmega_section_title.php:981
2115
- #: includes/widgets/htmega_service.php:219
2116
- #: includes/widgets/htmega_service.php:287
2117
- #: includes/widgets/htmega_service.php:340
2118
- #: includes/widgets/htmega_service.php:696
2119
- #: includes/widgets/htmega_service.php:778
2120
- #: includes/widgets/htmega_service.php:958
2121
- #: includes/widgets/htmega_service.php:1086
2122
- #: includes/widgets/htmega_service.php:1138
2123
- #: includes/widgets/htmega_slider_thumb_gallery.php:875
2124
- #: includes/widgets/htmega_slider_thumb_gallery.php:1020
2125
- #: includes/widgets/htmega_slider_thumb_gallery.php:1092
2126
- #: includes/widgets/htmega_slider_thumb_gallery.php:1186
2127
- #: includes/widgets/htmega_slider_thumb_gallery.php:1230
2128
- #: includes/widgets/htmega_slider_thumb_gallery.php:1303
2129
- #: includes/widgets/htmega_socialshere.php:141
2130
- #: includes/widgets/htmega_socialshere.php:169
2131
- #: includes/widgets/htmega_socialshere.php:251
2132
- #: includes/widgets/htmega_socialshere.php:302
2133
- #: includes/widgets/htmega_socialshere.php:447
2134
- #: includes/widgets/htmega_socialshere.php:582
2135
- #: includes/widgets/htmega_special_day_banner.php:671
2136
- #: includes/widgets/htmega_special_day_banner.php:750
2137
- #: includes/widgets/htmega_switcher.php:297
2138
- #: includes/widgets/htmega_switcher.php:440
2139
- #: includes/widgets/htmega_switcher.php:515
2140
- #: includes/widgets/htmega_switcher.php:613
2141
- #: includes/widgets/htmega_tablepress.php:132
2142
- #: includes/widgets/htmega_tablepress.php:188
2143
- #: includes/widgets/htmega_tablepress.php:251
2144
- #: includes/widgets/htmega_tabs.php:316 includes/widgets/htmega_tabs.php:594
2145
- #: includes/widgets/htmega_tabs.php:646 includes/widgets/htmega_tabs.php:732
2146
- #: includes/widgets/htmega_tabs.php:827 includes/widgets/htmega_tabs.php:892
2147
- #: includes/widgets/htmega_teammember.php:359
2148
- #: includes/widgets/htmega_teammember.php:500
2149
- #: includes/widgets/htmega_teammember.php:558
2150
- #: includes/widgets/htmega_teammember.php:1020
2151
- #: includes/widgets/htmega_testimonial_grid.php:307
2152
- #: includes/widgets/htmega_testimonial_grid.php:352
2153
- #: includes/widgets/htmega_testimonial_grid.php:397
2154
- #: includes/widgets/htmega_toggle.php:321
2155
- #: includes/widgets/htmega_toggle.php:373
2156
- #: includes/widgets/htmega_tooltip.php:382
2157
- #: includes/widgets/htmega_tooltip.php:460
2158
- #: includes/widgets/htmega_twitter_feed.php:597
2159
- #: includes/widgets/htmega_twitter_feed.php:766
2160
- #: includes/widgets/htmega_twitter_feed.php:1015
2161
- #: includes/widgets/htmega_twitter_feed.php:1127
2162
- #: includes/widgets/htmega_twitter_feed.php:1264
2163
- #: includes/widgets/htmega_twitter_feed.php:1324
2164
- #: includes/widgets/htmega_twitter_feed.php:1453
2165
- #: includes/widgets/htmega_user_login_form.php:928
2166
- #: includes/widgets/htmega_user_login_form.php:1201
2167
- #: includes/widgets/htmega_user_login_form.php:1253
2168
- #: includes/widgets/htmega_user_login_form.php:1385
2169
- #: includes/widgets/htmega_user_login_form.php:1437
2170
- #: includes/widgets/htmega_user_login_form.php:1527
2171
- #: includes/widgets/htmega_verticle_time_line.php:363
2172
- #: includes/widgets/htmega_videoplayer.php:263
2173
- #: includes/widgets/htmega_videoplayer.php:422
2174
- #: includes/widgets/htmega_videoplayer.php:464
2175
- #: includes/widgets/htmega_wc_categories.php:194
2176
- #: includes/widgets/htmega_wc_categories.php:256
2177
- #: includes/widgets/htmega_wc_categories.php:356
2178
- #: includes/widgets/htmega_wc_categories.php:433
2179
- #: includes/widgets/htmega_wc_categories.php:442
2180
- #: includes/widgets/htmega_wc_categories.php:488
2181
- #: includes/widgets/htmega_wc_categories.php:516
2182
- #: includes/widgets/htmega_wc_element_pages.php:167
2183
- #: includes/widgets/htmega_wc_element_pages.php:236
2184
- #: includes/widgets/htmega_wc_element_pages.php:335
2185
- #: includes/widgets/htmega_wc_element_pages.php:427
2186
- #: includes/widgets/htmega_wc_element_pages.php:501
2187
- #: includes/widgets/htmega_wc_element_pages.php:599
2188
- #: includes/widgets/htmega_wc_element_pages.php:622
2189
- #: includes/widgets/htmega_wc_element_pages.php:813
2190
- #: includes/widgets/htmega_wc_element_pages.php:865
2191
- #: includes/widgets/htmega_wc_element_pages.php:976
2192
- #: includes/widgets/htmega_wc_element_pages.php:1066
2193
- #: includes/widgets/htmega_wc_element_pages.php:1421
2194
- #: includes/widgets/htmega_wc_element_pages.php:1479
2195
- #: includes/widgets/htmega_wc_element_pages.php:1554
2196
- #: includes/widgets/htmega_wc_element_pages.php:1656
2197
- #: includes/widgets/htmega_wc_element_pages.php:1770
2198
- #: includes/widgets/htmega_wc_element_pages.php:1822
2199
- #: includes/widgets/htmega_weather.php:288
2200
- #: includes/widgets/htmega_weather.php:326
2201
- #: includes/widgets/htmega_working_process.php:432
2202
- #: includes/widgets/htmega_working_process.php:690
2203
- #: includes/widgets/htmega_working_process.php:769
2204
- #: includes/widgets/htmega_working_process.php:869
2205
- #: includes/widgets/htmega_working_process.php:984
2206
- #: includes/widgets/htmega_working_process.php:1092
2207
- #: includes/widgets/htmega_wpforms.php:158
2208
- #: includes/widgets/htmega_wpforms.php:260
2209
- #: includes/widgets/htmega_wpforms.php:368
2210
- #: includes/widgets/htmega_wpforms.php:583
2211
- #: includes/widgets/htmega_wpforms.php:667
2212
- #: includes/widgets/htmega_wpforms.php:803
2213
- #: includes/widgets/htmega_wpforms.php:885
2214
- #: includes/widgets/htmega_wpforms.php:1030
2215
- #: includes/widgets/htmega_wpforms.php:1114
2216
- #: includes/widgets/htmega_wpforms.php:1156
2217
- #: extensions/ht-builder/widgets/bl_nav_menu.php:185
2218
- #: extensions/ht-builder/widgets/bl_nav_menu.php:257
2219
- #: extensions/ht-builder/widgets/bl_nav_menu.php:310
2220
- #: extensions/ht-builder/widgets/bl_nav_menu.php:418
2221
- #: extensions/ht-builder/widgets/bl_nav_menu.php:458
2222
- #: extensions/ht-builder/widgets/bl_page_title.php:87
2223
- #: extensions/ht-builder/widgets/bl_post_archive.php:278
2224
- #: extensions/ht-builder/widgets/bl_post_archive.php:742
2225
- #: extensions/ht-builder/widgets/bl_post_archive.php:808
2226
- #: extensions/ht-builder/widgets/bl_post_archive.php:878
2227
- #: extensions/ht-builder/widgets/bl_post_archive.php:933
2228
- #: extensions/ht-builder/widgets/bl_post_archive_title.php:89
2229
- #: extensions/ht-builder/widgets/bl_post_author_info.php:174
2230
- #: extensions/ht-builder/widgets/bl_post_comments.php:69
2231
- #: extensions/ht-builder/widgets/bl_post_comments.php:130
2232
- #: extensions/ht-builder/widgets/bl_post_comments.php:171
2233
- #: extensions/ht-builder/widgets/bl_post_search_form.php:131
2234
- #: extensions/ht-builder/widgets/bl_post_search_form.php:216
2235
- #: extensions/ht-builder/widgets/bl_post_search_form.php:281
2236
- #: extensions/ht-builder/widgets/bl_site_logo.php:108
2237
- #: extensions/ht-builder/widgets/bl_site_title.php:89
2238
- #: extensions/ht-menu/widgets/inline-mega-menu.php:144
2239
- #: extensions/ht-menu/widgets/inline-mega-menu.php:264
2240
- #: extensions/ht-menu/widgets/inline-mega-menu.php:394
2241
- #: extensions/ht-menu/widgets/inline-mega-menu.php:452
2242
- #: extensions/ht-menu/widgets/inline-mega-menu.php:516
2243
- #: extensions/ht-menu/widgets/verticle-mega-menu.php:145
2244
- #: extensions/ht-menu/widgets/verticle-mega-menu.php:265
2245
- #: extensions/ht-menu/widgets/verticle-mega-menu.php:352
2246
- #: extensions/ht-menu/widgets/verticle-mega-menu.php:410
2247
- #: extensions/ht-menu/widgets/verticle-mega-menu.php:462
2248
- msgid "Border"
2249
- msgstr ""
2250
-
2251
- #: includes/widgets/htmega_counter.php:764
2252
- msgid "Border After Color"
2253
- msgstr ""
2254
-
2255
- #: includes/widgets/htmega_imagemarker.php:797
2256
- msgid "Border Background"
2257
- msgstr ""
2258
-
2259
- #: includes/widgets/htmega_booked_calender.php:374
2260
- #: includes/widgets/htmega_booked_calender.php:849
2261
- #: includes/widgets/htmega_caldera_form.php:585
2262
- #: includes/widgets/htmega_caldera_form.php:636
2263
- #: includes/widgets/htmega_caldera_form.php:675
2264
- #: includes/widgets/htmega_caldera_form.php:714
2265
- #: includes/widgets/htmega_gravity_forms.php:867
2266
- #: includes/widgets/htmega_ninja_form.php:1126
2267
- #: includes/widgets/htmega_quforms.php:994
2268
- #: includes/widgets/htmega_quforms.php:1033
2269
- #: includes/widgets/htmega_tablepress.php:293
2270
- #: includes/widgets/htmega_tablepress.php:337
2271
- #: includes/widgets/htmega_wc_element_pages.php:320
2272
- #: includes/widgets/htmega_wc_element_pages.php:1051
2273
- #: includes/widgets/htmega_wc_element_pages.php:1641
2274
- msgid "Border Color"
2275
- msgstr ""
2276
-
2277
- #: includes/widgets/htmega_progress_bar.php:374
2278
- msgid "Border color"
2279
- msgstr ""
2280
-
2281
- #: includes/widgets/htmega_search.php:398
2282
- msgid "Border Focus Color"
2283
- msgstr ""
2284
-
2285
- #: includes/widgets/htmega_section_title.php:747
2286
- #: includes/widgets/htmega_section_title.php:909
2287
- msgid "Border Height"
2288
- msgstr ""
2289
-
2290
- #: includes/widgets/htmega_accordion.php:620
2291
- #: includes/widgets/htmega_accordion.php:704
2292
- #: includes/widgets/htmega_accordion.php:874
2293
- #: includes/widgets/htmega_accordion.php:973
2294
- #: includes/widgets/htmega_accordion.php:1158
2295
- #: includes/widgets/htmega_accordion.php:1269
2296
- #: includes/widgets/htmega_accordion.php:1406
2297
- #: includes/widgets/htmega_add_banner.php:284
2298
- #: includes/widgets/htmega_add_banner.php:338
2299
- #: includes/widgets/htmega_add_banner.php:656
2300
- #: includes/widgets/htmega_add_banner.php:735
2301
- #: includes/widgets/htmega_animated_heading.php:191
2302
- #: includes/widgets/htmega_animated_heading.php:322
2303
- #: includes/widgets/htmega_animated_heading.php:410
2304
- #: includes/widgets/htmega_blockquote.php:255
2305
- #: includes/widgets/htmega_blockquote.php:389
2306
- #: includes/widgets/htmega_blockquote.php:564
2307
- #: includes/widgets/htmega_blockquote.php:744
2308
- #: includes/widgets/htmega_booked_calender.php:613
2309
- #: includes/widgets/htmega_booked_calender.php:765
2310
- #: includes/widgets/htmega_brand.php:366
2311
- #: includes/widgets/htmega_buddy_press.php:192
2312
- #: includes/widgets/htmega_business_hours.php:277
2313
- #: includes/widgets/htmega_business_hours.php:353
2314
- #: includes/widgets/htmega_business_hours.php:481
2315
- #: includes/widgets/htmega_button.php:237
2316
- #: includes/widgets/htmega_button.php:360
2317
- #: includes/widgets/htmega_button.php:564
2318
- #: includes/widgets/htmega_caldera_form.php:321
2319
- #: includes/widgets/htmega_caldera_form.php:410
2320
- #: includes/widgets/htmega_caldera_form.php:497
2321
- #: includes/widgets/htmega_call_to_action.php:409
2322
- #: includes/widgets/htmega_call_to_action.php:486
2323
- #: includes/widgets/htmega_call_to_action.php:765
2324
- #: includes/widgets/htmega_call_to_action.php:845
2325
- #: includes/widgets/htmega_call_to_action.php:971
2326
- #: includes/widgets/htmega_call_to_action.php:1051
2327
- #: includes/widgets/htmega_carousel.php:520
2328
- #: includes/widgets/htmega_carousel.php:616
2329
- #: includes/widgets/htmega_carousel.php:791
2330
- #: includes/widgets/htmega_carousel.php:881
2331
- #: includes/widgets/htmega_carousel.php:1014
2332
- #: includes/widgets/htmega_carousel.php:1120
2333
- #: includes/widgets/htmega_carousel.php:1214
2334
- #: includes/widgets/htmega_carousel.php:1347
2335
- #: includes/widgets/htmega_carousel.php:1431
2336
- #: includes/widgets/htmega_contact_form_seven.php:300
2337
- #: includes/widgets/htmega_contact_form_seven.php:414
2338
- #: includes/widgets/htmega_contact_form_seven.php:534
2339
- #: includes/widgets/htmega_contact_form_seven.php:619
2340
- #: includes/widgets/htmega_contact_form_seven.php:690
2341
- #: includes/widgets/htmega_contact_form_seven.php:881
2342
- #: includes/widgets/htmega_countdown.php:559
2343
- #: includes/widgets/htmega_countdown.php:807
2344
- #: includes/widgets/htmega_countdown.php:971
2345
- #: includes/widgets/htmega_countdown.php:1084
2346
- #: includes/widgets/htmega_countdown.php:1169
2347
- #: includes/widgets/htmega_counter.php:261
2348
- #: includes/widgets/htmega_counter.php:523
2349
- #: includes/widgets/htmega_counter.php:646
2350
- #: includes/widgets/htmega_counter.php:914
2351
- #: includes/widgets/htmega_counter.php:1002
2352
- #: includes/widgets/htmega_counter.php:1092
2353
- #: includes/widgets/htmega_custom_event.php:427
2354
- #: includes/widgets/htmega_data_table.php:180
2355
- #: includes/widgets/htmega_data_table.php:542
2356
- #: includes/widgets/htmega_data_table.php:624
2357
- #: includes/widgets/htmega_data_table.php:743
2358
- #: includes/widgets/htmega_double_button.php:276
2359
- #: includes/widgets/htmega_double_button.php:400
2360
- #: includes/widgets/htmega_double_button.php:430
2361
- #: includes/widgets/htmega_double_button.php:496
2362
- #: includes/widgets/htmega_double_button.php:583
2363
- #: includes/widgets/htmega_double_button.php:669
2364
- #: includes/widgets/htmega_double_button.php:755
2365
- #: includes/widgets/htmega_double_button.php:852
2366
- #: includes/widgets/htmega_download_monitor.php:179
2367
- #: includes/widgets/htmega_download_monitor.php:368
2368
- #: includes/widgets/htmega_dropcaps.php:174
2369
- #: includes/widgets/htmega_dropcaps.php:276
2370
- #: includes/widgets/htmega_easy_digital_download.php:291
2371
- #: includes/widgets/htmega_easy_digital_download.php:575
2372
- #: includes/widgets/htmega_easy_digital_download.php:653
2373
- #: includes/widgets/htmega_errorcontent.php:344
2374
- #: includes/widgets/htmega_errorcontent.php:423
2375
- #: includes/widgets/htmega_errorcontent.php:502
2376
- #: includes/widgets/htmega_errorcontent.php:624
2377
- #: includes/widgets/htmega_errorcontent.php:675
2378
- #: includes/widgets/htmega_errorcontent.php:775
2379
- #: includes/widgets/htmega_errorcontent.php:826
2380
- #: includes/widgets/htmega_gallery_justify.php:93
2381
- #: includes/widgets/htmega_googlemap.php:325
2382
- #: includes/widgets/htmega_googlemap.php:466
2383
- #: includes/widgets/htmega_gravity_forms.php:308
2384
- #: includes/widgets/htmega_gravity_forms.php:520
2385
- #: includes/widgets/htmega_gravity_forms.php:605
2386
- #: includes/widgets/htmega_gravity_forms.php:752
2387
- #: includes/widgets/htmega_imagemarker.php:672
2388
- #: includes/widgets/htmega_imagemarker.php:884
2389
- #: includes/widgets/htmega_image_comparison.php:133
2390
- #: includes/widgets/htmega_image_comparison.php:271
2391
- #: includes/widgets/htmega_image_comparison.php:352
2392
- #: includes/widgets/htmega_image_comparison.php:441
2393
- #: includes/widgets/htmega_image_grid.php:229
2394
- #: includes/widgets/htmega_image_grid.php:522
2395
- #: includes/widgets/htmega_image_grid.php:581
2396
- #: includes/widgets/htmega_image_magnifier.php:119
2397
- #: includes/widgets/htmega_image_masonry.php:228
2398
- #: includes/widgets/htmega_image_masonry.php:517
2399
- #: includes/widgets/htmega_image_masonry.php:585
2400
- #: includes/widgets/htmega_inlinemenu.php:209
2401
- #: includes/widgets/htmega_inlinemenu.php:283
2402
- #: includes/widgets/htmega_inlinemenu.php:446
2403
- #: includes/widgets/htmega_instagram.php:714
2404
- #: includes/widgets/htmega_instagram.php:844
2405
- #: includes/widgets/htmega_instagram.php:992
2406
- #: includes/widgets/htmega_instagram.php:1111
2407
- #: includes/widgets/htmega_instagram.php:1171
2408
- #: includes/widgets/htmega_instagram.php:1265
2409
- #: includes/widgets/htmega_instagram.php:1331
2410
- #: includes/widgets/htmega_instagram.php:1468
2411
- #: includes/widgets/htmega_lightbox.php:273
2412
- #: includes/widgets/htmega_lightbox.php:461
2413
- #: includes/widgets/htmega_mailchimp_wp.php:246
2414
- #: includes/widgets/htmega_mailchimp_wp.php:429
2415
- #: includes/widgets/htmega_modal.php:267 includes/widgets/htmega_modal.php:560
2416
- #: includes/widgets/htmega_modal.php:631 includes/widgets/htmega_modal.php:732
2417
- #: includes/widgets/htmega_modal.php:794 includes/widgets/htmega_modal.php:902
2418
- #: includes/widgets/htmega_modal.php:964
2419
- #: includes/widgets/htmega_newsticker.php:379
2420
- #: includes/widgets/htmega_newsticker.php:554
2421
- #: includes/widgets/htmega_newsticker.php:691
2422
- #: includes/widgets/htmega_newsticker.php:810
2423
- #: includes/widgets/htmega_newsticker.php:955
2424
- #: includes/widgets/htmega_ninja_form.php:174
2425
- #: includes/widgets/htmega_ninja_form.php:276
2426
- #: includes/widgets/htmega_ninja_form.php:394
2427
- #: includes/widgets/htmega_ninja_form.php:588
2428
- #: includes/widgets/htmega_ninja_form.php:670
2429
- #: includes/widgets/htmega_ninja_form.php:808
2430
- #: includes/widgets/htmega_ninja_form.php:889
2431
- #: includes/widgets/htmega_ninja_form.php:1011
2432
- #: includes/widgets/htmega_notify.php:358
2433
- #: includes/widgets/htmega_notify.php:510
2434
- #: includes/widgets/htmega_notify.php:813
2435
- #: includes/widgets/htmega_offcanvas.php:462
2436
- #: includes/widgets/htmega_panel_slider.php:566
2437
- #: includes/widgets/htmega_panel_slider.php:871
2438
- #: includes/widgets/htmega_panel_slider.php:1060
2439
- #: includes/widgets/htmega_panel_slider.php:1192
2440
- #: includes/widgets/htmega_panel_slider.php:1231
2441
- #: includes/widgets/htmega_popover.php:413
2442
- #: includes/widgets/htmega_popover.php:570
2443
- #: includes/widgets/htmega_popover.php:646
2444
- #: includes/widgets/htmega_popover.php:750
2445
- #: includes/widgets/htmega_post_grid_tab.php:286
2446
- #: includes/widgets/htmega_post_grid_tab.php:362
2447
- #: includes/widgets/htmega_post_grid_tab.php:915
2448
- #: includes/widgets/htmega_post_grid_tab.php:965
2449
- #: includes/widgets/htmega_post_grid_tab.php:1028
2450
- #: includes/widgets/htmega_post_grid_tab.php:1119
2451
- #: includes/widgets/htmega_post_slider.php:636
2452
- #: includes/widgets/htmega_post_slider.php:789
2453
- #: includes/widgets/htmega_post_slider.php:1342
2454
- #: includes/widgets/htmega_post_slider.php:1392
2455
- #: includes/widgets/htmega_post_slider.php:1602
2456
- #: includes/widgets/htmega_post_slider.php:1722
2457
- #: includes/widgets/htmega_post_slider.php:1847
2458
- #: includes/widgets/htmega_post_slider.php:1886
2459
- #: includes/widgets/htmega_post_slider.php:1958
2460
- #: includes/widgets/htmega_post_slider.php:2035
2461
- #: includes/widgets/htmega_pricing_list_view.php:425
2462
- #: includes/widgets/htmega_pricing_list_view.php:820
2463
- #: includes/widgets/htmega_pricing_list_view.php:943
2464
- #: includes/widgets/htmega_pricing_list_view.php:1054
2465
- #: includes/widgets/htmega_pricing_list_view.php:1273
2466
- #: includes/widgets/htmega_pricing_list_view.php:1352
2467
- #: includes/widgets/htmega_pricing_list_view.php:1443
2468
- #: includes/widgets/htmega_pricing_list_view.php:1480
2469
- #: includes/widgets/htmega_pricing_list_view.php:1586
2470
- #: includes/widgets/htmega_pricing_list_view.php:1744
2471
- #: includes/widgets/htmega_pricing_list_view.php:1821
2472
- #: includes/widgets/htmega_progress_bar.php:505
2473
- #: includes/widgets/htmega_progress_bar.php:714
2474
- #: includes/widgets/htmega_progress_bar.php:806
2475
- #: includes/widgets/htmega_quforms.php:158
2476
- #: includes/widgets/htmega_quforms.php:269
2477
- #: includes/widgets/htmega_quforms.php:449
2478
- #: includes/widgets/htmega_quforms.php:507
2479
- #: includes/widgets/htmega_quforms.php:667
2480
- #: includes/widgets/htmega_quforms.php:725
2481
- #: includes/widgets/htmega_quforms.php:895
2482
- #: includes/widgets/htmega_scroll_image.php:192
2483
- #: includes/widgets/htmega_scroll_image.php:352
2484
- #: includes/widgets/htmega_scroll_navigation.php:344
2485
- #: includes/widgets/htmega_scroll_navigation.php:438
2486
- #: includes/widgets/htmega_search.php:378
2487
- #: includes/widgets/htmega_search.php:591
2488
- #: includes/widgets/htmega_search.php:643
2489
- #: includes/widgets/htmega_search.php:832
2490
- #: includes/widgets/htmega_search.php:994
2491
- #: includes/widgets/htmega_section_title.php:576
2492
- #: includes/widgets/htmega_section_title.php:808
2493
- #: includes/widgets/htmega_section_title.php:990
2494
- #: includes/widgets/htmega_service.php:227
2495
- #: includes/widgets/htmega_service.php:295
2496
- #: includes/widgets/htmega_service.php:704
2497
- #: includes/widgets/htmega_service.php:785
2498
- #: includes/widgets/htmega_service.php:966
2499
- #: includes/widgets/htmega_service.php:1094
2500
- #: includes/widgets/htmega_service.php:1146
2501
- #: includes/widgets/htmega_slider_thumb_gallery.php:883
2502
- #: includes/widgets/htmega_slider_thumb_gallery.php:1028
2503
- #: includes/widgets/htmega_slider_thumb_gallery.php:1100
2504
- #: includes/widgets/htmega_slider_thumb_gallery.php:1194
2505
- #: includes/widgets/htmega_slider_thumb_gallery.php:1238
2506
- #: includes/widgets/htmega_slider_thumb_gallery.php:1311
2507
- #: includes/widgets/htmega_socialshere.php:259
2508
- #: includes/widgets/htmega_socialshere.php:431
2509
- #: includes/widgets/htmega_socialshere.php:600
2510
- #: includes/widgets/htmega_special_day_banner.php:679
2511
- #: includes/widgets/htmega_special_day_banner.php:758
2512
- #: includes/widgets/htmega_switcher.php:308
2513
- #: includes/widgets/htmega_switcher.php:451
2514
- #: includes/widgets/htmega_switcher.php:526
2515
- #: includes/widgets/htmega_switcher.php:621
2516
- #: includes/widgets/htmega_tabs.php:325 includes/widgets/htmega_tabs.php:602
2517
- #: includes/widgets/htmega_tabs.php:654 includes/widgets/htmega_tabs.php:740
2518
- #: includes/widgets/htmega_tabs.php:835 includes/widgets/htmega_tabs.php:900
2519
- #: includes/widgets/htmega_teammember.php:371
2520
- #: includes/widgets/htmega_teammember.php:569
2521
- #: includes/widgets/htmega_teammember.php:1028
2522
- #: includes/widgets/htmega_testimonial_grid.php:315
2523
- #: includes/widgets/htmega_testimonial_grid.php:405
2524
- #: includes/widgets/htmega_testimonial_grid.php:629
2525
- #: includes/widgets/htmega_toggle.php:329
2526
- #: includes/widgets/htmega_tooltip.php:390
2527
- #: includes/widgets/htmega_tooltip.php:534
2528
- #: includes/widgets/htmega_twitter_feed.php:605
2529
- #: includes/widgets/htmega_twitter_feed.php:777
2530
- #: includes/widgets/htmega_twitter_feed.php:1135
2531
- #: includes/widgets/htmega_twitter_feed.php:1272
2532
- #: includes/widgets/htmega_twitter_feed.php:1332
2533
- #: includes/widgets/htmega_twitter_feed.php:1461
2534
- #: includes/widgets/htmega_user_login_form.php:598
2535
- #: includes/widgets/htmega_user_login_form.php:937
2536
- #: includes/widgets/htmega_user_login_form.php:1210
2537
- #: includes/widgets/htmega_user_login_form.php:1262
2538
- #: includes/widgets/htmega_user_login_form.php:1394
2539
- #: includes/widgets/htmega_user_login_form.php:1446
2540
- #: includes/widgets/htmega_user_login_form.php:1536
2541
- #: includes/widgets/htmega_verticle_time_line.php:235
2542
- #: includes/widgets/htmega_verticle_time_line.php:374
2543
- #: includes/widgets/htmega_videoplayer.php:271
2544
- #: includes/widgets/htmega_videoplayer.php:443
2545
- #: includes/widgets/htmega_videoplayer.php:471
2546
- #: includes/widgets/htmega_wc_categories.php:202
2547
- #: includes/widgets/htmega_wc_categories.php:264
2548
- #: includes/widgets/htmega_wc_categories.php:364
2549
- #: includes/widgets/htmega_wc_categories.php:496
2550
- #: includes/widgets/htmega_wc_categories.php:524
2551
- #: includes/widgets/htmega_wc_element_pages.php:175
2552
- #: includes/widgets/htmega_wc_element_pages.php:245
2553
- #: includes/widgets/htmega_wc_element_pages.php:344
2554
- #: includes/widgets/htmega_wc_element_pages.php:435
2555
- #: includes/widgets/htmega_wc_element_pages.php:509
2556
- #: includes/widgets/htmega_wc_element_pages.php:633
2557
- #: includes/widgets/htmega_wc_element_pages.php:826
2558
- #: includes/widgets/htmega_wc_element_pages.php:987
2559
- #: includes/widgets/htmega_wc_element_pages.php:1075
2560
- #: includes/widgets/htmega_wc_element_pages.php:1129
2561
- #: includes/widgets/htmega_wc_element_pages.php:1492
2562
- #: includes/widgets/htmega_wc_element_pages.php:1565
2563
- #: includes/widgets/htmega_wc_element_pages.php:1667
2564
- #: includes/widgets/htmega_wc_element_pages.php:1779
2565
- #: includes/widgets/htmega_wc_element_pages.php:1831
2566
- #: includes/widgets/htmega_working_process.php:440
2567
- #: includes/widgets/htmega_working_process.php:698
2568
- #: includes/widgets/htmega_working_process.php:777
2569
- #: includes/widgets/htmega_working_process.php:877
2570
- #: includes/widgets/htmega_working_process.php:992
2571
- #: includes/widgets/htmega_wpforms.php:166
2572
- #: includes/widgets/htmega_wpforms.php:268
2573
- #: includes/widgets/htmega_wpforms.php:376
2574
- #: includes/widgets/htmega_wpforms.php:591
2575
- #: includes/widgets/htmega_wpforms.php:674
2576
- #: includes/widgets/htmega_wpforms.php:811
2577
- #: includes/widgets/htmega_wpforms.php:892
2578
- #: includes/widgets/htmega_wpforms.php:1038
2579
- #: extensions/ht-builder/widgets/bl_nav_menu.php:193
2580
- #: extensions/ht-builder/widgets/bl_nav_menu.php:265
2581
- #: extensions/ht-builder/widgets/bl_nav_menu.php:318
2582
- #: extensions/ht-builder/widgets/bl_page_title.php:96
2583
- #: extensions/ht-builder/widgets/bl_post_archive.php:286
2584
- #: extensions/ht-builder/widgets/bl_post_archive.php:750
2585
- #: extensions/ht-builder/widgets/bl_post_archive.php:816
2586
- #: extensions/ht-builder/widgets/bl_post_archive.php:886
2587
- #: extensions/ht-builder/widgets/bl_post_archive.php:941
2588
- #: extensions/ht-builder/widgets/bl_post_archive_title.php:98
2589
- #: extensions/ht-builder/widgets/bl_post_author_info.php:182
2590
- #: extensions/ht-builder/widgets/bl_post_search_form.php:139
2591
- #: extensions/ht-builder/widgets/bl_post_search_form.php:224
2592
- #: extensions/ht-builder/widgets/bl_site_logo.php:117
2593
- #: extensions/ht-builder/widgets/bl_site_title.php:98
2594
- #: extensions/ht-menu/widgets/inline-mega-menu.php:131
2595
- #: extensions/ht-menu/widgets/inline-mega-menu.php:251
2596
- #: extensions/ht-menu/widgets/inline-mega-menu.php:381
2597
- #: extensions/ht-menu/widgets/verticle-mega-menu.php:132
2598
- #: extensions/ht-menu/widgets/verticle-mega-menu.php:252
2599
- #: extensions/ht-menu/widgets/verticle-mega-menu.php:339
2600
- msgid "Border Radius"
2601
- msgstr ""
2602
-
2603
- #: includes/widgets/htmega_progress_bar.php:385
2604
- msgid "Border Radius aaa"
2605
- msgstr ""
2606
-
2607
- #: includes/widgets/htmega_newsticker.php:820
2608
- #: includes/widgets/htmega_panel_slider.php:881
2609
- msgid "Border Radius Next Button"
2610
- msgstr ""
2611
-
2612
- #: includes/widgets/htmega_add_banner.php:231
2613
- #: includes/widgets/htmega_service.php:802
2614
- msgid "Border Style"
2615
- msgstr ""
2616
-
2617
- #: includes/widgets/htmega_counter.php:784
2618
- #: includes/widgets/htmega_section_title.php:725
2619
- #: includes/widgets/htmega_section_title.php:887
2620
- #: includes/widgets/htmega_working_process.php:249
2621
- msgid "Border Width"
2622
- msgstr ""
2623
-
2624
- #: includes/widgets/htmega_pricing_list_view.php:586
2625
- msgid "Both"
2626
- msgstr ""
2627
-
2628
- #: includes/widgets/htmega_add_banner.php:64
2629
- #: includes/widgets/htmega_button.php:121
2630
- #: includes/widgets/htmega_imagemarker.php:215
2631
- #: includes/widgets/htmega_image_comparison.php:187
2632
- #: includes/widgets/htmega_offcanvas.php:106
2633
- #: includes/widgets/htmega_popover.php:196
2634
- #: includes/widgets/htmega_pricing_list_view.php:516
2635
- #: includes/widgets/htmega_pricing_list_view.php:1171
2636
- #: includes/widgets/htmega_pricing_list_view.php:1201
2637
- #: includes/widgets/htmega_section_title.php:165
2638
- #: includes/widgets/htmega_section_title.php:240
2639
- #: includes/widgets/htmega_singlepost.php:62
2640
- #: includes/widgets/htmega_slider_thumb_gallery.php:54
2641
- #: includes/widgets/htmega_special_day_banner.php:48
2642
- #: includes/widgets/htmega_teammember.php:108
2643
- #: includes/widgets/htmega_tooltip.php:184
2644
- #: extensions/ht-builder/widgets/bl_post_author_info.php:124
2645
- msgid "Bottom"
2646
- msgstr ""
2647
-
2648
- #: includes/widgets/htmega_notify.php:117
2649
- msgid "Bottom Center"
2650
- msgstr ""
2651
-
2652
- #: includes/widgets/htmega_notify.php:120
2653
- msgid "Bottom Fullwidth"
2654
- msgstr ""
2655
-
2656
- #: includes/widgets/htmega_notify.php:116
2657
- #: extensions/wc-sales-notification/admin/setting.php:82
2658
- msgid "Bottom Left"
2659
- msgstr ""
2660
-
2661
- #: includes/widgets/htmega_notify.php:118
2662
- msgid "Bottom Right"
2663
- msgstr ""
2664
-
2665
- #: includes/widgets/htmega_notify.php:166
2666
- #: includes/widgets/htmega_notify.php:201
2667
- msgid "bounceIn"
2668
- msgstr ""
2669
-
2670
- #: includes/widgets/htmega_notify.php:167
2671
- #: includes/widgets/htmega_notify.php:202
2672
- msgid "bounceInDown"
2673
- msgstr ""
2674
-
2675
- #: includes/widgets/htmega_notify.php:168
2676
- #: includes/widgets/htmega_notify.php:203
2677
- msgid "bounceInLeft"
2678
- msgstr ""
2679
-
2680
- #: includes/widgets/htmega_notify.php:169
2681
- #: includes/widgets/htmega_notify.php:204
2682
- msgid "bounceInRight"
2683
- msgstr ""
2684
-
2685
- #: includes/widgets/htmega_notify.php:170
2686
- #: includes/widgets/htmega_notify.php:205
2687
- msgid "bounceInUp"
2688
- msgstr ""
2689
-
2690
- #: includes/widgets/htmega_notify.php:148
2691
- #: includes/widgets/htmega_notify.php:183
2692
- msgid "bounceOut"
2693
- msgstr ""
2694
-
2695
- #: includes/widgets/htmega_notify.php:149
2696
- #: includes/widgets/htmega_notify.php:184
2697
- msgid "bounceOutDown"
2698
- msgstr ""
2699
-
2700
- #: includes/widgets/htmega_notify.php:150
2701
- #: includes/widgets/htmega_notify.php:185
2702
- msgid "bounceOutLeft"
2703
- msgstr ""
2704
-
2705
- #: includes/widgets/htmega_notify.php:151
2706
- #: includes/widgets/htmega_notify.php:186
2707
- msgid "bounceOutRight"
2708
- msgstr ""
2709
-
2710
- #: includes/widgets/htmega_notify.php:152
2711
- #: includes/widgets/htmega_notify.php:187
2712
- msgid "bounceOutUp"
2713
- msgstr ""
2714
-
2715
- #: includes/widgets/htmega_counter.php:350
2716
- msgid "Box Width"
2717
- msgstr ""
2718
-
2719
- #: includes/widgets/htmega_verticle_time_line.php:473
2720
- msgid "Box Background"
2721
- msgstr ""
2722
-
2723
- #: includes/widgets/htmega_verticle_time_line.php:391
2724
- msgid "Box Border"
2725
- msgstr ""
2726
-
2727
- #: includes/widgets/htmega_counter.php:380
2728
- msgid "Box Height"
2729
- msgstr ""
2730
-
2731
- #: includes/widgets/htmega_newsticker.php:661
2732
- msgid "Box Height and Width"
2733
- msgstr ""
2734
-
2735
- #: includes/widgets/htmega_carousel.php:421
2736
- msgid "Box Option"
2737
- msgstr ""
2738
-
2739
- #: includes/widgets/htmega_accordion.php:633
2740
- #: includes/widgets/htmega_accordion.php:717
2741
- #: includes/widgets/htmega_accordion.php:887
2742
- #: includes/widgets/htmega_accordion.php:987
2743
- #: includes/widgets/htmega_accordion.php:1171
2744
- #: includes/widgets/htmega_accordion.php:1282
2745
- #: includes/widgets/htmega_accordion.php:1419
2746
- #: includes/widgets/htmega_animated_heading.php:214
2747
- #: includes/widgets/htmega_animated_heading.php:345
2748
- #: includes/widgets/htmega_animated_heading.php:433
2749
- #: includes/widgets/htmega_brand.php:191 includes/widgets/htmega_brand.php:216
2750
- #: includes/widgets/htmega_brand.php:252 includes/widgets/htmega_brand.php:277
2751
- #: includes/widgets/htmega_buddy_press.php:215
2752
- #: includes/widgets/htmega_business_hours.php:289
2753
- #: includes/widgets/htmega_business_hours.php:365
2754
- #: includes/widgets/htmega_business_hours.php:493
2755
- #: includes/widgets/htmega_button.php:295
2756
- #: includes/widgets/htmega_button.php:410
2757
- #: includes/widgets/htmega_button.php:599
2758
- #: includes/widgets/htmega_caldera_form.php:336
2759
- #: includes/widgets/htmega_caldera_form.php:423
2760
- #: includes/widgets/htmega_call_to_action.php:392
2761
- #: includes/widgets/htmega_call_to_action.php:469
2762
- #: includes/widgets/htmega_call_to_action.php:777
2763
- #: includes/widgets/htmega_call_to_action.php:868
2764
- #: includes/widgets/htmega_call_to_action.php:983
2765
- #: includes/widgets/htmega_call_to_action.php:1074
2766
- #: includes/widgets/htmega_contact_form_seven.php:356
2767
- #: includes/widgets/htmega_contact_form_seven.php:432
2768
- #: includes/widgets/htmega_contact_form_seven.php:572
2769
- #: includes/widgets/htmega_contact_form_seven.php:631
2770
- #: includes/widgets/htmega_contact_form_seven.php:894
2771
- #: includes/widgets/htmega_countdown.php:526
2772
- #: includes/widgets/htmega_counter.php:275
2773
- #: includes/widgets/htmega_data_table.php:190
2774
- #: includes/widgets/htmega_data_table.php:553
2775
- #: includes/widgets/htmega_double_button.php:289
2776
- #: includes/widgets/htmega_double_button.php:519
2777
- #: includes/widgets/htmega_double_button.php:606
2778
- #: includes/widgets/htmega_double_button.php:692
2779
- #: includes/widgets/htmega_double_button.php:778
2780
- #: includes/widgets/htmega_double_button.php:875
2781
- #: includes/widgets/htmega_gallery_justify.php:106
2782
- #: includes/widgets/htmega_gravity_forms.php:532
2783
- #: includes/widgets/htmega_gravity_forms.php:617
2784
- #: includes/widgets/htmega_gravity_forms.php:764
2785
- #: includes/widgets/htmega_image_grid.php:244
2786
- #: includes/widgets/htmega_image_grid.php:492
2787
- #: includes/widgets/htmega_image_grid.php:564
2788
- #: includes/widgets/htmega_image_magnifier.php:133
2789
- #: includes/widgets/htmega_image_masonry.php:243
2790
- #: includes/widgets/htmega_image_masonry.php:487
2791
- #: includes/widgets/htmega_image_masonry.php:568
2792
- #: includes/widgets/htmega_inlinemenu.php:223
2793
- #: includes/widgets/htmega_lightbox.php:285
2794
- #: includes/widgets/htmega_lightbox.php:473
2795
- #: includes/widgets/htmega_mailchimp_wp.php:442
2796
- #: includes/widgets/htmega_modal.php:240 includes/widgets/htmega_modal.php:604
2797
- #: includes/widgets/htmega_ninja_form.php:600
2798
- #: includes/widgets/htmega_ninja_form.php:682
2799
- #: includes/widgets/htmega_ninja_form.php:843
2800
- #: includes/widgets/htmega_ninja_form.php:900
2801
- #: includes/widgets/htmega_ninja_form.php:1023
2802
- #: includes/widgets/htmega_notify.php:381
2803
- #: includes/widgets/htmega_panel_slider.php:589
2804
- #: includes/widgets/htmega_panel_slider.php:893
2805
- #: includes/widgets/htmega_panel_slider.php:1071
2806
- #: includes/widgets/htmega_popover.php:552
2807
- #: includes/widgets/htmega_progress_bar.php:520
2808
- #: includes/widgets/htmega_progress_bar.php:728
2809
- #: includes/widgets/htmega_progress_bar.php:820
2810
- #: includes/widgets/htmega_quforms.php:461
2811
- #: includes/widgets/htmega_quforms.php:518
2812
- #: includes/widgets/htmega_quforms.php:678
2813
- #: includes/widgets/htmega_quforms.php:736
2814
- #: includes/widgets/htmega_quforms.php:907
2815
- #: includes/widgets/htmega_quforms.php:956
2816
- #: includes/widgets/htmega_scroll_image.php:230
2817
- #: includes/widgets/htmega_section_title.php:972
2818
- #: includes/widgets/htmega_socialshere.php:456
2819
- #: includes/widgets/htmega_teammember.php:399
2820
- #: includes/widgets/htmega_teammember.php:1039
2821
- #: includes/widgets/htmega_testimonial_grid.php:326
2822
- #: includes/widgets/htmega_testimonial_grid.php:375
2823
- #: includes/widgets/htmega_testimonial_grid.php:669
2824
- #: includes/widgets/htmega_twitter_feed.php:562
2825
- #: includes/widgets/htmega_user_login_form.php:634
2826
- #: includes/widgets/htmega_verticle_time_line.php:262
2827
- #: includes/widgets/htmega_videoplayer.php:284
2828
- #: includes/widgets/htmega_wc_categories.php:227
2829
- #: includes/widgets/htmega_wc_element_pages.php:608
2830
- #: includes/widgets/htmega_wc_element_pages.php:874
2831
- #: includes/widgets/htmega_wc_element_pages.php:1430
2832
- #: includes/widgets/htmega_weather.php:307
2833
- #: includes/widgets/htmega_working_process.php:812
2834
- #: includes/widgets/htmega_working_process.php:1053
2835
- #: includes/widgets/htmega_wpforms.php:603
2836
- #: includes/widgets/htmega_wpforms.php:686
2837
- #: includes/widgets/htmega_wpforms.php:822
2838
- #: includes/widgets/htmega_wpforms.php:903
2839
- #: includes/widgets/htmega_wpforms.php:1050
2840
- #: includes/widgets/htmega_wpforms.php:1122
2841
- #: extensions/ht-builder/widgets/bl_nav_menu.php:206
2842
- #: extensions/ht-builder/widgets/bl_nav_menu.php:363
2843
- msgid "Box Shadow"
2844
- msgstr ""
2845
-
2846
- #: includes/widgets/htmega_double_button.php:805
2847
- msgid "Box Size"
2848
- msgstr ""
2849
-
2850
- #: includes/widgets/htmega_add_banner.php:146
2851
- #: includes/widgets/htmega_call_to_action.php:318
2852
- #: includes/widgets/htmega_counter.php:194
2853
- #: includes/widgets/htmega_image_comparison.php:93
2854
- #: includes/widgets/htmega_image_grid.php:186
2855
- #: includes/widgets/htmega_image_masonry.php:175
2856
- #: includes/widgets/htmega_lightbox.php:184
2857
- #: includes/widgets/htmega_service.php:165
2858
- #: includes/widgets/htmega_working_process.php:191
2859
- msgid "Box Style"
2860
- msgstr ""
2861
-
2862
- #: includes/widgets/htmega_verticle_time_line.php:432
2863
- msgid "Box Style Reverse"
2864
- msgstr ""
2865
-
2866
- #: includes/widgets/htmega_post_slider.php:805
2867
- msgid "Box Width"
2868
- msgstr ""
2869
-
2870
- #: includes/widgets/htmega_brand.php:157
2871
- msgid "Brand Logo"
2872
- msgstr ""
2873
-
2874
- #: admin/include/admin-setting.php:159 includes/widgets/htmega_brand.php:13
2875
- #: includes/widgets/htmega_brand.php:35
2876
- msgid "Brands"
2877
- msgstr ""
2878
-
2879
- #: includes/widgets/htmega_newsticker.php:76
2880
- msgid "Breaking News"
2881
- msgstr ""
2882
-
2883
- #: admin/include/admin-setting.php:939
2884
- #: includes/widgets/htmega_buddy_press.php:13
2885
- #: includes/widgets/htmega_buddy_press.php:41
2886
- msgid "BuddyPress"
2887
- msgstr ""
2888
-
2889
- #: includes/widgets/htmega_socialshere.php:81
2890
- msgid "Buffer"
2891
- msgstr ""
2892
-
2893
- #: includes/widgets/htmega_business_hours.php:60
2894
- msgid "Business Hour Title"
2895
- msgstr ""
2896
-
2897
- #: admin/include/admin-setting.php:167
2898
- #: includes/widgets/htmega_business_hours.php:14
2899
- #: includes/widgets/htmega_business_hours.php:36
2900
- msgid "Business Hours"
2901
- msgstr ""
2902
-
2903
- #: includes/widgets/htmega_business_hours.php:71
2904
- msgid "Business Hours​"
2905
- msgstr ""
2906
-
2907
- #: admin/include/admin-setting.php:175
2908
- #: includes/widgets/htmega_add_banner.php:607
2909
- #: includes/widgets/htmega_button.php:13 includes/widgets/htmega_button.php:39
2910
- #: includes/widgets/htmega_contact_form_seven.php:756
2911
- #: includes/widgets/htmega_custom_event.php:378
2912
- #: includes/widgets/htmega_double_button.php:101
2913
- #: includes/widgets/htmega_double_button.php:188
2914
- #: includes/widgets/htmega_double_button.php:314
2915
- #: includes/widgets/htmega_download_monitor.php:110
2916
- #: includes/widgets/htmega_easy_digital_download.php:520
2917
- #: includes/widgets/htmega_errorcontent.php:126
2918
- #: includes/widgets/htmega_gravity_forms.php:630
2919
- #: includes/widgets/htmega_lightbox.php:118
2920
- #: includes/widgets/htmega_mailchimp_wp.php:290
2921
- #: includes/widgets/htmega_modal.php:103 includes/widgets/htmega_modal.php:202
2922
- #: includes/widgets/htmega_ninja_form.php:913
2923
- #: includes/widgets/htmega_notify.php:51 includes/widgets/htmega_notify.php:311
2924
- #: includes/widgets/htmega_offcanvas.php:176
2925
- #: includes/widgets/htmega_offcanvas.php:404
2926
- #: includes/widgets/htmega_popover.php:321
2927
- #: includes/widgets/htmega_pricing_list_view.php:590
2928
- #: includes/widgets/htmega_quforms.php:749
2929
- #: includes/widgets/htmega_service.php:1010
2930
- #: includes/widgets/htmega_special_day_banner.php:630
2931
- #: includes/widgets/htmega_toggle.php:184
2932
- #: includes/widgets/htmega_tooltip.php:297
2933
- #: includes/widgets/htmega_videoplayer.php:325
2934
- #: includes/widgets/htmega_wc_element_pages.php:1509
2935
- #: includes/widgets/htmega_wpforms.php:916
2936
- #: extensions/ht-builder/widgets/bl_post_search_form.php:166
2937
- msgid "Button"
2938
- msgstr ""
2939
-
2940
- #: includes/widgets/htmega_double_button.php:268
2941
- msgid "Button Area"
2942
- msgstr ""
2943
-
2944
- #: includes/widgets/htmega_pricing_list_view.php:870
2945
- msgid "Button Background"
2946
- msgstr ""
2947
-
2948
- #: includes/widgets/htmega_tooltip.php:229
2949
- msgid "Button Box Style"
2950
- msgstr ""
2951
-
2952
- #: includes/widgets/htmega_pricing_list_view.php:882
2953
- msgid "Button Hover Background"
2954
- msgstr ""
2955
-
2956
- #: includes/widgets/htmega_button.php:418
2957
- msgid "Button Hover Effect"
2958
- msgstr ""
2959
-
2960
- #: includes/widgets/htmega_button.php:481
2961
- msgid "Button Hover Shadow"
2962
- msgstr ""
2963
-
2964
- #: includes/widgets/htmega_instagram.php:1367
2965
- #: includes/widgets/htmega_offcanvas.php:191
2966
- #: includes/widgets/htmega_videoplayer.php:111
2967
- msgid "Button Icon"
2968
- msgstr ""
2969
-
2970
- #: includes/widgets/htmega_search.php:68
2971
- msgid "Button Icon Type"
2972
- msgstr ""
2973
-
2974
- #: includes/widgets/htmega_errorcontent.php:152
2975
- #: includes/widgets/htmega_errorcontent.php:200
2976
- msgid "Button Icons"
2977
- msgstr ""
2978
-
2979
- #: includes/widgets/htmega_videoplayer.php:122
2980
- msgid "Button Infinity Animation"
2981
- msgstr ""
2982
-
2983
- #: includes/widgets/htmega_socialshere.php:614
2984
- msgid "Button Line Height"
2985
- msgstr ""
2986
-
2987
- #: includes/widgets/htmega_call_to_action.php:239
2988
- #: includes/widgets/htmega_errorcontent.php:164
2989
- #: includes/widgets/htmega_errorcontent.php:212
2990
- msgid "Button Link"
2991
- msgstr ""
2992
-
2993
- #: includes/widgets/htmega_double_button.php:93
2994
- #: includes/widgets/htmega_double_button.php:448
2995
- msgid "Button One"
2996
- msgstr ""
2997
-
2998
- #: includes/widgets/htmega_pricing_list_view.php:929
2999
- msgid "Button Padding"
3000
- msgstr ""
3001
-
3002
- #: includes/widgets/htmega_button.php:89
3003
- #: includes/widgets/htmega_double_button.php:42
3004
- msgid "Button Size"
3005
- msgstr ""
3006
-
3007
- #: includes/widgets/htmega_button.php:46 includes/widgets/htmega_button.php:190
3008
- #: includes/widgets/htmega_countdown.php:1015
3009
- #: includes/widgets/htmega_download_monitor.php:136
3010
- #: includes/widgets/htmega_wc_element_pages.php:923
3011
- msgid "Button Style"
3012
- msgstr ""
3013
-
3014
- #: includes/widgets/htmega_add_banner.php:134
3015
- #: includes/widgets/htmega_add_banner.php:136
3016
- #: includes/widgets/htmega_call_to_action.php:138
3017
- #: includes/widgets/htmega_call_to_action.php:232
3018
- #: includes/widgets/htmega_errorcontent.php:142
3019
- #: includes/widgets/htmega_errorcontent.php:191
3020
- #: includes/widgets/htmega_notify.php:58
3021
- #: includes/widgets/htmega_offcanvas.php:182
3022
- #: includes/widgets/htmega_popover.php:72
3023
- #: includes/widgets/htmega_special_day_banner.php:138
3024
- #: includes/widgets/htmega_special_day_banner.php:140
3025
- #: includes/widgets/htmega_user_login_form.php:358
3026
- #: includes/widgets/htmega_videoplayer.php:70
3027
- #: extensions/ht-builder/widgets/bl_post_search_form.php:86
3028
- msgid "Button Text"
3029
- msgstr ""
3030
-
3031
- #: includes/widgets/htmega_double_button.php:180
3032
- #: includes/widgets/htmega_double_button.php:621
3033
- msgid "Button Two"
3034
- msgstr ""
3035
-
3036
- #: includes/widgets/htmega_popover.php:48
3037
- #: includes/widgets/htmega_tooltip.php:48
3038
- #: extensions/ht-builder/widgets/bl_post_search_form.php:54
3039
- msgid "Button Type"
3040
- msgstr ""
3041
-
3042
- #: includes/widgets/htmega_double_button.php:347
3043
- msgid "Button Width"
3044
- msgstr ""
3045
-
3046
- #: includes/class.assests.php:386 admin/include/admin-setting.php:1289
3047
- #: admin/include/template-library.php:280
3048
- #: admin/include/template-library.php:332
3049
- #: includes/recommended-plugins/class.recommended-plugins.php:122
3050
- #: includes/recommended-plugins/class.recommended-plugins.php:284
3051
- msgid "Buy Now"
3052
- msgstr ""
3053
-
3054
- #: includes/recommended-plugins/class.recommended-plugins.php:270
3055
- msgid "By "
3056
- msgstr ""
3057
-
3058
- #: includes/widgets/htmega_easy_digital_download.php:142
3059
- #: includes/widgets/htmega_wc_categories.php:82
3060
- msgid "By Parent"
3061
- msgstr ""
3062
-
3063
- #: includes/widgets/htmega_weather.php:57
3064
- msgid "C"
3065
- msgstr ""
3066
-
3067
- #: includes/widgets/htmega_instagram.php:108
3068
- msgid "Cache Time Duration"
3069
- msgstr ""
3070
-
3071
- #: admin/include/admin-setting.php:949
3072
- #: includes/widgets/htmega_caldera_form.php:13
3073
- #: includes/widgets/htmega_caldera_form.php:41
3074
- msgid "Caldera Form"
3075
- msgstr ""
3076
-
3077
- #: includes/widgets/htmega_booked_calender.php:874
3078
- msgid "Calendar"
3079
- msgstr ""
3080
-
3081
- #: includes/widgets/htmega_booked_calender.php:896
3082
- msgid "Calendar Icon Background"
3083
- msgstr ""
3084
-
3085
- #: includes/widgets/htmega_booked_calender.php:885
3086
- msgid "Calendar Icon Color"
3087
- msgstr ""
3088
-
3089
- #: includes/widgets/htmega_booked_calender.php:938
3090
- msgid "Calendar Icon Padding"
3091
- msgstr ""
3092
-
3093
- #: includes/widgets/htmega_booked_calender.php:918
3094
- msgid "Calendar Icon Radius"
3095
- msgstr ""
3096
-
3097
- #: includes/widgets/htmega_booked_calender.php:162
3098
- msgid "Calendar Size"
3099
- msgstr ""
3100
-
3101
- #: admin/include/admin-setting.php:183
3102
- #: includes/widgets/htmega_call_to_action.php:13
3103
- #: includes/widgets/htmega_call_to_action.php:32
3104
- msgid "Call To Action"
3105
- msgstr ""
3106
-
3107
- #: includes/widgets/htmega_instagram.php:858
3108
- msgid "Caption"
3109
- msgstr ""
3110
-
3111
- #: includes/widgets/htmega_testimonial_grid.php:168
3112
- #: includes/widgets/htmega_testimonial_grid.php:226
3113
- msgid "Carolina Monntoya"
3114
- msgstr ""
3115
-
3116
- #: admin/include/admin-setting.php:191 includes/widgets/htmega_carousel.php:13
3117
- #: includes/widgets/htmega_carousel.php:43
3118
- msgid "Carousel"
3119
- msgstr ""
3120
-
3121
- #: includes/widgets/htmega_wc_element_pages.php:58
3122
- msgid "Cart Page"
3123
- msgstr ""
3124
-
3125
- #: includes/widgets/htmega_easy_digital_download.php:156
3126
- #: includes/widgets/htmega_newsticker.php:204
3127
- #: includes/widgets/htmega_newsticker.php:218
3128
- #: includes/widgets/htmega_postgrid.php:79
3129
- #: includes/widgets/htmega_postgrid.php:93
3130
- #: includes/widgets/htmega_post_grid_tab.php:86
3131
- #: includes/widgets/htmega_post_grid_tab.php:100
3132
- #: includes/widgets/htmega_post_slider.php:90
3133
- #: includes/widgets/htmega_post_slider.php:104
3134
- #: includes/widgets/htmega_wc_categories.php:34
3135
- #: includes/widgets/htmega_wc_categories.php:96
3136
- msgid "Categories"
3137
- msgstr ""
3138
-
3139
- #: includes/widgets/htmega_postgrid.php:189
3140
- #: includes/widgets/htmega_postgrid.php:658
3141
- #: includes/widgets/htmega_post_grid_tab.php:213
3142
- #: includes/widgets/htmega_post_grid_tab.php:610
3143
- #: includes/widgets/htmega_post_slider.php:245
3144
- #: includes/widgets/htmega_post_slider.php:1045
3145
- #: includes/widgets/htmega_singlepost.php:120
3146
- #: includes/widgets/htmega_singlepost.php:249
3147
- #: extensions/ht-builder/widgets/bl_post_archive.php:539
3148
- msgid "Category"
3149
- msgstr ""
3150
-
3151
- #: includes/widgets/htmega_wc_categories.php:165
3152
- msgid "Category Area"
3153
- msgstr ""
3154
-
3155
- #: includes/widgets/htmega_data_table.php:267
3156
- #: includes/widgets/htmega_pricing_list_view.php:600
3157
- msgid "Cell Content"
3158
- msgstr ""
3159
-
3160
- #: includes/widgets/htmega_data_table.php:280
3161
- msgid "Cell Icon"
3162
- msgstr ""
3163
-
3164
- #: includes/widgets/htmega_data_table.php:337
3165
- msgid "Cell Image"
3166
- msgstr ""
3167
-
3168
- #: includes/widgets/htmega_pricing_list_view.php:617
3169
- msgid "Cell Label"
3170
- msgstr ""
3171
-
3172
- #: includes/widgets/htmega_data_table.php:410
3173
- msgid "Cell Styles"
3174
- msgstr ""
3175
-
3176
- #: includes/widgets/htmega_accordion.php:571
3177
- #: includes/widgets/htmega_accordion.php:762
3178
- #: includes/widgets/htmega_accordion.php:920
3179
- #: includes/widgets/htmega_accordion.php:1318
3180
- #: includes/widgets/htmega_accordion.php:1436
3181
- #: includes/widgets/htmega_add_banner.php:63
3182
- #: includes/widgets/htmega_add_banner.php:372
3183
- #: includes/widgets/htmega_blockquote.php:187
3184
- #: includes/widgets/htmega_buddy_press.php:258
3185
- #: includes/widgets/htmega_business_hours.php:395
3186
- #: includes/widgets/htmega_button.php:165
3187
- #: includes/widgets/htmega_caldera_form.php:76
3188
- #: includes/widgets/htmega_caldera_form.php:351
3189
- #: includes/widgets/htmega_call_to_action.php:334
3190
- #: includes/widgets/htmega_carousel.php:841
3191
- #: includes/widgets/htmega_contact_form_seven.php:121
3192
- #: includes/widgets/htmega_countdown.php:615
3193
- #: includes/widgets/htmega_countdown.php:647
3194
- #: includes/widgets/htmega_counter.php:292
3195
- #: includes/widgets/htmega_counter.php:325
3196
- #: includes/widgets/htmega_counter.php:431
3197
- #: includes/widgets/htmega_counter.php:557
3198
- #: includes/widgets/htmega_data_table.php:643
3199
- #: includes/widgets/htmega_data_table.php:762
3200
- #: includes/widgets/htmega_double_button.php:329
3201
- #: includes/widgets/htmega_dropcaps.php:88
3202
- #: includes/widgets/htmega_easy_digital_download.php:322
3203
- #: includes/widgets/htmega_easy_digital_download.php:690
3204
- #: includes/widgets/htmega_errorcontent.php:253
3205
- #: includes/widgets/htmega_gravity_forms.php:153
3206
- #: includes/widgets/htmega_gravity_forms.php:209
3207
- #: includes/widgets/htmega_gravity_forms.php:243
3208
- #: includes/widgets/htmega_gravity_forms.php:548
3209
- #: includes/widgets/htmega_gravity_forms.php:779
3210
- #: includes/widgets/htmega_imagemarker.php:714
3211
- #: includes/widgets/htmega_image_comparison.php:186
3212
- #: includes/widgets/htmega_image_grid.php:287
3213
- #: includes/widgets/htmega_image_grid.php:384
3214
- #: includes/widgets/htmega_image_masonry.php:271
3215
- #: includes/widgets/htmega_image_masonry.php:368
3216
- #: includes/widgets/htmega_inlinemenu.php:125
3217
- #: includes/widgets/htmega_instagram.php:1488
3218
- #: includes/widgets/htmega_lightbox.php:200
3219
- #: includes/widgets/htmega_lightbox.php:313
3220
- #: includes/widgets/htmega_mailchimp_wp.php:133
3221
- #: includes/widgets/htmega_modal.php:354 includes/widgets/htmega_modal.php:1009
3222
- #: includes/widgets/htmega_newsticker.php:464
3223
- #: includes/widgets/htmega_ninja_form.php:192
3224
- #: includes/widgets/htmega_ninja_form.php:294
3225
- #: includes/widgets/htmega_ninja_form.php:328
3226
- #: includes/widgets/htmega_ninja_form.php:615
3227
- #: includes/widgets/htmega_ninja_form.php:826
3228
- #: includes/widgets/htmega_ninja_form.php:1038
3229
- #: includes/widgets/htmega_notify.php:286
3230
- #: includes/widgets/htmega_notify.php:566
3231
- #: includes/widgets/htmega_notify.php:832
3232
- #: includes/widgets/htmega_offcanvas.php:287
3233
- #: includes/widgets/htmega_offcanvas.php:379
3234
- #: includes/widgets/htmega_panel_slider.php:607
3235
- #: includes/widgets/htmega_popover.php:269
3236
- #: includes/widgets/htmega_popover.php:665
3237
- #: includes/widgets/htmega_popover.php:769
3238
- #: includes/widgets/htmega_postgrid.php:297
3239
- #: includes/widgets/htmega_postgrid.php:521
3240
- #: includes/widgets/htmega_postgrid.php:634
3241
- #: includes/widgets/htmega_post_grid_tab.php:405
3242
- #: includes/widgets/htmega_post_grid_tab.php:499
3243
- #: includes/widgets/htmega_post_grid_tab.php:586
3244
- #: includes/widgets/htmega_post_grid_tab.php:809
3245
- #: includes/widgets/htmega_post_slider.php:840
3246
- #: includes/widgets/htmega_post_slider.php:934
3247
- #: includes/widgets/htmega_post_slider.php:1021
3248
- #: includes/widgets/htmega_post_slider.php:1237
3249
- #: includes/widgets/htmega_pricing_list_view.php:477
3250
- #: includes/widgets/htmega_pricing_list_view.php:1132
3251
- #: includes/widgets/htmega_quforms.php:94
3252
- #: includes/widgets/htmega_quforms.php:214
3253
- #: includes/widgets/htmega_quforms.php:335
3254
- #: includes/widgets/htmega_quforms.php:555
3255
- #: includes/widgets/htmega_quforms.php:773
3256
- #: includes/widgets/htmega_search.php:160
3257
- #: includes/widgets/htmega_section_title.php:161
3258
- #: includes/widgets/htmega_section_title.php:419
3259
- #: includes/widgets/htmega_service.php:245
3260
- #: includes/widgets/htmega_service.php:429
3261
- #: includes/widgets/htmega_service.php:534
3262
- #: includes/widgets/htmega_service.php:723
3263
- #: includes/widgets/htmega_service.php:985
3264
- #: includes/widgets/htmega_singlepost.php:225
3265
- #: includes/widgets/htmega_singlepost.php:321
3266
- #: includes/widgets/htmega_singlepost.php:428
3267
- #: includes/widgets/htmega_socialshere.php:378
3268
- #: includes/widgets/htmega_special_day_banner.php:47
3269
- #: includes/widgets/htmega_special_day_banner.php:269
3270
- #: includes/widgets/htmega_tablepress.php:217
3271
- #: includes/widgets/htmega_tablepress.php:374
3272
- #: includes/widgets/htmega_tabs.php:517
3273
- #: includes/widgets/htmega_teammember.php:620
3274
- #: includes/widgets/htmega_teammember.php:749
3275
- #: includes/widgets/htmega_teammember.php:839
3276
- #: includes/widgets/htmega_teammember.php:930
3277
- #: includes/widgets/htmega_teammember.php:997
3278
- #: includes/widgets/htmega_testimonial_grid.php:557
3279
- #: includes/widgets/htmega_toggle.php:200
3280
- #: includes/widgets/htmega_tooltip.php:245
3281
- #: includes/widgets/htmega_user_login_form.php:153
3282
- #: includes/widgets/htmega_user_login_form.php:375
3283
- #: includes/widgets/htmega_user_login_form.php:431
3284
- #: includes/widgets/htmega_user_login_form.php:575
3285
- #: includes/widgets/htmega_videoplayer.php:300
3286
- #: includes/widgets/htmega_wc_categories.php:384
3287
- #: includes/widgets/htmega_wpforms.php:184
3288
- #: includes/widgets/htmega_wpforms.php:286
3289
- #: includes/widgets/htmega_wpforms.php:321
3290
- #: includes/widgets/htmega_wpforms.php:618
3291
- #: includes/widgets/htmega_wpforms.php:837
3292
- #: includes/widgets/htmega_wpforms.php:1065
3293
- #: extensions/ht-builder/widgets/bl_nav_menu.php:119
3294
- #: extensions/ht-builder/widgets/bl_nav_menu.php:499
3295
- #: extensions/ht-builder/widgets/bl_page_title.php:141
3296
- #: extensions/ht-builder/widgets/bl_post_archive.php:306
3297
- #: extensions/ht-builder/widgets/bl_post_archive.php:387
3298
- #: extensions/ht-builder/widgets/bl_post_archive.php:494
3299
- #: extensions/ht-builder/widgets/bl_post_archive.php:600
3300
- #: extensions/ht-builder/widgets/bl_post_archive.php:680
3301
- #: extensions/ht-builder/widgets/bl_post_archive_title.php:143
3302
- #: extensions/ht-builder/widgets/bl_post_content.php:76
3303
- #: extensions/ht-builder/widgets/bl_post_excerpt.php:76
3304
- #: extensions/ht-builder/widgets/bl_post_featured_image.php:75
3305
- #: extensions/ht-builder/widgets/bl_post_title.php:109
3306
- #: extensions/ht-builder/widgets/bl_site_logo.php:163
3307
- #: extensions/ht-builder/widgets/bl_site_title.php:143
3308
- #: extensions/ht-menu/widgets/inline-mega-menu.php:170
3309
- #: extensions/ht-menu/widgets/verticle-mega-menu.php:171
3310
- msgid "Center"
3311
- msgstr ""
3312
-
3313
- #: includes/widgets/htmega_googlemap.php:100
3314
- msgid "Center Address"
3315
- msgstr ""
3316
-
3317
- #: includes/widgets/htmega_blockquote.php:158
3318
- msgid "Center Bottom"
3319
- msgstr ""
3320
-
3321
- #: includes/widgets/htmega_blockquote.php:157
3322
- msgid "Center Center"
3323
- msgstr ""
3324
-
3325
- #: includes/widgets/htmega_carousel.php:225
3326
- #: includes/widgets/htmega_instagram.php:420
3327
- #: includes/widgets/htmega_panel_slider.php:325
3328
- #: includes/widgets/htmega_post_slider.php:405
3329
- #: includes/widgets/htmega_slider_thumb_gallery.php:222
3330
- #: includes/widgets/htmega_twitter_feed.php:347
3331
- msgid "Center Mode"
3332
- msgstr ""
3333
-
3334
- #: includes/widgets/htmega_carousel.php:238
3335
- #: includes/widgets/htmega_instagram.php:433
3336
- #: includes/widgets/htmega_panel_slider.php:338
3337
- #: includes/widgets/htmega_post_slider.php:418
3338
- #: includes/widgets/htmega_slider_thumb_gallery.php:233
3339
- #: includes/widgets/htmega_twitter_feed.php:360
3340
- msgid "Center padding"
3341
- msgstr ""
3342
-
3343
- #: includes/widgets/htmega_blockquote.php:156
3344
- msgid "Center Top"
3345
- msgstr ""
3346
-
3347
- #: includes/widgets/htmega_user_login_form.php:1030
3348
- msgid "Checkbox Icon Color"
3349
- msgstr ""
3350
-
3351
- #: includes/widgets/htmega_wc_element_pages.php:371
3352
- msgid "Checkout Button"
3353
- msgstr ""
3354
-
3355
- #: includes/widgets/htmega_wc_element_pages.php:60
3356
- msgid "Checkout Page"
3357
- msgstr ""
3358
-
3359
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:509
3360
- msgid "Choose"
3361
- msgstr ""
3362
-
3363
- #: includes/widgets/htmega_countdown.php:703
3364
- msgid "Choose Area Seperator Image"
3365
- msgstr ""
3366
-
3367
- #: admin/include/class.settings-api.php:398
3368
- msgid "Choose File"
3369
- msgstr ""
3370
-
3371
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:304
3372
- msgid "Choose Icon"
3373
- msgstr ""
3374
-
3375
- #: includes/widgets/htmega_scroll_image.php:50
3376
- msgid "Choose Image"
3377
- msgstr ""
3378
-
3379
- #: includes/widgets/htmega_wc_element_pages.php:70
3380
- msgid "Choose Product"
3381
- msgstr ""
3382
-
3383
- #: includes/widgets/htmega_progress_bar.php:63
3384
- msgid "Circle"
3385
- msgstr ""
3386
-
3387
- #: admin/include/templates/library/templates.php:149
3388
- msgid "Click here"
3389
- msgstr ""
3390
-
3391
- #: includes/widgets/htmega_button.php:65
3392
- msgid "Click Me"
3393
- msgstr ""
3394
-
3395
- #: includes/widgets/htmega_testimonial_grid.php:184
3396
- msgid "Client Rating"
3397
- msgstr ""
3398
-
3399
- #: includes/widgets/htmega_testimonial_grid.php:212
3400
- msgid "Client Say"
3401
- msgstr ""
3402
-
3403
- #: includes/widgets/htmega_testimonial_grid.php:541
3404
- msgid "Client say"
3405
- msgstr ""
3406
-
3407
- #: includes/widgets/htmega_animated_heading.php:74
3408
- msgid "Clip"
3409
- msgstr ""
3410
-
3411
- #: includes/widgets/htmega_animated_heading.php:454
3412
- msgid "Clip Color"
3413
- msgstr ""
3414
-
3415
- #: includes/widgets/htmega_animated_heading.php:470
3416
- msgid "Clip Width"
3417
- msgstr ""
3418
-
3419
- #: includes/widgets/htmega_business_hours.php:169
3420
- #: includes/widgets/htmega_modal.php:833
3421
- #: includes/widgets/htmega_post_grid_tab.php:983
3422
- #: includes/widgets/htmega_toggle.php:63 includes/widgets/htmega_toggle.php:64
3423
- msgid "Close"
3424
- msgstr ""
3425
-
3426
- #: includes/widgets/htmega_search.php:121
3427
- msgid "close"
3428
- msgstr ""
3429
-
3430
- #: includes/widgets/htmega_accordion.php:355
3431
- msgid "Close All Item"
3432
- msgstr ""
3433
-
3434
- #: includes/widgets/htmega_notify.php:618
3435
- msgid "Close Button"
3436
- msgstr ""
3437
-
3438
- #: includes/widgets/htmega_search.php:845
3439
- msgid "Close Button Style"
3440
- msgstr ""
3441
-
3442
- #: includes/widgets/htmega_search.php:119
3443
- msgid "Close Button Text"
3444
- msgstr ""
3445
-
3446
- #: includes/widgets/htmega_data_table.php:455
3447
- #: includes/widgets/htmega_data_table.php:461
3448
- #: includes/widgets/htmega_data_table.php:467
3449
- #: includes/widgets/htmega_data_table.php:474
3450
- #: includes/widgets/htmega_pricing_list_view.php:1092
3451
- #: includes/widgets/htmega_pricing_list_view.php:1098
3452
- #: includes/widgets/htmega_pricing_list_view.php:1104
3453
- #: includes/widgets/htmega_pricing_list_view.php:1111
3454
- msgid "col"
3455
- msgstr ""
3456
-
3457
- #: includes/widgets/htmega_pricing_list_view.php:215
3458
- msgid "Col Span"
3459
- msgstr ""
3460
-
3461
- #: includes/widgets/htmega_notify.php:247
3462
- msgid "col-md-1"
3463
- msgstr ""
3464
-
3465
- #: includes/widgets/htmega_notify.php:238
3466
- msgid "col-md-10"
3467
- msgstr ""
3468
-
3469
- #: includes/widgets/htmega_notify.php:237
3470
- msgid "col-md-11"
3471
- msgstr ""
3472
-
3473
- #: includes/widgets/htmega_notify.php:236
3474
- msgid "col-md-12"
3475
- msgstr ""
3476
-
3477
- #: includes/widgets/htmega_notify.php:246
3478
- msgid "col-md-2"
3479
- msgstr ""
3480
-
3481
- #: includes/widgets/htmega_notify.php:245
3482
- msgid "col-md-3"
3483
- msgstr ""
3484
-
3485
- #: includes/widgets/htmega_notify.php:244
3486
- msgid "col-md-4"
3487
- msgstr ""
3488
-
3489
- #: includes/widgets/htmega_notify.php:243
3490
- msgid "col-md-5"
3491
- msgstr ""
3492
-
3493
- #: includes/widgets/htmega_notify.php:242
3494
- msgid "col-md-6"
3495
- msgstr ""
3496
-
3497
- #: includes/widgets/htmega_notify.php:241
3498
- msgid "col-md-7"
3499
- msgstr ""
3500
-
3501
- #: includes/widgets/htmega_notify.php:240
3502
- msgid "col-md-8"
3503
- msgstr ""
3504
-
3505
- #: includes/widgets/htmega_notify.php:239
3506
- msgid "col-md-9"
3507
- msgstr ""
3508
-
3509
- #: includes/widgets/htmega_accordion.php:642
3510
- #: includes/widgets/htmega_accordion.php:683
3511
- #: includes/widgets/htmega_accordion.php:779
3512
- #: includes/widgets/htmega_accordion.php:997
3513
- #: includes/widgets/htmega_accordion.php:1136
3514
- #: includes/widgets/htmega_accordion.php:1247
3515
- #: includes/widgets/htmega_accordion.php:1348
3516
- #: includes/widgets/htmega_add_banner.php:441
3517
- #: includes/widgets/htmega_add_banner.php:500
3518
- #: includes/widgets/htmega_add_banner.php:559
3519
- #: includes/widgets/htmega_add_banner.php:626
3520
- #: includes/widgets/htmega_add_banner.php:714
3521
- #: includes/widgets/htmega_animated_heading.php:161
3522
- #: includes/widgets/htmega_animated_heading.php:244
3523
- #: includes/widgets/htmega_animated_heading.php:292
3524
- #: includes/widgets/htmega_animated_heading.php:379
3525
- #: includes/widgets/htmega_blockquote.php:277
3526
- #: includes/widgets/htmega_blockquote.php:334
3527
- #: includes/widgets/htmega_blockquote.php:506
3528
- #: includes/widgets/htmega_booked_calender.php:271
3529
- #: includes/widgets/htmega_booked_calender.php:320
3530
- #: includes/widgets/htmega_booked_calender.php:363
3531
- #: includes/widgets/htmega_booked_calender.php:486
3532
- #: includes/widgets/htmega_booked_calender.php:519
3533
- #: includes/widgets/htmega_buddy_press.php:323
3534
- #: includes/widgets/htmega_buddy_press.php:365
3535
- #: includes/widgets/htmega_buddy_press.php:392
3536
- #: includes/widgets/htmega_business_hours.php:418
3537
- #: includes/widgets/htmega_business_hours.php:513
3538
- #: includes/widgets/htmega_business_hours.php:552
3539
- #: includes/widgets/htmega_caldera_form.php:92
3540
- #: includes/widgets/htmega_caldera_form.php:145
3541
- #: includes/widgets/htmega_caldera_form.php:665
3542
- #: includes/widgets/htmega_caldera_form.php:704
3543
- #: includes/widgets/htmega_call_to_action.php:511
3544
- #: includes/widgets/htmega_call_to_action.php:570
3545
- #: includes/widgets/htmega_call_to_action.php:629
3546
- #: includes/widgets/htmega_call_to_action.php:823
3547
- #: includes/widgets/htmega_call_to_action.php:1029
3548
- #: includes/widgets/htmega_carousel.php:557
3549
- #: includes/widgets/htmega_carousel.php:759
3550
- #: includes/widgets/htmega_contact_form_seven.php:957
3551
- #: includes/widgets/htmega_contact_form_seven.php:991
3552
- #: includes/widgets/htmega_countdown.php:687
3553
- #: includes/widgets/htmega_countdown.php:749
3554
- #: includes/widgets/htmega_countdown.php:922
3555
- #: includes/widgets/htmega_countdown.php:1044
3556
- #: includes/widgets/htmega_countdown.php:1129
3557
- #: includes/widgets/htmega_counter.php:456
3558
- #: includes/widgets/htmega_counter.php:582
3559
- #: includes/widgets/htmega_counter.php:821
3560
- #: includes/widgets/htmega_counter.php:938
3561
- #: includes/widgets/htmega_counter.php:1026
3562
- #: includes/widgets/htmega_custom_event.php:143
3563
- #: includes/widgets/htmega_custom_event.php:198
3564
- #: includes/widgets/htmega_custom_event.php:228
3565
- #: includes/widgets/htmega_custom_event.php:285
3566
- #: includes/widgets/htmega_custom_event.php:330
3567
- #: includes/widgets/htmega_custom_event.php:398
3568
- #: includes/widgets/htmega_custom_event.php:448
3569
- #: includes/widgets/htmega_data_table.php:321
3570
- #: includes/widgets/htmega_double_button.php:466
3571
- #: includes/widgets/htmega_double_button.php:562
3572
- #: includes/widgets/htmega_double_button.php:639
3573
- #: includes/widgets/htmega_double_button.php:734
3574
- #: includes/widgets/htmega_double_button.php:822
3575
- #: includes/widgets/htmega_download_monitor.php:211
3576
- #: includes/widgets/htmega_download_monitor.php:258
3577
- #: includes/widgets/htmega_download_monitor.php:328
3578
- #: includes/widgets/htmega_dropcaps.php:109
3579
- #: includes/widgets/htmega_dropcaps.php:205
3580
- #: includes/widgets/htmega_easy_digital_download.php:359
3581
- #: includes/widgets/htmega_easy_digital_download.php:431
3582
- #: includes/widgets/htmega_easy_digital_download.php:540
3583
- #: includes/widgets/htmega_easy_digital_download.php:619
3584
- #: includes/widgets/htmega_easy_digital_download.php:707
3585
- #: includes/widgets/htmega_errorcontent.php:315
3586
- #: includes/widgets/htmega_errorcontent.php:394
3587
- #: includes/widgets/htmega_errorcontent.php:473
3588
- #: includes/widgets/htmega_errorcontent.php:558
3589
- #: includes/widgets/htmega_errorcontent.php:644
3590
- #: includes/widgets/htmega_errorcontent.php:709
3591
- #: includes/widgets/htmega_errorcontent.php:795
3592
- #: includes/widgets/htmega_gravity_forms.php:127
3593
- #: includes/widgets/htmega_gravity_forms.php:183
3594
- #: includes/widgets/htmega_gravity_forms.php:270
3595
- #: includes/widgets/htmega_gravity_forms.php:351
3596
- #: includes/widgets/htmega_gravity_forms.php:415
3597
- #: includes/widgets/htmega_gravity_forms.php:585
3598
- #: includes/widgets/htmega_gravity_forms.php:695
3599
- #: includes/widgets/htmega_gravity_forms.php:805
3600
- #: includes/widgets/htmega_gravity_forms.php:886
3601
- #: includes/widgets/htmega_imagemarker.php:623
3602
- #: includes/widgets/htmega_imagemarker.php:638
3603
- #: includes/widgets/htmega_imagemarker.php:855
3604
- #: includes/widgets/htmega_imagemarker.php:929
3605
- #: includes/widgets/htmega_imagemarker.php:977
3606
- #: includes/widgets/htmega_image_comparison.php:239
3607
- #: includes/widgets/htmega_image_comparison.php:320
3608
- #: includes/widgets/htmega_image_comparison.php:419
3609
- #: includes/widgets/htmega_image_grid.php:310
3610
- #: includes/widgets/htmega_image_grid.php:407
3611
- #: includes/widgets/htmega_image_grid.php:459
3612
- #: includes/widgets/htmega_image_grid.php:541
3613
- #: includes/widgets/htmega_image_masonry.php:294
3614
- #: includes/widgets/htmega_image_masonry.php:391
3615
- #: includes/widgets/htmega_image_masonry.php:464
3616
- #: includes/widgets/htmega_image_masonry.php:545
3617
- #: includes/widgets/htmega_inlinemenu.php:152
3618
- #: includes/widgets/htmega_inlinemenu.php:251
3619
- #: includes/widgets/htmega_inlinemenu.php:414
3620
- #: includes/widgets/htmega_instagram.php:800
3621
- #: includes/widgets/htmega_instagram.php:874
3622
- #: includes/widgets/htmega_instagram.php:934
3623
- #: includes/widgets/htmega_instagram.php:1080
3624
- #: includes/widgets/htmega_instagram.php:1301
3625
- #: includes/widgets/htmega_instagram.php:1397
3626
- #: includes/widgets/htmega_lightbox.php:339
3627
- #: includes/widgets/htmega_modal.php:217 includes/widgets/htmega_modal.php:441
3628
- #: includes/widgets/htmega_modal.php:582 includes/widgets/htmega_modal.php:680
3629
- #: includes/widgets/htmega_modal.php:754 includes/widgets/htmega_modal.php:840
3630
- #: includes/widgets/htmega_modal.php:924
3631
- #: includes/widgets/htmega_newsticker.php:426
3632
- #: includes/widgets/htmega_newsticker.php:500
3633
- #: includes/widgets/htmega_newsticker.php:634
3634
- #: includes/widgets/htmega_newsticker.php:743
3635
- #: includes/widgets/htmega_newsticker.php:867
3636
- #: includes/widgets/htmega_newsticker.php:917
3637
- #: includes/widgets/htmega_ninja_form.php:120
3638
- #: includes/widgets/htmega_ninja_form.php:222
3639
- #: includes/widgets/htmega_ninja_form.php:356
3640
- #: includes/widgets/htmega_ninja_form.php:440
3641
- #: includes/widgets/htmega_ninja_form.php:502
3642
- #: includes/widgets/htmega_ninja_form.php:651
3643
- #: includes/widgets/htmega_ninja_form.php:724
3644
- #: includes/widgets/htmega_ninja_form.php:870
3645
- #: includes/widgets/htmega_ninja_form.php:954
3646
- #: includes/widgets/htmega_ninja_form.php:1064
3647
- #: includes/widgets/htmega_ninja_form.php:1145
3648
- #: includes/widgets/htmega_ninja_form.php:1165
3649
- #: includes/widgets/htmega_notify.php:328
3650
- #: includes/widgets/htmega_notify.php:424
3651
- #: includes/widgets/htmega_notify.php:479
3652
- #: includes/widgets/htmega_notify.php:624
3653
- #: includes/widgets/htmega_offcanvas.php:421
3654
- #: includes/widgets/htmega_offcanvas.php:493
3655
- #: includes/widgets/htmega_panel_slider.php:676
3656
- #: includes/widgets/htmega_panel_slider.php:745
3657
- #: includes/widgets/htmega_panel_slider.php:815
3658
- #: includes/widgets/htmega_panel_slider.php:1028
3659
- #: includes/widgets/htmega_popover.php:337
3660
- #: includes/widgets/htmega_popover.php:459
3661
- #: includes/widgets/htmega_popover.php:602
3662
- #: includes/widgets/htmega_popover.php:706
3663
- #: includes/widgets/htmega_postgrid.php:453
3664
- #: includes/widgets/htmega_postgrid.php:581
3665
- #: includes/widgets/htmega_postgrid.php:668
3666
- #: includes/widgets/htmega_post_grid_tab.php:436
3667
- #: includes/widgets/htmega_post_grid_tab.php:533
3668
- #: includes/widgets/htmega_post_grid_tab.php:630
3669
- #: includes/widgets/htmega_post_grid_tab.php:694
3670
- #: includes/widgets/htmega_post_grid_tab.php:734
3671
- #: includes/widgets/htmega_post_grid_tab.php:850
3672
- #: includes/widgets/htmega_post_grid_tab.php:934
3673
- #: includes/widgets/htmega_post_grid_tab.php:1000
3674
- #: includes/widgets/htmega_post_grid_tab.php:1058
3675
- #: includes/widgets/htmega_post_slider.php:871
3676
- #: includes/widgets/htmega_post_slider.php:968
3677
- #: includes/widgets/htmega_post_slider.php:1065
3678
- #: includes/widgets/htmega_post_slider.php:1128
3679
- #: includes/widgets/htmega_post_slider.php:1164
3680
- #: includes/widgets/htmega_post_slider.php:1278
3681
- #: includes/widgets/htmega_post_slider.php:1361
3682
- #: includes/widgets/htmega_post_slider.php:1542
3683
- #: includes/widgets/htmega_post_slider.php:1690
3684
- #: includes/widgets/htmega_pricing_list_view.php:1797
3685
- #: includes/widgets/htmega_progress_bar.php:737
3686
- #: includes/widgets/htmega_quforms.php:121
3687
- #: includes/widgets/htmega_quforms.php:241
3688
- #: includes/widgets/htmega_quforms.php:363
3689
- #: includes/widgets/htmega_quforms.php:487
3690
- #: includes/widgets/htmega_quforms.php:583
3691
- #: includes/widgets/htmega_quforms.php:705
3692
- #: includes/widgets/htmega_quforms.php:838
3693
- #: includes/widgets/htmega_quforms.php:925
3694
- #: includes/widgets/htmega_quforms.php:1023
3695
- #: includes/widgets/htmega_scroll_image.php:329
3696
- #: includes/widgets/htmega_scroll_navigation.php:257
3697
- #: includes/widgets/htmega_search.php:442
3698
- #: includes/widgets/htmega_search.php:611
3699
- #: includes/widgets/htmega_search.php:690
3700
- #: includes/widgets/htmega_search.php:856
3701
- #: includes/widgets/htmega_search.php:953
3702
- #: includes/widgets/htmega_section_title.php:517
3703
- #: includes/widgets/htmega_section_title.php:546
3704
- #: includes/widgets/htmega_section_title.php:779
3705
- #: includes/widgets/htmega_section_title.php:942
3706
- #: includes/widgets/htmega_service.php:364
3707
- #: includes/widgets/htmega_service.php:480
3708
- #: includes/widgets/htmega_service.php:645
3709
- #: includes/widgets/htmega_service.php:754
3710
- #: includes/widgets/htmega_service.php:1029
3711
- #: includes/widgets/htmega_service.php:1115
3712
- #: includes/widgets/htmega_singlepost.php:163
3713
- #: includes/widgets/htmega_singlepost.php:259
3714
- #: includes/widgets/htmega_singlepost.php:361
3715
- #: includes/widgets/htmega_slider_thumb_gallery.php:685
3716
- #: includes/widgets/htmega_slider_thumb_gallery.php:738
3717
- #: includes/widgets/htmega_slider_thumb_gallery.php:823
3718
- #: includes/widgets/htmega_slider_thumb_gallery.php:996
3719
- #: includes/widgets/htmega_socialshere.php:186
3720
- #: includes/widgets/htmega_socialshere.php:228
3721
- #: includes/widgets/htmega_special_day_banner.php:346
3722
- #: includes/widgets/htmega_special_day_banner.php:405
3723
- #: includes/widgets/htmega_special_day_banner.php:464
3724
- #: includes/widgets/htmega_special_day_banner.php:523
3725
- #: includes/widgets/htmega_special_day_banner.php:582
3726
- #: includes/widgets/htmega_special_day_banner.php:649
3727
- #: includes/widgets/htmega_special_day_banner.php:737
3728
- #: includes/widgets/htmega_switcher.php:474
3729
- #: includes/widgets/htmega_switcher.php:553
3730
- #: includes/widgets/htmega_tablepress.php:175
3731
- #: includes/widgets/htmega_tablepress.php:410
3732
- #: includes/widgets/htmega_tabs.php:537 includes/widgets/htmega_tabs.php:623
3733
- #: includes/widgets/htmega_tabs.php:861
3734
- #: includes/widgets/htmega_teammember.php:696
3735
- #: includes/widgets/htmega_teammember.php:786
3736
- #: includes/widgets/htmega_teammember.php:876
3737
- #: includes/widgets/htmega_testimonial_grid.php:427
3738
- #: includes/widgets/htmega_testimonial_grid.php:488
3739
- #: includes/widgets/htmega_testimonial_grid.php:580
3740
- #: includes/widgets/htmega_testimonial_grid.php:701
3741
- #: includes/widgets/htmega_toggle.php:129
3742
- #: includes/widgets/htmega_toggle.php:232
3743
- #: includes/widgets/htmega_toggle.php:349
3744
- #: includes/widgets/htmega_tooltip.php:313
3745
- #: includes/widgets/htmega_tooltip.php:436
3746
- #: includes/widgets/htmega_tooltip.php:491
3747
- #: includes/widgets/htmega_twitter_feed.php:627
3748
- #: includes/widgets/htmega_twitter_feed.php:708
3749
- #: includes/widgets/htmega_twitter_feed.php:844
3750
- #: includes/widgets/htmega_twitter_feed.php:877
3751
- #: includes/widgets/htmega_twitter_feed.php:907
3752
- #: includes/widgets/htmega_twitter_feed.php:977
3753
- #: includes/widgets/htmega_twitter_feed.php:1034
3754
- #: includes/widgets/htmega_twitter_feed.php:1075
3755
- #: includes/widgets/htmega_twitter_feed.php:1240
3756
- #: includes/widgets/htmega_user_login_form.php:1104
3757
- #: includes/widgets/htmega_user_login_form.php:1231
3758
- #: includes/widgets/htmega_user_login_form.php:1302
3759
- #: includes/widgets/htmega_user_login_form.php:1415
3760
- #: includes/widgets/htmega_user_login_form.php:1472
3761
- #: includes/widgets/htmega_verticle_time_line.php:132
3762
- #: includes/widgets/htmega_verticle_time_line.php:198
3763
- #: includes/widgets/htmega_verticle_time_line.php:281
3764
- #: includes/widgets/htmega_verticle_time_line.php:328
3765
- #: includes/widgets/htmega_videoplayer.php:343
3766
- #: includes/widgets/htmega_videoplayer.php:481
3767
- #: includes/widgets/htmega_wc_categories.php:308
3768
- #: includes/widgets/htmega_wc_categories.php:410
3769
- #: includes/widgets/htmega_wc_element_pages.php:668
3770
- #: includes/widgets/htmega_wc_element_pages.php:1314
3771
- #: includes/widgets/htmega_wc_element_pages.php:1713
3772
- #: includes/widgets/htmega_wc_element_pages.php:1800
3773
- #: includes/widgets/htmega_wc_element_pages.php:1861
3774
- #: includes/widgets/htmega_weather.php:255
3775
- #: includes/widgets/htmega_working_process.php:628
3776
- #: includes/widgets/htmega_working_process.php:639
3777
- #: includes/widgets/htmega_working_process.php:720
3778
- #: includes/widgets/htmega_working_process.php:820
3779
- #: includes/widgets/htmega_working_process.php:941
3780
- #: includes/widgets/htmega_working_process.php:1070
3781
- #: includes/widgets/htmega_wpforms.php:112
3782
- #: includes/widgets/htmega_wpforms.php:214
3783
- #: includes/widgets/htmega_wpforms.php:348
3784
- #: includes/widgets/htmega_wpforms.php:422
3785
- #: includes/widgets/htmega_wpforms.php:461
3786
- #: includes/widgets/htmega_wpforms.php:505
3787
- #: includes/widgets/htmega_wpforms.php:655
3788
- #: includes/widgets/htmega_wpforms.php:727
3789
- #: includes/widgets/htmega_wpforms.php:873
3790
- #: includes/widgets/htmega_wpforms.php:981
3791
- #: includes/widgets/htmega_wpforms.php:1091
3792
- #: includes/widgets/htmega_wpforms.php:1144
3793
- #: extensions/ht-builder/widgets/bl_nav_menu.php:149
3794
- #: extensions/ht-builder/widgets/bl_nav_menu.php:234
3795
- #: extensions/ht-builder/widgets/bl_nav_menu.php:287
3796
- #: extensions/ht-builder/widgets/bl_nav_menu.php:382
3797
- #: extensions/ht-builder/widgets/bl_nav_menu.php:435
3798
- #: extensions/ht-builder/widgets/bl_page_title.php:66
3799
- #: extensions/ht-builder/widgets/bl_post_archive.php:347
3800
- #: extensions/ht-builder/widgets/bl_post_archive.php:414
3801
- #: extensions/ht-builder/widgets/bl_post_archive.php:453
3802
- #: extensions/ht-builder/widgets/bl_post_archive.php:560
3803
- #: extensions/ht-builder/widgets/bl_post_archive.php:627
3804
- #: extensions/ht-builder/widgets/bl_post_archive.php:652
3805
- #: extensions/ht-builder/widgets/bl_post_archive.php:721
3806
- #: extensions/ht-builder/widgets/bl_post_archive.php:796
3807
- #: extensions/ht-builder/widgets/bl_post_archive.php:856
3808
- #: extensions/ht-builder/widgets/bl_post_archive.php:920
3809
- #: extensions/ht-builder/widgets/bl_post_archive_title.php:68
3810
- #: extensions/ht-builder/widgets/bl_post_author_info.php:225
3811
- #: extensions/ht-builder/widgets/bl_post_author_info.php:265
3812
- #: extensions/ht-builder/widgets/bl_post_comments.php:48
3813
- #: extensions/ht-builder/widgets/bl_post_comments.php:98
3814
- #: extensions/ht-builder/widgets/bl_post_comments.php:148
3815
- #: extensions/ht-builder/widgets/bl_post_content.php:48
3816
- #: extensions/ht-builder/widgets/bl_post_excerpt.php:48
3817
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:355
3818
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:395
3819
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:425
3820
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:451
3821
- #: extensions/ht-builder/widgets/bl_post_search_form.php:110
3822
- #: extensions/ht-builder/widgets/bl_post_search_form.php:184
3823
- #: extensions/ht-builder/widgets/bl_post_search_form.php:258
3824
- #: extensions/ht-builder/widgets/bl_site_title.php:68
3825
- #: extensions/ht-menu/menu/templates.php:114
3826
- #: extensions/ht-menu/menu/templates.php:135
3827
- msgid "Color"
3828
- msgstr ""
3829
-
3830
- #: includes/widgets/htmega_socialshere.php:689
3831
- #: includes/widgets/htmega_socialshere.php:721
3832
- msgid "color"
3833
- msgstr ""
3834
-
3835
- #: includes/widgets/htmega_data_table.php:396
3836
- #: includes/widgets/htmega_pricing_list_view.php:646
3837
- msgid "Colspan"
3838
- msgstr ""
3839
-
3840
- #: includes/widgets/htmega_data_table.php:242
3841
- #: includes/widgets/htmega_image_grid.php:58
3842
- #: includes/widgets/htmega_image_masonry.php:75
3843
- #: includes/widgets/htmega_instagram.php:143
3844
- #: includes/widgets/htmega_pricing_list_view.php:550
3845
- #: includes/widgets/htmega_user_login_form.php:404
3846
- #: includes/widgets/htmega_working_process.php:58
3847
- msgid "Column"
3848
- msgstr ""
3849
-
3850
- #: includes/widgets/htmega_testimonial_grid.php:56
3851
- msgid "Column "
3852
- msgstr ""
3853
-
3854
- #: includes/widgets/htmega_working_process.php:66
3855
- msgid "Column Five"
3856
- msgstr ""
3857
-
3858
- #: includes/widgets/htmega_working_process.php:65
3859
- msgid "Column Four"
3860
- msgstr ""
3861
-
3862
- #: includes/widgets/htmega_panel_slider.php:217
3863
- #: includes/widgets/htmega_testimonial_grid.php:145
3864
- msgid "Column Gap"
3865
- msgstr ""
3866
-
3867
- #: includes/widgets/htmega_countdown.php:336
3868
- msgid "Column Height"
3869
- msgstr ""
3870
-
3871
- #: includes/widgets/htmega_data_table.php:143
3872
- #: includes/widgets/htmega_pricing_list_view.php:202
3873
- msgid "Column Name"
3874
- msgstr ""
3875
-
3876
- #: includes/widgets/htmega_working_process.php:62
3877
- msgid "Column One"
3878
- msgstr ""
3879
-
3880
- #: includes/widgets/htmega_image_grid.php:75
3881
- #: includes/widgets/htmega_twitter_feed.php:257
3882
- msgid "Column Space"
3883
- msgstr ""
3884
-
3885
- #: includes/widgets/htmega_countdown.php:373
3886
- msgid "Column Spacing"
3887
- msgstr ""
3888
-
3889
- #: includes/widgets/htmega_data_table.php:152
3890
- msgid "Column styles"
3891
- msgstr ""
3892
-
3893
- #: includes/widgets/htmega_working_process.php:64
3894
- msgid "Column Three"
3895
- msgstr ""
3896
-
3897
- #: includes/widgets/htmega_working_process.php:63
3898
- msgid "Column Two"
3899
- msgstr ""
3900
-
3901
- #: includes/widgets/htmega_buddy_press.php:280
3902
- #: includes/widgets/htmega_countdown.php:300
3903
- msgid "Column Width"
3904
- msgstr ""
3905
-
3906
- #: includes/widgets/htmega_panel_slider.php:239
3907
- msgid "Column width accroding to image"
3908
- msgstr ""
3909
-
3910
- #: includes/widgets/htmega_easy_digital_download.php:50
3911
- #: includes/widgets/htmega_wc_categories.php:41
3912
- #: extensions/ht-builder/widgets/bl_post_archive.php:56
3913
- msgid "Columns"
3914
- msgstr ""
3915
-
3916
- #: admin/include/admin-setting.php:1249 admin/include/admin-setting.php:1274
3917
- msgid "Coming soon Page Builder"
3918
- msgstr ""
3919
-
3920
- #: extensions/ht-builder/admin/setting.php:124
3921
- msgid "Coming Soon Page Template."
3922
- msgstr ""
3923
-
3924
- #: includes/widgets/htmega_newsticker.php:261
3925
- #: includes/widgets/htmega_postgrid.php:152
3926
- #: includes/widgets/htmega_post_grid_tab.php:159
3927
- #: includes/widgets/htmega_post_slider.php:163
3928
- #: extensions/ht-builder/widgets/bl_post_archive.php:203
3929
- msgid "Comment count"
3930
- msgstr ""
3931
-
3932
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:68
3933
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:235
3934
- msgid "Comments"
3935
- msgstr ""
3936
-
3937
- #: extensions/ht-builder/widgets/bl_post_comments.php:192
3938
- msgid "Comments Are Closed"
3939
- msgstr ""
3940
-
3941
- #: includes/widgets/htmega_caldera_form.php:696
3942
- #: includes/widgets/htmega_gravity_forms.php:878
3943
- #: includes/widgets/htmega_quforms.php:1015
3944
- msgid "Confirmation Style"
3945
- msgstr ""
3946
-
3947
- #: includes/widgets/htmega_twitter_feed.php:82
3948
- msgid "Consumer Key"
3949
- msgstr ""
3950
-
3951
- #: includes/widgets/htmega_twitter_feed.php:92
3952
- msgid "Consumer Secret"
3953
- msgstr ""
3954
-
3955
- #: includes/widgets/htmega_errorcontent.php:185
3956
- #: includes/widgets/htmega_errorcontent.php:693
3957
- msgid "Contact Button"
3958
- msgstr ""
3959
-
3960
- #: includes/widgets/htmega_contact_form_seven.php:44
3961
- #: includes/widgets/htmega_contact_form_seven.php:68
3962
- msgid "Contact Form"
3963
- msgstr ""
3964
-
3965
- #: admin/include/admin-setting.php:959
3966
- #: includes/widgets/htmega_contact_form_seven.php:13
3967
- msgid "Contact form 7"
3968
- msgstr ""
3969
-
3970
- #: admin/include/admin-setting.php:1231
3971
- msgid "Contact Us"
3972
- msgstr ""
3973
-
3974
- #: includes/widgets/htmega_post_slider.php:682
3975
- msgid "Container background"
3976
- msgstr ""
3977
-
3978
- #: includes/widgets/htmega_post_slider.php:667
3979
- msgid "Container Border Radius"
3980
- msgstr ""
3981
-
3982
- #: includes/widgets/htmega_add_banner.php:356
3983
- #: includes/widgets/htmega_blockquote.php:54
3984
- #: includes/widgets/htmega_blockquote.php:67
3985
- #: includes/widgets/htmega_blockquote.php:269
3986
- #: includes/widgets/htmega_dropcaps.php:58
3987
- #: includes/widgets/htmega_imagemarker.php:698
3988
- #: includes/widgets/htmega_modal.php:64 includes/widgets/htmega_modal.php:77
3989
- #: includes/widgets/htmega_modal.php:79
3990
- #: includes/widgets/htmega_newsticker.php:419
3991
- #: includes/widgets/htmega_notify.php:473
3992
- #: includes/widgets/htmega_popover.php:691
3993
- #: includes/widgets/htmega_post_grid_tab.php:192
3994
- #: includes/widgets/htmega_post_grid_tab.php:523
3995
- #: includes/widgets/htmega_post_slider.php:199
3996
- #: includes/widgets/htmega_post_slider.php:958
3997
- #: includes/widgets/htmega_pricing_list_view.php:68
3998
- #: includes/widgets/htmega_pricing_list_view.php:195
3999
- #: includes/widgets/htmega_pricing_list_view.php:560
4000
- #: includes/widgets/htmega_scroll_navigation.php:73
4001
- #: includes/widgets/htmega_scroll_navigation.php:75
4002
- #: includes/widgets/htmega_scroll_navigation.php:85
4003
- #: includes/widgets/htmega_switcher.php:115
4004
- #: includes/widgets/htmega_switcher.php:128
4005
- #: includes/widgets/htmega_switcher.php:131
4006
- #: includes/widgets/htmega_switcher.php:207
4007
- #: includes/widgets/htmega_switcher.php:220
4008
- #: includes/widgets/htmega_switcher.php:223
4009
- #: includes/widgets/htmega_switcher.php:545 includes/widgets/htmega_tabs.php:62
4010
- #: includes/widgets/htmega_tabs.php:99 includes/widgets/htmega_tabs.php:112
4011
- #: includes/widgets/htmega_tabs.php:114 includes/widgets/htmega_tabs.php:853
4012
- #: includes/widgets/htmega_toggle.php:93 includes/widgets/htmega_toggle.php:106
4013
- #: includes/widgets/htmega_tooltip.php:485
4014
- #: includes/widgets/htmega_twitter_feed.php:619
4015
- #: includes/widgets/htmega_verticle_time_line.php:62
4016
- #: includes/widgets/htmega_verticle_time_line.php:88
4017
- #: includes/widgets/htmega_verticle_time_line.php:180
4018
- #: includes/widgets/htmega_wc_element_pages.php:1850
4019
- #: extensions/ht-builder/widgets/bl_post_archive.php:645
4020
- #: extensions/ht-builder/widgets/bl_post_author_info.php:209
4021
- #: extensions/ht-menu/menu/templates.php:43
4022
- msgid "Content"
4023
- msgstr ""
4024
-
4025
- #: includes/widgets/htmega_countdown.php:639
4026
- #: includes/widgets/htmega_job_manager.php:155
4027
- msgid "Content Alignment"
4028
- msgstr ""
4029
-
4030
- #: includes/widgets/htmega_panel_slider.php:521
4031
- msgid "Content area"
4032
- msgstr ""
4033
-
4034
- #: includes/widgets/htmega_imagemarker.php:751
4035
- msgid "Content area border radius"
4036
- msgstr ""
4037
-
4038
- #: includes/widgets/htmega_imagemarker.php:762
4039
- msgid "Content area padding"
4040
- msgstr ""
4041
-
4042
- #: includes/widgets/htmega_singlepost.php:474
4043
- #: includes/widgets/htmega_slider_thumb_gallery.php:757
4044
- msgid "Content Box"
4045
- msgstr ""
4046
-
4047
- #: includes/widgets/htmega_teammember.php:511
4048
- msgid "Content Box Background"
4049
- msgstr ""
4050
-
4051
- #: includes/widgets/htmega_teammember.php:534
4052
- msgid "Content Box Hover Background"
4053
- msgstr ""
4054
-
4055
- #: includes/widgets/htmega_image_grid.php:253
4056
- #: includes/widgets/htmega_teammember.php:598
4057
- msgid "Content Box Padding"
4058
- msgstr ""
4059
-
4060
- #: includes/widgets/htmega_post_grid_tab.php:335
4061
- #: includes/widgets/htmega_post_slider.php:709
4062
- #: includes/widgets/htmega_slider_thumb_gallery.php:670
4063
- #: includes/widgets/htmega_special_day_banner.php:253
4064
- msgid "Content Box Style"
4065
- msgstr ""
4066
-
4067
- #: includes/widgets/htmega_user_login_form.php:744
4068
- #: extensions/wc-sales-notification/admin/setting.php:204
4069
- msgid "Content Color"
4070
- msgstr ""
4071
-
4072
- #: admin/include/admin-setting.php:1261 admin/include/admin-setting.php:1286
4073
- msgid "Content color option"
4074
- msgstr ""
4075
-
4076
- #: includes/widgets/htmega_verticle_time_line.php:71
4077
- msgid "Content Date"
4078
- msgstr ""
4079
-
4080
- #: includes/widgets/htmega_imagemarker.php:349
4081
- msgid "Content Indicator"
4082
- msgstr ""
4083
-
4084
- #: includes/widgets/htmega_post_grid_tab.php:201
4085
- #: includes/widgets/htmega_post_slider.php:209
4086
- #: includes/widgets/htmega_twitter_feed.php:133
4087
- #: extensions/ht-builder/widgets/bl_post_archive.php:157
4088
- msgid "Content Length"
4089
- msgstr ""
4090
-
4091
- #: includes/widgets/htmega_newsticker.php:1093
4092
- msgid "Content Not Found"
4093
- msgstr ""
4094
-
4095
- #: includes/widgets/htmega_newsticker.php:187
4096
- msgid "Content Option"
4097
- msgstr ""
4098
-
4099
- #: includes/widgets/htmega_postgrid.php:278
4100
- msgid "Content Padding"
4101
- msgstr ""
4102
-
4103
- #: includes/widgets/htmega_add_banner.php:58
4104
- #: includes/widgets/htmega_singlepost.php:57
4105
- #: includes/widgets/htmega_special_day_banner.php:42
4106
- msgid "Content Position"
4107
- msgstr ""
4108
-
4109
- #: includes/widgets/htmega_post_grid_tab.php:76
4110
- #: includes/widgets/htmega_post_slider.php:80
4111
- #: includes/widgets/htmega_scroll_navigation.php:60
4112
- msgid "Content Source"
4113
- msgstr ""
4114
-
4115
- #: includes/widgets/htmega_newsticker.php:194
4116
- #: includes/widgets/htmega_postgrid.php:69
4117
- msgid "Content Sourse"
4118
- msgstr ""
4119
-
4120
- #: includes/widgets/htmega_dropcaps.php:72
4121
- #: includes/widgets/htmega_teammember.php:68
4122
- #: includes/widgets/htmega_teammember.php:83
4123
- #: includes/widgets/htmega_toggle.php:122
4124
- msgid "Content Style"
4125
- msgstr ""
4126
-
4127
- #: includes/widgets/htmega_buddy_press.php:62
4128
- #: includes/widgets/htmega_pricing_list_view.php:570
4129
- msgid "Content Type"
4130
- msgstr ""
4131
-
4132
- #: includes/widgets/htmega_teammember.php:639
4133
- msgid "Corner Shape Color"
4134
- msgstr ""
4135
-
4136
- #: includes/widgets/htmega_easy_digital_download.php:201
4137
- #: includes/widgets/htmega_socialshere.php:356
4138
- #: includes/widgets/htmega_wc_categories.php:132
4139
- msgid "Count"
4140
- msgstr ""
4141
-
4142
- #: includes/widgets/htmega_countdown.php:404
4143
- msgid "Count Area"
4144
- msgstr ""
4145
-
4146
- #: includes/widgets/htmega_countdown.php:291
4147
- msgid "Count Layout"
4148
- msgstr ""
4149
-
4150
- #: admin/include/admin-setting.php:199 includes/widgets/htmega_countdown.php:13
4151
- #: includes/widgets/htmega_countdown.php:65
4152
- msgid "Countdown"
4153
- msgstr ""
4154
-
4155
- #: admin/include/admin-setting.php:207 includes/widgets/htmega_counter.php:13
4156
- #: includes/widgets/htmega_counter.php:42
4157
- msgid "Counter"
4158
- msgstr ""
4159
-
4160
- #: includes/widgets/htmega_gallery_justify.php:177
4161
- msgid "Counter Color"
4162
- msgstr ""
4163
-
4164
- #: includes/widgets/htmega_countdown.php:673
4165
- msgid "Counter separator"
4166
- msgstr ""
4167
-
4168
- #: includes/widgets/htmega_counter.php:154
4169
- msgid "Counter Title"
4170
- msgstr ""
4171
-
4172
- #: includes/widgets/htmega_wc_element_pages.php:191
4173
- msgid "Coupon / Update Button"
4174
- msgstr ""
4175
-
4176
- #: admin/include/templates_list.php:16
4177
- msgid "Create a new page from this template"
4178
- msgstr ""
4179
-
4180
- #: extensions/wc-sales-notification/admin/setting.php:212
4181
- msgid "Cross Icon Color"
4182
- msgstr ""
4183
-
4184
- #: admin/include/admin-setting.php:1262 admin/include/admin-setting.php:1287
4185
- msgid "Cross icon color option"
4186
- msgstr ""
4187
-
4188
- #: includes/widgets/htmega_booked_calender.php:356
4189
- msgid "Current Date"
4190
- msgstr ""
4191
-
4192
- #: includes/widgets/htmega_accordion.php:404
4193
- msgid "Current Item No"
4194
- msgstr ""
4195
-
4196
- #: includes/widgets/htmega_accordion.php:81
4197
- #: includes/widgets/htmega_accordion.php:221
4198
- #: includes/widgets/htmega_blockquote.php:45
4199
- #: includes/widgets/htmega_imagemarker.php:231
4200
- #: includes/widgets/htmega_imagemarker.php:290
4201
- #: includes/widgets/htmega_imagemarker.php:501
4202
- #: includes/widgets/htmega_imagemarker.php:787
4203
- #: includes/widgets/htmega_modal.php:55
4204
- #: includes/widgets/htmega_scroll_image.php:255
4205
- #: includes/widgets/htmega_scroll_navigation.php:64
4206
- #: includes/widgets/htmega_scroll_navigation.php:144
4207
- #: includes/widgets/htmega_socialshere.php:467
4208
- #: includes/widgets/htmega_switcher.php:106
4209
- #: includes/widgets/htmega_switcher.php:198 includes/widgets/htmega_tabs.php:90
4210
- #: includes/widgets/htmega_testimonial_grid.php:59
4211
- #: includes/widgets/htmega_toggle.php:83
4212
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:70
4213
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:88
4214
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:126
4215
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:249
4216
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:292
4217
- #: extensions/ht-builder/widgets/bl_site_logo.php:56
4218
- msgid "Custom"
4219
- msgstr ""
4220
-
4221
- #: includes/widgets/htmega_weather.php:209
4222
- msgid "Custom Background Color"
4223
- msgstr ""
4224
-
4225
- #: includes/widgets/htmega_scroll_navigation.php:250
4226
- #: includes/widgets/htmega_toggle.php:108
4227
- msgid "Custom Content"
4228
- msgstr ""
4229
-
4230
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:99
4231
- msgid "Custom Date Format"
4232
- msgstr ""
4233
-
4234
- #: admin/include/admin-setting.php:215
4235
- #: includes/widgets/htmega_custom_event.php:13
4236
- msgid "Custom Event"
4237
- msgstr ""
4238
-
4239
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:195
4240
- msgid "Custom Format"
4241
- msgstr ""
4242
-
4243
- #: includes/widgets/htmega_weather.php:175
4244
- msgid "Custom Geolocation"
4245
- msgstr ""
4246
-
4247
- #: includes/widgets/htmega_postgrid.php:315
4248
- #: includes/widgets/htmega_post_grid_tab.php:1160
4249
- msgid "Custom Gradient Color"
4250
- msgstr ""
4251
-
4252
- #: includes/widgets/htmega_scroll_navigation.php:152
4253
- msgid "Custom Height"
4254
- msgstr ""
4255
-
4256
- #: includes/widgets/htmega_countdown.php:190
4257
- msgid "Custom Label"
4258
- msgstr ""
4259
-
4260
- #: includes/widgets/htmega_user_login_form.php:194
4261
- msgid "Custom label"
4262
- msgstr ""
4263
-
4264
- #: includes/widgets/htmega_scroll_image.php:61
4265
- msgid "Custom Link"
4266
- msgstr ""
4267
-
4268
- #: includes/widgets/htmega_googlemap.php:170
4269
- msgid "Custom marker"
4270
- msgstr ""
4271
-
4272
- #: includes/widgets/htmega_newsticker.php:242
4273
- #: includes/widgets/htmega_postgrid.php:117
4274
- #: includes/widgets/htmega_post_grid_tab.php:124
4275
- #: includes/widgets/htmega_post_slider.php:128
4276
- #: extensions/ht-builder/widgets/bl_post_archive.php:184
4277
- msgid "Custom order"
4278
- msgstr ""
4279
-
4280
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:137
4281
- msgid "Custom Time Format"
4282
- msgstr ""
4283
-
4284
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:273
4285
- msgid "Custom URL"
4286
- msgstr ""
4287
-
4288
- #: includes/widgets/htmega_panel_slider.php:237
4289
- msgid "Custom Width"
4290
- msgstr ""
4291
-
4292
- #: includes/widgets/htmega_notify.php:133
4293
- msgid "Danger"
4294
- msgstr ""
4295
-
4296
- #: admin/include/admin-setting.php:511
4297
- #: includes/widgets/htmega_data_table.php:13
4298
- msgid "Data Table"
4299
- msgstr ""
4300
-
4301
- #: includes/widgets/htmega_data_table.php:250
4302
- msgid "Data Type"
4303
- msgstr ""
4304
-
4305
- #: includes/recommended-plugins/recommended-plugins.php:121
4306
- msgid "DataCaptia"
4307
- msgstr ""
4308
-
4309
- #: includes/widgets/htmega_booked_calender.php:288
4310
- #: includes/widgets/htmega_custom_event.php:322
4311
- #: includes/widgets/htmega_job_manager.php:99
4312
- #: includes/widgets/htmega_newsticker.php:141
4313
- #: includes/widgets/htmega_newsticker.php:258
4314
- #: includes/widgets/htmega_newsticker.php:906
4315
- #: includes/widgets/htmega_postgrid.php:149
4316
- #: includes/widgets/htmega_postgrid.php:199
4317
- #: includes/widgets/htmega_postgrid.php:571
4318
- #: includes/widgets/htmega_post_grid_tab.php:156
4319
- #: includes/widgets/htmega_post_slider.php:160
4320
- #: includes/widgets/htmega_post_slider.php:265
4321
- #: includes/widgets/htmega_singlepost.php:140
4322
- #: includes/widgets/htmega_verticle_time_line.php:320
4323
- #: extensions/ht-builder/widgets/bl_post_archive.php:200
4324
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:66
4325
- msgid "Date"
4326
- msgstr ""
4327
-
4328
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:78
4329
- msgid "Date Format"
4330
- msgstr ""
4331
-
4332
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:84
4333
- msgctxt "Date Format"
4334
- msgid "March 6, 2018 (F j, Y)"
4335
- msgstr ""
4336
-
4337
- #: includes/widgets/htmega_newsticker.php:150
4338
- msgid "Date Position In Left"
4339
- msgstr ""
4340
-
4341
- #: includes/widgets/htmega_booked_calender.php:63
4342
- #: includes/widgets/htmega_business_hours.php:83
4343
- #: includes/widgets/htmega_business_hours.php:505
4344
- #: includes/widgets/htmega_countdown.php:132
4345
- #: includes/widgets/htmega_instagram.php:113
4346
- msgid "Day"
4347
- msgstr ""
4348
-
4349
- #: includes/widgets/htmega_business_hours.php:112
4350
- msgid "Day Color"
4351
- msgstr ""
4352
-
4353
- #: includes/widgets/htmega_booked_calender.php:220
4354
- msgid "Day Name Background"
4355
- msgstr ""
4356
-
4357
- #: includes/widgets/htmega_booked_calender.php:232
4358
- msgid "Day Name Color"
4359
- msgstr ""
4360
-
4361
- #: includes/widgets/htmega_countdown.php:202
4362
- #: includes/widgets/htmega_countdown.php:204
4363
- msgid "Days"
4364
- msgstr ""
4365
-
4366
- #: includes/widgets/htmega_booked_calender.php:120
4367
- msgid "December"
4368
- msgstr ""
4369
-
4370
- #: includes/widgets/htmega_booked_calender.php:54
4371
- #: includes/widgets/htmega_booked_calender.php:166
4372
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:50
4373
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:291
4374
- #: extensions/ht-builder/widgets/bl_site_logo.php:52
4375
- msgid "Default"
4376
- msgstr ""
4377
-
4378
- #: includes/widgets/htmega_gallery_justify.php:119
4379
- msgid "Default Popup"
4380
- msgstr ""
4381
-
4382
- #: includes/widgets/htmega_googlemap.php:60
4383
- msgid "Default Zoom"
4384
- msgstr ""
4385
-
4386
- #: includes/widgets/htmega_notify.php:222
4387
- msgid "Delay"
4388
- msgstr ""
4389
-
4390
- #: includes/widgets/htmega_instagram.php:99
4391
- msgid "Delete existing caching data"
4392
- msgstr ""
4393
-
4394
- #: includes/widgets/htmega_socialshere.php:76
4395
- msgid "Delicious"
4396
- msgstr ""
4397
-
4398
- #: includes/widgets/htmega_easy_digital_download.php:214
4399
- msgid "DESC"
4400
- msgstr ""
4401
-
4402
- #: includes/widgets/htmega_job_manager.php:84
4403
- #: includes/widgets/htmega_newsticker.php:277
4404
- #: includes/widgets/htmega_postgrid.php:131
4405
- #: includes/widgets/htmega_post_grid_tab.php:138
4406
- #: includes/widgets/htmega_post_slider.php:142
4407
- #: includes/widgets/htmega_wc_categories.php:145
4408
- #: extensions/ht-builder/widgets/bl_post_archive.php:219
4409
- msgid "Descending"
4410
- msgstr ""
4411
-
4412
- #: includes/widgets/htmega_add_banner.php:110
4413
- #: includes/widgets/htmega_add_banner.php:548
4414
- #: includes/widgets/htmega_call_to_action.php:104
4415
- #: includes/widgets/htmega_call_to_action.php:618
4416
- #: includes/widgets/htmega_custom_event.php:217
4417
- #: includes/widgets/htmega_easy_digital_download.php:200
4418
- #: includes/widgets/htmega_easy_digital_download.php:420
4419
- #: includes/widgets/htmega_errorcontent.php:112
4420
- #: includes/widgets/htmega_errorcontent.php:463
4421
- #: includes/widgets/htmega_gravity_forms.php:172
4422
- #: includes/widgets/htmega_imagemarker.php:922
4423
- #: includes/widgets/htmega_image_grid.php:114
4424
- #: includes/widgets/htmega_image_grid.php:368
4425
- #: includes/widgets/htmega_image_masonry.php:103
4426
- #: includes/widgets/htmega_image_masonry.php:352
4427
- #: includes/widgets/htmega_ninja_form.php:211
4428
- #: includes/widgets/htmega_service.php:469
4429
- #: includes/widgets/htmega_special_day_banner.php:96
4430
- #: includes/widgets/htmega_special_day_banner.php:453
4431
- #: includes/widgets/htmega_wc_categories.php:131
4432
- #: includes/widgets/htmega_working_process.php:96
4433
- #: includes/widgets/htmega_working_process.php:712
4434
- #: includes/widgets/htmega_wpforms.php:86
4435
- #: includes/widgets/htmega_wpforms.php:203
4436
- msgid "Description"
4437
- msgstr ""
4438
-
4439
- #: includes/widgets/htmega_ninja_form.php:95
4440
- msgid "Description Hide"
4441
- msgstr ""
4442
-
4443
- #: includes/widgets/htmega_caldera_form.php:137
4444
- #: includes/widgets/htmega_gravity_forms.php:343
4445
- #: includes/widgets/htmega_ninja_form.php:432
4446
- #: includes/widgets/htmega_wpforms.php:414
4447
- msgid "Description Style"
4448
- msgstr ""
4449
-
4450
- #: includes/widgets/htmega_call_to_action.php:113
4451
- msgid "Description Tag"
4452
- msgstr ""
4453
-
4454
- #: includes/widgets/htmega_data_table.php:210
4455
- #: includes/widgets/htmega_pricing_list_view.php:455
4456
- #: includes/widgets/htmega_teammember.php:163
4457
- #: includes/widgets/htmega_teammember.php:774
4458
- #: includes/widgets/htmega_testimonial_grid.php:175
4459
- #: includes/widgets/htmega_testimonial_grid.php:480
4460
- msgid "Designation"
4461
- msgstr ""
4462
-
4463
- #: includes/widgets/htmega_testimonial_grid.php:69
4464
- msgid "Desktop"
4465
- msgstr ""
4466
-
4467
- #: admin/include/templates/library/templates.php:30
4468
- #: admin/include/templates/library/templates.php:31
4469
- msgid "Desktop view"
4470
- msgstr ""
4471
-
4472
- #: includes/widgets/htmega_countdown.php:273
4473
- msgid "Details"
4474
- msgstr ""
4475
-
4476
- #: includes/widgets/htmega_data_table.php:468
4477
- #: includes/widgets/htmega_pricing_list_view.php:1105
4478
- #: includes/widgets/htmega_testimonial_grid.php:239
4479
- msgid "Developer"
4480
- msgstr ""
4481
-
4482
- #: includes/widgets/htmega_socialshere.php:73
4483
- msgid "Digg"
4484
- msgstr ""
4485
-
4486
- #: includes/widgets/htmega_newsticker.php:128
4487
- #: includes/widgets/htmega_popover.php:188
4488
- #: includes/widgets/htmega_tooltip.php:176
4489
- msgid "Direction"
4490
- msgstr ""
4491
-
4492
- #: includes/widgets/htmega_section_title.php:612
4493
- #: includes/widgets/htmega_section_title.php:843
4494
- msgid "Display"
4495
- msgstr ""
4496
-
4497
- #: includes/widgets/htmega_user_login_form.php:396
4498
- msgid "Display as"
4499
- msgstr ""
4500
-
4501
- #: includes/helper-function.php:208
4502
- msgid "div"
4503
- msgstr ""
4504
-
4505
- #: includes/helper-function.php:96 includes/helper-function.php:104
4506
- #: extensions/ht-menu/menu/helper_function.php:17
4507
- msgid "Do not Saved Templates."
4508
- msgstr ""
4509
-
4510
- #: extensions/wc-sales-notification/admin/setting.php:153
4511
- msgid ""
4512
- "Do not show purchases older than.( More Options are Pro features ) <span>( "
4513
- "Pro )</span>"
4514
- msgstr ""
4515
-
4516
- #: includes/recommended-plugins/recommended-plugins.php:116
4517
- msgid "Docus"
4518
- msgstr ""
4519
-
4520
- #: includes/widgets/htmega_user_login_form.php:105
4521
- #: includes/widgets/htmega_user_login_form.php:107
4522
- msgid "Don’t Have account? You can create an account by using this form."
4523
- msgstr ""
4524
-
4525
- #: includes/widgets/htmega_post_slider.php:373
4526
- msgid "Dot Style"
4527
- msgstr ""
4528
-
4529
- #: admin/include/admin-setting.php:223
4530
- #: includes/widgets/htmega_double_button.php:13
4531
- #: includes/widgets/htmega_double_button.php:35
4532
- msgid "Double Button"
4533
- msgstr ""
4534
-
4535
- #: includes/widgets/htmega_newsticker.php:133
4536
- msgid "Down"
4537
- msgstr ""
4538
-
4539
- #: includes/widgets/htmega_download_monitor.php:54
4540
- msgid "Download File"
4541
- msgstr ""
4542
-
4543
- #: admin/include/admin-setting.php:969
4544
- #: includes/widgets/htmega_download_monitor.php:13
4545
- msgid "Download Monitor"
4546
- msgstr ""
4547
-
4548
- #: includes/widgets/htmega_download_monitor.php:421
4549
- msgid "Downloaded"
4550
- msgstr ""
4551
-
4552
- #: admin/include/admin-setting.php:1169
4553
- msgid "Drag n Drop, No coding Required"
4554
- msgstr ""
4555
-
4556
- #: includes/widgets/htmega_dropcaps.php:188
4557
- msgid "Dropcap Letter"
4558
- msgstr ""
4559
-
4560
- #: admin/include/admin-setting.php:231 includes/widgets/htmega_dropcaps.php:13
4561
- #: includes/widgets/htmega_dropcaps.php:35
4562
- msgid "Dropcaps"
4563
- msgstr ""
4564
-
4565
- #: extensions/ht-menu/widgets/inline-mega-menu.php:47
4566
- #: extensions/ht-menu/widgets/verticle-mega-menu.php:48
4567
- msgid "Dropdown Icon"
4568
- msgstr ""
4569
-
4570
- #: includes/widgets/htmega_countdown.php:109
4571
- msgid "Due Date"
4572
- msgstr ""
4573
-
4574
- #: admin/include/admin-setting.php:979
4575
- #: includes/widgets/htmega_easy_digital_download.php:13
4576
- #: includes/widgets/htmega_easy_digital_download.php:43
4577
- msgid "Easy Digital Downloads"
4578
- msgstr ""
4579
-
4580
- #: admin/include/template-library.php:198
4581
- msgid "Edit Page"
4582
- msgstr ""
4583
-
4584
- #: admin/include/template-library.php:198
4585
- msgid "Edit Template"
4586
- msgstr ""
4587
-
4588
- #: includes/widgets/htmega_button.php:423
4589
- msgid "Effect 1"
4590
- msgstr ""
4591
-
4592
- #: includes/widgets/htmega_button.php:432
4593
- msgid "Effect 10"
4594
- msgstr ""
4595
-
4596
- #: includes/widgets/htmega_button.php:433
4597
- msgid "Effect 11"
4598
- msgstr ""
4599
-
4600
- #: includes/widgets/htmega_button.php:434
4601
- msgid "Effect 12"
4602
- msgstr ""
4603
-
4604
- #: includes/widgets/htmega_button.php:435
4605
- msgid "Effect 13"
4606
- msgstr ""
4607
-
4608
- #: includes/widgets/htmega_button.php:436
4609
- msgid "Effect 14"
4610
- msgstr ""
4611
-
4612
- #: includes/widgets/htmega_button.php:424
4613
- msgid "Effect 2"
4614
- msgstr ""
4615
-
4616
- #: includes/widgets/htmega_button.php:425
4617
- msgid "Effect 3"
4618
- msgstr ""
4619
-
4620
- #: includes/widgets/htmega_button.php:426
4621
- msgid "Effect 4"
4622
- msgstr ""
4623
-
4624
- #: includes/widgets/htmega_button.php:427
4625
- msgid "Effect 5"
4626
- msgstr ""
4627
-
4628
- #: includes/widgets/htmega_button.php:428
4629
- msgid "Effect 6"
4630
- msgstr ""
4631
-
4632
- #: includes/widgets/htmega_button.php:429
4633
- msgid "Effect 7"
4634
- msgstr ""
4635
-
4636
- #: includes/widgets/htmega_button.php:430
4637
- msgid "Effect 8"
4638
- msgstr ""
4639
-
4640
- #: includes/widgets/htmega_button.php:431
4641
- msgid "Effect 9"
4642
- msgstr ""
4643
-
4644
- #: includes/widgets/htmega_button.php:463
4645
- msgid "Effect After Color"
4646
- msgstr ""
4647
-
4648
- #: includes/widgets/htmega_button.php:444
4649
- #: includes/widgets/htmega_button.php:454
4650
- #: includes/widgets/htmega_button.php:472
4651
- msgid "Effect Before Color"
4652
- msgstr ""
4653
-
4654
- #: includes/widgets/htmega_wc_element_pages.php:48
4655
- msgid "Element"
4656
- msgstr ""
4657
-
4658
- #: includes/widgets/htmega_notify.php:96
4659
- msgid "Element Container"
4660
- msgstr ""
4661
-
4662
- #: includes/widgets/htmega_wc_element_pages.php:793
4663
- #: includes/widgets/htmega_wc_element_pages.php:1459
4664
- msgid "Element Space"
4665
- msgstr ""
4666
-
4667
- #: includes/class.htmega.php:160 admin/include/templates_list.php:42
4668
- msgid "Elementor"
4669
- msgstr ""
4670
-
4671
- #: includes/class.htmega.php:138
4672
- msgid "Elementor Activate Now"
4673
- msgstr ""
4674
-
4675
- #: includes/class.htmega.php:146
4676
- msgid "Elementor Install Now"
4677
- msgstr ""
4678
-
4679
- #: includes/widgets/htmega_accordion.php:82
4680
- #: includes/widgets/htmega_accordion.php:222
4681
- #: includes/widgets/htmega_blockquote.php:46
4682
- #: includes/widgets/htmega_modal.php:56
4683
- #: includes/widgets/htmega_offcanvas.php:62
4684
- #: includes/widgets/htmega_scroll_navigation.php:65
4685
- #: includes/widgets/htmega_switcher.php:107
4686
- #: includes/widgets/htmega_switcher.php:199 includes/widgets/htmega_tabs.php:91
4687
- #: includes/widgets/htmega_toggle.php:84
4688
- msgid "Elementor Template"
4689
- msgstr ""
4690
-
4691
- #: admin/include/admin-setting.php:76
4692
- msgid "Elements"
4693
- msgstr ""
4694
-
4695
- #: includes/widgets/htmega_data_table.php:214
4696
- #: includes/widgets/htmega_pricing_list_view.php:459
4697
- msgid "Email"
4698
- msgstr ""
4699
-
4700
- #: includes/helper-function.php:465
4701
- msgid "Email Already in Use"
4702
- msgstr ""
4703
-
4704
- #: includes/helper-function.php:462
4705
- msgid "Email is not valid"
4706
- msgstr ""
4707
-
4708
- #: extensions/ht-menu/classes/class.mega-menu.php:120
4709
- msgid "Enable megamenu?"
4710
- msgstr ""
4711
-
4712
- #: includes/widgets/htmega_accordion.php:1113
4713
- #: includes/widgets/htmega_counter.php:74
4714
- #: includes/widgets/htmega_user_login_form.php:430
4715
- msgid "End"
4716
- msgstr ""
4717
-
4718
- #: includes/widgets/htmega_googlemap.php:113
4719
- msgid "Enter Map Style Json Code."
4720
- msgstr ""
4721
-
4722
- #: extensions/ht-builder/widgets/bl_post_search_form.php:89
4723
- msgid "Enter you text"
4724
- msgstr ""
4725
-
4726
- #: includes/widgets/htmega_section_title.php:82
4727
- #: includes/widgets/htmega_section_title.php:84
4728
- msgid "Enter your advance title"
4729
- msgstr ""
4730
-
4731
- #: includes/widgets/htmega_googlemap.php:102
4732
- msgid "Enter your center address."
4733
- msgstr ""
4734
-
4735
- #: includes/widgets/htmega_dropcaps.php:61
4736
- msgid "Enter Your Dropcaps Content."
4737
- msgstr ""
4738
-
4739
- #: includes/widgets/htmega_googlemap.php:283
4740
- msgid "Enter your fixed address."
4741
- msgstr ""
4742
-
4743
- #: includes/widgets/htmega_section_title.php:71
4744
- #: includes/widgets/htmega_section_title.php:73
4745
- msgid "Enter your sub title"
4746
- msgstr ""
4747
-
4748
- #: extensions/ht-builder/widgets/bl_post_archive.php:74
4749
- msgid "Enter Your Text"
4750
- msgstr ""
4751
-
4752
- #: includes/widgets/htmega_button.php:64 includes/widgets/htmega_button.php:66
4753
- msgid "Enter your Text"
4754
- msgstr ""
4755
-
4756
- #: includes/widgets/htmega_section_title.php:59
4757
- #: includes/widgets/htmega_section_title.php:61
4758
- msgid "Enter your title"
4759
- msgstr ""
4760
-
4761
- #: includes/widgets/htmega_tablepress.php:75
4762
- msgid "Entries Hide"
4763
- msgstr ""
4764
-
4765
- #: includes/widgets/htmega_ninja_form.php:1109
4766
- msgid "Error Color"
4767
- msgstr ""
4768
-
4769
- #: includes/widgets/htmega_caldera_form.php:619
4770
- #: includes/widgets/htmega_gravity_forms.php:850
4771
- msgid "Error Text Color"
4772
- msgstr ""
4773
-
4774
- #: includes/widgets/htmega_gravity_forms.php:842
4775
- msgid "Errors and Confirmation Style"
4776
- msgstr ""
4777
-
4778
- #: includes/widgets/htmega_contact_form_seven.php:949
4779
- msgid "Errors and Feedback Style"
4780
- msgstr ""
4781
-
4782
- #: includes/widgets/htmega_caldera_form.php:611
4783
- #: includes/widgets/htmega_ninja_form.php:1101
4784
- #: includes/widgets/htmega_quforms.php:969
4785
- msgid "Errors and Success Style"
4786
- msgstr ""
4787
-
4788
- #: includes/widgets/htmega_wpforms.php:1136
4789
- msgid "Errors Style"
4790
- msgstr ""
4791
-
4792
- #: includes/widgets/htmega_wc_element_pages.php:1204
4793
- msgid "Even"
4794
- msgstr ""
4795
-
4796
- #: includes/widgets/htmega_custom_event.php:35
4797
- msgid "Event"
4798
- msgstr ""
4799
-
4800
- #: includes/widgets/htmega_countdown.php:261
4801
- msgid "Event Button"
4802
- msgstr ""
4803
-
4804
- #: includes/widgets/htmega_custom_event.php:102
4805
- msgid "Event Button Link"
4806
- msgstr ""
4807
-
4808
- #: includes/widgets/htmega_custom_event.php:93
4809
- msgid "Event Button text"
4810
- msgstr ""
4811
-
4812
- #: includes/widgets/htmega_countdown.php:54
4813
- msgid "Event Calendar Not Installed"
4814
- msgstr ""
4815
-
4816
- #: includes/widgets/htmega_tablepress.php:263
4817
- msgid "Event Cell"
4818
- msgstr ""
4819
-
4820
- #: includes/widgets/htmega_countdown.php:72
4821
- msgid "Event Countdown"
4822
- msgstr ""
4823
-
4824
- #: includes/widgets/htmega_custom_event.php:85
4825
- msgid "Event description"
4826
- msgstr ""
4827
-
4828
- #: includes/widgets/htmega_countdown.php:81
4829
- msgid "Event List"
4830
- msgstr ""
4831
-
4832
- #: includes/widgets/htmega_custom_event.php:76
4833
- msgid "Event Location"
4834
- msgstr ""
4835
-
4836
- #: includes/widgets/htmega_custom_event.php:68
4837
- msgid "Event Time"
4838
- msgstr ""
4839
-
4840
- #: includes/widgets/htmega_custom_event.php:44
4841
- msgid "Event Title."
4842
- msgstr ""
4843
-
4844
- #: includes/recommended-plugins/recommended-plugins.php:68
4845
- msgid "EverCompare"
4846
- msgstr ""
4847
-
4848
- #: includes/widgets/htmega_socialshere.php:74
4849
- msgid "Evernote"
4850
- msgstr ""
4851
-
4852
- #: includes/widgets/htmega_notify.php:178
4853
- msgid "Exit Animation"
4854
- msgstr ""
4855
-
4856
- #: includes/widgets/htmega_post_grid_tab.php:259
4857
- msgid "Expand Box Style"
4858
- msgstr ""
4859
-
4860
- #: includes/widgets/htmega_accordion.php:464
4861
- msgid "Expand Item Height"
4862
- msgstr ""
4863
-
4864
- #: includes/widgets/htmega_button.php:96
4865
- #: includes/widgets/htmega_double_button.php:49
4866
- msgid "Extra Large"
4867
- msgstr ""
4868
-
4869
- #: includes/widgets/htmega_button.php:97
4870
- #: includes/widgets/htmega_double_button.php:50
4871
- msgid "Extra Small"
4872
- msgstr ""
4873
-
4874
- #: includes/widgets/htmega_weather.php:56
4875
- msgid "F"
4876
- msgstr ""
4877
-
4878
- #: includes/widgets/htmega_socialshere.php:62
4879
- #: includes/widgets/htmega_socialshere.php:102
4880
- #: includes/widgets/htmega_socialshere.php:320
4881
- msgid "Facebook"
4882
- msgstr ""
4883
-
4884
- #: includes/widgets/htmega_notify.php:153
4885
- #: includes/widgets/htmega_notify.php:188
4886
- msgid "fadeIn"
4887
- msgstr ""
4888
-
4889
- #: includes/widgets/htmega_notify.php:154
4890
- #: includes/widgets/htmega_notify.php:189
4891
- msgid "fadeInDown"
4892
- msgstr ""
4893
-
4894
- #: includes/widgets/htmega_notify.php:155
4895
- #: includes/widgets/htmega_notify.php:190
4896
- msgid "fadeInDownBig"
4897
- msgstr ""
4898
-
4899
- #: includes/widgets/htmega_notify.php:156
4900
- #: includes/widgets/htmega_notify.php:191
4901
- #: extensions/wc-sales-notification/admin/setting.php:169
4902
- msgid "fadeInLeft"
4903
- msgstr ""
4904
-
4905
- #: includes/widgets/htmega_notify.php:157
4906
- #: includes/widgets/htmega_notify.php:192
4907
- msgid "fadeInLeftBig"
4908
- msgstr ""
4909
-
4910
- #: includes/widgets/htmega_notify.php:158
4911
- #: includes/widgets/htmega_notify.php:193
4912
- msgid "fadeInRight"
4913
- msgstr ""
4914
-
4915
- #: includes/widgets/htmega_notify.php:159
4916
- #: includes/widgets/htmega_notify.php:194
4917
- msgid "fadeInRightBig"
4918
- msgstr ""
4919
-
4920
- #: includes/widgets/htmega_notify.php:162
4921
- #: includes/widgets/htmega_notify.php:197
4922
- msgid "fadeInUp"
4923
- msgstr ""
4924
-
4925
- #: includes/widgets/htmega_notify.php:165
4926
- #: includes/widgets/htmega_notify.php:200
4927
- msgid "fadeInUpBig"
4928
- msgstr ""
4929
-
4930
- #: includes/widgets/htmega_notify.php:164
4931
- #: includes/widgets/htmega_notify.php:199
4932
- msgid "fadeOutDown"
4933
- msgstr ""
4934
-
4935
- #: includes/widgets/htmega_notify.php:161
4936
- #: includes/widgets/htmega_notify.php:196
4937
- msgid "fadeOutLeft"
4938
- msgstr ""
4939
-
4940
- #: includes/widgets/htmega_notify.php:160
4941
- #: includes/widgets/htmega_notify.php:195
4942
- #: extensions/wc-sales-notification/admin/setting.php:181
4943
- msgid "fadeOutRight"
4944
- msgstr ""
4945
-
4946
- #: includes/widgets/htmega_notify.php:163
4947
- #: includes/widgets/htmega_notify.php:198
4948
- msgid "fadeOutUp"
4949
- msgstr ""
4950
-
4951
- #: extensions/wc-sales-notification/admin/setting.php:70
4952
- msgid "Fakes"
4953
- msgstr ""
4954
-
4955
- #: admin/include/admin-setting.php:1252 admin/include/admin-setting.php:1277
4956
- msgid "Fakes notification"
4957
- msgstr ""
4958
-
4959
- #: includes/widgets/htmega_pricing_list_view.php:148
4960
- #: includes/widgets/htmega_pricing_list_view.php:154
4961
- #: includes/widgets/htmega_pricing_list_view.php:160
4962
- #: includes/widgets/htmega_pricing_list_view.php:166
4963
- msgid "fas fa-shopping-basket"
4964
- msgstr ""
4965
-
4966
- #: includes/widgets/htmega_job_manager.php:113
4967
- msgid "Feature Jobs only"
4968
- msgstr ""
4969
-
4970
- #: includes/widgets/htmega_booked_calender.php:110
4971
- msgid "February"
4972
- msgstr ""
4973
-
4974
- #: includes/widgets/htmega_instragram_feed.php:49
4975
- msgid "Feed Limit"
4976
- msgstr ""
4977
-
4978
- #: includes/widgets/htmega_contact_form_seven.php:983
4979
- msgid "Feedback Style"
4980
- msgstr ""
4981
-
4982
- #: includes/widgets/htmega_data_table.php:237
4983
- #: includes/widgets/htmega_pricing_list_view.php:545
4984
- msgid "Fild Type"
4985
- msgstr ""
4986
-
4987
- #: includes/widgets/htmega_job_manager.php:142
4988
- msgid "Filters"
4989
- msgstr ""
4990
-
4991
- #: includes/widgets/htmega_layer_slider.php:72
4992
- msgid "First Slide Number"
4993
- msgstr ""
4994
-
4995
- #: includes/widgets/htmega_image_grid.php:66
4996
- #: includes/widgets/htmega_image_masonry.php:83
4997
- #: includes/widgets/htmega_testimonial_grid.php:77
4998
- msgid "Five"
4999
- msgstr ""
5000
-
5001
- #: includes/widgets/htmega_googlemap.php:281
5002
- msgid "Fixed Address"
5003
- msgstr ""
5004
-
5005
- #: includes/widgets/htmega_googlemap.php:502
5006
- msgid "Fixed Address Span Style"
5007
- msgstr ""
5008
-
5009
- #: includes/widgets/htmega_googlemap.php:272
5010
- msgid "Fixed Maps Address:"
5011
- msgstr ""
5012
-
5013
- #: admin/include/admin-setting.php:239
5014
- msgid "Flip Box"
5015
- msgstr ""
5016
-
5017
- #: includes/widgets/htmega_instagram.php:303
5018
- msgid "Flow Button Icon"
5019
- msgstr ""
5020
-
5021
- #: includes/widgets/htmega_caldera_form.php:369
5022
- #: includes/widgets/htmega_contact_form_seven.php:366
5023
- #: includes/widgets/htmega_contact_form_seven.php:581
5024
- #: includes/widgets/htmega_gravity_forms.php:568
5025
- #: includes/widgets/htmega_ninja_form.php:634
5026
- #: includes/widgets/htmega_ninja_form.php:852
5027
- #: includes/widgets/htmega_quforms.php:470
5028
- #: includes/widgets/htmega_quforms.php:687
5029
- #: includes/widgets/htmega_search.php:391
5030
- #: includes/widgets/htmega_wc_element_pages.php:580
5031
- #: includes/widgets/htmega_wc_element_pages.php:842
5032
- #: includes/widgets/htmega_wc_element_pages.php:1400
5033
- #: includes/widgets/htmega_wpforms.php:637
5034
- #: includes/widgets/htmega_wpforms.php:855
5035
- msgid "Focus"
5036
- msgstr ""
5037
-
5038
- #: includes/widgets/htmega_instagram.php:292
5039
- msgid "Follow @"
5040
- msgstr ""
5041
-
5042
- #: includes/widgets/htmega_instagram.php:1282
5043
- msgid "Follow Button"
5044
- msgstr ""
5045
-
5046
- #: includes/widgets/htmega_instagram.php:290
5047
- msgid "Follow button Aditional text"
5048
- msgstr ""
5049
-
5050
- #: includes/widgets/htmega_instragram_feed.php:158
5051
- msgid "Follow Color"
5052
- msgstr ""
5053
-
5054
- #: includes/widgets/htmega_instragram_feed.php:106
5055
- #: includes/widgets/htmega_instragram_feed.php:107
5056
- msgid "Follow on Instagram"
5057
- msgstr ""
5058
-
5059
- #: includes/widgets/htmega_instragram_feed.php:104
5060
- msgid "Follow Text"
5061
- msgstr ""
5062
-
5063
- #: includes/widgets/htmega_instragram_feed.php:170
5064
- msgid "Follow Text Color"
5065
- msgstr ""
5066
-
5067
- #: includes/widgets/htmega_googlemap.php:201
5068
- #: includes/widgets/htmega_googlemap.php:232
5069
- #: includes/widgets/htmega_googlemap.php:434
5070
- #: includes/widgets/htmega_googlemap.php:521
5071
- msgid "Font Color"
5072
- msgstr ""
5073
-
5074
- #: includes/widgets/htmega_blockquote.php:575
5075
- #: includes/widgets/htmega_carousel.php:570
5076
- #: includes/widgets/htmega_imagemarker.php:514
5077
- #: includes/widgets/htmega_instagram.php:772
5078
- #: includes/widgets/htmega_instagram.php:946
5079
- #: includes/widgets/htmega_lightbox.php:377
5080
- #: includes/widgets/htmega_panel_slider.php:828
5081
- #: includes/widgets/htmega_post_slider.php:1555
5082
- #: includes/widgets/htmega_search.php:464
5083
- #: includes/widgets/htmega_search.php:716
5084
- #: includes/widgets/htmega_slider_thumb_gallery.php:836
5085
- #: includes/widgets/htmega_teammember.php:1047
5086
- #: includes/widgets/htmega_twitter_feed.php:1088
5087
- #: includes/widgets/htmega_videoplayer.php:366
5088
- #: includes/widgets/htmega_working_process.php:955
5089
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:463
5090
- msgid "Font Size"
5091
- msgstr ""
5092
-
5093
- #: includes/widgets/htmega_modal.php:746
5094
- msgid "Footer"
5095
- msgstr ""
5096
-
5097
- #: includes/widgets/htmega_modal.php:831
5098
- msgid "Footer Close Button"
5099
- msgstr ""
5100
-
5101
- #: includes/widgets/htmega_data_table.php:119
5102
- msgid "Footer Info"
5103
- msgstr ""
5104
-
5105
- #: extensions/ht-builder/classes/class.header_footer.php:100
5106
- msgid "Footer Template"
5107
- msgstr ""
5108
-
5109
- #: extensions/ht-builder/admin/setting.php:91
5110
- msgid "Footer Template."
5111
- msgstr ""
5112
-
5113
- #: includes/widgets/htmega_modal.php:91
5114
- msgid "Footer Text"
5115
- msgstr ""
5116
-
5117
- #: includes/widgets/htmega_tablepress.php:399
5118
- msgid "Footer text"
5119
- msgstr ""
5120
-
5121
- #: includes/widgets/htmega_tablepress.php:108
5122
- msgid "Footer text Hide"
5123
- msgstr ""
5124
-
5125
- #: includes/widgets/htmega_pricing_list_view.php:329
5126
- #: includes/widgets/htmega_pricing_list_view.php:958
5127
- msgid "For Layout 4 only"
5128
- msgstr ""
5129
-
5130
- #: includes/widgets/htmega_mailchimp_wp.php:69
5131
- msgid ""
5132
- "For show ID <a href=\"admin.php?page=mailchimp-for-wp-forms\" "
5133
- "target=\"_blank\"> Click here </a>"
5134
- msgstr ""
5135
-
5136
- #: includes/widgets/htmega_weather.php:317
5137
- msgid "Forcast"
5138
- msgstr ""
5139
-
5140
- #: includes/widgets/htmega_weather.php:80
5141
- msgid "Forecast"
5142
- msgstr ""
5143
-
5144
- #: includes/widgets/htmega_user_login_form.php:296
5145
- msgid "Forget Password Position"
5146
- msgstr ""
5147
-
5148
- #: includes/widgets/htmega_user_login_form.php:951
5149
- msgid "Forget Text"
5150
- msgstr ""
5151
-
5152
- #: includes/widgets/htmega_user_login_form.php:967
5153
- msgid "Forget Text Color"
5154
- msgstr ""
5155
-
5156
- #: includes/widgets/htmega_user_login_form.php:978
5157
- msgid "Forget Text Hover Color"
5158
- msgstr ""
5159
-
5160
- #: includes/widgets/htmega_user_login_form.php:1639
5161
- #: includes/widgets/htmega_user_login_form.php:1662
5162
- msgid "Forgot Password?"
5163
- msgstr ""
5164
-
5165
- #: includes/widgets/htmega_wpforms.php:47
5166
- msgid "Form not found"
5167
- msgstr ""
5168
-
5169
- #: includes/helper-function.php:356
5170
- #: includes/widgets/htmega_gravity_forms.php:48
5171
- #: includes/widgets/htmega_quforms.php:49
5172
- msgid "Form Not Found!"
5173
- msgstr ""
5174
-
5175
- #: includes/widgets/htmega_ninja_form.php:49
5176
- msgid "Form Not Found."
5177
- msgstr ""
5178
-
5179
- #: includes/widgets/htmega_contact_form_seven.php:80
5180
- msgid "Form Wrapper Style"
5181
- msgstr ""
5182
-
5183
- #: includes/widgets/htmega_bbpress.php:55
5184
- msgid "Forum Form"
5185
- msgstr ""
5186
-
5187
- #: includes/widgets/htmega_bbpress.php:54
5188
- msgid "Forum Index"
5189
- msgstr ""
5190
-
5191
- #: includes/widgets/htmega_image_grid.php:65
5192
- #: includes/widgets/htmega_image_masonry.php:82
5193
- #: includes/widgets/htmega_testimonial_grid.php:76
5194
- #: includes/widgets/htmega_testimonial_grid.php:91
5195
- #: includes/widgets/htmega_testimonial_grid.php:108
5196
- msgid "Four"
5197
- msgstr ""
5198
-
5199
- #: admin/include/templates_list.php:53
5200
- msgid "Free"
5201
- msgstr ""
5202
-
5203
- #: includes/widgets/htmega_business_hours.php:194
5204
- msgid "Friday"
5205
- msgstr ""
5206
-
5207
- #: includes/widgets/htmega_gravity_forms.php:100
5208
- msgid "From Ajax"
5209
- msgstr ""
5210
-
5211
- #: includes/widgets/htmega_instragram_feed.php:72
5212
- msgid "Full"
5213
- msgstr ""
5214
-
5215
- #: includes/widgets/htmega_scroll_navigation.php:143
5216
- msgid "Full Screen"
5217
- msgstr ""
5218
-
5219
- #: admin/include/admin-setting.php:247
5220
- #: includes/widgets/htmega_gallery_justify.php:13
5221
- #: includes/widgets/htmega_gallery_justify.php:51
5222
- msgid "Gallery Justify"
5223
- msgstr ""
5224
-
5225
- #: includes/widgets/htmega_gallery_justify.php:120
5226
- msgid "Gallery Popup "
5227
- msgstr ""
5228
-
5229
- #: admin/include/admin-setting.php:71
5230
- msgid "General"
5231
- msgstr ""
5232
-
5233
- #: includes/widgets/htmega_testimonial_grid.php:238
5234
- msgid "Gerald Gilbert"
5235
- msgstr ""
5236
-
5237
- #: admin/include/admin-setting.php:1175
5238
- msgid "Get Pro Now"
5239
- msgstr ""
5240
-
5241
- #: admin/include/admin-setting.php:1176
5242
- msgid "Get pro now"
5243
- msgstr ""
5244
-
5245
- #: includes/class.htmega.php:190
5246
- #: admin/include/templates/library/templates.php:71
5247
- msgid "Go Pro"
5248
- msgstr ""
5249
-
5250
- #: admin/include/admin-setting.php:636
5251
- msgid ""
5252
- "Go to <a href=\"https://developers.google."
5253
- "com/maps/documentation/javascript/get-api-key\" target=\"_blank\">https:"
5254
- "//developers.google.com</a> and generate the API key."
5255
- msgstr ""
5256
-
5257
- #: includes/widgets/htmega_googlemap.php:114
5258
- msgid ""
5259
- "Go to <a href=\"https://snazzymaps.com/\" target=_blank>Snazzy Maps</a> and "
5260
- "Choose/Customize your Map Style. Click on your demo and copy JavaScript "
5261
- "Style Array"
5262
- msgstr ""
5263
-
5264
- #: includes/widgets/htmega_inlinemenu.php:81
5265
- #: extensions/ht-builder/widgets/bl_nav_menu.php:75
5266
- #, php-format
5267
- msgid ""
5268
- "Go to the <a href=\"%s\" target=\"_blank\">Menus Option</a> to manage your "
5269
- "menus."
5270
- msgstr ""
5271
-
5272
- #: includes/widgets/htmega_lightbox.php:95
5273
- msgid "Goggle Map Embed URL"
5274
- msgstr ""
5275
-
5276
- #: admin/include/admin-setting.php:255 includes/widgets/htmega_googlemap.php:13
5277
- #: includes/widgets/htmega_googlemap.php:43
5278
- #: includes/widgets/htmega_lightbox.php:55
5279
- msgid "Google Map"
5280
- msgstr ""
5281
-
5282
- #: admin/include/admin-setting.php:635
5283
- msgid "Google Map API Key"
5284
- msgstr ""
5285
-
5286
- #: admin/include/admin-setting.php:637
5287
- msgid "Google Map API key"
5288
- msgstr ""
5289
-
5290
- #: includes/widgets/htmega_socialshere.php:330
5291
- msgid "Google Plus"
5292
- msgstr ""
5293
-
5294
- #: includes/widgets/htmega_socialshere.php:64
5295
- msgid "Google+"
5296
- msgstr ""
5297
-
5298
- #: includes/widgets/htmega_postgrid.php:424
5299
- #: includes/widgets/htmega_post_grid_tab.php:1269
5300
- #: includes/widgets/htmega_post_grid_tab.php:1287
5301
- msgid "Gradient "
5302
- msgstr ""
5303
-
5304
- #: includes/widgets/htmega_postgrid.php:406
5305
- #: includes/widgets/htmega_post_grid_tab.php:1251
5306
- msgid "Gradient Five"
5307
- msgstr ""
5308
-
5309
- #: includes/widgets/htmega_postgrid.php:388
5310
- #: includes/widgets/htmega_post_grid_tab.php:1233
5311
- msgid "Gradient Four"
5312
- msgstr ""
5313
-
5314
- #: includes/widgets/htmega_postgrid.php:334
5315
- #: includes/widgets/htmega_postgrid.php:352
5316
- #: includes/widgets/htmega_post_grid_tab.php:1179
5317
- #: includes/widgets/htmega_post_grid_tab.php:1197
5318
- msgid "Gradient One"
5319
- msgstr ""
5320
-
5321
- #: includes/widgets/htmega_postgrid.php:370
5322
- #: includes/widgets/htmega_post_grid_tab.php:1215
5323
- msgid "Gradient Three"
5324
- msgstr ""
5325
-
5326
- #: admin/include/admin-setting.php:989
5327
- #: includes/widgets/htmega_gravity_forms.php:13
5328
- #: includes/widgets/htmega_gravity_forms.php:59
5329
- msgid "Gravity Forms"
5330
- msgstr ""
5331
-
5332
- #: includes/widgets/htmega_buddy_press.php:53
5333
- msgid "Group"
5334
- msgstr ""
5335
-
5336
- #: includes/widgets/htmega_post_grid_tab.php:1092
5337
- msgid "Group Item Style"
5338
- msgstr ""
5339
-
5340
- #: includes/helper-function.php:201
5341
- msgid "H1"
5342
- msgstr ""
5343
-
5344
- #: includes/helper-function.php:202
5345
- msgid "H2"
5346
- msgstr ""
5347
-
5348
- #: includes/helper-function.php:203
5349
- msgid "H3"
5350
- msgstr ""
5351
-
5352
- #: includes/helper-function.php:204
5353
- msgid "H4"
5354
- msgstr ""
5355
-
5356
- #: includes/helper-function.php:205
5357
- msgid "H5"
5358
- msgstr ""
5359
-
5360
- #: includes/helper-function.php:206
5361
- msgid "H6"
5362
- msgstr ""
5363
-
5364
- #: includes/widgets/htmega_image_comparison.php:411
5365
- msgid "Handler"
5366
- msgstr ""
5367
-
5368
- #: includes/widgets/htmega_counter.php:156
5369
- msgid "Happy Clients"
5370
- msgstr ""
5371
-
5372
- #: includes/widgets/htmega_twitter_feed.php:73
5373
- msgid "hastechit"
5374
- msgstr ""
5375
-
5376
- #: includes/recommended-plugins/class.recommended-plugins.php:227
5377
- msgid "HasTheme"
5378
- msgstr ""
5379
-
5380
- #. Author of the plugin
5381
- msgid "HasThemes"
5382
- msgstr ""
5383
-
5384
- #: includes/widgets/htmega_booked_calender.php:186
5385
- #: includes/widgets/htmega_modal.php:574
5386
- #: includes/widgets/htmega_popover.php:584
5387
- #: includes/widgets/htmega_tablepress.php:143
5388
- msgid "Header"
5389
- msgstr ""
5390
-
5391
- #: includes/widgets/htmega_booked_calender.php:197
5392
- msgid "Header Background"
5393
- msgstr ""
5394
-
5395
- #: includes/widgets/htmega_booked_calender.php:209
5396
- #: includes/widgets/htmega_instragram_feed.php:146
5397
- #: includes/widgets/htmega_user_login_form.php:692
5398
- msgid "Header Color"
5399
- msgstr ""
5400
-
5401
- #: includes/widgets/htmega_modal.php:42
5402
- #: includes/widgets/htmega_user_login_form.php:721
5403
- msgid "Header Content"
5404
- msgstr ""
5405
-
5406
- #: extensions/ht-builder/classes/class.header_footer.php:89
5407
- msgid "Header Template"
5408
- msgstr ""
5409
-
5410
- #: extensions/ht-builder/admin/setting.php:82
5411
- msgid "Header Template."
5412
- msgstr ""
5413
-
5414
- #: includes/widgets/htmega_booked_calender.php:475
5415
- msgid "Heading"
5416
- msgstr ""
5417
-
5418
- #: includes/widgets/htmega_animated_heading.php:128
5419
- msgid "Heading After Text"
5420
- msgstr ""
5421
-
5422
- #: includes/widgets/htmega_animated_heading.php:91
5423
- msgid "Heading Before Text"
5424
- msgstr ""
5425
-
5426
- #: extensions/wc-sales-notification/admin/setting.php:196
5427
- msgid "Heading Color"
5428
- msgstr ""
5429
-
5430
- #: admin/include/admin-setting.php:1260 admin/include/admin-setting.php:1285
5431
- msgid "Heading color option"
5432
- msgstr ""
5433
-
5434
- #: includes/widgets/htmega_animated_heading.php:138
5435
- msgid "Heading Placeholder Text"
5436
- msgstr ""
5437
-
5438
- #: includes/widgets/htmega_user_login_form.php:669
5439
- msgid "Heading Title Style"
5440
- msgstr ""
5441
-
5442
- #: includes/widgets/htmega_blockquote.php:658
5443
- #: includes/widgets/htmega_caldera_form.php:239
5444
- #: includes/widgets/htmega_carousel.php:627
5445
- #: includes/widgets/htmega_carousel.php:892
5446
- #: includes/widgets/htmega_carousel.php:1131
5447
- #: includes/widgets/htmega_carousel.php:1225
5448
- #: includes/widgets/htmega_contact_form_seven.php:195
5449
- #: includes/widgets/htmega_contact_form_seven.php:462
5450
- #: includes/widgets/htmega_contact_form_seven.php:773
5451
- #: includes/widgets/htmega_gravity_forms.php:448
5452
- #: includes/widgets/htmega_gravity_forms.php:647
5453
- #: includes/widgets/htmega_imagemarker.php:830
5454
- #: includes/widgets/htmega_image_comparison.php:486
5455
- #: includes/widgets/htmega_instagram.php:1003
5456
- #: includes/widgets/htmega_instagram.php:1182
5457
- #: includes/widgets/htmega_mailchimp_wp.php:167
5458
- #: includes/widgets/htmega_mailchimp_wp.php:308
5459
- #: includes/widgets/htmega_modal.php:329
5460
- #: includes/widgets/htmega_ninja_form.php:533
5461
- #: includes/widgets/htmega_ninja_form.php:755
5462
- #: includes/widgets/htmega_ninja_form.php:930
5463
- #: includes/widgets/htmega_notify.php:680
5464
- #: includes/widgets/htmega_panel_slider.php:900
5465
- #: includes/widgets/htmega_panel_slider.php:1107
5466
- #: includes/widgets/htmega_post_slider.php:1613
5467
- #: includes/widgets/htmega_post_slider.php:1762
5468
- #: includes/widgets/htmega_pricing_list_view.php:385
5469
- #: includes/widgets/htmega_pricing_list_view.php:1014
5470
- #: includes/widgets/htmega_progress_bar.php:428
5471
- #: includes/widgets/htmega_quforms.php:394
5472
- #: includes/widgets/htmega_quforms.php:614
5473
- #: includes/widgets/htmega_quforms.php:790
5474
- #: includes/widgets/htmega_scroll_navigation.php:139
5475
- #: includes/widgets/htmega_scroll_navigation.php:355
5476
- #: includes/widgets/htmega_search.php:309
5477
- #: includes/widgets/htmega_search.php:528
5478
- #: includes/widgets/htmega_search.php:759
5479
- #: includes/widgets/htmega_service.php:593
5480
- #: includes/widgets/htmega_service.php:841
5481
- #: includes/widgets/htmega_service.php:904
5482
- #: includes/widgets/htmega_slider_thumb_gallery.php:894
5483
- #: includes/widgets/htmega_slider_thumb_gallery.php:1111
5484
- #: includes/widgets/htmega_twitter_feed.php:1146
5485
- #: includes/widgets/htmega_twitter_feed.php:1343
5486
- #: includes/widgets/htmega_user_login_form.php:899
5487
- #: includes/widgets/htmega_user_login_form.php:1054
5488
- #: includes/widgets/htmega_user_login_form.php:1145
5489
- #: includes/widgets/htmega_working_process.php:904
5490
- #: includes/widgets/htmega_working_process.php:1032
5491
- #: includes/widgets/htmega_wpforms.php:536
5492
- #: includes/widgets/htmega_wpforms.php:758
5493
- #: includes/widgets/htmega_wpforms.php:933
5494
- msgid "Height"
5495
- msgstr ""
5496
-
5497
- #: includes/widgets/htmega_teammember.php:1070
5498
- msgid "Height and Width"
5499
- msgstr ""
5500
-
5501
- #: includes/widgets/htmega_notify.php:493
5502
- msgid "Hello Typography"
5503
- msgstr ""
5504
-
5505
- #: includes/widgets/htmega_user_login_form.php:92
5506
- #: includes/widgets/htmega_user_login_form.php:93
5507
- msgid "Hello!"
5508
- msgstr ""
5509
-
5510
- #: includes/widgets/htmega_imagemarker.php:138
5511
- #: includes/widgets/htmega_imagemarker.php:161
5512
- msgid "Hidden Field"
5513
- msgstr ""
5514
-
5515
- #: includes/widgets/htmega_buddy_press.php:116
5516
- #: includes/widgets/htmega_buddy_press.php:129
5517
- #: includes/widgets/htmega_buddy_press.php:144
5518
- #: includes/widgets/htmega_buddy_press.php:159
5519
- #: includes/widgets/htmega_data_table.php:61
5520
- #: includes/widgets/htmega_data_table.php:86
5521
- #: includes/widgets/htmega_data_table.php:98
5522
- #: includes/widgets/htmega_data_table.php:110
5523
- #: includes/widgets/htmega_data_table.php:122
5524
- #: includes/widgets/htmega_double_button.php:81
5525
- #: includes/widgets/htmega_gravity_forms.php:80
5526
- #: includes/widgets/htmega_gravity_forms.php:92
5527
- #: includes/widgets/htmega_instagram.php:178
5528
- #: includes/widgets/htmega_instagram.php:190
5529
- #: includes/widgets/htmega_instagram.php:280
5530
- #: includes/widgets/htmega_popover.php:130
5531
- #: includes/widgets/htmega_popover.php:207
5532
- #: includes/widgets/htmega_scroll_image.php:123
5533
- #: includes/widgets/htmega_socialshere.php:359
5534
- #: includes/widgets/htmega_tooltip.php:130
5535
- #: includes/widgets/htmega_twitter_feed.php:147
5536
- #: includes/widgets/htmega_twitter_feed.php:159
5537
- #: includes/widgets/htmega_twitter_feed.php:171
5538
- #: includes/widgets/htmega_twitter_feed.php:183
5539
- #: includes/widgets/htmega_twitter_feed.php:195
5540
- #: includes/widgets/htmega_twitter_feed.php:209
5541
- #: includes/widgets/htmega_user_login_form.php:80
5542
- #: includes/widgets/htmega_user_login_form.php:186
5543
- #: includes/widgets/htmega_user_login_form.php:197
5544
- #: includes/widgets/htmega_user_login_form.php:288
5545
- #: includes/widgets/htmega_user_login_form.php:315
5546
- #: includes/widgets/htmega_user_login_form.php:327
5547
- #: includes/widgets/htmega_wc_add_to_cart.php:75
5548
- #: includes/widgets/htmega_wpforms.php:78
5549
- #: includes/widgets/htmega_wpforms.php:90
5550
- #: extensions/ht-builder/widgets/bl_post_archive.php:102
5551
- #: extensions/ht-builder/widgets/bl_post_archive.php:114
5552
- #: extensions/ht-builder/widgets/bl_post_archive.php:126
5553
- #: extensions/ht-builder/widgets/bl_post_archive.php:138
5554
- #: extensions/ht-builder/widgets/bl_post_author_info.php:48
5555
- #: extensions/ht-builder/widgets/bl_post_author_info.php:73
5556
- #: extensions/ht-builder/widgets/bl_post_author_info.php:85
5557
- msgid "Hide"
5558
- msgstr ""
5559
-
5560
- #: includes/widgets/htmega_search.php:130
5561
- msgid "Hide Close Icon"
5562
- msgstr ""
5563
-
5564
- #: includes/widgets/htmega_weather.php:115
5565
- msgid "Hide Current Status"
5566
- msgstr ""
5567
-
5568
- #: includes/widgets/htmega_easy_digital_download.php:185
5569
- #: includes/widgets/htmega_wc_categories.php:153
5570
- msgid "Hide Empty"
5571
- msgstr ""
5572
-
5573
- #: includes/widgets/htmega_weather.php:151
5574
- msgid "Hide Forecast"
5575
- msgstr ""
5576
-
5577
- #: includes/widgets/htmega_countdown.php:180
5578
- msgid "Hide Label"
5579
- msgstr ""
5580
-
5581
- #: includes/widgets/htmega_slider_thumb_gallery.php:615
5582
- msgid "Hide on Mobile"
5583
- msgstr ""
5584
-
5585
- #: extensions/ht-builder/widgets/bl_post_archive.php:231
5586
- msgid "Hide Pagination"
5587
- msgstr ""
5588
-
5589
- #: includes/widgets/htmega_weather.php:139
5590
- msgid "Hide Sun Status"
5591
- msgstr ""
5592
-
5593
- #: includes/widgets/htmega_section_title.php:537
5594
- msgid "Highlight Title Color"
5595
- msgstr ""
5596
-
5597
- #: includes/widgets/htmega_business_hours.php:101
5598
- msgid "Hight Light this day"
5599
- msgstr ""
5600
-
5601
- #: includes/widgets/htmega_animated_heading.php:93
5602
- msgid "Honesty is the best policy"
5603
- msgstr ""
5604
-
5605
- #: includes/widgets/htmega_progress_bar.php:61
5606
- #: includes/widgets/htmega_scroll_navigation.php:130
5607
- msgid "Horizontal"
5608
- msgstr ""
5609
-
5610
- #: includes/widgets/htmega_carousel.php:721
5611
- #: includes/widgets/htmega_carousel.php:946
5612
- #: includes/widgets/htmega_carousel.php:1158
5613
- #: includes/widgets/htmega_carousel.php:1252
5614
- #: includes/widgets/htmega_panel_slider.php:966
5615
- #: includes/widgets/htmega_slider_thumb_gallery.php:947
5616
- #: includes/widgets/htmega_twitter_feed.php:1204
5617
- msgid "Horizontal Position"
5618
- msgstr ""
5619
-
5620
- #: includes/widgets/htmega_special_day_banner.php:190
5621
- msgid "Horizontal Postion"
5622
- msgstr ""
5623
-
5624
- #: includes/widgets/htmega_instagram.php:112
5625
- msgid "Hour"
5626
- msgstr ""
5627
-
5628
- #: includes/widgets/htmega_countdown.php:142
5629
- #: includes/widgets/htmega_countdown.php:216
5630
- #: includes/widgets/htmega_countdown.php:218
5631
- msgid "Hours"
5632
- msgstr ""
5633
-
5634
- #: includes/widgets/htmega_add_banner.php:198
5635
- #: includes/widgets/htmega_add_banner.php:298
5636
- #: includes/widgets/htmega_add_banner.php:707
5637
- #: includes/widgets/htmega_booked_calender.php:657
5638
- #: includes/widgets/htmega_booked_calender.php:818
5639
- #: includes/widgets/htmega_brand.php:231
5640
- #: includes/widgets/htmega_buddy_press.php:359
5641
- #: includes/widgets/htmega_button.php:333
5642
- #: includes/widgets/htmega_button.php:610
5643
- #: includes/widgets/htmega_caldera_form.php:556
5644
- #: includes/widgets/htmega_call_to_action.php:816
5645
- #: includes/widgets/htmega_call_to_action.php:1022
5646
- #: includes/widgets/htmega_carousel.php:752
5647
- #: includes/widgets/htmega_contact_form_seven.php:905
5648
- #: includes/widgets/htmega_countdown.php:1123
5649
- #: includes/widgets/htmega_custom_event.php:191
5650
- #: includes/widgets/htmega_custom_event.php:441
5651
- #: includes/widgets/htmega_double_button.php:414
5652
- #: includes/widgets/htmega_double_button.php:555
5653
- #: includes/widgets/htmega_double_button.php:728
5654
- #: includes/widgets/htmega_download_monitor.php:322
5655
- #: includes/widgets/htmega_easy_digital_download.php:395
5656
- #: includes/widgets/htmega_easy_digital_download.php:612
5657
- #: includes/widgets/htmega_errorcontent.php:637
5658
- #: includes/widgets/htmega_errorcontent.php:788
5659
- #: includes/widgets/htmega_gravity_forms.php:798
5660
- #: includes/widgets/htmega_image_grid.php:535
5661
- #: includes/widgets/htmega_image_masonry.php:530
5662
- #: includes/widgets/htmega_inlinemenu.php:244
5663
- #: includes/widgets/htmega_instagram.php:1073
5664
- #: includes/widgets/htmega_mailchimp_wp.php:453
5665
- #: includes/widgets/htmega_modal.php:434
5666
- #: includes/widgets/htmega_newsticker.php:861
5667
- #: includes/widgets/htmega_ninja_form.php:1057
5668
- #: includes/widgets/htmega_notify.php:418
5669
- #: includes/widgets/htmega_offcanvas.php:486
5670
- #: includes/widgets/htmega_panel_slider.php:1021
5671
- #: includes/widgets/htmega_popover.php:453
5672
- #: includes/widgets/htmega_post_grid_tab.php:688
5673
- #: includes/widgets/htmega_post_grid_tab.php:928
5674
- #: includes/widgets/htmega_post_grid_tab.php:1051
5675
- #: includes/widgets/htmega_post_slider.php:1122
5676
- #: includes/widgets/htmega_post_slider.php:1355
5677
- #: includes/widgets/htmega_post_slider.php:1683
5678
- #: includes/widgets/htmega_quforms.php:918
5679
- #: includes/widgets/htmega_search.php:604
5680
- #: includes/widgets/htmega_search.php:936
5681
- #: includes/widgets/htmega_service.php:271
5682
- #: includes/widgets/htmega_service.php:748
5683
- #: includes/widgets/htmega_service.php:1108
5684
- #: includes/widgets/htmega_singlepost.php:453
5685
- #: includes/widgets/htmega_slider_thumb_gallery.php:989
5686
- #: includes/widgets/htmega_socialshere.php:714
5687
- #: includes/widgets/htmega_special_day_banner.php:730
5688
- #: includes/widgets/htmega_testimonial_grid.php:336
5689
- #: includes/widgets/htmega_toggle.php:343
5690
- #: includes/widgets/htmega_tooltip.php:430
5691
- #: includes/widgets/htmega_twitter_feed.php:871
5692
- #: includes/widgets/htmega_twitter_feed.php:1028
5693
- #: includes/widgets/htmega_twitter_feed.php:1233
5694
- #: includes/widgets/htmega_user_login_form.php:1224
5695
- #: includes/widgets/htmega_user_login_form.php:1408
5696
- #: includes/widgets/htmega_verticle_time_line.php:275
5697
- #: includes/widgets/htmega_videoplayer.php:457
5698
- #: includes/widgets/htmega_wc_categories.php:238
5699
- #: includes/widgets/htmega_wc_categories.php:403
5700
- #: includes/widgets/htmega_wc_categories.php:509
5701
- #: includes/widgets/htmega_wc_element_pages.php:291
5702
- #: includes/widgets/htmega_wc_element_pages.php:471
5703
- #: includes/widgets/htmega_wc_element_pages.php:1022
5704
- #: includes/widgets/htmega_wc_element_pages.php:1612
5705
- #: includes/widgets/htmega_wc_element_pages.php:1793
5706
- #: includes/widgets/htmega_working_process.php:555
5707
- #: includes/widgets/htmega_working_process.php:1064
5708
- #: includes/widgets/htmega_wpforms.php:1084
5709
- #: extensions/ht-builder/widgets/bl_nav_menu.php:227
5710
- #: extensions/ht-builder/widgets/bl_nav_menu.php:429
5711
- #: extensions/ht-builder/widgets/bl_post_archive.php:407
5712
- #: extensions/ht-builder/widgets/bl_post_archive.php:514
5713
- #: extensions/ht-builder/widgets/bl_post_archive.php:620
5714
- #: extensions/ht-builder/widgets/bl_post_archive.php:789
5715
- #: extensions/ht-builder/widgets/bl_post_archive.php:913
5716
- #: extensions/ht-builder/widgets/bl_post_comments.php:141
5717
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:419
5718
- #: extensions/ht-builder/widgets/bl_post_search_form.php:251
5719
- #: extensions/ht-menu/widgets/inline-mega-menu.php:496
5720
- #: extensions/ht-menu/widgets/verticle-mega-menu.php:442
5721
- msgid "Hover"
5722
- msgstr ""
5723
-
5724
- #: includes/widgets/htmega_button.php:496
5725
- msgid "Hover Animation"
5726
- msgstr ""
5727
-
5728
- #: includes/widgets/htmega_add_banner.php:206
5729
- #: includes/widgets/htmega_booked_calender.php:331
5730
- #: includes/widgets/htmega_booked_calender.php:385
5731
- #: includes/widgets/htmega_socialshere.php:159
5732
- #: includes/widgets/htmega_tablepress.php:163
5733
- msgid "Hover Background"
5734
- msgstr ""
5735
-
5736
- #: includes/widgets/htmega_teammember.php:407
5737
- msgid "Hover Background Color"
5738
- msgstr ""
5739
-
5740
- #: includes/widgets/htmega_booked_calender.php:342
5741
- #: includes/widgets/htmega_booked_calender.php:396
5742
- #: includes/widgets/htmega_easy_digital_download.php:402
5743
- #: includes/widgets/htmega_panel_slider.php:687
5744
- #: includes/widgets/htmega_postgrid.php:465
5745
- #: includes/widgets/htmega_post_grid_tab.php:447
5746
- #: includes/widgets/htmega_post_slider.php:882
5747
- #: includes/widgets/htmega_post_slider.php:1186
5748
- #: includes/widgets/htmega_service.php:376
5749
- #: includes/widgets/htmega_singlepost.php:173
5750
- #: includes/widgets/htmega_user_login_form.php:1019
5751
- #: includes/widgets/htmega_verticle_time_line.php:143
5752
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:491
5753
- #: extensions/ht-menu/widgets/inline-mega-menu.php:312
5754
- msgid "Hover Color"
5755
- msgstr ""
5756
-
5757
- #: includes/widgets/htmega_socialshere.php:198
5758
- #: includes/widgets/htmega_socialshere.php:280
5759
- msgid "Hover color"
5760
- msgstr ""
5761
-
5762
- #: includes/widgets/htmega_teammember.php:441
5763
- msgid "Hover Content background color"
5764
- msgstr ""
5765
-
5766
- #: includes/widgets/htmega_teammember.php:423
5767
- msgid "Hover Round Space"
5768
- msgstr ""
5769
-
5770
- #: includes/widgets/htmega_teammember.php:654
5771
- msgid "Hover Shape Color"
5772
- msgstr ""
5773
-
5774
- #: includes/widgets/htmega_socialshere.php:149
5775
- #: includes/widgets/htmega_socialshere.php:271
5776
- msgid "Hover Style"
5777
- msgstr ""
5778
-
5779
- #: extensions/ht-builder/admin/setting.php:33
5780
- #: extensions/ht-builder/admin/setting.php:34
5781
- msgid "HT Builder"
5782
- msgstr ""
5783
-
5784
- #: extensions/ht-builder/admin/setting.php:184
5785
- msgid "HT Builder Settings"
5786
- msgstr ""
5787
-
5788
- #: includes/recommended-plugins/recommended-plugins.php:106
5789
- msgid "HT Contact Form 7"
5790
- msgstr ""
5791
-
5792
- #: includes/class.post-duplicator.php:45
5793
- msgid "HT Duplicate"
5794
- msgstr ""
5795
-
5796
- #: includes/recommended-plugins/recommended-plugins.php:101
5797
- msgid "HT Easy GA4 ( Google Analytics 4 )"
5798
- msgstr ""
5799
-
5800
- #: extensions/ht-builder/classes/class.header_footer.php:81
5801
- msgid "HT Header & Footer"
5802
- msgstr ""
5803
-
5804
- #. Name of the plugin
5805
- msgid "HT Mega - Absolute Addons for Elementor Page Builder"
5806
- msgstr ""
5807
-
5808
- #: includes/class.post-duplicator.php:45
5809
- msgid "HT Mega Duplicator"
5810
- msgstr ""
5811
-
5812
- #: admin/include/class.library-source.php:79
5813
- msgid "HT Mega Library"
5814
- msgstr ""
5815
-
5816
- #: extensions/ht-menu/admin/setting.php:31
5817
- #: extensions/ht-menu/admin/setting.php:32
5818
- msgid "HT Menu"
5819
- msgstr ""
5820
-
5821
- #: extensions/ht-menu/admin/setting.php:46
5822
- #: extensions/ht-menu/admin/setting.php:136
5823
- msgid "HT Menu Settings"
5824
- msgstr ""
5825
-
5826
- #: includes/recommended-plugins/recommended-plugins.php:111
5827
- msgid "HT WPForms"
5828
- msgstr ""
5829
-
5830
- #: admin/include/admin-setting.php:1158
5831
- msgid "HTMega"
5832
- msgstr ""
5833
-
5834
- #: includes/class.htmega.php:159 includes/class.htmega.php:174
5835
- #: includes/widgets_control.php:40 admin/include/admin-setting.php:37
5836
- #: admin/include/admin-setting.php:38
5837
- msgid "HTMega Addons"
5838
- msgstr ""
5839
-
5840
- #: includes/class.htmega.php:137
5841
- msgid ""
5842
- "HTMEGA Addons not working because you need to activate the Elementor plugin."
5843
- msgstr ""
5844
-
5845
- #: includes/class.htmega.php:144
5846
- msgid ""
5847
- "HTMEGA Addons not working because you need to install the Elementor plugin"
5848
- msgstr ""
5849
-
5850
- #: admin/include/admin-setting.php:1122
5851
- msgid "HTMega Addons Settings"
5852
- msgstr ""
5853
-
5854
- #: extensions/ht-builder/classes/class.widgets_control.php:44
5855
- msgid "HTMega Builder"
5856
- msgstr ""
5857
-
5858
- #: admin/include/admin-setting.php:1241
5859
- msgid "HTMega Free"
5860
- msgstr ""
5861
-
5862
- #: admin/include/admin-setting.php:1237
5863
- msgid "HTMega Free Vs HTMega Pro."
5864
- msgstr ""
5865
-
5866
- #: extensions/ht-menu/classes/class.mega-menu.php:73
5867
- msgid "HTMega Menu"
5868
- msgstr ""
5869
-
5870
- #: admin/include/admin-setting.php:1266
5871
- msgid "HTMega Pro"
5872
- msgstr ""
5873
-
5874
- #: includes/widgets/htmega_section_title.php:209
5875
- #: includes/widgets/htmega_section_title.php:267
5876
- msgid "HTML Tag"
5877
- msgstr ""
5878
-
5879
- #: includes/widgets/htmega_pricing_list_view.php:164
5880
- msgid "Html Template"
5881
- msgstr ""
5882
-
5883
- #: includes/widgets/htmega_scroll_image.php:64
5884
- msgid "https://example.com/"
5885
- msgstr ""
5886
-
5887
- #. Author URI of the plugin
5888
- msgid "https://hasthemes.com/"
5889
- msgstr ""
5890
-
5891
- #. URI of the plugin
5892
- msgid "https://wphtmega.com/"
5893
- msgstr ""
5894
-
5895
- #: includes/widgets/htmega_teammember.php:225
5896
- #: includes/widgets/htmega_teammember.php:308
5897
- msgid "https://www.facebook.com/hastech.company/"
5898
- msgstr ""
5899
-
5900
- #: includes/widgets/htmega_lightbox.php:101
5901
- msgid "https://www.google.com/maps/embed?pb"
5902
- msgstr ""
5903
-
5904
- #: includes/widgets/htmega_lightbox.php:99
5905
- msgid ""
5906
- "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d233668.38703692693!"
5907
- "2d90.27923991057244!3d23.780573258035957!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!"
5908
- "4f13.1!3m3!1m2!1s0x3755b8b087026b81%3A0x8fa563bbdd5904c2!2sDhaka!5e0!3m2!"
5909
- "1sen!2sbd!4v1536834022797"
5910
- msgstr ""
5911
-
5912
- #: includes/widgets/htmega_videoplayer.php:62
5913
- #: includes/widgets/htmega_videoplayer.php:63
5914
- msgid "https://www.youtube.com/watch?v=CDilI6jcpP4"
5915
- msgstr ""
5916
-
5917
- #: includes/widgets/htmega_lightbox.php:81
5918
- #: includes/widgets/htmega_lightbox.php:83
5919
- msgid "https://www.youtube.com/watch?v=G_G8SdXktHg"
5920
- msgstr ""
5921
-
5922
- #: includes/widgets/htmega_add_banner.php:121
5923
- #: includes/widgets/htmega_button.php:78
5924
- #: includes/widgets/htmega_call_to_action.php:147
5925
- #: includes/widgets/htmega_call_to_action.php:241
5926
- #: includes/widgets/htmega_custom_event.php:104
5927
- #: includes/widgets/htmega_double_button.php:110
5928
- #: includes/widgets/htmega_double_button.php:197
5929
- #: includes/widgets/htmega_errorcontent.php:169
5930
- #: includes/widgets/htmega_errorcontent.php:217
5931
- #: includes/widgets/htmega_image_grid.php:151
5932
- #: includes/widgets/htmega_image_masonry.php:140
5933
- #: includes/widgets/htmega_panel_slider.php:119
5934
- #: includes/widgets/htmega_popover.php:141
5935
- #: includes/widgets/htmega_pricing_list_view.php:128
5936
- #: includes/widgets/htmega_pricing_list_view.php:662
5937
- #: includes/widgets/htmega_section_title.php:198
5938
- #: includes/widgets/htmega_section_title.php:256
5939
- #: includes/widgets/htmega_service.php:149
5940
- #: includes/widgets/htmega_special_day_banner.php:125
5941
- #: includes/widgets/htmega_tooltip.php:141
5942
- msgid "https://your-link.com"
5943
- msgstr ""
5944
-
5945
- #: includes/widgets/htmega_teammember.php:177
5946
- msgid "I am web developer."
5947
- msgstr ""
5948
-
5949
- #: includes/widgets/htmega_blockquote.php:97
5950
- #: includes/widgets/htmega_blockquote.php:134
5951
- #: includes/widgets/htmega_button.php:105
5952
- #: includes/widgets/htmega_call_to_action.php:163
5953
- #: includes/widgets/htmega_call_to_action.php:257
5954
- #: includes/widgets/htmega_countdown.php:280
5955
- #: includes/widgets/htmega_counter.php:103
5956
- #: includes/widgets/htmega_counter.php:114
5957
- #: includes/widgets/htmega_data_table.php:255
5958
- #: includes/widgets/htmega_double_button.php:123
5959
- #: includes/widgets/htmega_double_button.php:210
5960
- #: includes/widgets/htmega_download_monitor.php:125
5961
- #: includes/widgets/htmega_instagram.php:219
5962
- #: includes/widgets/htmega_instagram.php:760
5963
- #: includes/widgets/htmega_lightbox.php:119
5964
- #: includes/widgets/htmega_modal.php:127 includes/widgets/htmega_modal.php:163
5965
- #: includes/widgets/htmega_notify.php:255
5966
- #: includes/widgets/htmega_popover.php:53
5967
- #: includes/widgets/htmega_popover.php:86
5968
- #: includes/widgets/htmega_pricing_list_view.php:114
5969
- #: includes/widgets/htmega_pricing_list_view.php:244
5970
- #: includes/widgets/htmega_pricing_list_view.php:262
5971
- #: includes/widgets/htmega_pricing_list_view.php:582
5972
- #: includes/widgets/htmega_pricing_list_view.php:1786
5973
- #: includes/widgets/htmega_search.php:76 includes/widgets/htmega_search.php:104
5974
- #: includes/widgets/htmega_section_title.php:102
5975
- #: includes/widgets/htmega_section_title.php:138
5976
- #: includes/widgets/htmega_service.php:77
5977
- #: includes/widgets/htmega_service.php:114
5978
- #: includes/widgets/htmega_service.php:559
5979
- #: includes/widgets/htmega_socialshere.php:109
5980
- #: includes/widgets/htmega_socialshere.php:212
5981
- #: includes/widgets/htmega_switcher.php:73
5982
- #: includes/widgets/htmega_switcher.php:164 includes/widgets/htmega_tabs.php:78
5983
- #: includes/widgets/htmega_teammember.php:232
5984
- #: includes/widgets/htmega_tooltip.php:53
5985
- #: includes/widgets/htmega_tooltip.php:86
5986
- #: includes/widgets/htmega_videoplayer.php:85
5987
- #: includes/widgets/htmega_working_process.php:113
5988
- #: includes/widgets/htmega_working_process.php:150
5989
- #: includes/widgets/htmega_working_process.php:924
5990
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:287
5991
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:443
5992
- #: extensions/ht-builder/widgets/bl_post_search_form.php:62
5993
- #: extensions/ht-builder/widgets/bl_post_search_form.php:74
5994
- #: extensions/ht-menu/menu/templates.php:47
5995
- #: extensions/ht-menu/menu/templates.php:106
5996
- msgid "Icon"
5997
- msgstr ""
5998
-
5999
- #: extensions/ht-builder/widgets/bl_nav_menu.php:492
6000
- msgid "Icon Align"
6001
- msgstr ""
6002
-
6003
- #: includes/widgets/htmega_button.php:545
6004
- #: includes/widgets/htmega_button.php:629
6005
- #: includes/widgets/htmega_teammember.php:256
6006
- msgid "Icon Background"
6007
- msgstr ""
6008
-
6009
- #: includes/widgets/htmega_accordion.php:1197
6010
- msgid "Icon Box Height"
6011
- msgstr ""
6012
-
6013
- #: includes/widgets/htmega_newsticker.php:784
6014
- msgid "Icon Box Height/Width"
6015
- msgstr ""
6016
-
6017
- #: includes/widgets/htmega_accordion.php:1180
6018
- msgid "Icon Box Width"
6019
- msgstr ""
6020
-
6021
- #: includes/widgets/htmega_booked_calender.php:530
6022
- #: includes/widgets/htmega_notify.php:657
6023
- #: includes/widgets/htmega_post_grid_tab.php:756
6024
- #: includes/widgets/htmega_post_slider.php:1176
6025
- #: includes/widgets/htmega_pricing_list_view.php:314
6026
- #: includes/widgets/htmega_pricing_list_view.php:906
6027
- #: includes/widgets/htmega_search.php:270
6028
- #: includes/widgets/htmega_singlepost.php:372
6029
- #: includes/widgets/htmega_tabs.php:177 includes/widgets/htmega_tabs.php:687
6030
- #: includes/widgets/htmega_tabs.php:802
6031
- #: includes/widgets/htmega_teammember.php:244
6032
- #: extensions/ht-builder/widgets/bl_nav_menu.php:481
6033
- msgid "Icon Color"
6034
- msgstr ""
6035
-
6036
- #: includes/widgets/htmega_lightbox.php:408
6037
- msgid "Icon Dimensions"
6038
- msgstr ""
6039
-
6040
- #: includes/widgets/htmega_search.php:881
6041
- #: includes/widgets/htmega_socialshere.php:480
6042
- #: includes/widgets/htmega_toggle.php:252
6043
- msgid "Icon Font Size"
6044
- msgstr ""
6045
-
6046
- #: includes/widgets/htmega_instagram.php:1439
6047
- #: includes/widgets/htmega_socialshere.php:509
6048
- #: includes/widgets/htmega_tabs.php:772
6049
- msgid "Icon Height"
6050
- msgstr ""
6051
-
6052
- #: includes/widgets/htmega_teammember.php:279
6053
- msgid "Icon Hover Background"
6054
- msgstr ""
6055
-
6056
- #: includes/widgets/htmega_teammember.php:290
6057
- msgid "Icon Hover border color"
6058
- msgstr ""
6059
-
6060
- #: includes/widgets/htmega_teammember.php:267
6061
- msgid "Icon Hover Color"
6062
- msgstr ""
6063
-
6064
- #: includes/widgets/htmega_videoplayer.php:97
6065
- msgid "Icon Image"
6066
- msgstr ""
6067
-
6068
- #: includes/widgets/htmega_button.php:114
6069
- #: includes/widgets/htmega_call_to_action.php:196
6070
- #: includes/widgets/htmega_call_to_action.php:290
6071
- #: includes/widgets/htmega_double_button.php:153
6072
- #: includes/widgets/htmega_double_button.php:240
6073
- #: includes/widgets/htmega_modal.php:174
6074
- #: includes/widgets/htmega_offcanvas.php:199
6075
- #: includes/widgets/htmega_pricing_list_view.php:1185
6076
- msgid "Icon Position"
6077
- msgstr ""
6078
-
6079
- #: includes/widgets/htmega_socialshere.php:464
6080
- msgid "Icon Settings"
6081
- msgstr ""
6082
-
6083
- #: includes/widgets/htmega_data_table.php:292
6084
- msgid "Icon SIze"
6085
- msgstr ""
6086
-
6087
- #: includes/widgets/htmega_accordion.php:1087
6088
- #: includes/widgets/htmega_call_to_action.php:785
6089
- #: includes/widgets/htmega_call_to_action.php:991
6090
- #: includes/widgets/htmega_instagram.php:1377
6091
- #: includes/widgets/htmega_modal.php:377
6092
- #: includes/widgets/htmega_newsticker.php:612
6093
- #: includes/widgets/htmega_newsticker.php:764
6094
- #: includes/widgets/htmega_notify.php:646
6095
- #: includes/widgets/htmega_popover.php:362
6096
- #: includes/widgets/htmega_pricing_list_view.php:751
6097
- #: includes/widgets/htmega_service.php:624
6098
- #: includes/widgets/htmega_switcher.php:82
6099
- #: includes/widgets/htmega_switcher.php:173
6100
- #: includes/widgets/htmega_tabs.php:700 includes/widgets/htmega_tooltip.php:339
6101
- msgid "Icon Size"
6102
- msgstr ""
6103
-
6104
- #: includes/widgets/htmega_modal.php:409
6105
- msgid "Icon Space"
6106
- msgstr ""
6107
-
6108
- #: includes/widgets/htmega_button.php:132
6109
- #: includes/widgets/htmega_call_to_action.php:174
6110
- #: includes/widgets/htmega_call_to_action.php:268
6111
- #: includes/widgets/htmega_double_button.php:131
6112
- #: includes/widgets/htmega_double_button.php:218
6113
- #: includes/widgets/htmega_offcanvas.php:223
6114
- msgid "Icon Spacing"
6115
- msgstr ""
6116
-
6117
- #: includes/widgets/htmega_button.php:511
6118
- #: includes/widgets/htmega_newsticker.php:600
6119
- msgid "Icon Style"
6120
- msgstr ""
6121
-
6122
- #: includes/widgets/htmega_counter.php:90 includes/widgets/htmega_modal.php:119
6123
- #: includes/widgets/htmega_section_title.php:94
6124
- #: includes/widgets/htmega_working_process.php:105
6125
- msgid "Icon Type"
6126
- msgstr ""
6127
-
6128
- #: includes/widgets/htmega_instagram.php:1420
6129
- #: includes/widgets/htmega_socialshere.php:557
6130
- #: includes/widgets/htmega_tabs.php:751
6131
- msgid "Icon Width"
6132
- msgstr ""
6133
-
6134
- #: includes/widgets/htmega_counter.php:814
6135
- msgid "Icon/Image"
6136
- msgstr ""
6137
-
6138
- #: includes/widgets/htmega_pricing_list_view.php:629
6139
- msgid "Icons"
6140
- msgstr ""
6141
-
6142
- #: includes/widgets/htmega_bbpress.php:73
6143
- #: includes/widgets/htmega_newsticker.php:257
6144
- #: includes/widgets/htmega_postgrid.php:148
6145
- #: includes/widgets/htmega_post_grid_tab.php:155
6146
- #: includes/widgets/htmega_post_slider.php:159
6147
- #: extensions/ht-builder/widgets/bl_post_archive.php:199
6148
- msgid "ID"
6149
- msgstr ""
6150
-
6151
- #: includes/widgets/htmega_newsticker.php:821
6152
- #: includes/widgets/htmega_panel_slider.php:882
6153
- msgid "If need to different from prev button"
6154
- msgstr ""
6155
-
6156
- #: admin/include/admin-setting.php:1186
6157
- msgid ""
6158
- "If you’re loving how our product has helped your business, please let the "
6159
- "WordPress community know by"
6160
- msgstr ""
6161
-
6162
- #: includes/widgets/htmega_accordion.php:164
6163
- #: includes/widgets/htmega_accordion.php:207
6164
- #: includes/widgets/htmega_add_banner.php:72
6165
- #: includes/widgets/htmega_blockquote.php:93
6166
- #: includes/widgets/htmega_blockquote.php:108
6167
- #: includes/widgets/htmega_carousel.php:79
6168
- #: includes/widgets/htmega_counter.php:99
6169
- #: includes/widgets/htmega_counter.php:125
6170
- #: includes/widgets/htmega_custom_event.php:51
6171
- #: includes/widgets/htmega_data_table.php:256
6172
- #: includes/widgets/htmega_errorcontent.php:65
6173
- #: includes/widgets/htmega_image_grid.php:123
6174
- #: includes/widgets/htmega_image_masonry.php:112
6175
- #: includes/widgets/htmega_instagram.php:215
6176
- #: includes/widgets/htmega_instagram.php:233
6177
- #: includes/widgets/htmega_lightbox.php:53
6178
- #: includes/widgets/htmega_lightbox.php:63
6179
- #: includes/widgets/htmega_lightbox.php:117
6180
- #: includes/widgets/htmega_modal.php:123 includes/widgets/htmega_modal.php:137
6181
- #: includes/widgets/htmega_panel_slider.php:95
6182
- #: includes/widgets/htmega_popover.php:61
6183
- #: includes/widgets/htmega_popover.php:101
6184
- #: includes/widgets/htmega_pricing_list_view.php:248
6185
- #: includes/widgets/htmega_pricing_list_view.php:275
6186
- #: includes/widgets/htmega_section_title.php:98
6187
- #: includes/widgets/htmega_section_title.php:112
6188
- #: includes/widgets/htmega_service.php:73
6189
- #: includes/widgets/htmega_service.php:88
6190
- #: includes/widgets/htmega_service.php:876
6191
- #: includes/widgets/htmega_slider_thumb_gallery.php:82
6192
- #: includes/widgets/htmega_special_day_banner.php:58
6193
- #: includes/widgets/htmega_testimonial_grid.php:195
6194
- #: includes/widgets/htmega_testimonial_grid.php:388
6195
- #: includes/widgets/htmega_tooltip.php:61
6196
- #: includes/widgets/htmega_tooltip.php:101
6197
- #: includes/widgets/htmega_videoplayer.php:86
6198
- #: includes/widgets/htmega_wc_categories.php:458
6199
- #: includes/widgets/htmega_working_process.php:109
6200
- #: includes/widgets/htmega_working_process.php:124
6201
- #: extensions/ht-builder/widgets/bl_post_author_info.php:139
6202
- msgid "Image"
6203
- msgstr ""
6204
-
6205
- #: includes/widgets/htmega_image_comparison.php:532
6206
- msgid "Image After"
6207
- msgstr ""
6208
-
6209
- #: includes/widgets/htmega_image_comparison.php:512
6210
- msgid "Image Before"
6211
- msgstr ""
6212
-
6213
- #: includes/widgets/htmega_postgrid.php:236
6214
- #: includes/widgets/htmega_post_grid_tab.php:324
6215
- msgid "Image Border Radius"
6216
- msgstr ""
6217
-
6218
- #: includes/widgets/htmega_panel_slider.php:650
6219
- msgid "Image Box Padding"
6220
- msgstr ""
6221
-
6222
- #: admin/include/admin-setting.php:263
6223
- #: includes/widgets/htmega_image_comparison.php:13
6224
- #: includes/widgets/htmega_image_comparison.php:43
6225
- msgid "Image Comparison"
6226
- msgstr ""
6227
-
6228
- #: admin/include/admin-setting.php:271
6229
- #: includes/widgets/htmega_image_grid.php:13
6230
- #: includes/widgets/htmega_image_grid.php:35
6231
- msgid "Image Grid"
6232
- msgstr ""
6233
-
6234
- #: includes/widgets/htmega_image_grid.php:170
6235
- msgid "Image Grid Description"
6236
- msgstr ""
6237
-
6238
- #: includes/widgets/htmega_image_grid.php:116
6239
- msgid "Image Grid Description."
6240
- msgstr ""
6241
-
6242
- #: includes/widgets/htmega_carousel.php:101
6243
- #: includes/widgets/htmega_image_grid.php:169
6244
- msgid "Image Grid Title"
6245
- msgstr ""
6246
-
6247
- #: includes/widgets/htmega_carousel.php:72
6248
- #: includes/widgets/htmega_image_grid.php:107
6249
- msgid "Image Grid Title."
6250
- msgstr ""
6251
-
6252
- #: includes/widgets/htmega_data_table.php:372
6253
- msgid "Image Height"
6254
- msgstr ""
6255
-
6256
- #: includes/widgets/htmega_teammember.php:100
6257
- msgid "Image Hover Animate"
6258
- msgstr ""
6259
-
6260
- #: extensions/wc-sales-notification/admin/setting.php:94
6261
- msgid "Image Left"
6262
- msgstr ""
6263
-
6264
- #: includes/widgets/htmega_instagram.php:87
6265
- msgid "Image link in new tab"
6266
- msgstr ""
6267
-
6268
- #: admin/include/admin-setting.php:279
6269
- #: includes/widgets/htmega_image_magnifier.php:13
6270
- msgid "Image Magnifier"
6271
- msgstr ""
6272
-
6273
- #: admin/include/admin-setting.php:287
6274
- #: includes/widgets/htmega_imagemarker.php:13
6275
- msgid "Image Marker"
6276
- msgstr ""
6277
-
6278
- #: admin/include/admin-setting.php:295
6279
- #: includes/widgets/htmega_image_masonry.php:13
6280
- #: includes/widgets/htmega_image_masonry.php:52
6281
- msgid "Image Masonry"
6282
- msgstr ""
6283
-
6284
- #: includes/widgets/htmega_image_masonry.php:159
6285
- msgid "Image Masonry Description"
6286
- msgstr ""
6287
-
6288
- #: includes/widgets/htmega_image_masonry.php:105
6289
- msgid "Image Masonry Description."
6290
- msgstr ""
6291
-
6292
- #: includes/widgets/htmega_image_masonry.php:158
6293
- msgid "Image Masonry Title"
6294
- msgstr ""
6295
-
6296
- #: includes/widgets/htmega_image_masonry.php:96
6297
- msgid "Image Masonry Title."
6298
- msgstr ""
6299
-
6300
- #: includes/widgets/htmega_panel_slider.php:627
6301
- #: includes/widgets/htmega_postgrid.php:218
6302
- #: includes/widgets/htmega_post_slider.php:648
6303
- msgid "Image Overlay"
6304
- msgstr ""
6305
-
6306
- #: includes/widgets/htmega_instragram_feed.php:129
6307
- msgid "Image Padding"
6308
- msgstr ""
6309
-
6310
- #: includes/widgets/htmega_section_title.php:153
6311
- #: extensions/wc-sales-notification/admin/setting.php:89
6312
- msgid "Image Position"
6313
- msgstr ""
6314
-
6315
- #: includes/widgets/htmega_buddy_press.php:95
6316
- #: includes/widgets/htmega_instragram_feed.php:67
6317
- msgid "Image Size"
6318
- msgstr ""
6319
-
6320
- #: includes/widgets/htmega_modal.php:291
6321
- msgid "Image space"
6322
- msgstr ""
6323
-
6324
- #: includes/widgets/htmega_data_table.php:349
6325
- #: includes/widgets/htmega_twitter_feed.php:807
6326
- msgid "Image Width"
6327
- msgstr ""
6328
-
6329
- #: includes/widgets/htmega_pricing_list_view.php:500
6330
- msgid "Image/Icon Position"
6331
- msgstr ""
6332
-
6333
- #: includes/class.assests.php:385
6334
- msgid "Import"
6335
- msgstr ""
6336
-
6337
- #: admin/include/templates_list.php:13
6338
- msgid "Import template to your Library"
6339
- msgstr ""
6340
-
6341
- #: includes/class.assests.php:383
6342
- msgid "Import to Library"
6343
- msgstr ""
6344
-
6345
- #: includes/class.assests.php:384
6346
- msgid "Import to Page"
6347
- msgstr ""
6348
-
6349
- #: includes/class.assests.php:378
6350
- msgid "in this package"
6351
- msgstr ""
6352
-
6353
- #: admin/include/admin-setting.php:1257 admin/include/admin-setting.php:1282
6354
- msgid "Incoming animation option"
6355
- msgstr ""
6356
-
6357
- #: admin/include/custom-control/preset-manage.php:19
6358
- msgid "Incomplete preset request"
6359
- msgstr ""
6360
-
6361
- #: includes/widgets/htmega_instagram.php:1541
6362
- msgid "Incorrect access token specified."
6363
- msgstr ""
6364
-
6365
- #: includes/widgets/htmega_progress_bar.php:602
6366
- msgid "Indicator Background"
6367
- msgstr ""
6368
-
6369
- #: includes/widgets/htmega_progress_bar.php:626
6370
- msgid "Indicator Border Radius"
6371
- msgstr ""
6372
-
6373
- #: includes/widgets/htmega_imagemarker.php:436
6374
- #: includes/widgets/htmega_progress_bar.php:183
6375
- msgid "Indicator color"
6376
- msgstr ""
6377
-
6378
- #: includes/widgets/htmega_imagemarker.php:569
6379
- msgid "Indicator Height"
6380
- msgstr ""
6381
-
6382
- #: includes/widgets/htmega_imagemarker.php:596
6383
- msgid "Indicator Line Height"
6384
- msgstr ""
6385
-
6386
- #: includes/widgets/htmega_imagemarker.php:361
6387
- msgid "Indicator Position(X)"
6388
- msgstr ""
6389
-
6390
- #: includes/widgets/htmega_imagemarker.php:388
6391
- msgid "Indicator Position(Y)"
6392
- msgstr ""
6393
-
6394
- #: includes/widgets/htmega_imagemarker.php:414
6395
- msgid "Indicator Rotated"
6396
- msgstr ""
6397
-
6398
- #: includes/widgets/htmega_progress_bar.php:571
6399
- msgid "Indicator Size"
6400
- msgstr ""
6401
-
6402
- #: includes/widgets/htmega_imagemarker.php:542
6403
- msgid "Indicator Width"
6404
- msgstr ""
6405
-
6406
- #: includes/widgets/htmega_notify.php:132
6407
- msgid "Info"
6408
- msgstr ""
6409
-
6410
- #: includes/widgets/htmega_googlemap.php:213
6411
- msgid "Info Address Span Style"
6412
- msgstr ""
6413
-
6414
- #: includes/widgets/htmega_googlemap.php:179
6415
- msgid "Info Address Style"
6416
- msgstr ""
6417
-
6418
- #: includes/widgets/htmega_googlemap.php:400
6419
- msgid "Info Button Close"
6420
- msgstr ""
6421
-
6422
- #: includes/widgets/htmega_notify.php:639
6423
- msgid "Info Icon"
6424
- msgstr ""
6425
-
6426
- #: includes/widgets/htmega_googlemap.php:361
6427
- msgid "Info Pointer"
6428
- msgstr ""
6429
-
6430
- #: includes/widgets/htmega_scroll_navigation.php:200
6431
- msgid "Initial Slide"
6432
- msgstr ""
6433
-
6434
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:51
6435
- msgid "inline"
6436
- msgstr ""
6437
-
6438
- #: includes/widgets/htmega_section_title.php:620
6439
- #: includes/widgets/htmega_section_title.php:851
6440
- msgid "Inline block"
6441
- msgstr ""
6442
-
6443
- #: extensions/ht-menu/widgets/inline-mega-menu.php:14
6444
- msgid "Inline Mega Menu"
6445
- msgstr ""
6446
-
6447
- #: admin/include/admin-setting.php:303
6448
- #: includes/widgets/htmega_inlinemenu.php:13
6449
- #: includes/widgets/htmega_inlinemenu.php:46
6450
- msgid "Inline Navigation"
6451
- msgstr ""
6452
-
6453
- #: includes/widgets/htmega_progress_bar.php:654
6454
- #: includes/widgets/htmega_progress_bar.php:773
6455
- msgid "Inner"
6456
- msgstr ""
6457
-
6458
- #: includes/widgets/htmega_call_to_action.php:423
6459
- msgid "Inner Box Style"
6460
- msgstr ""
6461
-
6462
- #: includes/widgets/htmega_caldera_form.php:184
6463
- #: includes/widgets/htmega_contact_form_seven.php:177
6464
- #: includes/widgets/htmega_gravity_forms.php:387
6465
- #: includes/widgets/htmega_ninja_form.php:473
6466
- #: includes/widgets/htmega_quforms.php:310
6467
- #: includes/widgets/htmega_search.php:212
6468
- #: includes/widgets/htmega_user_login_form.php:805
6469
- #: includes/widgets/htmega_wc_element_pages.php:692
6470
- #: includes/widgets/htmega_wc_element_pages.php:1336
6471
- #: includes/widgets/htmega_wpforms.php:474
6472
- msgid "Input"
6473
- msgstr ""
6474
-
6475
- #: includes/widgets/htmega_mailchimp_wp.php:159
6476
- #: extensions/ht-builder/widgets/bl_post_comments.php:40
6477
- #: extensions/ht-builder/widgets/bl_post_search_form.php:102
6478
- msgid "Input Box"
6479
- msgstr ""
6480
-
6481
- #: includes/widgets/htmega_caldera_form.php:290
6482
- msgid "Input Space"
6483
- msgstr ""
6484
-
6485
- #: admin/include/templates/library/templates.php:64
6486
- msgid "Insert"
6487
- msgstr ""
6488
-
6489
- #: includes/recommended-plugins/recommended-plugins.php:44
6490
- msgid "Insert Headers and Footers Code"
6491
- msgstr ""
6492
-
6493
- #: admin/include/admin-setting.php:311 includes/widgets/htmega_instagram.php:15
6494
- #: includes/widgets/htmega_instagram.php:44
6495
- msgid "Instagram"
6496
- msgstr ""
6497
-
6498
- #: includes/widgets/htmega_instagram.php:77
6499
- msgid "Instagram Access Token"
6500
- msgstr ""
6501
-
6502
- #: includes/widgets/htmega_instragram_feed.php:13
6503
- #: includes/widgets/htmega_instragram_feed.php:35
6504
- msgid "Instagram Feed"
6505
- msgstr ""
6506
-
6507
- #: admin/include/template-library.php:267
6508
- #: admin/include/template-library.php:319
6509
- #: includes/recommended-plugins/class.recommended-plugins.php:248
6510
- msgid "Install Now"
6511
- msgstr ""
6512
-
6513
- #: includes/class.assests.php:388
6514
- #: includes/recommended-plugins/class.recommended-plugins.php:124
6515
- msgid "Installing.."
6516
- msgstr ""
6517
-
6518
- #: includes/widgets/htmega_socialshere.php:82
6519
- msgid "Instapaper"
6520
- msgstr ""
6521
-
6522
- #: admin/include/admin-setting.php:999
6523
- msgid "Instragram Feed"
6524
- msgstr ""
6525
-
6526
- #: admin/include/custom-control/preset-manage.php:15
6527
- msgid "Invalid preset request"
6528
- msgstr ""
6529
-
6530
- #: includes/helper-function.php:390
6531
- msgid "Invalid username or password!"
6532
- msgstr ""
6533
-
6534
- #: includes/widgets/htmega_business_hours.php:300
6535
- #: includes/widgets/htmega_instagram.php:662
6536
- #: extensions/ht-builder/widgets/bl_post_archive.php:245
6537
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:347
6538
- msgid "Item"
6539
- msgstr ""
6540
-
6541
- #: includes/widgets/htmega_countdown.php:607
6542
- msgid "Item Alignment"
6543
- msgstr ""
6544
-
6545
- #: includes/widgets/htmega_business_hours.php:209
6546
- msgid "Item Area"
6547
- msgstr ""
6548
-
6549
- #: includes/widgets/htmega_easy_digital_download.php:259
6550
- msgid "Item Background"
6551
- msgstr ""
6552
-
6553
- #: includes/widgets/htmega_testimonial_grid.php:253
6554
- msgid "Item Box Style"
6555
- msgstr ""
6556
-
6557
- #: includes/widgets/htmega_accordion.php:300
6558
- msgid "Item Collapse Icon"
6559
- msgstr ""
6560
-
6561
- #: includes/widgets/htmega_postgrid.php:397
6562
- #: includes/widgets/htmega_post_grid_tab.php:1242
6563
- msgid "Item Five Gradient"
6564
- msgstr ""
6565
-
6566
- #: includes/widgets/htmega_postgrid.php:379
6567
- #: includes/widgets/htmega_post_grid_tab.php:1224
6568
- msgid "Item Four Gradient"
6569
- msgstr ""
6570
-
6571
- #: includes/widgets/htmega_easy_digital_download.php:233
6572
- msgid "Item Gap"
6573
- msgstr ""
6574
-
6575
- #: includes/widgets/htmega_progress_bar.php:543
6576
- msgid "Item Inner Padding"
6577
- msgstr ""
6578
-
6579
- #: includes/widgets/htmega_instagram.php:130
6580
- msgid "Item Limit"
6581
- msgstr ""
6582
-
6583
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:378
6584
- msgid "Item Link"
6585
- msgstr ""
6586
-
6587
- #: includes/widgets/htmega_working_process.php:463
6588
- msgid "Item Number Shape"
6589
- msgstr ""
6590
-
6591
- #: includes/widgets/htmega_postgrid.php:326
6592
- #: includes/widgets/htmega_post_grid_tab.php:1171
6593
- msgid "Item One Gradient"
6594
- msgstr ""
6595
-
6596
- #: includes/widgets/htmega_instagram.php:725
6597
- msgid "Item Overlay"
6598
- msgstr ""
6599
-
6600
- #: includes/widgets/htmega_progress_bar.php:529
6601
- #: extensions/ht-menu/widgets/inline-mega-menu.php:280
6602
- msgid "Item Padding"
6603
- msgstr ""
6604
-
6605
- #: includes/widgets/htmega_postgrid.php:433
6606
- #: includes/widgets/htmega_post_grid_tab.php:1278
6607
- msgid "Item Seven Gradient"
6608
- msgstr ""
6609
-
6610
- #: includes/widgets/htmega_postgrid.php:415
6611
- #: includes/widgets/htmega_post_grid_tab.php:1260
6612
- msgid "Item Six Gradient"
6613
- msgstr ""
6614
-
6615
- #: includes/widgets/htmega_slider_thumb_gallery.php:1249
6616
- msgid "Item space"
6617
- msgstr ""
6618
-
6619
- #: includes/widgets/htmega_working_process.php:340
6620
- msgid "Item style"
6621
- msgstr ""
6622
-
6623
- #: includes/widgets/htmega_postgrid.php:361
6624
- #: includes/widgets/htmega_post_grid_tab.php:1206
6625
- msgid "Item Three Gradient"
6626
- msgstr ""
6627
-
6628
- #: includes/widgets/htmega_postgrid.php:343
6629
- #: includes/widgets/htmega_post_grid_tab.php:1188
6630
- msgid "Item Two Gradient"
6631
- msgstr ""
6632
-
6633
- #: includes/widgets/htmega_working_process.php:357
6634
- #: includes/widgets/htmega_working_process.php:564
6635
- msgid "Item Width"
6636
- msgstr ""
6637
-
6638
- #: includes/widgets/htmega_working_process.php:451
6639
- msgid "Items Seperator Style"
6640
- msgstr ""
6641
-
6642
- #: includes/widgets/htmega_progress_bar.php:420
6643
- msgid "Items Style"
6644
- msgstr ""
6645
-
6646
- #: includes/widgets/htmega_booked_calender.php:109
6647
- msgid "January"
6648
- msgstr ""
6649
-
6650
- #: includes/widgets/htmega_job_manager.php:56
6651
- msgid "Job Apply To"
6652
- msgstr ""
6653
-
6654
- #: includes/widgets/htmega_job_manager.php:58
6655
- msgid "Job Dashboard"
6656
- msgstr ""
6657
-
6658
- #: includes/widgets/htmega_job_manager.php:54
6659
- msgid "Job List"
6660
- msgstr ""
6661
-
6662
- #: admin/include/admin-setting.php:1009 admin/include/admin-setting.php:1019
6663
- #: includes/widgets/htmega_job_manager.php:13
6664
- #: includes/widgets/htmega_job_manager.php:43
6665
- msgid "Job Manager"
6666
- msgstr ""
6667
-
6668
- #: includes/widgets/htmega_job_manager.php:57
6669
- msgid "Job Post Form"
6670
- msgstr ""
6671
-
6672
- #: includes/widgets/htmega_job_manager.php:55
6673
- msgid "Job Summary"
6674
- msgstr ""
6675
-
6676
- #: includes/widgets/htmega_blockquote.php:81
6677
- #: includes/widgets/htmega_blockquote.php:82
6678
- msgid "Jon Doy"
6679
- msgstr ""
6680
-
6681
- #: includes/widgets/htmega_data_table.php:475
6682
- msgid "jondoy@gmail.com"
6683
- msgstr ""
6684
-
6685
- #: includes/widgets/htmega_progress_bar.php:214
6686
- msgid "Joomla"
6687
- msgstr ""
6688
-
6689
- #: includes/widgets/htmega_pricing_list_view.php:158
6690
- msgid "Joomla Template"
6691
- msgstr ""
6692
-
6693
- #: includes/widgets/htmega_booked_calender.php:115
6694
- msgid "July"
6695
- msgstr ""
6696
-
6697
- #: includes/widgets/htmega_booked_calender.php:114
6698
- msgid "June"
6699
- msgstr ""
6700
-
6701
- #: includes/widgets/htmega_add_banner.php:380
6702
- #: includes/widgets/htmega_blockquote.php:195
6703
- #: includes/widgets/htmega_buddy_press.php:266
6704
- #: includes/widgets/htmega_business_hours.php:403
6705
- #: includes/widgets/htmega_button.php:173
6706
- #: includes/widgets/htmega_call_to_action.php:342
6707
- #: includes/widgets/htmega_carousel.php:849
6708
- #: includes/widgets/htmega_countdown.php:623
6709
- #: includes/widgets/htmega_countdown.php:655
6710
- #: includes/widgets/htmega_counter.php:300
6711
- #: includes/widgets/htmega_counter.php:333
6712
- #: includes/widgets/htmega_counter.php:439
6713
- #: includes/widgets/htmega_counter.php:565
6714
- #: includes/widgets/htmega_data_table.php:651
6715
- #: includes/widgets/htmega_data_table.php:770
6716
- #: includes/widgets/htmega_errorcontent.php:261
6717
- #: includes/widgets/htmega_image_grid.php:295
6718
- #: includes/widgets/htmega_image_grid.php:392
6719
- #: includes/widgets/htmega_image_masonry.php:279
6720
- #: includes/widgets/htmega_image_masonry.php:376
6721
- #: includes/widgets/htmega_lightbox.php:208
6722
- #: includes/widgets/htmega_lightbox.php:321
6723
- #: includes/widgets/htmega_mailchimp_wp.php:141
6724
- #: includes/widgets/htmega_modal.php:362 includes/widgets/htmega_modal.php:1017
6725
- #: includes/widgets/htmega_newsticker.php:472
6726
- #: includes/widgets/htmega_notify.php:294
6727
- #: includes/widgets/htmega_notify.php:574
6728
- #: includes/widgets/htmega_notify.php:840
6729
- #: includes/widgets/htmega_offcanvas.php:387
6730
- #: includes/widgets/htmega_panel_slider.php:615
6731
- #: includes/widgets/htmega_popover.php:277
6732
- #: includes/widgets/htmega_popover.php:673
6733
- #: includes/widgets/htmega_popover.php:777
6734
- #: includes/widgets/htmega_postgrid.php:529
6735
- #: includes/widgets/htmega_postgrid.php:642
6736
- #: includes/widgets/htmega_post_grid_tab.php:507
6737
- #: includes/widgets/htmega_post_grid_tab.php:594
6738
- #: includes/widgets/htmega_post_slider.php:942
6739
- #: includes/widgets/htmega_post_slider.php:1029
6740
- #: includes/widgets/htmega_pricing_list_view.php:485
6741
- #: includes/widgets/htmega_pricing_list_view.php:1140
6742
- #: includes/widgets/htmega_search.php:168
6743
- #: includes/widgets/htmega_service.php:253
6744
- #: includes/widgets/htmega_service.php:437
6745
- #: includes/widgets/htmega_service.php:542
6746
- #: includes/widgets/htmega_service.php:731
6747
- #: includes/widgets/htmega_service.php:993
6748
- #: includes/widgets/htmega_singlepost.php:233
6749
- #: includes/widgets/htmega_singlepost.php:436
6750
- #: includes/widgets/htmega_special_day_banner.php:277
6751
- #: includes/widgets/htmega_tablepress.php:225
6752
- #: includes/widgets/htmega_tablepress.php:382
6753
- #: includes/widgets/htmega_teammember.php:757
6754
- #: includes/widgets/htmega_teammember.php:847
6755
- #: includes/widgets/htmega_teammember.php:938
6756
- #: includes/widgets/htmega_teammember.php:1005
6757
- #: includes/widgets/htmega_testimonial_grid.php:565
6758
- #: includes/widgets/htmega_toggle.php:208
6759
- #: includes/widgets/htmega_tooltip.php:253
6760
- #: includes/widgets/htmega_user_login_form.php:583
6761
- #: extensions/ht-builder/widgets/bl_page_title.php:149
6762
- #: extensions/ht-builder/widgets/bl_post_archive_title.php:151
6763
- #: extensions/ht-builder/widgets/bl_post_content.php:84
6764
- #: extensions/ht-builder/widgets/bl_post_excerpt.php:84
6765
- #: extensions/ht-builder/widgets/bl_post_title.php:117
6766
- #: extensions/ht-builder/widgets/bl_site_logo.php:171
6767
- #: extensions/ht-builder/widgets/bl_site_title.php:151
6768
- msgid "Justified"
6769
- msgstr ""
6770
-
6771
- #: includes/widgets/htmega_user_login_form.php:425
6772
- msgid "Justify Content"
6773
- msgstr ""
6774
-
6775
- #: includes/recommended-plugins/recommended-plugins.php:78
6776
- msgid "JustTables"
6777
- msgstr ""
6778
-
6779
- #: includes/widgets/htmega_countdown.php:912
6780
- #: includes/widgets/htmega_newsticker.php:489
6781
- #: includes/widgets/htmega_quforms.php:79
6782
- #: includes/widgets/htmega_user_login_form.php:183
6783
- #: includes/widgets/htmega_user_login_form.php:1464
6784
- #: includes/widgets/htmega_wc_element_pages.php:648
6785
- #: includes/widgets/htmega_wc_element_pages.php:1303
6786
- msgid "Label"
6787
- msgstr ""
6788
-
6789
- #: includes/widgets/htmega_pricing_list_view.php:790
6790
- msgid "Label Background"
6791
- msgstr ""
6792
-
6793
- #: includes/widgets/htmega_pricing_list_view.php:805
6794
- msgid "Label Color"
6795
- msgstr ""
6796
-
6797
- #: includes/widgets/htmega_newsticker.php:567
6798
- msgid "Label Height"
6799
- msgstr ""
6800
-
6801
- #: includes/widgets/htmega_newsticker.php:84
6802
- msgid "Label Icon"
6803
- msgstr ""
6804
-
6805
- #: includes/widgets/htmega_pricing_list_view.php:853
6806
- msgid "Label Margin"
6807
- msgstr ""
6808
-
6809
- #: includes/widgets/htmega_pricing_list_view.php:837
6810
- msgid "Label Padding"
6811
- msgstr ""
6812
-
6813
- #: includes/widgets/htmega_pricing_list_view.php:766
6814
- msgid "Label Position"
6815
- msgstr ""
6816
-
6817
- #: includes/widgets/htmega_countdown.php:172
6818
- msgid "Label Setting"
6819
- msgstr ""
6820
-
6821
- #: includes/widgets/htmega_pricing_list_view.php:736
6822
- msgid "Label Typography"
6823
- msgstr ""
6824
-
6825
- #: includes/widgets/htmega_caldera_form.php:61
6826
- #: includes/widgets/htmega_contact_form_seven.php:643
6827
- #: includes/widgets/htmega_gravity_forms.php:228
6828
- #: includes/widgets/htmega_ninja_form.php:313
6829
- #: includes/widgets/htmega_wpforms.php:306
6830
- msgid "Labels"
6831
- msgstr ""
6832
-
6833
- #: includes/widgets/htmega_button.php:95
6834
- #: includes/widgets/htmega_double_button.php:48
6835
- msgid "Large"
6836
- msgstr ""
6837
-
6838
- #: includes/widgets/htmega_testimonial_grid.php:101
6839
- msgid "Large Mobile"
6840
- msgstr ""
6841
-
6842
- #: includes/widgets/htmega_googlemap.php:133
6843
- #: includes/widgets/htmega_weather.php:184
6844
- msgid "Latitude"
6845
- msgstr ""
6846
-
6847
- #: includes/widgets/htmega_layer_slider.php:13
6848
- #: includes/widgets/htmega_layer_slider.php:56
6849
- msgid "LayerSlider"
6850
- msgstr ""
6851
-
6852
- #: includes/widgets/htmega_animated_heading.php:49
6853
- #: includes/widgets/htmega_bbpress.php:50
6854
- #: includes/widgets/htmega_business_hours.php:43
6855
- #: includes/widgets/htmega_data_table.php:44
6856
- #: includes/widgets/htmega_job_manager.php:50
6857
- #: includes/widgets/htmega_postgrid.php:43
6858
- #: includes/widgets/htmega_post_grid_tab.php:50
6859
- #: includes/widgets/htmega_post_slider.php:51
6860
- #: includes/widgets/htmega_pricing_list_view.php:43
6861
- #: includes/widgets/htmega_pricing_list_view.php:50
6862
- #: includes/widgets/htmega_verticle_time_line.php:43
6863
- #: extensions/ht-builder/widgets/bl_post_archive.php:43
6864
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:46
6865
- msgid "Layout"
6866
- msgstr ""
6867
-
6868
- #: includes/widgets/htmega_business_hours.php:51
6869
- #: includes/widgets/htmega_postgrid.php:51
6870
- #: includes/widgets/htmega_post_grid_tab.php:58
6871
- #: includes/widgets/htmega_post_slider.php:59
6872
- msgid "Layout Five"
6873
- msgstr ""
6874
-
6875
- #: includes/widgets/htmega_business_hours.php:50
6876
- #: includes/widgets/htmega_postgrid.php:50
6877
- #: includes/widgets/htmega_post_grid_tab.php:57
6878
- #: includes/widgets/htmega_post_slider.php:58
6879
- #: includes/widgets/htmega_verticle_time_line.php:51
6880
- msgid "Layout Four"
6881
- msgstr ""
6882
-
6883
- #: includes/widgets/htmega_pricing_list_view.php:57
6884
- msgid "Layout Four ( No Border )"
6885
- msgstr ""
6886
-
6887
- #: includes/widgets/htmega_business_hours.php:47
6888
- #: includes/widgets/htmega_data_table.php:48
6889
- #: includes/widgets/htmega_postgrid.php:47
6890
- #: includes/widgets/htmega_post_grid_tab.php:54
6891
- #: includes/widgets/htmega_post_slider.php:55
6892
- #: includes/widgets/htmega_pricing_list_view.php:54
6893
- #: includes/widgets/htmega_switcher.php:45
6894
- #: includes/widgets/htmega_verticle_time_line.php:48
6895
- #: extensions/ht-builder/widgets/bl_post_archive.php:47
6896
- msgid "Layout One"
6897
- msgstr ""
6898
-
6899
- #: includes/widgets/htmega_post_slider.php:61
6900
- msgid "Layout Seven"
6901
- msgstr ""
6902
-
6903
- #: includes/widgets/htmega_post_slider.php:60
6904
- msgid "Layout Six"
6905
- msgstr ""
6906
-
6907
- #: includes/widgets/htmega_business_hours.php:49
6908
- #: includes/widgets/htmega_data_table.php:50
6909
- #: includes/widgets/htmega_postgrid.php:49
6910
- #: includes/widgets/htmega_post_grid_tab.php:56
6911
- #: includes/widgets/htmega_post_slider.php:57
6912
- #: includes/widgets/htmega_pricing_list_view.php:56
6913
- #: includes/widgets/htmega_verticle_time_line.php:50
6914
- msgid "Layout Three"
6915
- msgstr ""
6916
-
6917
- #: includes/widgets/htmega_business_hours.php:48
6918
- #: includes/widgets/htmega_data_table.php:49
6919
- #: includes/widgets/htmega_postgrid.php:48
6920
- #: includes/widgets/htmega_post_grid_tab.php:55
6921
- #: includes/widgets/htmega_post_slider.php:56
6922
- #: includes/widgets/htmega_pricing_list_view.php:55
6923
- #: includes/widgets/htmega_switcher.php:46
6924
- #: includes/widgets/htmega_verticle_time_line.php:49
6925
- #: extensions/ht-builder/widgets/bl_post_archive.php:48
6926
- msgid "Layout Two"
6927
- msgstr ""
6928
-
6929
- #: admin/include/admin-setting.php:1186
6930
- msgid "leaving us a review on our WP repository"
6931
- msgstr ""
6932
-
6933
- #: includes/widgets/htmega_accordion.php:567
6934
- #: includes/widgets/htmega_accordion.php:758
6935
- #: includes/widgets/htmega_accordion.php:916
6936
- #: includes/widgets/htmega_accordion.php:1314
6937
- #: includes/widgets/htmega_accordion.php:1432
6938
- #: includes/widgets/htmega_add_banner.php:368
6939
- #: includes/widgets/htmega_blockquote.php:183
6940
- #: includes/widgets/htmega_buddy_press.php:254
6941
- #: includes/widgets/htmega_business_hours.php:391
6942
- #: includes/widgets/htmega_button.php:118
6943
- #: includes/widgets/htmega_button.php:161
6944
- #: includes/widgets/htmega_caldera_form.php:72
6945
- #: includes/widgets/htmega_caldera_form.php:347
6946
- #: includes/widgets/htmega_call_to_action.php:200
6947
- #: includes/widgets/htmega_call_to_action.php:294
6948
- #: includes/widgets/htmega_call_to_action.php:330
6949
- #: includes/widgets/htmega_carousel.php:837
6950
- #: includes/widgets/htmega_contact_form_seven.php:117
6951
- #: includes/widgets/htmega_countdown.php:611
6952
- #: includes/widgets/htmega_countdown.php:643
6953
- #: includes/widgets/htmega_counter.php:288
6954
- #: includes/widgets/htmega_counter.php:321
6955
- #: includes/widgets/htmega_counter.php:427
6956
- #: includes/widgets/htmega_counter.php:553
6957
- #: includes/widgets/htmega_data_table.php:639
6958
- #: includes/widgets/htmega_data_table.php:758
6959
- #: includes/widgets/htmega_double_button.php:157
6960
- #: includes/widgets/htmega_double_button.php:244
6961
- #: includes/widgets/htmega_double_button.php:325
6962
- #: includes/widgets/htmega_dropcaps.php:84
6963
- #: includes/widgets/htmega_easy_digital_download.php:318
6964
- #: includes/widgets/htmega_easy_digital_download.php:686
6965
- #: includes/widgets/htmega_errorcontent.php:249
6966
- #: includes/widgets/htmega_gravity_forms.php:149
6967
- #: includes/widgets/htmega_gravity_forms.php:205
6968
- #: includes/widgets/htmega_gravity_forms.php:239
6969
- #: includes/widgets/htmega_gravity_forms.php:544
6970
- #: includes/widgets/htmega_gravity_forms.php:775
6971
- #: includes/widgets/htmega_imagemarker.php:203
6972
- #: includes/widgets/htmega_imagemarker.php:710
6973
- #: includes/widgets/htmega_image_grid.php:283
6974
- #: includes/widgets/htmega_image_grid.php:380
6975
- #: includes/widgets/htmega_image_masonry.php:267
6976
- #: includes/widgets/htmega_image_masonry.php:364
6977
- #: includes/widgets/htmega_inlinemenu.php:121
6978
- #: includes/widgets/htmega_instagram.php:1484
6979
- #: includes/widgets/htmega_job_manager.php:159
6980
- #: includes/widgets/htmega_lightbox.php:196
6981
- #: includes/widgets/htmega_lightbox.php:309
6982
- #: includes/widgets/htmega_mailchimp_wp.php:129
6983
- #: includes/widgets/htmega_modal.php:178 includes/widgets/htmega_modal.php:350
6984
- #: includes/widgets/htmega_modal.php:1005
6985
- #: includes/widgets/htmega_newsticker.php:460
6986
- #: includes/widgets/htmega_ninja_form.php:188
6987
- #: includes/widgets/htmega_ninja_form.php:290
6988
- #: includes/widgets/htmega_ninja_form.php:324
6989
- #: includes/widgets/htmega_ninja_form.php:611
6990
- #: includes/widgets/htmega_ninja_form.php:822
6991
- #: includes/widgets/htmega_ninja_form.php:1034
6992
- #: includes/widgets/htmega_notify.php:282
6993
- #: includes/widgets/htmega_notify.php:562
6994
- #: includes/widgets/htmega_notify.php:828
6995
- #: includes/widgets/htmega_offcanvas.php:103
6996
- #: includes/widgets/htmega_offcanvas.php:204
6997
- #: includes/widgets/htmega_offcanvas.php:283
6998
- #: includes/widgets/htmega_offcanvas.php:375
6999
- #: includes/widgets/htmega_panel_slider.php:603
7000
- #: includes/widgets/htmega_popover.php:193
7001
- #: includes/widgets/htmega_popover.php:265
7002
- #: includes/widgets/htmega_popover.php:661
7003
- #: includes/widgets/htmega_popover.php:765
7004
- #: includes/widgets/htmega_postgrid.php:293
7005
- #: includes/widgets/htmega_postgrid.php:517
7006
- #: includes/widgets/htmega_postgrid.php:630
7007
- #: includes/widgets/htmega_post_grid_tab.php:401
7008
- #: includes/widgets/htmega_post_grid_tab.php:495
7009
- #: includes/widgets/htmega_post_grid_tab.php:582
7010
- #: includes/widgets/htmega_post_grid_tab.php:805
7011
- #: includes/widgets/htmega_post_slider.php:836
7012
- #: includes/widgets/htmega_post_slider.php:930
7013
- #: includes/widgets/htmega_post_slider.php:1017
7014
- #: includes/widgets/htmega_post_slider.php:1233
7015
- #: includes/widgets/htmega_pricing_list_view.php:473
7016
- #: includes/widgets/htmega_pricing_list_view.php:504
7017
- #: includes/widgets/htmega_pricing_list_view.php:1128
7018
- #: includes/widgets/htmega_pricing_list_view.php:1189
7019
- #: includes/widgets/htmega_quforms.php:90
7020
- #: includes/widgets/htmega_quforms.php:210
7021
- #: includes/widgets/htmega_quforms.php:331
7022
- #: includes/widgets/htmega_quforms.php:551
7023
- #: includes/widgets/htmega_quforms.php:769
7024
- #: includes/widgets/htmega_search.php:156
7025
- #: includes/widgets/htmega_section_title.php:415
7026
- #: includes/widgets/htmega_service.php:241
7027
- #: includes/widgets/htmega_service.php:425
7028
- #: includes/widgets/htmega_service.php:530
7029
- #: includes/widgets/htmega_service.php:719
7030
- #: includes/widgets/htmega_service.php:981
7031
- #: includes/widgets/htmega_singlepost.php:221
7032
- #: includes/widgets/htmega_singlepost.php:317
7033
- #: includes/widgets/htmega_singlepost.php:424
7034
- #: includes/widgets/htmega_slider_thumb_gallery.php:55
7035
- #: includes/widgets/htmega_socialshere.php:374
7036
- #: includes/widgets/htmega_special_day_banner.php:49
7037
- #: includes/widgets/htmega_special_day_banner.php:265
7038
- #: includes/widgets/htmega_tablepress.php:213
7039
- #: includes/widgets/htmega_tablepress.php:370
7040
- #: includes/widgets/htmega_tabs.php:513
7041
- #: includes/widgets/htmega_teammember.php:105
7042
- #: includes/widgets/htmega_teammember.php:616
7043
- #: includes/widgets/htmega_teammember.php:745
7044
- #: includes/widgets/htmega_teammember.php:835
7045
- #: includes/widgets/htmega_teammember.php:926
7046
- #: includes/widgets/htmega_teammember.php:993
7047
- #: includes/widgets/htmega_testimonial_grid.php:553
7048
- #: includes/widgets/htmega_toggle.php:196
7049
- #: includes/widgets/htmega_tooltip.php:181
7050
- #: includes/widgets/htmega_tooltip.php:241
7051
- #: includes/widgets/htmega_user_login_form.php:149
7052
- #: includes/widgets/htmega_user_login_form.php:371
7053
- #: includes/widgets/htmega_user_login_form.php:571
7054
- #: includes/widgets/htmega_videoplayer.php:296
7055
- #: includes/widgets/htmega_wc_categories.php:380
7056
- #: includes/widgets/htmega_wpforms.php:180
7057
- #: includes/widgets/htmega_wpforms.php:282
7058
- #: includes/widgets/htmega_wpforms.php:317
7059
- #: includes/widgets/htmega_wpforms.php:614
7060
- #: includes/widgets/htmega_wpforms.php:833
7061
- #: includes/widgets/htmega_wpforms.php:1061
7062
- #: extensions/ht-builder/widgets/bl_nav_menu.php:115
7063
- #: extensions/ht-builder/widgets/bl_nav_menu.php:498
7064
- #: extensions/ht-builder/widgets/bl_page_title.php:137
7065
- #: extensions/ht-builder/widgets/bl_post_archive.php:302
7066
- #: extensions/ht-builder/widgets/bl_post_archive.php:383
7067
- #: extensions/ht-builder/widgets/bl_post_archive.php:490
7068
- #: extensions/ht-builder/widgets/bl_post_archive.php:596
7069
- #: extensions/ht-builder/widgets/bl_post_archive.php:676
7070
- #: extensions/ht-builder/widgets/bl_post_archive_title.php:139
7071
- #: extensions/ht-builder/widgets/bl_post_author_info.php:112
7072
- #: extensions/ht-builder/widgets/bl_post_content.php:72
7073
- #: extensions/ht-builder/widgets/bl_post_excerpt.php:72
7074
- #: extensions/ht-builder/widgets/bl_post_featured_image.php:71
7075
- #: extensions/ht-builder/widgets/bl_post_title.php:105
7076
- #: extensions/ht-builder/widgets/bl_site_logo.php:159
7077
- #: extensions/ht-builder/widgets/bl_site_title.php:139
7078
- #: extensions/ht-menu/widgets/inline-mega-menu.php:166
7079
- #: extensions/ht-menu/widgets/verticle-mega-menu.php:167
7080
- msgid "Left"
7081
- msgstr ""
7082
-
7083
- #: includes/widgets/htmega_post_slider.php:1435
7084
- msgid "Left Arrow position"
7085
- msgstr ""
7086
-
7087
- #: includes/widgets/htmega_post_slider.php:1486
7088
- msgid "Left Arrow Position vertical"
7089
- msgstr ""
7090
-
7091
- #: includes/widgets/htmega_blockquote.php:155
7092
- msgid "Left Bottom"
7093
- msgstr ""
7094
-
7095
- #: includes/widgets/htmega_blockquote.php:154
7096
- msgid "Left Center"
7097
- msgstr ""
7098
-
7099
- #: includes/widgets/htmega_blockquote.php:153
7100
- msgid "Left Top"
7101
- msgstr ""
7102
-
7103
- #: includes/widgets/htmega_scroll_image.php:268
7104
- msgid "Left-Right"
7105
- msgstr ""
7106
-
7107
- #: includes/widgets/htmega_pricing_list_view.php:348
7108
- #: includes/widgets/htmega_pricing_list_view.php:977
7109
- msgid "Left-Right Position"
7110
- msgstr ""
7111
-
7112
- #: includes/widgets/htmega_image_comparison.php:181
7113
- msgid "Level Position"
7114
- msgstr ""
7115
-
7116
- #: admin/include/admin-setting.php:319
7117
- msgid "Light Box"
7118
- msgstr ""
7119
-
7120
- #: includes/widgets/htmega_lightbox.php:13
7121
- #: includes/widgets/htmega_lightbox.php:42
7122
- msgid "Lightbox"
7123
- msgstr ""
7124
-
7125
- #: includes/widgets/htmega_lightbox.php:49
7126
- msgid "Lightbox Type"
7127
- msgstr ""
7128
-
7129
- #: includes/widgets/htmega_postgrid.php:107
7130
- #: includes/widgets/htmega_post_grid_tab.php:114
7131
- #: includes/widgets/htmega_post_slider.php:118
7132
- #: includes/widgets/htmega_twitter_feed.php:122
7133
- #: extensions/wc-sales-notification/admin/setting.php:101
7134
- msgid "Limit"
7135
- msgstr ""
7136
-
7137
- #: includes/widgets/htmega_socialshere.php:92
7138
- msgid "Line"
7139
- msgstr ""
7140
-
7141
- #: includes/widgets/htmega_blockquote.php:603
7142
- #: includes/widgets/htmega_notify.php:707
7143
- #: includes/widgets/htmega_socialshere.php:533
7144
- msgid "Line Height"
7145
- msgstr ""
7146
-
7147
- #: includes/widgets/htmega_button.php:73
7148
- #: includes/widgets/htmega_double_button.php:108
7149
- #: includes/widgets/htmega_double_button.php:195
7150
- #: includes/widgets/htmega_panel_slider.php:117
7151
- #: includes/widgets/htmega_popover.php:139
7152
- #: includes/widgets/htmega_pricing_list_view.php:126
7153
- #: includes/widgets/htmega_pricing_list_view.php:660
7154
- #: includes/widgets/htmega_section_title.php:193
7155
- #: includes/widgets/htmega_section_title.php:251
7156
- #: includes/widgets/htmega_teammember.php:223
7157
- #: includes/widgets/htmega_tooltip.php:139
7158
- #: extensions/ht-builder/widgets/bl_post_author_info.php:94
7159
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:261
7160
- msgid "Link"
7161
- msgstr ""
7162
-
7163
- #: includes/widgets/htmega_offcanvas.php:327
7164
- #: includes/widgets/htmega_twitter_feed.php:639
7165
- #: includes/widgets/htmega_user_login_form.php:773
7166
- #: extensions/ht-builder/widgets/bl_post_archive.php:521
7167
- msgid "Link Color"
7168
- msgstr ""
7169
-
7170
- #: extensions/ht-builder/widgets/bl_post_author_info.php:101
7171
- msgid "Link for the Author Name and Image"
7172
- msgstr ""
7173
-
7174
- #: includes/widgets/htmega_offcanvas.php:338
7175
- #: includes/widgets/htmega_user_login_form.php:788
7176
- msgid "Link Hover Color"
7177
- msgstr ""
7178
-
7179
- #: includes/widgets/htmega_socialshere.php:66
7180
- msgid "Linkedin"
7181
- msgstr ""
7182
-
7183
- #: includes/widgets/htmega_booked_calender.php:55
7184
- msgid "List"
7185
- msgstr ""
7186
-
7187
- #: includes/widgets/htmega_pricing_list_view.php:1457
7188
- msgid "List Area"
7189
- msgstr ""
7190
-
7191
- #: includes/widgets/htmega_socialshere.php:71
7192
- msgid "Live journal"
7193
- msgstr ""
7194
-
7195
- #: includes/widgets/htmega_socialshere.php:80
7196
- msgid "Liveinternet"
7197
- msgstr ""
7198
-
7199
- #: includes/widgets/htmega_job_manager.php:131
7200
- msgid "Load More"
7201
- msgstr ""
7202
-
7203
- #: admin/include/admin-setting.php:662
7204
- msgid "Load Post in Elementor Addons"
7205
- msgstr ""
7206
-
7207
- #: admin/include/templates/library/templates.php:53
7208
- msgid "Loading"
7209
- msgstr ""
7210
-
7211
- #: includes/widgets/htmega_animated_heading.php:72
7212
- msgid "Loading bar"
7213
- msgstr ""
7214
-
7215
- #: extensions/wc-sales-notification/admin/setting.php:114
7216
- msgid "Loading Time"
7217
- msgstr ""
7218
-
7219
- #: includes/widgets/htmega_slider_thumb_gallery.php:68
7220
- #: includes/widgets/htmega_slider_thumb_gallery.php:122
7221
- msgid "Location Name Here."
7222
- msgstr ""
7223
-
7224
- #: includes/widgets/htmega_custom_event.php:78
7225
- msgid "Location."
7226
- msgstr ""
7227
-
7228
- #: includes/widgets/htmega_user_login_form.php:360
7229
- #: includes/widgets/htmega_user_login_form.php:1650
7230
- msgid "Login"
7231
- msgstr ""
7232
-
7233
- #: includes/widgets/htmega_user_login_form.php:349
7234
- msgid "Login Button"
7235
- msgstr ""
7236
-
7237
- #: includes/widgets/htmega_user_login_form.php:103
7238
- msgid "Login Content"
7239
- msgstr ""
7240
-
7241
- #: includes/widgets/htmega_user_login_form.php:43
7242
- #: includes/widgets/htmega_user_login_form.php:174
7243
- msgid "Login Form"
7244
- msgstr ""
7245
-
7246
- #: includes/widgets/htmega_user_login_form.php:646
7247
- msgid "Login Form Header Style"
7248
- msgstr ""
7249
-
7250
- #: includes/widgets/htmega_user_login_form.php:68
7251
- msgid "Login Header"
7252
- msgstr ""
7253
-
7254
- #: includes/widgets/htmega_user_login_form.php:89
7255
- msgid "Login Header Title"
7256
- msgstr ""
7257
-
7258
- #: includes/helper-function.php:392
7259
- msgid "Login Successfully"
7260
- msgstr ""
7261
-
7262
- #: extensions/ht-builder/widgets/bl_site_logo.php:48
7263
- msgid "Logo"
7264
- msgstr ""
7265
-
7266
- #: includes/widgets/htmega_googlemap.php:141
7267
- #: includes/widgets/htmega_weather.php:196
7268
- msgid "Longitude"
7269
- msgstr ""
7270
-
7271
- #: includes/widgets/htmega_scroll_navigation.php:105
7272
- #: includes/widgets/htmega_testimonial_grid.php:214
7273
- #: includes/widgets/htmega_testimonial_grid.php:228
7274
- #: includes/widgets/htmega_testimonial_grid.php:234
7275
- #: includes/widgets/htmega_testimonial_grid.php:240
7276
- msgid ""
7277
- "Lorem ipsum dolor sit amet consectetur adipisicing elit sed do eiusmod "
7278
- "tempor incididunt ut labore et dolore Lorem ipsum dolor sit amet, "
7279
- "consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et "
7280
- "dolore magna aliqua."
7281
- msgstr ""
7282
-
7283
- #: includes/widgets/htmega_working_process.php:170
7284
- msgid ""
7285
- "Lorem ipsum dolor sit amet consectetur adipisicing elit, sed do eiusmod "
7286
- "tempor incid idunt ut labore"
7287
- msgstr ""
7288
-
7289
- #: includes/widgets/htmega_working_process.php:174
7290
- #: includes/widgets/htmega_working_process.php:178
7291
- msgid ""
7292
- "Lorem ipsum dolor sit amet consectetur adipisicing elit, sed do eiusmod "
7293
- "tempor incid idunt ut labore."
7294
- msgstr ""
7295
-
7296
- #: includes/widgets/htmega_dropcaps.php:60
7297
- msgid ""
7298
- "Lorem ipsum dolor sit amet, consec adipisicing elit, sed do eiusmod tempor "
7299
- "incidid ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis "
7300
- "nostrud exercitation ullamco laboris nisi ut aliquip exl Lorem ipsum dolor "
7301
- "sit amet, consectetur adipisicing elit, sed do eiusmod tempor incidid ut "
7302
- "labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud "
7303
- "exercitation ullamco laboris nisi ut aliquip."
7304
- msgstr ""
7305
-
7306
- #: includes/widgets/htmega_modal.php:84
7307
- msgid ""
7308
- "Lorem ipsum dolor sit amet, consectetur adipis elit, sed do eiusmod tempor "
7309
- "incidid ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis "
7310
- "nostrud exercitati ulla laboris nisi ut aliquip ex ea commodo consequat. "
7311
- "Duis aute irure dolor in repre in voluptate velit esse cillum dolore eu."
7312
- msgstr ""
7313
-
7314
- #: includes/widgets/htmega_verticle_time_line.php:90
7315
- #: includes/widgets/htmega_verticle_time_line.php:102
7316
- #: includes/widgets/htmega_verticle_time_line.php:106
7317
- #: includes/widgets/htmega_verticle_time_line.php:110
7318
- msgid ""
7319
- "Lorem ipsum dolor sit amet, consectetur adipis icing elit, sed do eiusmod "
7320
- "tempor incid ut labore et dolore magna aliqua Ut enim ad min."
7321
- msgstr ""
7322
-
7323
- #: includes/widgets/htmega_tabs.php:219 includes/widgets/htmega_tabs.php:223
7324
- #: includes/widgets/htmega_tabs.php:227
7325
- #: includes/widgets/htmega_working_process.php:98
7326
- msgid ""
7327
- "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod "
7328
- "tempor incididunt ut labore et dolo magna aliqua. Ut enim ad minim veniam, "
7329
- "quis nostrud exerci ullamco laboris nisi ut aliquip ex ea commodo consequat. "
7330
- "Duis aute irure dolor in repre in voluptate."
7331
- msgstr ""
7332
-
7333
- #: includes/widgets/htmega_toggle.php:112
7334
- msgid ""
7335
- "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod "
7336
- "tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, "
7337
- "quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo "
7338
- "consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse "
7339
- "cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat "
7340
- "non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
7341
- msgstr ""
7342
-
7343
- #: includes/widgets/htmega_imagemarker.php:192
7344
- #: includes/widgets/htmega_imagemarker.php:469
7345
- msgid "Lorem ipsum pisaci volupt atem accusa saes ntisdumtiu loperm asaerks."
7346
- msgstr ""
7347
-
7348
- #: includes/widgets/htmega_user_login_form.php:285
7349
- msgid "Lost your password?"
7350
- msgstr ""
7351
-
7352
- #: includes/widgets/htmega_data_table.php:269
7353
- #: includes/widgets/htmega_data_table.php:462
7354
- #: includes/widgets/htmega_pricing_list_view.php:603
7355
- #: includes/widgets/htmega_pricing_list_view.php:1099
7356
- msgid "Louis Hudson"
7357
- msgstr ""
7358
-
7359
- #: includes/widgets/htmega_pricing_list_view.php:1112
7360
- msgid "louishudson@gmail.com"
7361
- msgstr ""
7362
-
7363
- #: extensions/ht-builder/widgets/bl_post_archive.php:1066
7364
- msgid "M d, Y"
7365
- msgstr ""
7366
-
7367
- #: includes/weather-resource/weather-resource.php:109
7368
- msgid "m/s"
7369
- msgstr ""
7370
-
7371
- #: includes/widgets/htmega_panel_slider.php:146
7372
- msgid "Made in 2016"
7373
- msgstr ""
7374
-
7375
- #: includes/widgets/htmega_panel_slider.php:88
7376
- #: includes/widgets/htmega_panel_slider.php:142
7377
- msgid "Made in 2017"
7378
- msgstr ""
7379
-
7380
- #: includes/widgets/htmega_panel_slider.php:138
7381
- msgid "Made in 2018"
7382
- msgstr ""
7383
-
7384
- #: includes/widgets/htmega_panel_slider.php:134
7385
- msgid "Made in 2019"
7386
- msgstr ""
7387
-
7388
- #: includes/widgets/htmega_image_magnifier.php:42
7389
- msgid "Magnifier"
7390
- msgstr ""
7391
-
7392
- #: includes/widgets/htmega_mailchimp_wp.php:43
7393
- msgid "Mailchimp"
7394
- msgstr ""
7395
-
7396
- #: admin/include/admin-setting.php:1029
7397
- #: includes/widgets/htmega_mailchimp_wp.php:13
7398
- msgid "Mailchimp for wp"
7399
- msgstr ""
7400
-
7401
- #: includes/widgets/htmega_mailchimp_wp.php:66
7402
- msgid "Mailchimp ID"
7403
- msgstr ""
7404
-
7405
- #: includes/widgets/htmega_inlinemenu.php:102
7406
- #: extensions/ht-builder/widgets/bl_nav_menu.php:96
7407
- #: extensions/ht-menu/widgets/inline-mega-menu.php:63
7408
- #: extensions/ht-menu/widgets/verticle-mega-menu.php:64
7409
- msgid "Main Menu"
7410
- msgstr ""
7411
-
7412
- #: extensions/ht-menu/widgets/inline-mega-menu.php:413
7413
- #: extensions/ht-menu/widgets/verticle-mega-menu.php:371
7414
- msgid "Main Menu Items"
7415
- msgstr ""
7416
-
7417
- #: extensions/ht-menu/widgets/inline-mega-menu.php:71
7418
- #: extensions/ht-menu/widgets/verticle-mega-menu.php:72
7419
- msgid "Main Menu Width"
7420
- msgstr ""
7421
-
7422
- #: includes/widgets/htmega_testimonial_grid.php:233
7423
- msgid "Manager"
7424
- msgstr ""
7425
-
7426
- #: includes/widgets/htmega_testimonial_grid.php:177
7427
- #: includes/widgets/htmega_testimonial_grid.php:227
7428
- msgid "Managing Director"
7429
- msgstr ""
7430
-
7431
- #: includes/widgets/htmega_teammember.php:165
7432
- msgid "Managing director"
7433
- msgstr ""
7434
-
7435
- #: includes/widgets/htmega_easy_digital_download.php:141
7436
- #: includes/widgets/htmega_wc_categories.php:81
7437
- msgid "Manual Selection"
7438
- msgstr ""
7439
-
7440
- #: includes/widgets/htmega_user_login_form.php:449
7441
- #: includes/widgets/htmega_user_login_form.php:477
7442
- #: includes/widgets/htmega_user_login_form.php:504
7443
- msgid "Manual Space"
7444
- msgstr ""
7445
-
7446
- #: includes/widgets/htmega_googlemap.php:265
7447
- msgid "Map Fixed Address"
7448
- msgstr ""
7449
-
7450
- #: includes/widgets/htmega_googlemap.php:80
7451
- msgid "Map Height"
7452
- msgstr ""
7453
-
7454
- #: includes/widgets/htmega_googlemap.php:123
7455
- msgid "Map Marker"
7456
- msgstr ""
7457
-
7458
- #: includes/widgets/htmega_googlemap.php:111
7459
- msgid "Map Style"
7460
- msgstr ""
7461
-
7462
- #: includes/widgets/htmega_googlemap.php:413
7463
- msgid "Maps Fixed Address"
7464
- msgstr ""
7465
-
7466
- #: includes/widgets/htmega_googlemap.php:297
7467
- msgid "Maps Info Address"
7468
- msgstr ""
7469
-
7470
- #: includes/widgets/htmega_booked_calender.php:111
7471
- msgid "March"
7472
- msgstr ""
7473
-
7474
- #: includes/widgets/htmega_accordion.php:801
7475
- #: includes/widgets/htmega_accordion.php:852
7476
- #: includes/widgets/htmega_accordion.php:1214
7477
- #: includes/widgets/htmega_accordion.php:1374
7478
- #: includes/widgets/htmega_add_banner.php:163
7479
- #: includes/widgets/htmega_add_banner.php:251
7480
- #: includes/widgets/htmega_add_banner.php:305
7481
- #: includes/widgets/htmega_add_banner.php:403
7482
- #: includes/widgets/htmega_add_banner.php:462
7483
- #: includes/widgets/htmega_add_banner.php:521
7484
- #: includes/widgets/htmega_add_banner.php:580
7485
- #: includes/widgets/htmega_add_banner.php:691
7486
- #: includes/widgets/htmega_animated_heading.php:267
7487
- #: includes/widgets/htmega_blockquote.php:220
7488
- #: includes/widgets/htmega_blockquote.php:298
7489
- #: includes/widgets/htmega_blockquote.php:354
7490
- #: includes/widgets/htmega_blockquote.php:542
7491
- #: includes/widgets/htmega_blockquote.php:723
7492
- #: includes/widgets/htmega_brand.php:128 includes/widgets/htmega_brand.php:314
7493
- #: includes/widgets/htmega_buddy_press.php:236
7494
- #: includes/widgets/htmega_buddy_press.php:344
7495
- #: includes/widgets/htmega_buddy_press.php:413
7496
- #: includes/widgets/htmega_business_hours.php:242
7497
- #: includes/widgets/htmega_business_hours.php:318
7498
- #: includes/widgets/htmega_business_hours.php:446
7499
- #: includes/widgets/htmega_button.php:317
7500
- #: includes/widgets/htmega_call_to_action.php:367
7501
- #: includes/widgets/htmega_call_to_action.php:444
7502
- #: includes/widgets/htmega_call_to_action.php:532
7503
- #: includes/widgets/htmega_call_to_action.php:591
7504
- #: includes/widgets/htmega_call_to_action.php:650
7505
- #: includes/widgets/htmega_call_to_action.php:743
7506
- #: includes/widgets/htmega_call_to_action.php:949
7507
- #: includes/widgets/htmega_carousel.php:456
7508
- #: includes/widgets/htmega_carousel.php:973
7509
- #: includes/widgets/htmega_carousel.php:1056
7510
- #: includes/widgets/htmega_carousel.php:1371
7511
- #: includes/widgets/htmega_contact_form_seven.php:161
7512
- #: includes/widgets/htmega_contact_form_seven.php:337
7513
- #: includes/widgets/htmega_contact_form_seven.php:559
7514
- #: includes/widgets/htmega_contact_form_seven.php:715
7515
- #: includes/widgets/htmega_contact_form_seven.php:859
7516
- #: includes/widgets/htmega_contact_form_seven.php:1016
7517
- #: includes/widgets/htmega_countdown.php:591
7518
- #: includes/widgets/htmega_countdown.php:838
7519
- #: includes/widgets/htmega_countdown.php:998
7520
- #: includes/widgets/htmega_countdown.php:1096
7521
- #: includes/widgets/htmega_counter.php:240
7522
- #: includes/widgets/htmega_counter.php:501
7523
- #: includes/widgets/htmega_counter.php:625
7524
- #: includes/widgets/htmega_counter.php:892
7525
- #: includes/widgets/htmega_counter.php:981
7526
- #: includes/widgets/htmega_counter.php:1071
7527
- #: includes/widgets/htmega_custom_event.php:176
7528
- #: includes/widgets/htmega_custom_event.php:261
7529
- #: includes/widgets/htmega_custom_event.php:305
7530
- #: includes/widgets/htmega_custom_event.php:362
7531
- #: includes/widgets/htmega_data_table.php:521
7532
- #: includes/widgets/htmega_double_button.php:297
7533
- #: includes/widgets/htmega_double_button.php:540
7534
- #: includes/widgets/htmega_double_button.php:713
7535
- #: includes/widgets/htmega_double_button.php:896
7536
- #: includes/widgets/htmega_dropcaps.php:153
7537
- #: includes/widgets/htmega_dropcaps.php:253
7538
- #: includes/widgets/htmega_easy_digital_download.php:380
7539
- #: includes/widgets/htmega_easy_digital_download.php:444
7540
- #: includes/widgets/htmega_easy_digital_download.php:598
7541
- #: includes/widgets/htmega_easy_digital_download.php:738
7542
- #: includes/widgets/htmega_errorcontent.php:276
7543
- #: includes/widgets/htmega_errorcontent.php:368
7544
- #: includes/widgets/htmega_errorcontent.php:447
7545
- #: includes/widgets/htmega_errorcontent.php:526
7546
- #: includes/widgets/htmega_errorcontent.php:602
7547
- #: includes/widgets/htmega_errorcontent.php:753
7548
- #: includes/widgets/htmega_googlemap.php:349
7549
- #: includes/widgets/htmega_googlemap.php:490
7550
- #: includes/widgets/htmega_gravity_forms.php:331
7551
- #: includes/widgets/htmega_gravity_forms.php:371
7552
- #: includes/widgets/htmega_gravity_forms.php:498
7553
- #: includes/widgets/htmega_gravity_forms.php:730
7554
- #: includes/widgets/htmega_imagemarker.php:895
7555
- #: includes/widgets/htmega_imagemarker.php:950
7556
- #: includes/widgets/htmega_image_comparison.php:111
7557
- #: includes/widgets/htmega_image_grid.php:207
7558
- #: includes/widgets/htmega_image_grid.php:353
7559
- #: includes/widgets/htmega_image_magnifier.php:154
7560
- #: includes/widgets/htmega_image_masonry.php:207
7561
- #: includes/widgets/htmega_image_masonry.php:324
7562
- #: includes/widgets/htmega_image_masonry.php:411
7563
- #: includes/widgets/htmega_inlinemenu.php:187
7564
- #: includes/widgets/htmega_instagram.php:634
7565
- #: includes/widgets/htmega_instagram.php:680
7566
- #: includes/widgets/htmega_instagram.php:897
7567
- #: includes/widgets/htmega_instagram.php:1355
7568
- #: includes/widgets/htmega_lightbox.php:238
7569
- #: includes/widgets/htmega_mailchimp_wp.php:102
7570
- #: includes/widgets/htmega_mailchimp_wp.php:273
7571
- #: includes/widgets/htmega_mailchimp_wp.php:407
7572
- #: includes/widgets/htmega_modal.php:525 includes/widgets/htmega_modal.php:642
7573
- #: includes/widgets/htmega_modal.php:805 includes/widgets/htmega_modal.php:975
7574
- #: includes/widgets/htmega_newsticker.php:403
7575
- #: includes/widgets/htmega_newsticker.php:705
7576
- #: includes/widgets/htmega_newsticker.php:845
7577
- #: includes/widgets/htmega_newsticker.php:978
7578
- #: includes/widgets/htmega_ninja_form.php:153
7579
- #: includes/widgets/htmega_ninja_form.php:255
7580
- #: includes/widgets/htmega_ninja_form.php:419
7581
- #: includes/widgets/htmega_ninja_form.php:458
7582
- #: includes/widgets/htmega_ninja_form.php:566
7583
- #: includes/widgets/htmega_ninja_form.php:787
7584
- #: includes/widgets/htmega_ninja_form.php:989
7585
- #: includes/widgets/htmega_notify.php:402
7586
- #: includes/widgets/htmega_notify.php:545
7587
- #: includes/widgets/htmega_notify.php:801
7588
- #: includes/widgets/htmega_panel_slider.php:529
7589
- #: includes/widgets/htmega_panel_slider.php:710
7590
- #: includes/widgets/htmega_panel_slider.php:766
7591
- #: includes/widgets/htmega_panel_slider.php:1171
7592
- #: includes/widgets/htmega_popover.php:305
7593
- #: includes/widgets/htmega_popover.php:424
7594
- #: includes/widgets/htmega_postgrid.php:248
7595
- #: includes/widgets/htmega_postgrid.php:487
7596
- #: includes/widgets/htmega_postgrid.php:602
7597
- #: includes/widgets/htmega_postgrid.php:689
7598
- #: includes/widgets/htmega_post_grid_tab.php:297
7599
- #: includes/widgets/htmega_post_grid_tab.php:373
7600
- #: includes/widgets/htmega_post_grid_tab.php:467
7601
- #: includes/widgets/htmega_post_grid_tab.php:554
7602
- #: includes/widgets/htmega_post_grid_tab.php:652
7603
- #: includes/widgets/htmega_post_grid_tab.php:777
7604
- #: includes/widgets/htmega_post_grid_tab.php:872
7605
- #: includes/widgets/htmega_post_grid_tab.php:1130
7606
- #: includes/widgets/htmega_post_slider.php:729
7607
- #: includes/widgets/htmega_post_slider.php:744
7608
- #: includes/widgets/htmega_post_slider.php:902
7609
- #: includes/widgets/htmega_post_slider.php:989
7610
- #: includes/widgets/htmega_post_slider.php:1086
7611
- #: includes/widgets/htmega_post_slider.php:1205
7612
- #: includes/widgets/htmega_post_slider.php:1299
7613
- #: includes/widgets/htmega_post_slider.php:1826
7614
- #: includes/widgets/htmega_post_slider.php:1937
7615
- #: includes/widgets/htmega_pricing_list_view.php:1252
7616
- #: includes/widgets/htmega_pricing_list_view.php:1612
7617
- #: includes/widgets/htmega_pricing_list_view.php:1685
7618
- #: includes/widgets/htmega_pricing_list_view.php:1770
7619
- #: includes/widgets/htmega_pricing_list_view.php:1847
7620
- #: includes/widgets/htmega_progress_bar.php:691
7621
- #: includes/widgets/htmega_quforms.php:183
7622
- #: includes/widgets/htmega_quforms.php:294
7623
- #: includes/widgets/htmega_quforms.php:427
7624
- #: includes/widgets/htmega_quforms.php:646
7625
- #: includes/widgets/htmega_quforms.php:873
7626
- #: includes/widgets/htmega_scroll_image.php:203
7627
- #: includes/widgets/htmega_scroll_image.php:363
7628
- #: includes/widgets/htmega_scroll_navigation.php:277
7629
- #: includes/widgets/htmega_search.php:183
7630
- #: includes/widgets/htmega_search.php:284
7631
- #: includes/widgets/htmega_search.php:503
7632
- #: includes/widgets/htmega_section_title.php:387
7633
- #: includes/widgets/htmega_section_title.php:587
7634
- #: includes/widgets/htmega_section_title.php:819
7635
- #: includes/widgets/htmega_service.php:183
7636
- #: includes/widgets/htmega_service.php:395
7637
- #: includes/widgets/htmega_service.php:500
7638
- #: includes/widgets/htmega_service.php:658
7639
- #: includes/widgets/htmega_service.php:921
7640
- #: includes/widgets/htmega_service.php:1049
7641
- #: includes/widgets/htmega_singlepost.php:193
7642
- #: includes/widgets/htmega_singlepost.php:280
7643
- #: includes/widgets/htmega_singlepost.php:394
7644
- #: includes/widgets/htmega_singlepost.php:491
7645
- #: includes/widgets/htmega_slider_thumb_gallery.php:705
7646
- #: includes/widgets/htmega_slider_thumb_gallery.php:777
7647
- #: includes/widgets/htmega_socialshere.php:419
7648
- #: includes/widgets/htmega_special_day_banner.php:290
7649
- #: includes/widgets/htmega_special_day_banner.php:367
7650
- #: includes/widgets/htmega_special_day_banner.php:426
7651
- #: includes/widgets/htmega_special_day_banner.php:485
7652
- #: includes/widgets/htmega_special_day_banner.php:544
7653
- #: includes/widgets/htmega_special_day_banner.php:603
7654
- #: includes/widgets/htmega_special_day_banner.php:714
7655
- #: includes/widgets/htmega_switcher.php:246
7656
- #: includes/widgets/htmega_switcher.php:385
7657
- #: includes/widgets/htmega_switcher.php:576
7658
- #: includes/widgets/htmega_tabs.php:349 includes/widgets/htmega_tabs.php:581
7659
- #: includes/widgets/htmega_tabs.php:924
7660
- #: includes/widgets/htmega_teammember.php:330
7661
- #: includes/widgets/htmega_teammember.php:583
7662
- #: includes/widgets/htmega_teammember.php:715
7663
- #: includes/widgets/htmega_teammember.php:805
7664
- #: includes/widgets/htmega_teammember.php:896
7665
- #: includes/widgets/htmega_teammember.php:963
7666
- #: includes/widgets/htmega_testimonial_grid.php:271
7667
- #: includes/widgets/htmega_testimonial_grid.php:449
7668
- #: includes/widgets/htmega_testimonial_grid.php:509
7669
- #: includes/widgets/htmega_testimonial_grid.php:601
7670
- #: includes/widgets/htmega_toggle.php:156
7671
- #: includes/widgets/htmega_toggle.php:284
7672
- #: includes/widgets/htmega_tooltip.php:281
7673
- #: includes/widgets/htmega_tooltip.php:401
7674
- #: includes/widgets/htmega_twitter_feed.php:570
7675
- #: includes/widgets/htmega_twitter_feed.php:659
7676
- #: includes/widgets/htmega_twitter_feed.php:728
7677
- #: includes/widgets/htmega_twitter_feed.php:792
7678
- #: includes/widgets/htmega_twitter_feed.php:928
7679
- #: includes/widgets/htmega_twitter_feed.php:989
7680
- #: includes/widgets/htmega_twitter_feed.php:1398
7681
- #: includes/widgets/htmega_user_login_form.php:532
7682
- #: includes/widgets/htmega_user_login_form.php:609
7683
- #: includes/widgets/htmega_user_login_form.php:706
7684
- #: includes/widgets/htmega_user_login_form.php:758
7685
- #: includes/widgets/htmega_user_login_form.php:861
7686
- #: includes/widgets/htmega_user_login_form.php:1041
7687
- #: includes/widgets/htmega_user_login_form.php:1501
7688
- #: includes/widgets/htmega_verticle_time_line.php:166
7689
- #: includes/widgets/htmega_videoplayer.php:394
7690
- #: includes/widgets/htmega_wc_categories.php:331
7691
- #: includes/widgets/htmega_wc_categories.php:475
7692
- #: includes/widgets/htmega_wc_element_pages.php:1756
7693
- #: includes/widgets/htmega_working_process.php:209
7694
- #: includes/widgets/htmega_working_process.php:405
7695
- #: includes/widgets/htmega_working_process.php:663
7696
- #: includes/widgets/htmega_working_process.php:742
7697
- #: includes/widgets/htmega_working_process.php:842
7698
- #: includes/widgets/htmega_wpforms.php:145
7699
- #: includes/widgets/htmega_wpforms.php:247
7700
- #: includes/widgets/htmega_wpforms.php:401
7701
- #: includes/widgets/htmega_wpforms.php:440
7702
- #: includes/widgets/htmega_wpforms.php:569
7703
- #: includes/widgets/htmega_wpforms.php:790
7704
- #: includes/widgets/htmega_wpforms.php:1016
7705
- #: extensions/ht-builder/widgets/bl_page_title.php:121
7706
- #: extensions/ht-builder/widgets/bl_post_archive.php:253
7707
- #: extensions/ht-builder/widgets/bl_post_archive.php:367
7708
- #: extensions/ht-builder/widgets/bl_post_archive.php:474
7709
- #: extensions/ht-builder/widgets/bl_post_archive.php:580
7710
- #: extensions/ht-builder/widgets/bl_post_archive.php:774
7711
- #: extensions/ht-builder/widgets/bl_post_archive.php:898
7712
- #: extensions/ht-builder/widgets/bl_post_archive_title.php:123
7713
- #: extensions/ht-builder/widgets/bl_post_author_info.php:194
7714
- #: extensions/ht-builder/widgets/bl_post_author_info.php:244
7715
- #: extensions/ht-builder/widgets/bl_post_author_info.php:284
7716
- #: extensions/ht-builder/widgets/bl_post_title.php:88
7717
- #: extensions/ht-builder/widgets/bl_site_logo.php:143
7718
- #: extensions/ht-builder/widgets/bl_site_title.php:123
7719
- #: extensions/ht-menu/widgets/inline-mega-menu.php:107
7720
- #: extensions/ht-menu/widgets/verticle-mega-menu.php:108
7721
- msgid "Margin"
7722
- msgstr ""
7723
-
7724
- #: includes/widgets/htmega_googlemap.php:244
7725
- #: includes/widgets/htmega_imagemarker.php:44
7726
- #: includes/widgets/htmega_imagemarker.php:490
7727
- msgid "Marker"
7728
- msgstr ""
7729
-
7730
- #: includes/widgets/htmega_imagemarker.php:173
7731
- #: includes/widgets/htmega_imagemarker.php:468
7732
- msgid "Marker #1"
7733
- msgstr ""
7734
-
7735
- #: includes/widgets/htmega_imagemarker.php:190
7736
- msgid "Marker Content"
7737
- msgstr ""
7738
-
7739
- #: includes/widgets/htmega_imagemarker.php:199
7740
- #: includes/widgets/htmega_imagemarker.php:287
7741
- msgid "Marker Content Position"
7742
- msgstr ""
7743
-
7744
- #: includes/widgets/htmega_imagemarker.php:300
7745
- msgid "Marker Content Postion(X)"
7746
- msgstr ""
7747
-
7748
- #: includes/widgets/htmega_imagemarker.php:323
7749
- msgid "Marker Content Postion(Y)"
7750
- msgstr ""
7751
-
7752
- #: includes/widgets/htmega_imagemarker.php:228
7753
- msgid "Marker Icon Position"
7754
- msgstr ""
7755
-
7756
- #: includes/widgets/htmega_imagemarker.php:149
7757
- msgid "Marker Indicator Icon"
7758
- msgstr ""
7759
-
7760
- #: includes/widgets/htmega_imagemarker.php:498
7761
- msgid "Marker Indicator Style"
7762
- msgstr ""
7763
-
7764
- #: includes/widgets/htmega_googlemap.php:150
7765
- msgid "Marker Info Box "
7766
- msgstr ""
7767
-
7768
- #: includes/widgets/htmega_imagemarker.php:112
7769
- msgid "Marker Item"
7770
- msgstr ""
7771
-
7772
- #: includes/widgets/htmega_imagemarker.php:180
7773
- msgid "Marker Placeholder Text"
7774
- msgstr ""
7775
-
7776
- #: includes/widgets/htmega_imagemarker.php:171
7777
- msgid "Marker Title"
7778
- msgstr ""
7779
-
7780
- #: includes/widgets/htmega_buddy_press.php:77
7781
- msgid "Max Item"
7782
- msgstr ""
7783
-
7784
- #: includes/widgets/htmega_contact_form_seven.php:87
7785
- msgid "Max Width"
7786
- msgstr ""
7787
-
7788
- #: includes/widgets/htmega_newsticker.php:101
7789
- msgid "Maxium Row"
7790
- msgstr ""
7791
-
7792
- #: includes/widgets/htmega_booked_calender.php:113
7793
- msgid "May"
7794
- msgstr ""
7795
-
7796
- #: includes/widgets/htmega_pricing_list_view.php:237
7797
- msgid "Media"
7798
- msgstr ""
7799
-
7800
- #: includes/widgets/htmega_button.php:94
7801
- #: includes/widgets/htmega_double_button.php:47
7802
- #: includes/widgets/htmega_instragram_feed.php:73
7803
- msgid "Medium"
7804
- msgstr ""
7805
-
7806
- #: extensions/ht-menu/widgets/inline-mega-menu.php:326
7807
- #: extensions/ht-menu/widgets/verticle-mega-menu.php:284
7808
- msgid "Mega Menu"
7809
- msgstr ""
7810
-
7811
- #: extensions/ht-menu/admin/setting.php:119
7812
- msgid "Mega Menu Background Color"
7813
- msgstr ""
7814
-
7815
- #: extensions/ht-menu/classes/class.mega-menu.php:92
7816
- msgid "Mega Menu Settings"
7817
- msgstr ""
7818
-
7819
- #: extensions/ht-menu/admin/setting.php:108
7820
- #: extensions/ht-menu/widgets/inline-mega-menu.php:333
7821
- #: extensions/ht-menu/widgets/verticle-mega-menu.php:291
7822
- msgid "Mega Menu Width"
7823
- msgstr ""
7824
-
7825
- #: includes/widgets/htmega_buddy_press.php:52
7826
- msgid "Member"
7827
- msgstr ""
7828
-
7829
- #: includes/widgets/htmega_teammember.php:133
7830
- msgid "Member image"
7831
- msgstr ""
7832
-
7833
- #: includes/widgets/htmega_booked_calender.php:175
7834
- msgid "Members Only"
7835
- msgstr ""
7836
-
7837
- #: includes/widgets/htmega_inlinemenu.php:75
7838
- #: extensions/ht-builder/widgets/bl_nav_menu.php:69
7839
- #: extensions/ht-menu/widgets/inline-mega-menu.php:30
7840
- #: extensions/ht-menu/widgets/verticle-mega-menu.php:31
7841
- msgid "Menu"
7842
- msgstr ""
7843
-
7844
- #: extensions/ht-menu/menu/templates.php:128
7845
- msgid "Menu Badge"
7846
- msgstr ""
7847
-
7848
- #: admin/include/admin-setting.php:694
7849
- msgid "Menu Builder"
7850
- msgstr ""
7851
-
7852
- #: extensions/ht-menu/admin/setting.php:62
7853
- msgid "Menu Items Color"
7854
- msgstr ""
7855
-
7856
- #: extensions/ht-menu/admin/setting.php:69
7857
- msgid "Menu Items Hover Color"
7858
- msgstr ""
7859
-
7860
- #: includes/widgets/htmega_wc_element_pages.php:1693
7861
- msgid "Menu Style"
7862
- msgstr ""
7863
-
7864
- #: extensions/ht-menu/menu/templates.php:78
7865
- msgid "Menu Template"
7866
- msgstr ""
7867
-
7868
- #: extensions/ht-menu/menu/templates.php:63
7869
- msgid "Menu Width"
7870
- msgstr ""
7871
-
7872
- #: includes/widgets/htmega_post_grid_tab.php:223
7873
- #: includes/widgets/htmega_post_grid_tab.php:723
7874
- #: includes/widgets/htmega_post_slider.php:1157
7875
- #: includes/widgets/htmega_singlepost.php:341
7876
- msgid "Meta"
7877
- msgstr ""
7878
-
7879
- #: includes/widgets/htmega_twitter_feed.php:957
7880
- msgid "Meta Button"
7881
- msgstr ""
7882
-
7883
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:39
7884
- msgid "Meta Data"
7885
- msgstr ""
7886
-
7887
- #: includes/widgets/htmega_post_grid_tab.php:746
7888
- #: includes/widgets/htmega_singlepost.php:459
7889
- msgid "Meta Hover Color"
7890
- msgstr ""
7891
-
7892
- #: includes/widgets/htmega_buddy_press.php:384
7893
- #: extensions/ht-builder/widgets/bl_post_archive.php:432
7894
- msgid "Meta Info"
7895
- msgstr ""
7896
-
7897
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:61
7898
- msgid "Meta Name"
7899
- msgstr ""
7900
-
7901
- #: includes/widgets/htmega_download_monitor.php:230
7902
- msgid "Meta Style"
7903
- msgstr ""
7904
-
7905
- #: includes/widgets/htmega_pricing_list_view.php:1167
7906
- msgid "Middle"
7907
- msgstr ""
7908
-
7909
- #: includes/widgets/htmega_double_button.php:58
7910
- #: includes/widgets/htmega_double_button.php:66
7911
- #: includes/widgets/htmega_double_button.php:793
7912
- msgid "Middle Text"
7913
- msgstr ""
7914
-
7915
- #: includes/widgets/htmega_search.php:336
7916
- msgid "Min Width"
7917
- msgstr ""
7918
-
7919
- #: includes/widgets/htmega_scroll_image.php:92
7920
- msgid "Minimum Height"
7921
- msgstr ""
7922
-
7923
- #: includes/widgets/htmega_instagram.php:111
7924
- msgid "Minute"
7925
- msgstr ""
7926
-
7927
- #: includes/widgets/htmega_countdown.php:152
7928
- #: includes/widgets/htmega_countdown.php:230
7929
- #: includes/widgets/htmega_countdown.php:232
7930
- msgid "Minutes"
7931
- msgstr ""
7932
-
7933
- #: extensions/ht-builder/widgets/bl_nav_menu.php:474
7934
- msgid "Mobile Menu"
7935
- msgstr ""
7936
-
7937
- #: includes/widgets/htmega_carousel.php:363
7938
- #: includes/widgets/htmega_instagram.php:558
7939
- #: includes/widgets/htmega_panel_slider.php:463
7940
- #: includes/widgets/htmega_post_slider.php:543
7941
- #: includes/widgets/htmega_slider_thumb_gallery.php:341
7942
- #: includes/widgets/htmega_twitter_feed.php:485
7943
- msgid "Mobile Phone"
7944
- msgstr ""
7945
-
7946
- #: includes/widgets/htmega_carousel.php:405
7947
- #: includes/widgets/htmega_instagram.php:600
7948
- #: includes/widgets/htmega_panel_slider.php:505
7949
- #: includes/widgets/htmega_post_slider.php:585
7950
- #: includes/widgets/htmega_slider_thumb_gallery.php:377
7951
- #: includes/widgets/htmega_twitter_feed.php:527
7952
- msgid "Mobile Resolution"
7953
- msgstr ""
7954
-
7955
- #: admin/include/templates/library/templates.php:38
7956
- #: admin/include/templates/library/templates.php:39
7957
- msgid "Mobile view"
7958
- msgstr ""
7959
-
7960
- #: admin/include/admin-setting.php:327 includes/widgets/htmega_modal.php:13
7961
- #: includes/widgets/htmega_modal.php:35
7962
- msgid "Modal"
7963
- msgstr ""
7964
-
7965
- #: includes/widgets/htmega_modal.php:480
7966
- msgid "Modal Box Style"
7967
- msgstr ""
7968
-
7969
- #: includes/widgets/htmega_modal.php:916
7970
- msgid "Modal Content"
7971
- msgstr ""
7972
-
7973
- #: includes/widgets/htmega_modal.php:112
7974
- msgid "Modal Design"
7975
- msgstr ""
7976
-
7977
- #: includes/widgets/htmega_modal.php:93
7978
- msgid "Modal Footer Content"
7979
- msgstr ""
7980
-
7981
- #: includes/widgets/htmega_modal.php:44
7982
- msgid "Modal Header Content"
7983
- msgstr ""
7984
-
7985
- #: includes/widgets/htmega_modal.php:488
7986
- msgid "Modal Top Space"
7987
- msgstr ""
7988
-
7989
- #: includes/widgets/htmega_modal.php:1032
7990
- msgid "Modal Width"
7991
- msgstr ""
7992
-
7993
- #: includes/widgets/htmega_socialshere.php:70
7994
- msgid "Moimir"
7995
- msgstr ""
7996
-
7997
- #: includes/widgets/htmega_business_hours.php:174
7998
- msgid "Monday"
7999
- msgstr ""
8000
-
8001
- #: includes/widgets/htmega_booked_calender.php:105
8002
- #: includes/widgets/htmega_instagram.php:115
8003
- msgid "Month"
8004
- msgstr ""
8005
-
8006
- #: includes/recommended-plugins/class.recommended-plugins.php:292
8007
- msgid "More Details"
8008
- msgstr ""
8009
-
8010
- #: includes/widgets/htmega_scroll_navigation.php:209
8011
- msgid "Mouse Wheel"
8012
- msgstr ""
8013
-
8014
- #: includes/recommended-plugins/recommended-plugins.php:34
8015
- msgid "Move Addons for Elementor"
8016
- msgstr ""
8017
-
8018
- #: includes/widgets/htmega_accordion.php:380
8019
- msgid "Multiple Item Open"
8020
- msgstr ""
8021
-
8022
- #: includes/widgets/htmega_wc_element_pages.php:62
8023
- msgid "My Account"
8024
- msgstr ""
8025
-
8026
- #: includes/widgets/htmega_data_table.php:206
8027
- #: includes/widgets/htmega_easy_digital_download.php:198
8028
- #: includes/widgets/htmega_newsticker.php:259
8029
- #: includes/widgets/htmega_postgrid.php:150
8030
- #: includes/widgets/htmega_post_grid_tab.php:157
8031
- #: includes/widgets/htmega_post_slider.php:161
8032
- #: includes/widgets/htmega_pricing_list_view.php:80
8033
- #: includes/widgets/htmega_pricing_list_view.php:451
8034
- #: includes/widgets/htmega_teammember.php:153
8035
- #: includes/widgets/htmega_teammember.php:685
8036
- #: includes/widgets/htmega_testimonial_grid.php:166
8037
- #: includes/widgets/htmega_testimonial_grid.php:419
8038
- #: includes/widgets/htmega_wc_categories.php:129
8039
- #: extensions/ht-builder/widgets/bl_post_archive.php:201
8040
- #: extensions/ht-builder/widgets/bl_post_author_info.php:216
8041
- msgid "Name"
8042
- msgstr ""
8043
-
8044
- #: extensions/ht-builder/widgets/bl_post_author_info.php:57
8045
- msgid "Name HTML Tag"
8046
- msgstr ""
8047
-
8048
- #: admin/include/admin-setting.php:823 admin/include/admin-setting.php:824
8049
- msgid "Nav Menu"
8050
- msgstr ""
8051
-
8052
- #: includes/widgets/htmega_newsticker.php:723
8053
- #: extensions/ht-builder/widgets/bl_nav_menu.php:61
8054
- msgid "Navigation"
8055
- msgstr ""
8056
-
8057
- #: includes/widgets/htmega_booked_calender.php:709
8058
- #: includes/widgets/htmega_newsticker.php:302
8059
- msgid "Navigation Button"
8060
- msgstr ""
8061
-
8062
- #: includes/widgets/htmega_buddy_press.php:66
8063
- msgid "Newest"
8064
- msgstr ""
8065
-
8066
- #: includes/widgets/htmega_newsticker.php:352
8067
- msgid "News Box Style"
8068
- msgstr ""
8069
-
8070
- #: includes/widgets/htmega_newsticker.php:232
8071
- msgid "News Limit"
8072
- msgstr ""
8073
-
8074
- #: admin/include/admin-setting.php:335
8075
- #: includes/widgets/htmega_newsticker.php:14
8076
- #: includes/widgets/htmega_newsticker.php:49
8077
- msgid "News Ticker"
8078
- msgstr ""
8079
-
8080
- #: includes/widgets/htmega_newsticker.php:334
8081
- msgid "Next Icon"
8082
- msgstr ""
8083
-
8084
- #: includes/widgets/htmega_carousel.php:181
8085
- #: includes/widgets/htmega_instagram.php:376
8086
- #: includes/widgets/htmega_panel_slider.php:281
8087
- #: includes/widgets/htmega_post_slider.php:345
8088
- #: includes/widgets/htmega_slider_thumb_gallery.php:183
8089
- #: includes/widgets/htmega_twitter_feed.php:303
8090
- msgid "Next icon"
8091
- msgstr ""
8092
-
8093
- #: admin/include/admin-setting.php:1039
8094
- #: includes/widgets/htmega_ninja_form.php:13
8095
- #: includes/widgets/htmega_ninja_form.php:59
8096
- msgid "Ninja Form"
8097
- msgstr ""
8098
-
8099
- #: includes/widgets/htmega_carousel.php:211
8100
- #: includes/widgets/htmega_data_table.php:145
8101
- #: includes/widgets/htmega_data_table.php:202
8102
- #: includes/widgets/htmega_gravity_forms.php:104
8103
- #: includes/widgets/htmega_instagram.php:406
8104
- #: includes/widgets/htmega_panel_slider.php:159
8105
- #: includes/widgets/htmega_panel_slider.php:170
8106
- #: includes/widgets/htmega_panel_slider.php:311
8107
- #: includes/widgets/htmega_post_slider.php:391
8108
- #: includes/widgets/htmega_pricing_list_view.php:205
8109
- #: includes/widgets/htmega_pricing_list_view.php:447
8110
- #: includes/widgets/htmega_slider_thumb_gallery.php:210
8111
- #: includes/widgets/htmega_slider_thumb_gallery.php:475
8112
- #: includes/widgets/htmega_twitter_feed.php:333
8113
- #: includes/widgets/htmega_user_login_form.php:120
8114
- #: includes/widgets/htmega_user_login_form.php:263
8115
- #: includes/widgets/htmega_videoplayer.php:125
8116
- #: includes/widgets/htmega_videoplayer.php:165
8117
- #: includes/widgets/htmega_videoplayer.php:177
8118
- #: includes/widgets/htmega_videoplayer.php:189
8119
- #: includes/widgets/htmega_videoplayer.php:201
8120
- #: includes/widgets/htmega_videoplayer.php:213
8121
- msgid "No"
8122
- msgstr ""
8123
-
8124
- #: includes/widgets/htmega_googlemap.php:249
8125
- #: includes/widgets/htmega_instragram_feed.php:85
8126
- #: includes/widgets/htmega_instragram_feed.php:96
8127
- msgid "no"
8128
- msgstr ""
8129
-
8130
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:207
8131
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:210
8132
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:573
8133
- msgid "No Comments"
8134
- msgstr ""
8135
-
8136
- #: includes/helper-function.php:278
8137
- msgid "No contact form found"
8138
- msgstr ""
8139
-
8140
- #: includes/widgets/htmega_singlepost.php:587
8141
- msgid "No selected post"
8142
- msgstr ""
8143
-
8144
- #: includes/widgets/htmega_template_selector.php:67
8145
- msgid "No selected template"
8146
- msgstr ""
8147
-
8148
- #: includes/helper-function.php:138
8149
- msgid "No sidebars were found"
8150
- msgstr ""
8151
-
8152
- #: includes/widgets/htmega_revolution_slider.php:43
8153
- msgid "No Slider Found."
8154
- msgstr ""
8155
-
8156
- #: includes/helper-function.php:295 includes/widgets/htmega_blockquote.php:406
8157
- #: includes/widgets/htmega_button.php:422
8158
- #: includes/widgets/htmega_button.php:485
8159
- #: includes/widgets/htmega_counter.php:95
8160
- #: includes/widgets/htmega_imagemarker.php:230
8161
- #: includes/widgets/htmega_imagemarker.php:289
8162
- #: includes/widgets/htmega_imagemarker.php:500
8163
- #: includes/widgets/htmega_imagemarker.php:786
8164
- #: includes/widgets/htmega_job_manager.php:129
8165
- #: includes/widgets/htmega_newsticker.php:256
8166
- #: includes/widgets/htmega_notify.php:147
8167
- #: includes/widgets/htmega_notify.php:182
8168
- #: includes/widgets/htmega_postgrid.php:147
8169
- #: includes/widgets/htmega_post_grid_tab.php:154
8170
- #: includes/widgets/htmega_post_slider.php:158
8171
- #: includes/widgets/htmega_pricing_list_view.php:252
8172
- #: includes/widgets/htmega_scroll_image.php:254
8173
- #: includes/widgets/htmega_socialshere.php:466
8174
- #: includes/widgets/htmega_teammember.php:104
8175
- #: includes/widgets/htmega_testimonial_grid.php:58
8176
- #: extensions/ht-builder/widgets/bl_post_archive.php:198
8177
- #: extensions/ht-builder/widgets/bl_post_author_info.php:97
8178
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:290
8179
- msgid "None"
8180
- msgstr ""
8181
-
8182
- #: includes/widgets/htmega_accordion.php:556
8183
- #: includes/widgets/htmega_accordion.php:1081
8184
- #: includes/widgets/htmega_add_banner.php:156
8185
- #: includes/widgets/htmega_add_banner.php:245
8186
- #: includes/widgets/htmega_add_banner.php:620
8187
- #: includes/widgets/htmega_booked_calender.php:574
8188
- #: includes/widgets/htmega_booked_calender.php:720
8189
- #: includes/widgets/htmega_brand.php:170
8190
- #: includes/widgets/htmega_buddy_press.php:316
8191
- #: includes/widgets/htmega_button.php:201
8192
- #: includes/widgets/htmega_button.php:526
8193
- #: includes/widgets/htmega_caldera_form.php:195
8194
- #: includes/widgets/htmega_caldera_form.php:447
8195
- #: includes/widgets/htmega_call_to_action.php:690
8196
- #: includes/widgets/htmega_call_to_action.php:896
8197
- #: includes/widgets/htmega_carousel.php:550
8198
- #: includes/widgets/htmega_carousel.php:826
8199
- #: includes/widgets/htmega_carousel.php:1094
8200
- #: includes/widgets/htmega_carousel.php:1302
8201
- #: includes/widgets/htmega_contact_form_seven.php:188
8202
- #: includes/widgets/htmega_contact_form_seven.php:455
8203
- #: includes/widgets/htmega_contact_form_seven.php:766
8204
- #: includes/widgets/htmega_countdown.php:1028
8205
- #: includes/widgets/htmega_custom_event.php:136
8206
- #: includes/widgets/htmega_custom_event.php:391
8207
- #: includes/widgets/htmega_double_button.php:384
8208
- #: includes/widgets/htmega_double_button.php:459
8209
- #: includes/widgets/htmega_double_button.php:632
8210
- #: includes/widgets/htmega_download_monitor.php:146
8211
- #: includes/widgets/htmega_easy_digital_download.php:352
8212
- #: includes/widgets/htmega_easy_digital_download.php:533
8213
- #: includes/widgets/htmega_errorcontent.php:552
8214
- #: includes/widgets/htmega_errorcontent.php:703
8215
- #: includes/widgets/htmega_gravity_forms.php:398
8216
- #: includes/widgets/htmega_gravity_forms.php:640
8217
- #: includes/widgets/htmega_image_grid.php:453
8218
- #: includes/widgets/htmega_image_masonry.php:449
8219
- #: includes/widgets/htmega_inlinemenu.php:146
8220
- #: includes/widgets/htmega_instagram.php:927
8221
- #: includes/widgets/htmega_instagram.php:1145
8222
- #: includes/widgets/htmega_mailchimp_wp.php:301
8223
- #: includes/widgets/htmega_modal.php:211
8224
- #: includes/widgets/htmega_newsticker.php:736
8225
- #: includes/widgets/htmega_ninja_form.php:484
8226
- #: includes/widgets/htmega_ninja_form.php:705
8227
- #: includes/widgets/htmega_ninja_form.php:923
8228
- #: includes/widgets/htmega_notify.php:322
8229
- #: includes/widgets/htmega_offcanvas.php:414
8230
- #: includes/widgets/htmega_panel_slider.php:808
8231
- #: includes/widgets/htmega_panel_slider.php:1100
8232
- #: includes/widgets/htmega_popover.php:331
8233
- #: includes/widgets/htmega_post_grid_tab.php:623
8234
- #: includes/widgets/htmega_post_grid_tab.php:843
8235
- #: includes/widgets/htmega_post_grid_tab.php:993
8236
- #: includes/widgets/htmega_post_slider.php:1058
8237
- #: includes/widgets/htmega_post_slider.php:1271
8238
- #: includes/widgets/htmega_post_slider.php:1535
8239
- #: includes/widgets/htmega_post_slider.php:1755
8240
- #: includes/widgets/htmega_post_slider.php:1920
8241
- #: includes/widgets/htmega_progress_bar.php:76
8242
- #: includes/widgets/htmega_quforms.php:321
8243
- #: includes/widgets/htmega_quforms.php:541
8244
- #: includes/widgets/htmega_quforms.php:759
8245
- #: includes/widgets/htmega_scroll_navigation.php:318
8246
- #: includes/widgets/htmega_search.php:223
8247
- #: includes/widgets/htmega_search.php:435
8248
- #: includes/widgets/htmega_search.php:673
8249
- #: includes/widgets/htmega_service.php:176
8250
- #: includes/widgets/htmega_service.php:617
8251
- #: includes/widgets/htmega_service.php:1022
8252
- #: includes/widgets/htmega_singlepost.php:355
8253
- #: includes/widgets/htmega_slider_thumb_gallery.php:816
8254
- #: includes/widgets/htmega_slider_thumb_gallery.php:1074
8255
- #: includes/widgets/htmega_slider_thumb_gallery.php:1223
8256
- #: includes/widgets/htmega_socialshere.php:681
8257
- #: includes/widgets/htmega_special_day_banner.php:643
8258
- #: includes/widgets/htmega_switcher.php:351
8259
- #: includes/widgets/htmega_tabs.php:502 includes/widgets/htmega_tabs.php:680
8260
- #: includes/widgets/htmega_testimonial_grid.php:264
8261
- #: includes/widgets/htmega_toggle.php:225
8262
- #: includes/widgets/htmega_tooltip.php:307
8263
- #: includes/widgets/htmega_twitter_feed.php:701
8264
- #: includes/widgets/htmega_twitter_feed.php:970
8265
- #: includes/widgets/htmega_twitter_feed.php:1068
8266
- #: includes/widgets/htmega_twitter_feed.php:1306
8267
- #: includes/widgets/htmega_user_login_form.php:1097
8268
- #: includes/widgets/htmega_user_login_form.php:1295
8269
- #: includes/widgets/htmega_verticle_time_line.php:191
8270
- #: includes/widgets/htmega_videoplayer.php:336
8271
- #: includes/widgets/htmega_wc_categories.php:175
8272
- #: includes/widgets/htmega_wc_categories.php:292
8273
- #: includes/widgets/htmega_wc_categories.php:468
8274
- #: includes/widgets/htmega_wc_element_pages.php:205
8275
- #: includes/widgets/htmega_wc_element_pages.php:385
8276
- #: includes/widgets/htmega_wc_element_pages.php:548
8277
- #: includes/widgets/htmega_wc_element_pages.php:705
8278
- #: includes/widgets/htmega_wc_element_pages.php:934
8279
- #: includes/widgets/htmega_wc_element_pages.php:1349
8280
- #: includes/widgets/htmega_wc_element_pages.php:1523
8281
- #: includes/widgets/htmega_wc_element_pages.php:1706
8282
- #: includes/widgets/htmega_working_process.php:351
8283
- #: includes/widgets/htmega_working_process.php:935
8284
- #: includes/widgets/htmega_wpforms.php:485
8285
- #: includes/widgets/htmega_wpforms.php:709
8286
- #: includes/widgets/htmega_wpforms.php:926
8287
- #: extensions/ht-builder/widgets/bl_nav_menu.php:143
8288
- #: extensions/ht-builder/widgets/bl_nav_menu.php:375
8289
- #: extensions/ht-builder/widgets/bl_post_archive.php:340
8290
- #: extensions/ht-builder/widgets/bl_post_archive.php:446
8291
- #: extensions/ht-builder/widgets/bl_post_archive.php:553
8292
- #: extensions/ht-builder/widgets/bl_post_archive.php:714
8293
- #: extensions/ht-builder/widgets/bl_post_archive.php:849
8294
- #: extensions/ht-builder/widgets/bl_post_comments.php:91
8295
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:388
8296
- #: extensions/ht-builder/widgets/bl_post_search_form.php:177
8297
- #: extensions/ht-menu/widgets/inline-mega-menu.php:424
8298
- #: extensions/ht-menu/widgets/verticle-mega-menu.php:382
8299
- msgid "Normal"
8300
- msgstr ""
8301
-
8302
- #: includes/widgets/htmega_toggle.php:53
8303
- msgid "Normal Icon"
8304
- msgstr ""
8305
-
8306
- #: includes/widgets/htmega_socialshere.php:121
8307
- #: includes/widgets/htmega_socialshere.php:219
8308
- msgid "Normal Style"
8309
- msgstr ""
8310
-
8311
- #: includes/widgets/htmega_toggle.php:43
8312
- msgid "Normal Title"
8313
- msgstr ""
8314
-
8315
- #: includes/widgets/htmega_modal.php:670
8316
- msgid "Note: Below, This CSS style to use on your header close button "
8317
- msgstr ""
8318
-
8319
- #: includes/class.assests.php:380
8320
- msgid "Nothing Found"
8321
- msgstr ""
8322
-
8323
- #: includes/recommended-plugins/recommended-plugins.php:39
8324
- msgid "Notification Bar for WordPress"
8325
- msgstr ""
8326
-
8327
- #: includes/widgets/htmega_notify.php:71
8328
- msgid "Notification Content"
8329
- msgstr ""
8330
-
8331
- #: extensions/wc-sales-notification/admin/setting.php:64
8332
- msgid "Notification Content Type"
8333
- msgstr ""
8334
-
8335
- #: extensions/wc-sales-notification/admin/setting.php:165
8336
- msgid "Notification Enter Animation. <span>( Pro )</span>"
8337
- msgstr ""
8338
-
8339
- #: admin/include/admin-setting.php:1254 admin/include/admin-setting.php:1279
8340
- msgid "Notification image position"
8341
- msgstr ""
8342
-
8343
- #: extensions/wc-sales-notification/admin/setting.php:90
8344
- msgid "Notification Layout. <span>( Pro )</span>"
8345
- msgstr ""
8346
-
8347
- #: extensions/wc-sales-notification/admin/setting.php:115
8348
- msgid "Notification Loading duration."
8349
- msgstr ""
8350
-
8351
- #: includes/widgets/htmega_notify.php:78
8352
- msgid "Notification Message"
8353
- msgstr ""
8354
-
8355
- #: includes/widgets/htmega_notify.php:90
8356
- msgid "Notification Option"
8357
- msgstr ""
8358
-
8359
- #: extensions/wc-sales-notification/admin/setting.php:177
8360
- msgid "Notification Out Animation. <span>( Pro )</span>"
8361
- msgstr ""
8362
-
8363
- #: includes/widgets/htmega_notify.php:109
8364
- msgid "Notification Position"
8365
- msgstr ""
8366
-
8367
- #: admin/include/admin-setting.php:1253 admin/include/admin-setting.php:1278
8368
- msgid "Notification showing position"
8369
- msgstr ""
8370
-
8371
- #: includes/widgets/htmega_notify.php:128
8372
- msgid "Notification Type"
8373
- msgstr ""
8374
-
8375
- #: admin/include/admin-setting.php:343 includes/widgets/htmega_notify.php:13
8376
- msgid "Notify"
8377
- msgstr ""
8378
-
8379
- #: includes/widgets/htmega_notify.php:463
8380
- msgid "Notify Content"
8381
- msgstr ""
8382
-
8383
- #: includes/widgets/htmega_booked_calender.php:119
8384
- msgid "November"
8385
- msgstr ""
8386
-
8387
- #: includes/widgets/htmega_counter.php:413
8388
- #: includes/widgets/htmega_job_manager.php:130
8389
- #: includes/widgets/htmega_working_process.php:791
8390
- msgid "Number"
8391
- msgstr ""
8392
-
8393
- #: includes/widgets/htmega_wc_categories.php:58
8394
- msgid "Number of Category"
8395
- msgstr ""
8396
-
8397
- #: includes/widgets/htmega_instragram_feed.php:58
8398
- msgid "Number of Column"
8399
- msgstr ""
8400
-
8401
- #: includes/widgets/htmega_easy_digital_download.php:67
8402
- msgid "Number of Item"
8403
- msgstr ""
8404
-
8405
- #: includes/widgets/htmega_job_manager.php:66
8406
- msgid "Number of listings to show"
8407
- msgstr ""
8408
-
8409
- #: includes/widgets/htmega_counter.php:173
8410
- msgid "Number Prefix"
8411
- msgstr ""
8412
-
8413
- #: includes/widgets/htmega_counter.php:182
8414
- msgid "Number Suffix"
8415
- msgstr ""
8416
-
8417
- #: includes/widgets/htmega_verticle_time_line.php:105
8418
- msgid "Oct<br/>2018"
8419
- msgstr ""
8420
-
8421
- #: includes/widgets/htmega_booked_calender.php:118
8422
- msgid "October"
8423
- msgstr ""
8424
-
8425
- #: includes/widgets/htmega_wc_element_pages.php:1235
8426
- msgid "Odd"
8427
- msgstr ""
8428
-
8429
- #: includes/widgets/htmega_tablepress.php:307
8430
- msgid "Odd Cell"
8431
- msgstr ""
8432
-
8433
- #: includes/widgets/htmega_socialshere.php:69
8434
- msgid "Odnoklassniki"
8435
- msgstr ""
8436
-
8437
- #: includes/widgets/htmega_carousel.php:115
8438
- #: includes/widgets/htmega_instagram.php:202
8439
- #: includes/widgets/htmega_panel_slider.php:181
8440
- #: includes/widgets/htmega_post_slider.php:279
8441
- #: includes/widgets/htmega_special_day_banner.php:116
8442
- #: includes/widgets/htmega_twitter_feed.php:220
8443
- msgid "Off"
8444
- msgstr ""
8445
-
8446
- #: admin/include/admin-setting.php:351 includes/widgets/htmega_offcanvas.php:13
8447
- #: includes/widgets/htmega_offcanvas.php:49
8448
- #: includes/widgets/htmega_offcanvas.php:184
8449
- msgid "Offcanvas"
8450
- msgstr ""
8451
-
8452
- #: includes/widgets/htmega_offcanvas.php:144
8453
- msgid "Offcanvas Height"
8454
- msgstr ""
8455
-
8456
- #: includes/widgets/htmega_offcanvas.php:98
8457
- msgid "Offcanvas Position"
8458
- msgstr ""
8459
-
8460
- #: includes/widgets/htmega_offcanvas.php:114
8461
- msgid "Offcanvas Width"
8462
- msgstr ""
8463
-
8464
- #: includes/widgets/htmega_special_day_banner.php:105
8465
- #: includes/widgets/htmega_special_day_banner.php:512
8466
- msgid "Offer Amount"
8467
- msgstr ""
8468
-
8469
- #: includes/widgets/htmega_special_day_banner.php:114
8470
- #: includes/widgets/htmega_special_day_banner.php:571
8471
- msgid "Offer Tag Line"
8472
- msgstr ""
8473
-
8474
- #: includes/widgets/htmega_notify.php:213
8475
- #: includes/widgets/htmega_scroll_image.php:252
8476
- msgid "Offset"
8477
- msgstr ""
8478
-
8479
- #: includes/widgets/htmega_carousel.php:114
8480
- #: includes/widgets/htmega_instagram.php:201
8481
- #: includes/widgets/htmega_panel_slider.php:180
8482
- #: includes/widgets/htmega_post_slider.php:278
8483
- #: includes/widgets/htmega_twitter_feed.php:219
8484
- msgid "On"
8485
- msgstr ""
8486
-
8487
- #: includes/widgets/htmega_teammember.php:669
8488
- msgid "ON/OFF Image Hover rotation"
8489
- msgstr ""
8490
-
8491
- #: includes/widgets/htmega_image_grid.php:62
8492
- #: includes/widgets/htmega_image_masonry.php:79
8493
- #: includes/widgets/htmega_testimonial_grid.php:73
8494
- #: includes/widgets/htmega_testimonial_grid.php:88
8495
- #: includes/widgets/htmega_testimonial_grid.php:105
8496
- msgid "One"
8497
- msgstr ""
8498
-
8499
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:221
8500
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:224
8501
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:574
8502
- msgid "One Comment"
8503
- msgstr ""
8504
-
8505
- #: admin/include/admin-setting.php:1226
8506
- msgid "Online Documentation"
8507
- msgstr ""
8508
-
8509
- #: includes/widgets/htmega_switcher.php:560
8510
- #: includes/widgets/htmega_switcher.php:569
8511
- msgid "Only for custom content."
8512
- msgstr ""
8513
-
8514
- #: includes/widgets/htmega_easy_digital_download.php:168
8515
- #: includes/widgets/htmega_wc_categories.php:108
8516
- msgid "Only Top Level"
8517
- msgstr ""
8518
-
8519
- #: includes/widgets/htmega_section_title.php:1026
8520
- msgid "Opacity"
8521
- msgstr ""
8522
-
8523
- #: includes/widgets/htmega_imagemarker.php:75
8524
- msgid "Opacity (%)"
8525
- msgstr ""
8526
-
8527
- #: includes/widgets/htmega_imagemarker.php:61
8528
- msgid "Opacity Color"
8529
- msgstr ""
8530
-
8531
- #: includes/widgets/htmega_lightbox.php:171
8532
- msgid "Open"
8533
- msgstr ""
8534
-
8535
- #: includes/widgets/htmega_accordion.php:327
8536
- msgid "Open Item Icon"
8537
- msgstr ""
8538
-
8539
- #: includes/widgets/htmega_toggle.php:71
8540
- msgid "Opened Icon"
8541
- msgstr ""
8542
-
8543
- #: includes/widgets/htmega_toggle.php:61
8544
- msgid "Opened Title"
8545
- msgstr ""
8546
-
8547
- #: includes/widgets/htmega_easy_digital_download.php:129
8548
- #: includes/widgets/htmega_ninja_form.php:77
8549
- #: includes/widgets/htmega_tablepress.php:68
8550
- #: includes/widgets/htmega_wc_categories.php:70
8551
- msgid "Options"
8552
- msgstr ""
8553
-
8554
- #: includes/widgets/htmega_double_button.php:68
8555
- msgid "Or"
8556
- msgstr ""
8557
-
8558
- #: includes/widgets/htmega_easy_digital_download.php:209
8559
- #: includes/widgets/htmega_job_manager.php:79
8560
- #: includes/widgets/htmega_postgrid.php:127
8561
- #: includes/widgets/htmega_post_grid_tab.php:134
8562
- #: includes/widgets/htmega_post_slider.php:138
8563
- #: includes/widgets/htmega_wc_categories.php:140
8564
- msgid "Order"
8565
- msgstr ""
8566
-
8567
- #: includes/widgets/htmega_newsticker.php:273
8568
- #: extensions/ht-builder/widgets/bl_post_archive.php:215
8569
- msgid "order"
8570
- msgstr ""
8571
-
8572
- #: includes/widgets/htmega_job_manager.php:95
8573
- msgid "Order By"
8574
- msgstr ""
8575
-
8576
- #: includes/widgets/htmega_easy_digital_download.php:194
8577
- #: includes/widgets/htmega_wc_categories.php:125
8578
- msgid "Order by"
8579
- msgstr ""
8580
-
8581
- #: extensions/wc-sales-notification/admin/setting.php:102
8582
- msgid "Order Limit for notification."
8583
- msgstr ""
8584
-
8585
- #: includes/widgets/htmega_wc_element_pages.php:1101
8586
- msgid "Order Review"
8587
- msgstr ""
8588
-
8589
- #: includes/widgets/htmega_wc_element_pages.php:61
8590
- msgid "Order Tracking Form"
8591
- msgstr ""
8592
-
8593
- #: extensions/wc-sales-notification/admin/setting.php:152
8594
- msgid "Order Upto"
8595
- msgstr ""
8596
-
8597
- #: includes/widgets/htmega_newsticker.php:252
8598
- #: includes/widgets/htmega_postgrid.php:143
8599
- #: includes/widgets/htmega_post_grid_tab.php:150
8600
- #: includes/widgets/htmega_post_slider.php:154
8601
- #: extensions/ht-builder/widgets/bl_post_archive.php:194
8602
- msgid "Orderby"
8603
- msgstr ""
8604
-
8605
- #: includes/widgets/htmega_data_table.php:107
8606
- msgid "Ordering"
8607
- msgstr ""
8608
-
8609
- #: admin/include/admin-setting.php:86
8610
- msgid "Other options"
8611
- msgstr ""
8612
-
8613
- #: includes/recommended-plugins/recommended-plugins.php:91
8614
- msgid "Other Plugins"
8615
- msgstr ""
8616
-
8617
- #: includes/widgets/htmega_testimonial_grid.php:118
8618
- msgid "Other' Devices Width(%)"
8619
- msgstr ""
8620
-
8621
- #: includes/widgets/htmega_progress_bar.php:655
8622
- #: includes/widgets/htmega_progress_bar.php:774
8623
- msgid "Outer"
8624
- msgstr ""
8625
-
8626
- #: admin/include/admin-setting.php:1258 admin/include/admin-setting.php:1283
8627
- msgid "Outgoing animation option"
8628
- msgstr ""
8629
-
8630
- #: includes/widgets/htmega_lightbox.php:226
8631
- msgid "Overlay"
8632
- msgstr ""
8633
-
8634
- #: includes/widgets/htmega_image_grid.php:193
8635
- #: includes/widgets/htmega_image_masonry.php:182
8636
- #: includes/widgets/htmega_instagram.php:734
8637
- msgid "Overlay Color"
8638
- msgstr ""
8639
-
8640
- #: includes/widgets/htmega_instagram.php:745
8641
- msgid "Overlay Padding"
8642
- msgstr ""
8643
-
8644
- #: includes/widgets/htmega_weather.php:43
8645
- msgid "Override Title"
8646
- msgstr ""
8647
-
8648
- #: includes/helper-function.php:207
8649
- msgid "p"
8650
- msgstr ""
8651
-
8652
- #: includes/widgets/htmega_accordion.php:598
8653
- #: includes/widgets/htmega_accordion.php:814
8654
- #: includes/widgets/htmega_accordion.php:949
8655
- #: includes/widgets/htmega_accordion.php:1360
8656
- #: includes/widgets/htmega_add_banner.php:175
8657
- #: includes/widgets/htmega_add_banner.php:263
8658
- #: includes/widgets/htmega_add_banner.php:317
8659
- #: includes/widgets/htmega_add_banner.php:415
8660
- #: includes/widgets/htmega_add_banner.php:474
8661
- #: includes/widgets/htmega_add_banner.php:533
8662
- #: includes/widgets/htmega_add_banner.php:592
8663
- #: includes/widgets/htmega_add_banner.php:678
8664
- #: includes/widgets/htmega_animated_heading.php:222
8665
- #: includes/widgets/htmega_animated_heading.php:353
8666
- #: includes/widgets/htmega_animated_heading.php:441
8667
- #: includes/widgets/htmega_blockquote.php:233
8668
- #: includes/widgets/htmega_blockquote.php:311
8669
- #: includes/widgets/htmega_blockquote.php:367
8670
- #: includes/widgets/htmega_blockquote.php:529
8671
- #: includes/widgets/htmega_blockquote.php:710
8672
- #: includes/widgets/htmega_booked_calender.php:633
8673
- #: includes/widgets/htmega_booked_calender.php:791
8674
- #: includes/widgets/htmega_brand.php:141 includes/widgets/htmega_brand.php:328
8675
- #: includes/widgets/htmega_buddy_press.php:223
8676
- #: includes/widgets/htmega_business_hours.php:255
8677
- #: includes/widgets/htmega_business_hours.php:331
8678
- #: includes/widgets/htmega_business_hours.php:459
8679
- #: includes/widgets/htmega_button.php:304
8680
- #: includes/widgets/htmega_button.php:576
8681
- #: includes/widgets/htmega_caldera_form.php:276
8682
- #: includes/widgets/htmega_caldera_form.php:508
8683
- #: includes/widgets/htmega_call_to_action.php:379
8684
- #: includes/widgets/htmega_call_to_action.php:456
8685
- #: includes/widgets/htmega_call_to_action.php:544
8686
- #: includes/widgets/htmega_call_to_action.php:603
8687
- #: includes/widgets/htmega_call_to_action.php:662
8688
- #: includes/widgets/htmega_call_to_action.php:730
8689
- #: includes/widgets/htmega_call_to_action.php:936
8690
- #: includes/widgets/htmega_carousel.php:468
8691
- #: includes/widgets/htmega_carousel.php:681
8692
- #: includes/widgets/htmega_carousel.php:1358
8693
- #: includes/widgets/htmega_contact_form_seven.php:148
8694
- #: includes/widgets/htmega_contact_form_seven.php:318
8695
- #: includes/widgets/htmega_contact_form_seven.php:546
8696
- #: includes/widgets/htmega_contact_form_seven.php:702
8697
- #: includes/widgets/htmega_contact_form_seven.php:846
8698
- #: includes/widgets/htmega_countdown.php:575
8699
- #: includes/widgets/htmega_countdown.php:822
8700
- #: includes/widgets/htmega_countdown.php:984
8701
- #: includes/widgets/htmega_countdown.php:1108
8702
- #: includes/widgets/htmega_counter.php:227
8703
- #: includes/widgets/htmega_counter.php:487
8704
- #: includes/widgets/htmega_counter.php:612
8705
- #: includes/widgets/htmega_counter.php:878
8706
- #: includes/widgets/htmega_counter.php:968
8707
- #: includes/widgets/htmega_counter.php:1057
8708
- #: includes/widgets/htmega_custom_event.php:163
8709
- #: includes/widgets/htmega_custom_event.php:248
8710
- #: includes/widgets/htmega_data_table.php:509
8711
- #: includes/widgets/htmega_double_button.php:527
8712
- #: includes/widgets/htmega_double_button.php:700
8713
- #: includes/widgets/htmega_double_button.php:883
8714
- #: includes/widgets/htmega_download_monitor.php:191
8715
- #: includes/widgets/htmega_dropcaps.php:140
8716
- #: includes/widgets/htmega_dropcaps.php:239
8717
- #: includes/widgets/htmega_easy_digital_download.php:268
8718
- #: includes/widgets/htmega_easy_digital_download.php:587
8719
- #: includes/widgets/htmega_errorcontent.php:289
8720
- #: includes/widgets/htmega_errorcontent.php:355
8721
- #: includes/widgets/htmega_errorcontent.php:434
8722
- #: includes/widgets/htmega_errorcontent.php:513
8723
- #: includes/widgets/htmega_errorcontent.php:589
8724
- #: includes/widgets/htmega_errorcontent.php:740
8725
- #: includes/widgets/htmega_googlemap.php:336
8726
- #: includes/widgets/htmega_googlemap.php:477
8727
- #: includes/widgets/htmega_gravity_forms.php:319
8728
- #: includes/widgets/htmega_gravity_forms.php:485
8729
- #: includes/widgets/htmega_gravity_forms.php:717
8730
- #: includes/widgets/htmega_imagemarker.php:683
8731
- #: includes/widgets/htmega_imagemarker.php:907
8732
- #: includes/widgets/htmega_image_comparison.php:293
8733
- #: includes/widgets/htmega_image_comparison.php:374
8734
- #: includes/widgets/htmega_image_grid.php:340
8735
- #: includes/widgets/htmega_image_grid.php:427
8736
- #: includes/widgets/htmega_image_grid.php:500
8737
- #: includes/widgets/htmega_image_magnifier.php:142
8738
- #: includes/widgets/htmega_image_masonry.php:194
8739
- #: includes/widgets/htmega_image_masonry.php:336
8740
- #: includes/widgets/htmega_image_masonry.php:423
8741
- #: includes/widgets/htmega_image_masonry.php:495
8742
- #: includes/widgets/htmega_inlinemenu.php:175
8743
- #: includes/widgets/htmega_instagram.php:647
8744
- #: includes/widgets/htmega_instagram.php:693
8745
- #: includes/widgets/htmega_instagram.php:823
8746
- #: includes/widgets/htmega_instagram.php:885
8747
- #: includes/widgets/htmega_instagram.php:1057
8748
- #: includes/widgets/htmega_instagram.php:1342
8749
- #: includes/widgets/htmega_lightbox.php:251
8750
- #: includes/widgets/htmega_lightbox.php:439
8751
- #: includes/widgets/htmega_mailchimp_wp.php:89
8752
- #: includes/widgets/htmega_mailchimp_wp.php:259
8753
- #: includes/widgets/htmega_mailchimp_wp.php:394
8754
- #: includes/widgets/htmega_modal.php:278 includes/widgets/htmega_modal.php:538
8755
- #: includes/widgets/htmega_modal.php:655 includes/widgets/htmega_modal.php:710
8756
- #: includes/widgets/htmega_modal.php:818 includes/widgets/htmega_modal.php:880
8757
- #: includes/widgets/htmega_modal.php:988
8758
- #: includes/widgets/htmega_newsticker.php:390
8759
- #: includes/widgets/htmega_newsticker.php:444
8760
- #: includes/widgets/htmega_newsticker.php:587
8761
- #: includes/widgets/htmega_newsticker.php:832
8762
- #: includes/widgets/htmega_newsticker.php:966
8763
- #: includes/widgets/htmega_ninja_form.php:140
8764
- #: includes/widgets/htmega_ninja_form.php:242
8765
- #: includes/widgets/htmega_ninja_form.php:406
8766
- #: includes/widgets/htmega_ninja_form.php:552
8767
- #: includes/widgets/htmega_ninja_form.php:774
8768
- #: includes/widgets/htmega_ninja_form.php:976
8769
- #: includes/widgets/htmega_notify.php:389
8770
- #: includes/widgets/htmega_notify.php:532
8771
- #: includes/widgets/htmega_notify.php:788
8772
- #: includes/widgets/htmega_offcanvas.php:349
8773
- #: includes/widgets/htmega_offcanvas.php:441
8774
- #: includes/widgets/htmega_panel_slider.php:543
8775
- #: includes/widgets/htmega_panel_slider.php:722
8776
- #: includes/widgets/htmega_panel_slider.php:778
8777
- #: includes/widgets/htmega_panel_slider.php:954
8778
- #: includes/widgets/htmega_popover.php:292
8779
- #: includes/widgets/htmega_popover.php:437
8780
- #: includes/widgets/htmega_popover.php:614
8781
- #: includes/widgets/htmega_popover.php:718
8782
- #: includes/widgets/htmega_postgrid.php:500
8783
- #: includes/widgets/htmega_postgrid.php:614
8784
- #: includes/widgets/htmega_postgrid.php:701
8785
- #: includes/widgets/htmega_post_grid_tab.php:313
8786
- #: includes/widgets/htmega_post_grid_tab.php:386
8787
- #: includes/widgets/htmega_post_grid_tab.php:479
8788
- #: includes/widgets/htmega_post_grid_tab.php:566
8789
- #: includes/widgets/htmega_post_grid_tab.php:664
8790
- #: includes/widgets/htmega_post_grid_tab.php:789
8791
- #: includes/widgets/htmega_post_grid_tab.php:884
8792
- #: includes/widgets/htmega_post_grid_tab.php:1038
8793
- #: includes/widgets/htmega_post_grid_tab.php:1146
8794
- #: includes/widgets/htmega_post_slider.php:759
8795
- #: includes/widgets/htmega_post_slider.php:914
8796
- #: includes/widgets/htmega_post_slider.php:1001
8797
- #: includes/widgets/htmega_post_slider.php:1098
8798
- #: includes/widgets/htmega_post_slider.php:1217
8799
- #: includes/widgets/htmega_post_slider.php:1311
8800
- #: includes/widgets/htmega_post_slider.php:1667
8801
- #: includes/widgets/htmega_post_slider.php:1926
8802
- #: includes/widgets/htmega_pricing_list_view.php:1240
8803
- #: includes/widgets/htmega_pricing_list_view.php:1493
8804
- #: includes/widgets/htmega_pricing_list_view.php:1599
8805
- #: includes/widgets/htmega_pricing_list_view.php:1672
8806
- #: includes/widgets/htmega_pricing_list_view.php:1757
8807
- #: includes/widgets/htmega_pricing_list_view.php:1834
8808
- #: includes/widgets/htmega_progress_bar.php:348
8809
- #: includes/widgets/htmega_progress_bar.php:677
8810
- #: includes/widgets/htmega_progress_bar.php:783
8811
- #: includes/widgets/htmega_quforms.php:170
8812
- #: includes/widgets/htmega_quforms.php:281
8813
- #: includes/widgets/htmega_quforms.php:413
8814
- #: includes/widgets/htmega_quforms.php:633
8815
- #: includes/widgets/htmega_quforms.php:860
8816
- #: includes/widgets/htmega_scroll_image.php:216
8817
- #: includes/widgets/htmega_scroll_image.php:376
8818
- #: includes/widgets/htmega_scroll_navigation.php:290
8819
- #: includes/widgets/htmega_search.php:196
8820
- #: includes/widgets/htmega_search.php:297
8821
- #: includes/widgets/htmega_search.php:516
8822
- #: includes/widgets/htmega_section_title.php:399
8823
- #: includes/widgets/htmega_section_title.php:599
8824
- #: includes/widgets/htmega_section_title.php:831
8825
- #: includes/widgets/htmega_section_title.php:1002
8826
- #: includes/widgets/htmega_service.php:196
8827
- #: includes/widgets/htmega_service.php:408
8828
- #: includes/widgets/htmega_service.php:513
8829
- #: includes/widgets/htmega_service.php:672
8830
- #: includes/widgets/htmega_service.php:934
8831
- #: includes/widgets/htmega_service.php:1062
8832
- #: includes/widgets/htmega_singlepost.php:205
8833
- #: includes/widgets/htmega_singlepost.php:292
8834
- #: includes/widgets/htmega_singlepost.php:407
8835
- #: includes/widgets/htmega_singlepost.php:503
8836
- #: includes/widgets/htmega_slider_thumb_gallery.php:717
8837
- #: includes/widgets/htmega_slider_thumb_gallery.php:765
8838
- #: includes/widgets/htmega_slider_thumb_gallery.php:973
8839
- #: includes/widgets/htmega_socialshere.php:407
8840
- #: includes/widgets/htmega_socialshere.php:652
8841
- #: includes/widgets/htmega_special_day_banner.php:302
8842
- #: includes/widgets/htmega_special_day_banner.php:379
8843
- #: includes/widgets/htmega_special_day_banner.php:438
8844
- #: includes/widgets/htmega_special_day_banner.php:497
8845
- #: includes/widgets/htmega_special_day_banner.php:556
8846
- #: includes/widgets/htmega_special_day_banner.php:615
8847
- #: includes/widgets/htmega_special_day_banner.php:701
8848
- #: includes/widgets/htmega_switcher.php:258
8849
- #: includes/widgets/htmega_switcher.php:399
8850
- #: includes/widgets/htmega_switcher.php:588
8851
- #: includes/widgets/htmega_tablepress.php:196
8852
- #: includes/widgets/htmega_tablepress.php:353
8853
- #: includes/widgets/htmega_tablepress.php:422
8854
- #: includes/widgets/htmega_tabs.php:336 includes/widgets/htmega_tabs.php:568
8855
- #: includes/widgets/htmega_tabs.php:911
8856
- #: includes/widgets/htmega_teammember.php:343
8857
- #: includes/widgets/htmega_teammember.php:728
8858
- #: includes/widgets/htmega_teammember.php:818
8859
- #: includes/widgets/htmega_teammember.php:909
8860
- #: includes/widgets/htmega_teammember.php:976
8861
- #: includes/widgets/htmega_testimonial_grid.php:284
8862
- #: includes/widgets/htmega_testimonial_grid.php:463
8863
- #: includes/widgets/htmega_testimonial_grid.php:523
8864
- #: includes/widgets/htmega_testimonial_grid.php:615
8865
- #: includes/widgets/htmega_toggle.php:168
8866
- #: includes/widgets/htmega_toggle.php:297
8867
- #: includes/widgets/htmega_tooltip.php:268
8868
- #: includes/widgets/htmega_tooltip.php:414
8869
- #: includes/widgets/htmega_tooltip.php:511
8870
- #: includes/widgets/htmega_twitter_feed.php:583
8871
- #: includes/widgets/htmega_twitter_feed.php:672
8872
- #: includes/widgets/htmega_twitter_feed.php:741
8873
- #: includes/widgets/htmega_twitter_feed.php:941
8874
- #: includes/widgets/htmega_twitter_feed.php:1002
8875
- #: includes/widgets/htmega_twitter_feed.php:1192
8876
- #: includes/widgets/htmega_user_login_form.php:621
8877
- #: includes/widgets/htmega_user_login_form.php:657
8878
- #: includes/widgets/htmega_user_login_form.php:887
8879
- #: includes/widgets/htmega_user_login_form.php:1133
8880
- #: includes/widgets/htmega_user_login_form.php:1344
8881
- #: includes/widgets/htmega_user_login_form.php:1514
8882
- #: includes/widgets/htmega_verticle_time_line.php:248
8883
- #: includes/widgets/htmega_verticle_time_line.php:348
8884
- #: includes/widgets/htmega_videoplayer.php:250
8885
- #: includes/widgets/htmega_videoplayer.php:408
8886
- #: includes/widgets/htmega_wc_categories.php:213
8887
- #: includes/widgets/htmega_wc_categories.php:343
8888
- #: includes/widgets/htmega_wc_element_pages.php:154
8889
- #: includes/widgets/htmega_wc_element_pages.php:265
8890
- #: includes/widgets/htmega_wc_element_pages.php:455
8891
- #: includes/widgets/htmega_wc_element_pages.php:776
8892
- #: includes/widgets/htmega_wc_element_pages.php:1007
8893
- #: includes/widgets/htmega_wc_element_pages.php:1149
8894
- #: includes/widgets/htmega_wc_element_pages.php:1442
8895
- #: includes/widgets/htmega_wc_element_pages.php:1577
8896
- #: includes/widgets/htmega_wc_element_pages.php:1744
8897
- #: includes/widgets/htmega_weather.php:275
8898
- #: includes/widgets/htmega_weather.php:334
8899
- #: includes/widgets/htmega_working_process.php:222
8900
- #: includes/widgets/htmega_working_process.php:418
8901
- #: includes/widgets/htmega_working_process.php:676
8902
- #: includes/widgets/htmega_working_process.php:755
8903
- #: includes/widgets/htmega_working_process.php:855
8904
- #: includes/widgets/htmega_wpforms.php:132
8905
- #: includes/widgets/htmega_wpforms.php:234
8906
- #: includes/widgets/htmega_wpforms.php:388
8907
- #: includes/widgets/htmega_wpforms.php:555
8908
- #: includes/widgets/htmega_wpforms.php:777
8909
- #: includes/widgets/htmega_wpforms.php:1003
8910
- #: extensions/ht-builder/widgets/bl_nav_menu.php:171
8911
- #: extensions/ht-builder/widgets/bl_nav_menu.php:404
8912
- #: extensions/ht-builder/widgets/bl_page_title.php:108
8913
- #: extensions/ht-builder/widgets/bl_post_archive.php:265
8914
- #: extensions/ht-builder/widgets/bl_post_archive.php:762
8915
- #: extensions/ht-builder/widgets/bl_post_archive_title.php:110
8916
- #: extensions/ht-builder/widgets/bl_post_search_form.php:151
8917
- #: extensions/ht-builder/widgets/bl_post_search_form.php:236
8918
- #: extensions/ht-builder/widgets/bl_site_logo.php:130
8919
- #: extensions/ht-builder/widgets/bl_site_title.php:110
8920
- #: extensions/ht-menu/widgets/inline-mega-menu.php:119
8921
- #: extensions/ht-menu/widgets/inline-mega-menu.php:239
8922
- #: extensions/ht-menu/widgets/inline-mega-menu.php:369
8923
- #: extensions/ht-menu/widgets/inline-mega-menu.php:481
8924
- #: extensions/ht-menu/widgets/verticle-mega-menu.php:120
8925
- #: extensions/ht-menu/widgets/verticle-mega-menu.php:240
8926
- #: extensions/ht-menu/widgets/verticle-mega-menu.php:327
8927
- msgid "Padding"
8928
- msgstr ""
8929
-
8930
- #: includes/widgets/htmega_wc_element_pages.php:54
8931
- #: extensions/ht-builder/widgets/bl_post_content.php:125
8932
- msgid "Page"
8933
- msgstr ""
8934
-
8935
- #: admin/include/admin-setting.php:796 admin/include/admin-setting.php:797
8936
- #: extensions/ht-builder/widgets/bl_page_title.php:39
8937
- #: extensions/ht-builder/widgets/bl_page_title.php:58
8938
- #: extensions/ht-builder/widgets/bl_page_title.php:168
8939
- msgid "Page Title"
8940
- msgstr ""
8941
-
8942
- #: extensions/ht-builder/widgets/bl_post_content.php:121
8943
- msgid "Pages:"
8944
- msgstr ""
8945
-
8946
- #: includes/widgets/htmega_carousel.php:810
8947
- #: includes/widgets/htmega_carousel.php:1078
8948
- #: includes/widgets/htmega_data_table.php:83
8949
- #: includes/widgets/htmega_easy_digital_download.php:671
8950
- #: includes/widgets/htmega_instagram.php:1130
8951
- #: includes/widgets/htmega_panel_slider.php:1086
8952
- #: includes/widgets/htmega_post_slider.php:1740
8953
- #: includes/widgets/htmega_post_slider.php:1905
8954
- #: includes/widgets/htmega_scroll_navigation.php:307
8955
- #: includes/widgets/htmega_slider_thumb_gallery.php:1047
8956
- #: includes/widgets/htmega_twitter_feed.php:1291
8957
- #: extensions/ht-builder/widgets/bl_post_archive.php:835
8958
- msgid "Pagination"
8959
- msgstr ""
8960
-
8961
- #: includes/widgets/htmega_carousel.php:1286
8962
- msgid "Pagination Box"
8963
- msgstr ""
8964
-
8965
- #: includes/widgets/htmega_post_slider.php:1980
8966
- msgid "Pagination Box Width"
8967
- msgstr ""
8968
-
8969
- #: includes/widgets/htmega_data_table.php:981
8970
- msgid "Pagination Footer"
8971
- msgstr ""
8972
-
8973
- #: includes/widgets/htmega_data_table.php:799
8974
- msgid "Pagination Header"
8975
- msgstr ""
8976
-
8977
- #: includes/widgets/htmega_data_table.php:850
8978
- msgid "Pagination Header length"
8979
- msgstr ""
8980
-
8981
- #: includes/widgets/htmega_tablepress.php:86
8982
- msgid "Pagination Hide"
8983
- msgstr ""
8984
-
8985
- #: includes/widgets/htmega_data_table.php:1019
8986
- msgid "Pagination Ordering"
8987
- msgstr ""
8988
-
8989
- #: includes/widgets/htmega_data_table.php:902
8990
- msgid "Pagination Style"
8991
- msgstr ""
8992
-
8993
- #: includes/widgets/htmega_job_manager.php:125
8994
- msgid "Pagination Type"
8995
- msgstr ""
8996
-
8997
- #: admin/include/admin-setting.php:359
8998
- #: includes/widgets/htmega_panel_slider.php:15
8999
- #: includes/widgets/htmega_panel_slider.php:53
9000
- msgid "Panel Slider"
9001
- msgstr ""
9002
-
9003
- #: includes/widgets/htmega_easy_digital_download.php:172
9004
- #: includes/widgets/htmega_wc_categories.php:112
9005
- msgid "Parent"
9006
- msgstr ""
9007
-
9008
- #: includes/widgets/htmega_brand.php:91
9009
- msgid "Partner Link"
9010
- msgstr ""
9011
-
9012
- #: includes/widgets/htmega_brand.php:71
9013
- msgid "Partner Logo"
9014
- msgstr ""
9015
-
9016
- #: includes/widgets/htmega_user_login_form.php:236
9017
- #: includes/widgets/htmega_user_login_form.php:249
9018
- #: includes/widgets/htmega_user_login_form.php:1566
9019
- #: includes/widgets/htmega_user_login_form.php:1567
9020
- msgid "Password"
9021
- msgstr ""
9022
-
9023
- #: includes/widgets/htmega_user_login_form.php:234
9024
- msgid "Password Label"
9025
- msgstr ""
9026
-
9027
- #: includes/helper-function.php:457
9028
- msgid "Password length must be greater than 5"
9029
- msgstr ""
9030
-
9031
- #: includes/widgets/htmega_user_login_form.php:247
9032
- msgid "Password Placeholder"
9033
- msgstr ""
9034
-
9035
- #: includes/widgets/htmega_newsticker.php:175
9036
- msgid "Pause on hover"
9037
- msgstr ""
9038
-
9039
- #: includes/widgets/htmega_carousel.php:215
9040
- #: includes/widgets/htmega_instagram.php:410
9041
- #: includes/widgets/htmega_panel_slider.php:315
9042
- #: includes/widgets/htmega_post_slider.php:395
9043
- #: includes/widgets/htmega_slider_thumb_gallery.php:214
9044
- #: includes/widgets/htmega_slider_thumb_gallery.php:479
9045
- #: includes/widgets/htmega_twitter_feed.php:337
9046
- msgid "Pause on Hover?"
9047
- msgstr ""
9048
-
9049
- #: includes/widgets/htmega_wc_element_pages.php:888
9050
- msgid "Payment"
9051
- msgstr ""
9052
-
9053
- #: includes/widgets/htmega_pricing_list_view.php:1712
9054
- msgid "Per Month Typography"
9055
- msgstr ""
9056
-
9057
- #: includes/widgets/htmega_testimonial_grid.php:232
9058
- msgid "Peter Rose"
9059
- msgstr ""
9060
-
9061
- #: includes/widgets/htmega_progress_bar.php:219
9062
- msgid "Photoshop"
9063
- msgstr ""
9064
-
9065
- #: includes/class.htmega.php:175
9066
- msgid "PHP"
9067
- msgstr ""
9068
-
9069
- #: includes/widgets/htmega_socialshere.php:65
9070
- msgid "Pinterest"
9071
- msgstr ""
9072
-
9073
- #: extensions/ht-builder/widgets/bl_post_search_form.php:45
9074
- msgid "Placeholder"
9075
- msgstr ""
9076
-
9077
- #: admin/include/templates_list.php:17
9078
- msgctxt "placeholder"
9079
- msgid "Enter a Page Name"
9080
- msgstr ""
9081
-
9082
- #: includes/widgets/htmega_caldera_form.php:214
9083
- #: includes/widgets/htmega_contact_form_seven.php:263
9084
- #: includes/widgets/htmega_contact_form_seven.php:512
9085
- #: includes/widgets/htmega_gravity_forms.php:425
9086
- #: includes/widgets/htmega_mailchimp_wp.php:220
9087
- #: includes/widgets/htmega_ninja_form.php:513
9088
- #: includes/widgets/htmega_ninja_form.php:735
9089
- #: includes/widgets/htmega_quforms.php:374
9090
- #: includes/widgets/htmega_quforms.php:594
9091
- #: includes/widgets/htmega_search.php:240
9092
- #: includes/widgets/htmega_user_login_form.php:824
9093
- #: includes/widgets/htmega_wc_element_pages.php:738
9094
- #: includes/widgets/htmega_wc_element_pages.php:1382
9095
- #: includes/widgets/htmega_wpforms.php:516
9096
- #: includes/widgets/htmega_wpforms.php:738
9097
- msgid "Placeholder Color"
9098
- msgstr ""
9099
-
9100
- #: includes/widgets/htmega_animated_heading.php:235
9101
- #: includes/widgets/htmega_search.php:58
9102
- msgid "Placeholder Text"
9103
- msgstr ""
9104
-
9105
- #: includes/widgets/htmega_imagemarker.php:969
9106
- msgid "Placeholder Text Style"
9107
- msgstr ""
9108
-
9109
- #: includes/widgets/htmega_videoplayer.php:81
9110
- msgid "Play Button Icon"
9111
- msgstr ""
9112
-
9113
- #: admin/include/admin-setting.php:645
9114
- msgid ""
9115
- "Please enter a OpenWeatherMaps API key. OpenWeather is a weather provider "
9116
- "service which is capable of delivering all the necessary weather information "
9117
- "for any location on the globe.To create API key, go to this link <a "
9118
- "href=\"https://openweathermap.org/appid\" target=\"_blank\">OpenWeather</a>."
9119
- msgstr ""
9120
-
9121
- #: includes/widgets/htmega_instagram.php:1526
9122
- msgid "Please enter your access token."
9123
- msgstr ""
9124
-
9125
- #: includes/widgets/htmega_weather.php:372
9126
- msgid ""
9127
- "Please Insert Weather Map API Key from \"HTMega Addons > Settings > Other "
9128
- "options > Weather Map API Key\"."
9129
- msgstr ""
9130
-
9131
- #: includes/widgets/htmega_caldera_form.php:750
9132
- msgid "Please select a Contact Form From Setting!"
9133
- msgstr ""
9134
-
9135
- #: includes/widgets/htmega_quforms.php:1064
9136
- msgid "Please select Contact Form"
9137
- msgstr ""
9138
-
9139
- #: includes/widgets/htmega_contact_form_seven.php:1039
9140
- msgid "Please Select contact form."
9141
- msgstr ""
9142
-
9143
- #: includes/widgets/htmega_wpforms.php:1169
9144
- msgid "Please Select form."
9145
- msgstr ""
9146
-
9147
- #: includes/widgets/htmega_tablepress.php:440
9148
- msgid "Please Select table"
9149
- msgstr ""
9150
-
9151
- #: includes/widgets/htmega_wc_add_to_cart.php:193
9152
- #: includes/widgets/htmega_wc_add_to_cart.php:199
9153
- #: includes/widgets/htmega_wc_element_pages.php:1897
9154
- msgid "Please set a valid product"
9155
- msgstr ""
9156
-
9157
- #: includes/widgets/htmega_user_login_form.php:1691
9158
- msgid "Please wait..."
9159
- msgstr ""
9160
-
9161
- #: admin/include/template-library.php:355
9162
- #: includes/recommended-plugins/class.recommended-plugins.php:393
9163
- msgid "Plugin Not Found"
9164
- msgstr ""
9165
-
9166
- #: admin/include/template-library.php:375
9167
- #: includes/recommended-plugins/class.recommended-plugins.php:413
9168
- msgid "Plugin Successfully Activated"
9169
- msgstr ""
9170
-
9171
- #: includes/widgets/htmega_teammember.php:472
9172
- msgid "Plus Icon Color"
9173
- msgstr ""
9174
-
9175
- #: includes/widgets/htmega_socialshere.php:78
9176
- msgid "Pocket"
9177
- msgstr ""
9178
-
9179
- #: includes/widgets/htmega_googlemap.php:370
9180
- msgid "Pointer Width"
9181
- msgstr ""
9182
-
9183
- #: includes/widgets/htmega_videoplayer.php:53
9184
- msgid "Pop Up"
9185
- msgstr ""
9186
-
9187
- #: includes/widgets/htmega_videoplayer.php:72
9188
- msgid "Pop Up Button"
9189
- msgstr ""
9190
-
9191
- #: admin/include/admin-setting.php:367 includes/widgets/htmega_popover.php:14
9192
- #: includes/widgets/htmega_popover.php:75
9193
- #: includes/widgets/htmega_popover.php:498
9194
- msgid "Popover"
9195
- msgstr ""
9196
-
9197
- #: includes/widgets/htmega_popover.php:42
9198
- msgid "Popover Button"
9199
- msgstr ""
9200
-
9201
- #: includes/widgets/htmega_popover.php:169
9202
- msgid "Popover content Here"
9203
- msgstr ""
9204
-
9205
- #: includes/widgets/htmega_popover.php:180
9206
- msgid "Popover Header Here"
9207
- msgstr ""
9208
-
9209
- #: includes/widgets/htmega_popover.php:177
9210
- msgid "Popover Header Text"
9211
- msgstr ""
9212
-
9213
- #: includes/widgets/htmega_popover.php:160
9214
- msgid "Popover Options"
9215
- msgstr ""
9216
-
9217
- #: includes/widgets/htmega_popover.php:166
9218
- msgid "Popover Text"
9219
- msgstr ""
9220
-
9221
- #: includes/widgets/htmega_buddy_press.php:67
9222
- msgid "Popular"
9223
- msgstr ""
9224
-
9225
- #: admin/include/admin-setting.php:887
9226
- msgid "Popular Post"
9227
- msgstr ""
9228
-
9229
- #: admin/include/admin-setting.php:886
9230
- msgid "Popular Post <span>( Pro )</span>"
9231
- msgstr ""
9232
-
9233
- #: includes/widgets/htmega_search.php:910
9234
- msgid "Popup Background"
9235
- msgstr ""
9236
-
9237
- #: includes/widgets/htmega_search.php:679
9238
- #: includes/widgets/htmega_search.php:942
9239
- msgid "Popup Button Style"
9240
- msgstr ""
9241
-
9242
- #: includes/widgets/htmega_gallery_justify.php:118
9243
- msgid "Popup None"
9244
- msgstr ""
9245
-
9246
- #: includes/widgets/htmega_gallery_justify.php:114
9247
- msgid "Popup options"
9248
- msgstr ""
9249
-
9250
- #: includes/widgets/htmega_search.php:658
9251
- msgid "Popup style"
9252
- msgstr ""
9253
-
9254
- #: includes/widgets/htmega_mailchimp_wp.php:342
9255
- #: includes/widgets/htmega_progress_bar.php:652
9256
- #: includes/widgets/htmega_progress_bar.php:771
9257
- #: includes/widgets/htmega_progress_bar.php:839
9258
- #: includes/widgets/htmega_section_title.php:232
9259
- #: includes/widgets/htmega_working_process.php:524
9260
- #: extensions/wc-sales-notification/admin/setting.php:77
9261
- msgid "Position"
9262
- msgstr ""
9263
-
9264
- #: includes/widgets/htmega_imagemarker.php:1025
9265
- msgid "Position Left-Right (X)"
9266
- msgstr ""
9267
-
9268
- #: includes/widgets/htmega_imagemarker.php:998
9269
- msgid "Position Top-Bottom (Y)"
9270
- msgstr ""
9271
-
9272
- #: includes/widgets/htmega_image_comparison.php:195
9273
- msgid "Positioning Lebel"
9274
- msgstr ""
9275
-
9276
- #: admin/include/admin-setting.php:375
9277
- msgid "Post carousel"
9278
- msgstr ""
9279
-
9280
- #: admin/include/admin-setting.php:760 admin/include/admin-setting.php:761
9281
- #: extensions/ht-builder/widgets/bl_post_comments.php:187
9282
- msgid "Post Comments"
9283
- msgstr ""
9284
-
9285
- #: admin/include/admin-setting.php:751 admin/include/admin-setting.php:752
9286
- #: extensions/ht-builder/widgets/bl_post_content.php:40
9287
- #: extensions/ht-builder/widgets/bl_post_content.php:103
9288
- msgid "Post Content"
9289
- msgstr ""
9290
-
9291
- #: admin/include/admin-setting.php:702
9292
- msgid "Post Duplicator"
9293
- msgstr ""
9294
-
9295
- #: admin/include/admin-setting.php:906
9296
- msgid "Post Duplicator Condition"
9297
- msgstr ""
9298
-
9299
- #: admin/include/admin-setting.php:742 admin/include/admin-setting.php:743
9300
- #: extensions/ht-builder/widgets/bl_post_excerpt.php:40
9301
- #: extensions/ht-builder/widgets/bl_post_excerpt.php:102
9302
- msgid "Post Excerpt"
9303
- msgstr ""
9304
-
9305
- #: admin/include/admin-setting.php:724 admin/include/admin-setting.php:725
9306
- #: extensions/ht-builder/widgets/bl_post_featured_image.php:40
9307
- #: extensions/ht-builder/widgets/bl_post_featured_image.php:59
9308
- #: extensions/ht-builder/widgets/bl_post_featured_image.php:97
9309
- msgid "Post Featured Image"
9310
- msgstr ""
9311
-
9312
- #: admin/include/admin-setting.php:383 includes/widgets/htmega_postgrid.php:15
9313
- #: includes/widgets/htmega_postgrid.php:37
9314
- msgid "Post Grid"
9315
- msgstr ""
9316
-
9317
- #: admin/include/admin-setting.php:391
9318
- #: includes/widgets/htmega_post_grid_tab.php:15
9319
- #: includes/widgets/htmega_post_grid_tab.php:43
9320
- msgid "Post Grid Tab"
9321
- msgstr ""
9322
-
9323
- #: includes/widgets/htmega_postgrid.php:211
9324
- msgid "Post Items Box Style"
9325
- msgstr ""
9326
-
9327
- #: admin/include/admin-setting.php:733 admin/include/admin-setting.php:734
9328
- msgid "Post Meta Info"
9329
- msgstr ""
9330
-
9331
- #: includes/widgets/htmega_singlepost.php:74
9332
- msgid "Post Name"
9333
- msgstr ""
9334
-
9335
- #: admin/include/admin-setting.php:869
9336
- msgid "Post Navigation"
9337
- msgstr ""
9338
-
9339
- #: admin/include/admin-setting.php:868
9340
- msgid "Post Navigation <span>( Pro )</span>"
9341
- msgstr ""
9342
-
9343
- #: admin/include/class.htmega-elementor-template-library.php:90
9344
- msgid "Post not found"
9345
- msgstr ""
9346
-
9347
- #: admin/include/class.htmega-elementor-template-library.php:69
9348
- msgid "Post not found."
9349
- msgstr ""
9350
-
9351
- #: includes/widgets/htmega_postgrid.php:62
9352
- #: includes/widgets/htmega_post_grid_tab.php:69
9353
- #: includes/widgets/htmega_post_slider.php:73
9354
- msgid "Post Option"
9355
- msgstr ""
9356
-
9357
- #: admin/include/admin-setting.php:769 admin/include/admin-setting.php:770
9358
- msgid "Post Search Form"
9359
- msgstr ""
9360
-
9361
- #: admin/include/admin-setting.php:399
9362
- #: includes/widgets/htmega_post_slider.php:14
9363
- #: includes/widgets/htmega_post_slider.php:44
9364
- msgid "Post Slider"
9365
- msgstr ""
9366
-
9367
- #: admin/include/admin-setting.php:715 admin/include/admin-setting.php:716
9368
- #: includes/widgets/htmega_post_slider.php:376
9369
- #: extensions/ht-builder/widgets/bl_post_title.php:41
9370
- #: extensions/ht-builder/widgets/bl_post_title.php:60
9371
- msgid "Post Title"
9372
- msgstr ""
9373
-
9374
- #: includes/widgets/htmega_easy_digital_download.php:137
9375
- msgctxt "Posts Query Control"
9376
- msgid "Source"
9377
- msgstr ""
9378
-
9379
- #: includes/widgets/htmega_counter.php:928
9380
- msgid "Prefix"
9381
- msgstr ""
9382
-
9383
- #: admin/include/admin-setting.php:1309
9384
- #: extensions/ht-builder/admin/setting.php:151
9385
- #: extensions/ht-menu/classes/class.mega-menu.php:268
9386
- #: extensions/wc-sales-notification/admin/setting.php:235
9387
- msgid "premium version"
9388
- msgstr ""
9389
-
9390
- #: admin/include/custom-control/preset-manage.php:23
9391
- msgid "Preset not found"
9392
- msgstr ""
9393
-
9394
- #: includes/class.assests.php:387
9395
- #: includes/recommended-plugins/class.recommended-plugins.php:123
9396
- #: admin/include/templates/library/templates.php:133
9397
- msgid "Preview"
9398
- msgstr ""
9399
-
9400
- #: includes/widgets/htmega_newsticker.php:319
9401
- msgid "Previous Icon"
9402
- msgstr ""
9403
-
9404
- #: includes/widgets/htmega_carousel.php:165
9405
- #: includes/widgets/htmega_instagram.php:360
9406
- #: includes/widgets/htmega_panel_slider.php:265
9407
- #: includes/widgets/htmega_post_slider.php:329
9408
- #: includes/widgets/htmega_slider_thumb_gallery.php:168
9409
- #: includes/widgets/htmega_twitter_feed.php:287
9410
- msgid "Previous icon"
9411
- msgstr ""
9412
-
9413
- #: includes/widgets/htmega_easy_digital_download.php:468
9414
- #: includes/widgets/htmega_pricing_list_view.php:97
9415
- #: includes/widgets/htmega_pricing_list_view.php:1628
9416
- msgid "Price"
9417
- msgstr ""
9418
-
9419
- #: includes/widgets/htmega_easy_digital_download.php:479
9420
- msgid "Price Color"
9421
- msgstr ""
9422
-
9423
- #: includes/widgets/htmega_easy_digital_download.php:503
9424
- msgid "Price Margin"
9425
- msgstr ""
9426
-
9427
- #: admin/include/admin-setting.php:407
9428
- #: includes/widgets/htmega_pricing_list_view.php:13
9429
- msgid "Pricing List View"
9430
- msgstr ""
9431
-
9432
- #: admin/include/admin-setting.php:415
9433
- msgid "Pricing Table"
9434
- msgstr ""
9435
-
9436
- #: includes/widgets/htmega_call_to_action.php:129
9437
- #: includes/widgets/htmega_call_to_action.php:677
9438
- msgid "Primary Button"
9439
- msgstr ""
9440
-
9441
- #: includes/widgets/htmega_call_to_action.php:145
9442
- msgid "Primary Button Link"
9443
- msgstr ""
9444
-
9445
- #: includes/widgets/htmega_call_to_action.php:136
9446
- msgid "Primary Button Text"
9447
- msgstr ""
9448
-
9449
- #: admin/include/admin-setting.php:851
9450
- msgid "Print Page"
9451
- msgstr ""
9452
-
9453
- #: admin/include/admin-setting.php:850
9454
- msgid "Print Page <span>( Pro )</span>"
9455
- msgstr ""
9456
-
9457
- #: includes/class.assests.php:375 admin/include/templates_list.php:54
9458
- #: admin/include/templates/library/templates.php:119
9459
- msgid "Pro"
9460
- msgstr ""
9461
-
9462
- #: includes/widgets/htmega_working_process.php:81
9463
- #: includes/widgets/htmega_working_process.php:169
9464
- msgid "Process #1"
9465
- msgstr ""
9466
-
9467
- #: includes/widgets/htmega_working_process.php:173
9468
- msgid "Process #2"
9469
- msgstr ""
9470
-
9471
- #: includes/widgets/htmega_working_process.php:177
9472
- msgid "Process #3"
9473
- msgstr ""
9474
-
9475
- #: includes/widgets/htmega_working_process.php:88
9476
- msgid "Process Number"
9477
- msgstr ""
9478
-
9479
- #: includes/widgets/htmega_wc_add_to_cart.php:50
9480
- #: includes/widgets/htmega_wc_add_to_cart.php:63
9481
- msgid "Product"
9482
- msgstr ""
9483
-
9484
- #: admin/include/admin-setting.php:423
9485
- #: includes/widgets/htmega_progress_bar.php:13
9486
- #: includes/widgets/htmega_progress_bar.php:50
9487
- #: includes/widgets/htmega_progress_bar.php:199
9488
- #: includes/widgets/htmega_progress_bar.php:397
9489
- msgid "Progress Bar"
9490
- msgstr ""
9491
-
9492
- #: includes/widgets/htmega_progress_bar.php:309
9493
- msgid "Progress bar Background"
9494
- msgstr ""
9495
-
9496
- #: includes/widgets/htmega_progress_bar.php:131
9497
- msgid "Progress bar color"
9498
- msgstr ""
9499
-
9500
- #: includes/widgets/htmega_progress_bar.php:286
9501
- msgid "Progress Bar Size"
9502
- msgstr ""
9503
-
9504
- #: includes/widgets/htmega_progress_bar.php:317
9505
- msgid "Progress bar track color"
9506
- msgstr ""
9507
-
9508
- #: includes/widgets/htmega_progress_bar.php:113
9509
- #: includes/widgets/htmega_progress_bar.php:245
9510
- msgid "Progress Bar Value"
9511
- msgstr ""
9512
-
9513
- #: includes/widgets/htmega_progress_bar.php:152
9514
- #: includes/widgets/htmega_progress_bar.php:337
9515
- msgid "Progress bar value background color"
9516
- msgstr ""
9517
-
9518
- #: includes/widgets/htmega_progress_bar.php:142
9519
- #: includes/widgets/htmega_progress_bar.php:327
9520
- msgid "Progress bar value color"
9521
- msgstr ""
9522
-
9523
- #: includes/widgets/htmega_progress_bar.php:263
9524
- msgid "Progress Bar Width"
9525
- msgstr ""
9526
-
9527
- #: includes/widgets/htmega_progress_bar.php:163
9528
- #: includes/widgets/htmega_progress_bar.php:556
9529
- msgid "Progress Indicator"
9530
- msgstr ""
9531
-
9532
- #: includes/widgets/htmega_progress_bar.php:459
9533
- msgid "Progress Position Top-Bottom"
9534
- msgstr ""
9535
-
9536
- #: includes/widgets/htmega_pricing_list_view.php:152
9537
- msgid "PSD Template"
9538
- msgstr ""
9539
-
9540
- #: admin/include/admin-setting.php:1309
9541
- #: extensions/ht-builder/admin/setting.php:151
9542
- #: extensions/ht-menu/classes/class.mega-menu.php:268
9543
- #: extensions/wc-sales-notification/admin/setting.php:235
9544
- msgid "Purchase our"
9545
- msgstr ""
9546
-
9547
- #: includes/widgets/htmega_animated_heading.php:104
9548
- msgid "Purpose,policy,Company"
9549
- msgstr ""
9550
-
9551
- #: includes/widgets/htmega_animated_heading.php:77
9552
- msgid "Push"
9553
- msgstr ""
9554
-
9555
- #: includes/widgets/htmega_section_title.php:62
9556
- msgid "Put the highlighted word in between the span tags!"
9557
- msgstr ""
9558
-
9559
- #: admin/include/admin-setting.php:1049 includes/widgets/htmega_quforms.php:13
9560
- #: includes/widgets/htmega_quforms.php:59
9561
- msgid "QU Form"
9562
- msgstr ""
9563
-
9564
- #: includes/widgets/htmega_wc_add_to_cart.php:83
9565
- msgid "Quantity"
9566
- msgstr ""
9567
-
9568
- #: includes/widgets/htmega_wc_element_pages.php:535
9569
- msgid "Quantity Input Box"
9570
- msgstr ""
9571
-
9572
- #: extensions/ht-builder/widgets/bl_post_archive.php:150
9573
- msgid "Query Settings"
9574
- msgstr ""
9575
-
9576
- #: includes/recommended-plugins/recommended-plugins.php:73
9577
- msgid "QuickSwish"
9578
- msgstr ""
9579
-
9580
- #: includes/widgets/htmega_blockquote.php:327
9581
- msgid "Quote By"
9582
- msgstr ""
9583
-
9584
- #: includes/widgets/htmega_blockquote.php:494
9585
- msgid "Quote Icon"
9586
- msgstr ""
9587
-
9588
- #: includes/widgets/htmega_blockquote.php:689
9589
- msgid "Quote Image"
9590
- msgstr ""
9591
-
9592
- #: includes/widgets/htmega_job_manager.php:102
9593
- #: includes/widgets/htmega_newsticker.php:262
9594
- #: includes/widgets/htmega_postgrid.php:153
9595
- #: includes/widgets/htmega_post_grid_tab.php:160
9596
- #: includes/widgets/htmega_post_slider.php:164
9597
- #: extensions/ht-builder/widgets/bl_post_archive.php:204
9598
- msgid "Random"
9599
- msgstr ""
9600
-
9601
- #: includes/widgets/htmega_testimonial_grid.php:682
9602
- msgid "Rating"
9603
- msgstr ""
9604
-
9605
- #: admin/include/admin-setting.php:1183
9606
- msgid "Rating icon"
9607
- msgstr ""
9608
-
9609
- #: includes/widgets/htmega_testimonial_grid.php:689
9610
- msgid "Rating On Right"
9611
- msgstr ""
9612
-
9613
- #: includes/widgets/htmega_image_grid.php:142
9614
- #: includes/widgets/htmega_image_grid.php:171
9615
- #: includes/widgets/htmega_image_masonry.php:131
9616
- #: includes/widgets/htmega_image_masonry.php:160
9617
- #: includes/widgets/htmega_post_grid_tab.php:233
9618
- #: includes/widgets/htmega_post_grid_tab.php:245
9619
- #: includes/widgets/htmega_post_grid_tab.php:246
9620
- #: includes/widgets/htmega_post_grid_tab.php:829
9621
- #: includes/widgets/htmega_post_slider.php:222
9622
- #: includes/widgets/htmega_post_slider.php:234
9623
- #: includes/widgets/htmega_post_slider.php:235
9624
- #: includes/widgets/htmega_post_slider.php:1257
9625
- #: includes/widgets/htmega_service.php:140
9626
- #: extensions/ht-builder/widgets/bl_post_archive.php:700
9627
- msgid "Read More"
9628
- msgstr ""
9629
-
9630
- #: extensions/ht-builder/widgets/bl_post_archive.php:73
9631
- #: extensions/ht-builder/widgets/bl_post_archive.php:1084
9632
- msgid "Read more"
9633
- msgstr ""
9634
-
9635
- #: includes/widgets/htmega_image_grid.php:443
9636
- #: includes/widgets/htmega_image_masonry.php:439
9637
- msgid "Read More Button"
9638
- msgstr ""
9639
-
9640
- #: extensions/ht-builder/widgets/bl_post_archive.php:71
9641
- msgid "Read More Button Text"
9642
- msgstr ""
9643
-
9644
- #: includes/widgets/htmega_post_grid_tab.php:243
9645
- #: includes/widgets/htmega_post_slider.php:232
9646
- msgid "Read More button text"
9647
- msgstr ""
9648
-
9649
- #: includes/widgets/htmega_service.php:318
9650
- msgid "Read More Color"
9651
- msgstr ""
9652
-
9653
- #: includes/widgets/htmega_image_grid.php:149
9654
- #: includes/widgets/htmega_image_masonry.php:138
9655
- msgid "Read More Link"
9656
- msgstr ""
9657
-
9658
- #: includes/widgets/htmega_image_grid.php:140
9659
- #: includes/widgets/htmega_image_masonry.php:129
9660
- msgid "Read More Text"
9661
- msgstr ""
9662
-
9663
- #: includes/widgets/htmega_custom_event.php:95
9664
- msgid "Read More."
9665
- msgstr ""
9666
-
9667
- #: extensions/wc-sales-notification/admin/setting.php:69
9668
- msgid "Real"
9669
- msgstr ""
9670
-
9671
- #: includes/recommended-plugins/class.recommended-plugins.php:71
9672
- msgid "Recommendations"
9673
- msgstr ""
9674
-
9675
- #: includes/recommended-plugins/recommended-plugins.php:28
9676
- msgid "Recommended Plugins"
9677
- msgstr ""
9678
-
9679
- #: includes/widgets/htmega_socialshere.php:75
9680
- msgid "Reddit"
9681
- msgstr ""
9682
-
9683
- #: includes/widgets/htmega_user_login_form.php:260
9684
- msgid "Redirect page after Login"
9685
- msgstr ""
9686
-
9687
- #: includes/widgets/htmega_user_login_form.php:324
9688
- #: includes/widgets/htmega_user_login_form.php:337
9689
- #: includes/widgets/htmega_user_login_form.php:1654
9690
- msgid "Register"
9691
- msgstr ""
9692
-
9693
- #: includes/widgets/htmega_user_login_form.php:1280
9694
- msgid "Register Button"
9695
- msgstr ""
9696
-
9697
- #: includes/widgets/htmega_user_login_form.php:117
9698
- msgid "Register Heading Login"
9699
- msgstr ""
9700
-
9701
- #: includes/widgets/htmega_user_login_form.php:335
9702
- msgid "Register Link Text"
9703
- msgstr ""
9704
-
9705
- #: admin/include/admin-setting.php:878
9706
- msgid "Related Post"
9707
- msgstr ""
9708
-
9709
- #: admin/include/admin-setting.php:877
9710
- msgid "Related Post <span>( Pro )</span>"
9711
- msgstr ""
9712
-
9713
- #: includes/widgets/htmega_imagemarker.php:452
9714
- msgid ""
9715
- "Reload the editor right after enabling this option. Example: Enable/Disable "
9716
- "this option > Click UPDATE > Then Reload the editor page."
9717
- msgstr ""
9718
-
9719
- #: includes/widgets/htmega_user_login_form.php:312
9720
- #: includes/widgets/htmega_user_login_form.php:1634
9721
- msgid "Remember Me"
9722
- msgstr ""
9723
-
9724
- #: includes/widgets/htmega_user_login_form.php:992
9725
- msgid "Remember Me Checkbox"
9726
- msgstr ""
9727
-
9728
- #: admin/include/admin-setting.php:615
9729
- msgid "Remote Template"
9730
- msgstr ""
9731
-
9732
- #: includes/widgets/htmega_socialshere.php:86
9733
- msgid "Renren"
9734
- msgstr ""
9735
-
9736
- #: includes/widgets/htmega_videoplayer.php:186
9737
- msgid "Repeat Video"
9738
- msgstr ""
9739
-
9740
- #: includes/widgets/htmega_bbpress.php:60
9741
- msgid "Reply Form"
9742
- msgstr ""
9743
-
9744
- #: includes/widgets/htmega_gravity_forms.php:280
9745
- #: includes/widgets/htmega_wc_element_pages.php:679
9746
- msgid "Required Color"
9747
- msgstr ""
9748
-
9749
- #: includes/widgets/htmega_wpforms.php:453
9750
- msgid "Required Label Style"
9751
- msgstr ""
9752
-
9753
- #: includes/widgets/htmega_caldera_form.php:102
9754
- #: includes/widgets/htmega_ninja_form.php:366
9755
- #: includes/widgets/htmega_quforms.php:131
9756
- msgid "Required Symbol Color"
9757
- msgstr ""
9758
-
9759
- #: admin/include/admin-setting.php:1170
9760
- msgid "Responsive, supports all major devices"
9761
- msgstr ""
9762
-
9763
- #: includes/widgets/htmega_image_comparison.php:390
9764
- msgid "Reveal"
9765
- msgstr ""
9766
-
9767
- #: admin/include/admin-setting.php:1069
9768
- #: includes/widgets/htmega_revolution_slider.php:13
9769
- #: includes/widgets/htmega_revolution_slider.php:53
9770
- msgid "Revolution Slider"
9771
- msgstr ""
9772
-
9773
- #: includes/widgets/htmega_accordion.php:575
9774
- #: includes/widgets/htmega_accordion.php:766
9775
- #: includes/widgets/htmega_accordion.php:924
9776
- #: includes/widgets/htmega_accordion.php:1322
9777
- #: includes/widgets/htmega_accordion.php:1326
9778
- #: includes/widgets/htmega_accordion.php:1440
9779
- #: includes/widgets/htmega_add_banner.php:376
9780
- #: includes/widgets/htmega_blockquote.php:191
9781
- #: includes/widgets/htmega_buddy_press.php:262
9782
- #: includes/widgets/htmega_business_hours.php:399
9783
- #: includes/widgets/htmega_button.php:119
9784
- #: includes/widgets/htmega_button.php:169
9785
- #: includes/widgets/htmega_caldera_form.php:80
9786
- #: includes/widgets/htmega_caldera_form.php:355
9787
- #: includes/widgets/htmega_call_to_action.php:204
9788
- #: includes/widgets/htmega_call_to_action.php:298
9789
- #: includes/widgets/htmega_call_to_action.php:338
9790
- #: includes/widgets/htmega_carousel.php:845
9791
- #: includes/widgets/htmega_contact_form_seven.php:125
9792
- #: includes/widgets/htmega_countdown.php:619
9793
- #: includes/widgets/htmega_countdown.php:651
9794
- #: includes/widgets/htmega_counter.php:296
9795
- #: includes/widgets/htmega_counter.php:329
9796
- #: includes/widgets/htmega_counter.php:435
9797
- #: includes/widgets/htmega_counter.php:561
9798
- #: includes/widgets/htmega_data_table.php:647
9799
- #: includes/widgets/htmega_data_table.php:766
9800
- #: includes/widgets/htmega_double_button.php:161
9801
- #: includes/widgets/htmega_double_button.php:248
9802
- #: includes/widgets/htmega_double_button.php:333
9803
- #: includes/widgets/htmega_dropcaps.php:92
9804
- #: includes/widgets/htmega_dropcaps.php:96
9805
- #: includes/widgets/htmega_easy_digital_download.php:326
9806
- #: includes/widgets/htmega_easy_digital_download.php:694
9807
- #: includes/widgets/htmega_errorcontent.php:257
9808
- #: includes/widgets/htmega_gravity_forms.php:157
9809
- #: includes/widgets/htmega_gravity_forms.php:213
9810
- #: includes/widgets/htmega_gravity_forms.php:247
9811
- #: includes/widgets/htmega_gravity_forms.php:552
9812
- #: includes/widgets/htmega_gravity_forms.php:783
9813
- #: includes/widgets/htmega_imagemarker.php:207
9814
- #: includes/widgets/htmega_imagemarker.php:718
9815
- #: includes/widgets/htmega_image_grid.php:291
9816
- #: includes/widgets/htmega_image_grid.php:388
9817
- #: includes/widgets/htmega_image_masonry.php:275
9818
- #: includes/widgets/htmega_image_masonry.php:372
9819
- #: includes/widgets/htmega_inlinemenu.php:129
9820
- #: includes/widgets/htmega_instagram.php:1492
9821
- #: includes/widgets/htmega_job_manager.php:160
9822
- #: includes/widgets/htmega_lightbox.php:204
9823
- #: includes/widgets/htmega_lightbox.php:317
9824
- #: includes/widgets/htmega_mailchimp_wp.php:137
9825
- #: includes/widgets/htmega_modal.php:182 includes/widgets/htmega_modal.php:358
9826
- #: includes/widgets/htmega_modal.php:1013
9827
- #: includes/widgets/htmega_newsticker.php:468
9828
- #: includes/widgets/htmega_ninja_form.php:196
9829
- #: includes/widgets/htmega_ninja_form.php:298
9830
- #: includes/widgets/htmega_ninja_form.php:332
9831
- #: includes/widgets/htmega_ninja_form.php:619
9832
- #: includes/widgets/htmega_ninja_form.php:830
9833
- #: includes/widgets/htmega_ninja_form.php:1042
9834
- #: includes/widgets/htmega_notify.php:290
9835
- #: includes/widgets/htmega_notify.php:570
9836
- #: includes/widgets/htmega_notify.php:836
9837
- #: includes/widgets/htmega_offcanvas.php:104
9838
- #: includes/widgets/htmega_offcanvas.php:208
9839
- #: includes/widgets/htmega_offcanvas.php:291
9840
- #: includes/widgets/htmega_offcanvas.php:383
9841
- #: includes/widgets/htmega_panel_slider.php:611
9842
- #: includes/widgets/htmega_popover.php:194
9843
- #: includes/widgets/htmega_popover.php:273
9844
- #: includes/widgets/htmega_popover.php:669
9845
- #: includes/widgets/htmega_popover.php:773
9846
- #: includes/widgets/htmega_postgrid.php:301
9847
- #: includes/widgets/htmega_postgrid.php:525
9848
- #: includes/widgets/htmega_postgrid.php:638
9849
- #: includes/widgets/htmega_post_grid_tab.php:409
9850
- #: includes/widgets/htmega_post_grid_tab.php:503
9851
- #: includes/widgets/htmega_post_grid_tab.php:590
9852
- #: includes/widgets/htmega_post_grid_tab.php:813
9853
- #: includes/widgets/htmega_post_slider.php:844
9854
- #: includes/widgets/htmega_post_slider.php:938
9855
- #: includes/widgets/htmega_post_slider.php:1025
9856
- #: includes/widgets/htmega_post_slider.php:1241
9857
- #: includes/widgets/htmega_pricing_list_view.php:481
9858
- #: includes/widgets/htmega_pricing_list_view.php:508
9859
- #: includes/widgets/htmega_pricing_list_view.php:1136
9860
- #: includes/widgets/htmega_pricing_list_view.php:1193
9861
- #: includes/widgets/htmega_quforms.php:98
9862
- #: includes/widgets/htmega_quforms.php:218
9863
- #: includes/widgets/htmega_quforms.php:339
9864
- #: includes/widgets/htmega_quforms.php:559
9865
- #: includes/widgets/htmega_quforms.php:777
9866
- #: includes/widgets/htmega_search.php:164
9867
- #: includes/widgets/htmega_section_title.php:423
9868
- #: includes/widgets/htmega_service.php:249
9869
- #: includes/widgets/htmega_service.php:433
9870
- #: includes/widgets/htmega_service.php:538
9871
- #: includes/widgets/htmega_service.php:727
9872
- #: includes/widgets/htmega_service.php:989
9873
- #: includes/widgets/htmega_singlepost.php:229
9874
- #: includes/widgets/htmega_singlepost.php:325
9875
- #: includes/widgets/htmega_singlepost.php:432
9876
- #: includes/widgets/htmega_slider_thumb_gallery.php:53
9877
- #: includes/widgets/htmega_socialshere.php:382
9878
- #: includes/widgets/htmega_special_day_banner.php:50
9879
- #: includes/widgets/htmega_special_day_banner.php:273
9880
- #: includes/widgets/htmega_tablepress.php:221
9881
- #: includes/widgets/htmega_tablepress.php:378
9882
- #: includes/widgets/htmega_tabs.php:521
9883
- #: includes/widgets/htmega_teammember.php:106
9884
- #: includes/widgets/htmega_teammember.php:624
9885
- #: includes/widgets/htmega_teammember.php:753
9886
- #: includes/widgets/htmega_teammember.php:843
9887
- #: includes/widgets/htmega_teammember.php:934
9888
- #: includes/widgets/htmega_teammember.php:1001
9889
- #: includes/widgets/htmega_testimonial_grid.php:561
9890
- #: includes/widgets/htmega_toggle.php:204
9891
- #: includes/widgets/htmega_tooltip.php:182
9892
- #: includes/widgets/htmega_tooltip.php:249
9893
- #: includes/widgets/htmega_user_login_form.php:157
9894
- #: includes/widgets/htmega_user_login_form.php:379
9895
- #: includes/widgets/htmega_user_login_form.php:579
9896
- #: includes/widgets/htmega_videoplayer.php:304
9897
- #: includes/widgets/htmega_wc_categories.php:388
9898
- #: includes/widgets/htmega_wpforms.php:188
9899
- #: includes/widgets/htmega_wpforms.php:290
9900
- #: includes/widgets/htmega_wpforms.php:325
9901
- #: includes/widgets/htmega_wpforms.php:622
9902
- #: includes/widgets/htmega_wpforms.php:841
9903
- #: includes/widgets/htmega_wpforms.php:1069
9904
- #: extensions/ht-builder/widgets/bl_nav_menu.php:123
9905
- #: extensions/ht-builder/widgets/bl_nav_menu.php:500
9906
- #: extensions/ht-builder/widgets/bl_page_title.php:145
9907
- #: extensions/ht-builder/widgets/bl_post_archive.php:310
9908
- #: extensions/ht-builder/widgets/bl_post_archive.php:391
9909
- #: extensions/ht-builder/widgets/bl_post_archive.php:498
9910
- #: extensions/ht-builder/widgets/bl_post_archive.php:604
9911
- #: extensions/ht-builder/widgets/bl_post_archive.php:684
9912
- #: extensions/ht-builder/widgets/bl_post_archive_title.php:147
9913
- #: extensions/ht-builder/widgets/bl_post_author_info.php:116
9914
- #: extensions/ht-builder/widgets/bl_post_content.php:80
9915
- #: extensions/ht-builder/widgets/bl_post_excerpt.php:80
9916
- #: extensions/ht-builder/widgets/bl_post_featured_image.php:79
9917
- #: extensions/ht-builder/widgets/bl_post_title.php:113
9918
- #: extensions/ht-builder/widgets/bl_site_logo.php:167
9919
- #: extensions/ht-builder/widgets/bl_site_title.php:147
9920
- #: extensions/ht-menu/widgets/inline-mega-menu.php:174
9921
- #: extensions/ht-menu/widgets/verticle-mega-menu.php:175
9922
- msgid "Right"
9923
- msgstr ""
9924
-
9925
- #: includes/widgets/htmega_post_slider.php:1461
9926
- msgid "Right Arrow position"
9927
- msgstr ""
9928
-
9929
- #: includes/widgets/htmega_post_slider.php:1509
9930
- msgid "Right Arrow position vertical"
9931
- msgstr ""
9932
-
9933
- #: includes/widgets/htmega_blockquote.php:161
9934
- msgid "Right Bottom"
9935
- msgstr ""
9936
-
9937
- #: includes/widgets/htmega_blockquote.php:160
9938
- msgid "Right Center"
9939
- msgstr ""
9940
-
9941
- #: includes/widgets/htmega_blockquote.php:159
9942
- msgid "Right Top"
9943
- msgstr ""
9944
-
9945
- #: includes/widgets/htmega_section_title.php:337
9946
- msgid "Rotate"
9947
- msgstr ""
9948
-
9949
- #: includes/widgets/htmega_animated_heading.php:78
9950
- msgid "Rotate Style One"
9951
- msgstr ""
9952
-
9953
- #: includes/widgets/htmega_animated_heading.php:80
9954
- msgid "Rotate Style Three"
9955
- msgstr ""
9956
-
9957
- #: includes/widgets/htmega_animated_heading.php:79
9958
- msgid "Rotate Style Two"
9959
- msgstr ""
9960
-
9961
- #: includes/widgets/htmega_data_table.php:241
9962
- #: includes/widgets/htmega_pricing_list_view.php:549
9963
- #: includes/widgets/htmega_user_login_form.php:400
9964
- msgid "Row"
9965
- msgstr ""
9966
-
9967
- #: includes/widgets/htmega_data_table.php:451
9968
- #: includes/widgets/htmega_pricing_list_view.php:1088
9969
- msgid "row"
9970
- msgstr ""
9971
-
9972
- #: includes/widgets/htmega_booked_calender.php:950
9973
- msgid "Row Border Color"
9974
- msgstr ""
9975
-
9976
- #: includes/widgets/htmega_booked_calender.php:961
9977
- msgid "Row Border Width"
9978
- msgstr ""
9979
-
9980
- #: includes/widgets/htmega_gallery_justify.php:66
9981
- #: includes/widgets/htmega_newsticker.php:92
9982
- msgid "Row Height"
9983
- msgstr ""
9984
-
9985
- #: includes/widgets/htmega_user_login_form.php:408
9986
- msgid "Row Reverse"
9987
- msgstr ""
9988
-
9989
- #: includes/widgets/htmega_pricing_list_view.php:1072
9990
- msgid "Row Starts"
9991
- msgstr ""
9992
-
9993
- #: extensions/wc-sales-notification/admin/setting.php:78
9994
- msgid ""
9995
- "Sale Notification Position on frontend.( Top Left, Top Right, Bottom Right "
9996
- "option are pro features ) <span>( Pro )</span>"
9997
- msgstr ""
9998
-
9999
- #: extensions/wc-sales-notification/admin/setting.php:48
10000
- msgid "Sale Notification Settings"
10001
- msgstr ""
10002
-
10003
- #: admin/include/admin-setting.php:686
10004
- #: extensions/wc-sales-notification/admin/setting.php:33
10005
- #: extensions/wc-sales-notification/admin/setting.php:34
10006
- msgid "Sales Notification"
10007
- msgstr ""
10008
-
10009
- #: admin/include/admin-setting.php:1256 admin/include/admin-setting.php:1281
10010
- msgid "Sales upto date option"
10011
- msgstr ""
10012
-
10013
- #: includes/widgets/htmega_teammember.php:156
10014
- msgid "Sams Roy"
10015
- msgstr ""
10016
-
10017
- #: includes/widgets/htmega_business_hours.php:85
10018
- #: includes/widgets/htmega_business_hours.php:163
10019
- msgid "Saturday"
10020
- msgstr ""
10021
-
10022
- #: extensions/ht-menu/classes/class.mega-menu.php:124
10023
- #: extensions/ht-menu/classes/class.mega-menu.php:244
10024
- msgid "Save"
10025
- msgstr ""
10026
-
10027
- #: includes/widgets/htmega_pricing_list_view.php:1554
10028
- msgid "Save Typography"
10029
- msgstr ""
10030
-
10031
- #: extensions/ht-menu/classes/class.mega-menu.php:245
10032
- msgid "Saving…"
10033
- msgstr ""
10034
-
10035
- #: includes/widgets/htmega_animated_heading.php:76
10036
- #: includes/widgets/htmega_carousel.php:481
10037
- msgid "Scale"
10038
- msgstr ""
10039
-
10040
- #: admin/include/admin-setting.php:431
10041
- #: includes/widgets/htmega_scroll_image.php:13
10042
- #: includes/widgets/htmega_scroll_image.php:43
10043
- msgid "Scroll Image"
10044
- msgstr ""
10045
-
10046
- #: includes/widgets/htmega_scroll_image.php:165
10047
- msgid "Scroll Image Style"
10048
- msgstr ""
10049
-
10050
- #: admin/include/admin-setting.php:439
10051
- #: includes/widgets/htmega_scroll_navigation.php:13
10052
- #: includes/widgets/htmega_scroll_navigation.php:51
10053
- msgid "Scroll Navigation"
10054
- msgstr ""
10055
-
10056
- #: admin/include/admin-setting.php:447 includes/widgets/htmega_search.php:14
10057
- #: includes/widgets/htmega_search.php:35 includes/widgets/htmega_search.php:60
10058
- #: includes/widgets/htmega_search.php:61 includes/widgets/htmega_search.php:92
10059
- #: includes/widgets/htmega_search.php:93
10060
- #: includes/widgets/htmega_search.php:1024
10061
- #: extensions/ht-builder/widgets/bl_post_search_form.php:88
10062
- #: extensions/ht-builder/widgets/bl_post_search_form.php:304
10063
- #: admin/include/templates/library/templates.php:95
10064
- msgid "Search"
10065
- msgstr ""
10066
-
10067
- #: extensions/ht-builder/widgets/bl_post_search_form.php:47
10068
- msgid "Search ..."
10069
- msgstr ""
10070
-
10071
- #: includes/widgets/htmega_search.php:145
10072
- msgid "Search Box Style"
10073
- msgstr ""
10074
-
10075
- #: includes/widgets/htmega_search.php:90
10076
- msgid "Search Button Text"
10077
- msgstr ""
10078
-
10079
- #: extensions/ht-builder/widgets/bl_post_search_form.php:38
10080
- msgid "Search Form"
10081
- msgstr ""
10082
-
10083
- #: includes/widgets/htmega_tablepress.php:97
10084
- msgid "Search Hide"
10085
- msgstr ""
10086
-
10087
- #: extensions/ht-builder/admin/setting.php:100
10088
- msgid "Search Page Template."
10089
- msgstr ""
10090
-
10091
- #: admin/include/templates/library/templates.php:94
10092
- msgid "Search Templates:"
10093
- msgstr ""
10094
-
10095
- #: admin/include/templates_list.php:47
10096
- msgid "Search.."
10097
- msgstr ""
10098
-
10099
- #: includes/widgets/htmega_data_table.php:95
10100
- msgid "Searching"
10101
- msgstr ""
10102
-
10103
- #: includes/widgets/htmega_button.php:267
10104
- #: includes/widgets/htmega_button.php:382
10105
- msgid "Second Background"
10106
- msgstr ""
10107
-
10108
- #: includes/widgets/htmega_call_to_action.php:223
10109
- #: includes/widgets/htmega_call_to_action.php:883
10110
- msgid "Secondary Button"
10111
- msgstr ""
10112
-
10113
- #: includes/widgets/htmega_call_to_action.php:230
10114
- msgid "Secondary Button Text"
10115
- msgstr ""
10116
-
10117
- #: includes/widgets/htmega_countdown.php:162
10118
- #: includes/widgets/htmega_countdown.php:244
10119
- #: includes/widgets/htmega_countdown.php:246
10120
- msgid "Seconds"
10121
- msgstr ""
10122
-
10123
- #: includes/widgets/htmega_section_title.php:369
10124
- msgid "Section style"
10125
- msgstr ""
10126
-
10127
- #: admin/include/admin-setting.php:455
10128
- #: includes/widgets/htmega_section_title.php:13
10129
- #: includes/widgets/htmega_section_title.php:34
10130
- msgid "Section Title"
10131
- msgstr ""
10132
-
10133
- #: includes/helper-function.php:733
10134
- #: includes/widgets/htmega_wc_element_pages.php:57
10135
- msgid "Select"
10136
- msgstr ""
10137
-
10138
- #: admin/include/admin-setting.php:653
10139
- msgid "Select 404 Page."
10140
- msgstr ""
10141
-
10142
- #: includes/widgets/htmega_wc_categories.php:77
10143
- msgid "Select Category Type"
10144
- msgstr ""
10145
-
10146
- #: includes/widgets/htmega_accordion.php:77
10147
- #: includes/widgets/htmega_accordion.php:217
10148
- #: includes/widgets/htmega_blockquote.php:41
10149
- #: includes/widgets/htmega_modal.php:51
10150
- #: includes/widgets/htmega_switcher.php:102
10151
- #: includes/widgets/htmega_switcher.php:194 includes/widgets/htmega_tabs.php:86
10152
- #: includes/widgets/htmega_toggle.php:79
10153
- msgid "Select Content Source"
10154
- msgstr ""
10155
-
10156
- #: extensions/wc-sales-notification/admin/setting.php:65
10157
- msgid "Select Content Type <span>( Pro )</span>"
10158
- msgstr ""
10159
-
10160
- #: includes/widgets/htmega_download_monitor.php:40
10161
- msgid "Select Download File"
10162
- msgstr ""
10163
-
10164
- #: includes/widgets/htmega_countdown.php:46
10165
- msgid "Select Event"
10166
- msgstr ""
10167
-
10168
- #: includes/widgets/htmega_instragram_feed.php:41
10169
- msgid "Select Feed"
10170
- msgstr ""
10171
-
10172
- #: includes/widgets/htmega_download_monitor.php:61
10173
- msgid "Select File"
10174
- msgstr ""
10175
-
10176
- #: includes/helper-function.php:346 includes/widgets/htmega_caldera_form.php:48
10177
- #: includes/widgets/htmega_gravity_forms.php:41
10178
- #: includes/widgets/htmega_gravity_forms.php:66
10179
- #: includes/widgets/htmega_ninja_form.php:43
10180
- #: includes/widgets/htmega_ninja_form.php:66
10181
- #: includes/widgets/htmega_quforms.php:42
10182
- #: includes/widgets/htmega_quforms.php:66
10183
- #: includes/widgets/htmega_wpforms.php:63
10184
- msgid "Select Form"
10185
- msgstr ""
10186
-
10187
- #: includes/widgets/htmega_job_manager.php:193
10188
- #: includes/widgets/htmega_job_manager.php:200
10189
- msgid "Select Job"
10190
- msgstr ""
10191
-
10192
- #: extensions/ht-menu/widgets/inline-mega-menu.php:37
10193
- #: extensions/ht-menu/widgets/verticle-mega-menu.php:38
10194
- msgid "Select Menu"
10195
- msgstr ""
10196
-
10197
- #: includes/widgets/htmega_wc_add_to_cart.php:55
10198
- msgid "Select Post"
10199
- msgstr ""
10200
-
10201
- #: includes/helper-function.php:140 includes/widgets/htmega_offcanvas.php:84
10202
- msgid "Select Sidebar"
10203
- msgstr ""
10204
-
10205
- #: includes/widgets/htmega_layer_slider.php:63
10206
- #: includes/widgets/htmega_revolution_slider.php:34
10207
- #: includes/widgets/htmega_revolution_slider.php:60
10208
- msgid "Select Slider"
10209
- msgstr ""
10210
-
10211
- #: includes/widgets/htmega_offcanvas.php:56
10212
- msgid "Select Source"
10213
- msgstr ""
10214
-
10215
- #: includes/widgets/htmega_tablepress.php:32
10216
- #: includes/widgets/htmega_tablepress.php:55
10217
- msgid "Select Table"
10218
- msgstr ""
10219
-
10220
- #: includes/helper-function.php:91 includes/widgets/htmega_offcanvas.php:70
10221
- #: extensions/ht-menu/menu/helper_function.php:19
10222
- msgid "Select Template"
10223
- msgstr ""
10224
-
10225
- #: includes/widgets/htmega_template_selector.php:49
10226
- msgid "Select Your template"
10227
- msgstr ""
10228
-
10229
- #: includes/widgets/htmega_notify.php:101
10230
- #: includes/widgets/htmega_videoplayer.php:52
10231
- msgid "Self"
10232
- msgstr ""
10233
-
10234
- #: includes/widgets/htmega_verticle_time_line.php:73
10235
- #: includes/widgets/htmega_verticle_time_line.php:101
10236
- msgid "Sep<br/>2018"
10237
- msgstr ""
10238
-
10239
- #: includes/widgets/htmega_tabs.php:373
10240
- msgid "Separator"
10241
- msgstr ""
10242
-
10243
- #: includes/widgets/htmega_tabs.php:361
10244
- msgid "Separator Area"
10245
- msgstr ""
10246
-
10247
- #: includes/widgets/htmega_blockquote.php:415
10248
- #: includes/widgets/htmega_tabs.php:387
10249
- msgid "Separator Color"
10250
- msgstr ""
10251
-
10252
- #: includes/widgets/htmega_blockquote.php:460
10253
- #: includes/widgets/htmega_tabs.php:403
10254
- msgid "Separator Height"
10255
- msgstr ""
10256
-
10257
- #: includes/widgets/htmega_blockquote.php:400
10258
- #: includes/widgets/htmega_countdown.php:716
10259
- #: includes/widgets/htmega_tabs.php:462
10260
- msgid "Separator Position"
10261
- msgstr ""
10262
-
10263
- #: includes/widgets/htmega_section_title.php:480
10264
- msgid "Separator Specing"
10265
- msgstr ""
10266
-
10267
- #: includes/widgets/htmega_blockquote.php:430
10268
- #: includes/widgets/htmega_countdown.php:882
10269
- #: includes/widgets/htmega_tabs.php:434
10270
- msgid "Separator Width"
10271
- msgstr ""
10272
-
10273
- #: includes/widgets/htmega_working_process.php:474
10274
- msgid "Seperator Height"
10275
- msgstr ""
10276
-
10277
- #: includes/widgets/htmega_working_process.php:499
10278
- msgid "Seperator Width"
10279
- msgstr ""
10280
-
10281
- #: includes/widgets/htmega_booked_calender.php:117
10282
- msgid "September"
10283
- msgstr ""
10284
-
10285
- #: admin/include/admin-setting.php:463 includes/widgets/htmega_service.php:15
10286
- #: includes/widgets/htmega_service.php:36
10287
- msgid "Service"
10288
- msgstr ""
10289
-
10290
- #: includes/widgets/htmega_service.php:138
10291
- msgid "Service Button text"
10292
- msgstr ""
10293
-
10294
- #: includes/widgets/htmega_service.php:129
10295
- msgid "Service description"
10296
- msgstr ""
10297
-
10298
- #: includes/widgets/htmega_service.php:69
10299
- msgid "Service Icon Type"
10300
- msgstr ""
10301
-
10302
- #: includes/widgets/htmega_service.php:147
10303
- msgid "Service Link"
10304
- msgstr ""
10305
-
10306
- #: includes/widgets/htmega_service.php:60
10307
- msgid "Service Title"
10308
- msgstr ""
10309
-
10310
- #: includes/widgets/htmega_service.php:62
10311
- msgid "Services Title"
10312
- msgstr ""
10313
-
10314
- #: includes/class.htmega.php:187 admin/include/admin-setting.php:47
10315
- #: admin/include/admin-setting.php:48
10316
- #: extensions/ht-builder/widgets/bl_post_archive.php:36
10317
- #: extensions/ht-menu/menu/templates.php:40
10318
- msgid "Settings"
10319
- msgstr ""
10320
-
10321
- #: includes/widgets/htmega_button.php:486
10322
- msgid "Shadow 1"
10323
- msgstr ""
10324
-
10325
- #: includes/widgets/htmega_button.php:487
10326
- msgid "Shadow 2"
10327
- msgstr ""
10328
-
10329
- #: includes/widgets/htmega_newsticker.php:528
10330
- msgid "Shape Color"
10331
- msgstr ""
10332
-
10333
- #: includes/widgets/htmega_buddy_press.php:115
10334
- #: includes/widgets/htmega_buddy_press.php:128
10335
- #: includes/widgets/htmega_buddy_press.php:143
10336
- #: includes/widgets/htmega_buddy_press.php:158
10337
- #: includes/widgets/htmega_data_table.php:60
10338
- #: includes/widgets/htmega_data_table.php:85
10339
- #: includes/widgets/htmega_data_table.php:97
10340
- #: includes/widgets/htmega_data_table.php:109
10341
- #: includes/widgets/htmega_data_table.php:121
10342
- #: includes/widgets/htmega_double_button.php:80
10343
- #: includes/widgets/htmega_gravity_forms.php:79
10344
- #: includes/widgets/htmega_gravity_forms.php:91
10345
- #: includes/widgets/htmega_instagram.php:177
10346
- #: includes/widgets/htmega_instagram.php:189
10347
- #: includes/widgets/htmega_instagram.php:279
10348
- #: includes/widgets/htmega_newsticker.php:309
10349
- #: includes/widgets/htmega_popover.php:129
10350
- #: includes/widgets/htmega_popover.php:206
10351
- #: includes/widgets/htmega_scroll_image.php:122
10352
- #: includes/widgets/htmega_socialshere.php:358
10353
- #: includes/widgets/htmega_tooltip.php:129
10354
- #: includes/widgets/htmega_twitter_feed.php:146
10355
- #: includes/widgets/htmega_twitter_feed.php:158
10356
- #: includes/widgets/htmega_twitter_feed.php:170
10357
- #: includes/widgets/htmega_twitter_feed.php:182
10358
- #: includes/widgets/htmega_twitter_feed.php:194
10359
- #: includes/widgets/htmega_twitter_feed.php:208
10360
- #: includes/widgets/htmega_user_login_form.php:79
10361
- #: includes/widgets/htmega_user_login_form.php:187
10362
- #: includes/widgets/htmega_user_login_form.php:198
10363
- #: includes/widgets/htmega_user_login_form.php:289
10364
- #: includes/widgets/htmega_user_login_form.php:316
10365
- #: includes/widgets/htmega_user_login_form.php:328
10366
- #: includes/widgets/htmega_wc_add_to_cart.php:76
10367
- #: includes/widgets/htmega_wpforms.php:77
10368
- #: includes/widgets/htmega_wpforms.php:89
10369
- #: extensions/ht-builder/widgets/bl_post_archive.php:101
10370
- #: extensions/ht-builder/widgets/bl_post_archive.php:113
10371
- #: extensions/ht-builder/widgets/bl_post_archive.php:125
10372
- #: extensions/ht-builder/widgets/bl_post_archive.php:137
10373
- #: extensions/ht-builder/widgets/bl_post_author_info.php:47
10374
- #: extensions/ht-builder/widgets/bl_post_author_info.php:72
10375
- #: extensions/ht-builder/widgets/bl_post_author_info.php:84
10376
- msgid "Show"
10377
- msgstr ""
10378
-
10379
- #: includes/widgets/htmega_buddy_press.php:126
10380
- msgid "Show Active Time"
10381
- msgstr ""
10382
-
10383
- #: includes/widgets/htmega_easy_digital_download.php:140
10384
- #: includes/widgets/htmega_toggle.php:45 includes/widgets/htmega_toggle.php:46
10385
- #: includes/widgets/htmega_wc_categories.php:80
10386
- msgid "Show All"
10387
- msgstr ""
10388
-
10389
- #: includes/widgets/htmega_notify.php:143
10390
- msgid "Show Animation"
10391
- msgstr ""
10392
-
10393
- #: includes/widgets/htmega_twitter_feed.php:156
10394
- msgid "Show Author Image"
10395
- msgstr ""
10396
-
10397
- #: includes/widgets/htmega_twitter_feed.php:168
10398
- msgid "Show Author Name"
10399
- msgstr ""
10400
-
10401
- #: extensions/ht-builder/widgets/bl_post_author_info.php:70
10402
- msgid "Show Avatar Image"
10403
- msgstr ""
10404
-
10405
- #: includes/widgets/htmega_scroll_image.php:120
10406
- msgid "Show Badge"
10407
- msgstr ""
10408
-
10409
- #: extensions/ht-builder/widgets/bl_post_author_info.php:82
10410
- msgid "Show Biography"
10411
- msgstr ""
10412
-
10413
- #: includes/widgets/htmega_easy_digital_download.php:106
10414
- msgid "Show Buy Button"
10415
- msgstr ""
10416
-
10417
- #: includes/widgets/htmega_instagram.php:175
10418
- msgid "Show Caption"
10419
- msgstr ""
10420
-
10421
- #: extensions/ht-builder/widgets/bl_post_archive.php:111
10422
- msgid "Show Category"
10423
- msgstr ""
10424
-
10425
- #: includes/widgets/htmega_easy_digital_download.php:86
10426
- msgid "Show Content"
10427
- msgstr ""
10428
-
10429
- #: includes/widgets/htmega_videoplayer.php:198
10430
- msgid "Show Controller Button"
10431
- msgstr ""
10432
-
10433
- #: includes/widgets/htmega_gravity_forms.php:88
10434
- msgid "Show Description"
10435
- msgstr ""
10436
-
10437
- #: includes/widgets/htmega_download_monitor.php:96
10438
- msgid "Show Download Count"
10439
- msgstr ""
10440
-
10441
- #: includes/widgets/htmega_download_monitor.php:84
10442
- msgid "Show File Size"
10443
- msgstr ""
10444
-
10445
- #: includes/widgets/htmega_download_monitor.php:72
10446
- msgid "Show File Type"
10447
- msgstr ""
10448
-
10449
- #: includes/widgets/htmega_instagram.php:277
10450
- msgid "Show Follow Button"
10451
- msgstr ""
10452
-
10453
- #: includes/widgets/htmega_instragram_feed.php:93
10454
- msgid "Show Follow Text"
10455
- msgstr ""
10456
-
10457
- #: includes/widgets/htmega_buddy_press.php:156
10458
- msgid "Show Friend Count"
10459
- msgstr ""
10460
-
10461
- #: includes/widgets/htmega_gallery_justify.php:127
10462
- msgid "Show Gallery Title"
10463
- msgstr ""
10464
-
10465
- #: includes/widgets/htmega_instragram_feed.php:82
10466
- msgid "Show Header"
10467
- msgstr ""
10468
-
10469
- #: includes/widgets/htmega_user_login_form.php:77
10470
- msgid "Show Heading And Content"
10471
- msgstr ""
10472
-
10473
- #: includes/widgets/htmega_gallery_justify.php:139
10474
- msgid "Show Image Counter"
10475
- msgstr ""
10476
-
10477
- #: includes/widgets/htmega_notify.php:60
10478
- msgid "Show Info"
10479
- msgstr ""
10480
-
10481
- #: includes/widgets/htmega_instagram.php:187
10482
- msgid "Show Light Box"
10483
- msgstr ""
10484
-
10485
- #: includes/widgets/htmega_popover.php:127
10486
- #: includes/widgets/htmega_tooltip.php:127
10487
- msgid "Show Link"
10488
- msgstr ""
10489
-
10490
- #: includes/widgets/htmega_panel_slider.php:167
10491
- msgid "Show link on Image"
10492
- msgstr ""
10493
-
10494
- #: includes/widgets/htmega_panel_slider.php:156
10495
- msgid "Show link on Title"
10496
- msgstr ""
10497
-
10498
- #: includes/widgets/htmega_buddy_press.php:113
10499
- msgid "Show Meta Info"
10500
- msgstr ""
10501
-
10502
- #: includes/widgets/htmega_easy_digital_download.php:116
10503
- msgid "Show Pagination"
10504
- msgstr ""
10505
-
10506
- #: extensions/ht-builder/widgets/bl_post_archive.php:123
10507
- msgid "Show Post Meta"
10508
- msgstr ""
10509
-
10510
- #: includes/widgets/htmega_easy_digital_download.php:96
10511
- msgid "Show Price"
10512
- msgstr ""
10513
-
10514
- #: includes/widgets/htmega_wc_add_to_cart.php:73
10515
- msgid "Show Quantity"
10516
- msgstr ""
10517
-
10518
- #: extensions/ht-builder/widgets/bl_post_archive.php:135
10519
- msgid "Show Read More Button"
10520
- msgstr ""
10521
-
10522
- #: includes/widgets/htmega_buddy_press.php:141
10523
- msgid "Show Register Time"
10524
- msgstr ""
10525
-
10526
- #: includes/widgets/htmega_twitter_feed.php:192
10527
- msgid "Show Relative Time"
10528
- msgstr ""
10529
-
10530
- #: includes/widgets/htmega_data_table.php:58
10531
- msgid "Show Sorting Options"
10532
- msgstr ""
10533
-
10534
- #: includes/widgets/htmega_easy_digital_download.php:76
10535
- msgid "Show Thumbnail"
10536
- msgstr ""
10537
-
10538
- #: includes/widgets/htmega_twitter_feed.php:180
10539
- msgid "Show Time"
10540
- msgstr ""
10541
-
10542
- #: includes/widgets/htmega_twitter_feed.php:206
10543
- msgid "Show Time Icon"
10544
- msgstr ""
10545
-
10546
- #: includes/widgets/htmega_gravity_forms.php:76
10547
- #: extensions/ht-builder/widgets/bl_post_archive.php:99
10548
- #: extensions/ht-builder/widgets/bl_post_author_info.php:45
10549
- msgid "Show Title"
10550
- msgstr ""
10551
-
10552
- #: includes/widgets/htmega_twitter_feed.php:144
10553
- msgid "Show Twitter Meta"
10554
- msgstr ""
10555
-
10556
- #: includes/widgets/htmega_videoplayer.php:210
10557
- msgid "Show video source Logo"
10558
- msgstr ""
10559
-
10560
- #: includes/widgets/htmega_offcanvas.php:61
10561
- msgid "Sidebar"
10562
- msgstr ""
10563
-
10564
- #: includes/widgets/htmega_user_login_form.php:133
10565
- #: includes/widgets/htmega_user_login_form.php:134
10566
- msgid "Sign Up"
10567
- msgstr ""
10568
-
10569
- #: includes/widgets/htmega_scroll_navigation.php:218
10570
- msgid "Simulate Touch"
10571
- msgstr ""
10572
-
10573
- #: extensions/ht-builder/admin/setting.php:64
10574
- msgid "Single Blog Template."
10575
- msgstr ""
10576
-
10577
- #: includes/widgets/htmega_bbpress.php:56
10578
- msgid "Single Forum"
10579
- msgstr ""
10580
-
10581
- #: includes/widgets/htmega_easy_digital_download.php:225
10582
- #: includes/widgets/htmega_twitter_feed.php:543
10583
- msgid "Single Item"
10584
- msgstr ""
10585
-
10586
- #: admin/include/admin-setting.php:471
10587
- #: includes/widgets/htmega_singlepost.php:15
10588
- #: includes/widgets/htmega_singlepost.php:36
10589
- msgid "Single Post"
10590
- msgstr ""
10591
-
10592
- #: includes/widgets/htmega_wc_element_pages.php:59
10593
- msgid "Single Product Page"
10594
- msgstr ""
10595
-
10596
- #: includes/widgets/htmega_bbpress.php:61
10597
- msgid "Single Reply"
10598
- msgstr ""
10599
-
10600
- #: includes/widgets/htmega_bbpress.php:63
10601
- msgid "Single Tag"
10602
- msgstr ""
10603
-
10604
- #: includes/widgets/htmega_bbpress.php:59
10605
- msgid "Single Topic"
10606
- msgstr ""
10607
-
10608
- #: includes/widgets/htmega_bbpress.php:64
10609
- msgid "Single View"
10610
- msgstr ""
10611
-
10612
- #: includes/widgets/htmega_user_login_form.php:131
10613
- msgid "SingUp Text"
10614
- msgstr ""
10615
-
10616
- #: admin/include/admin-setting.php:814 admin/include/admin-setting.php:815
10617
- #: extensions/ht-builder/widgets/bl_site_logo.php:69
10618
- msgid "Site Logo"
10619
- msgstr ""
10620
-
10621
- #: admin/include/admin-setting.php:805 admin/include/admin-setting.php:806
10622
- #: extensions/ht-builder/widgets/bl_site_logo.php:41
10623
- #: extensions/ht-builder/widgets/bl_site_title.php:39
10624
- #: extensions/ht-builder/widgets/bl_site_title.php:60
10625
- #: extensions/ht-builder/widgets/bl_site_title.php:170
10626
- msgid "Site Title"
10627
- msgstr ""
10628
-
10629
- #: includes/widgets/htmega_image_grid.php:67
10630
- #: includes/widgets/htmega_image_masonry.php:84
10631
- #: includes/widgets/htmega_testimonial_grid.php:78
10632
- msgid "Six"
10633
- msgstr ""
10634
-
10635
- #: includes/widgets/htmega_counter.php:837
10636
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:181
10637
- msgid "Size"
10638
- msgstr ""
10639
-
10640
- #: includes/widgets/htmega_double_button.php:78
10641
- msgid "Skew Background"
10642
- msgstr ""
10643
-
10644
- #: includes/widgets/htmega_socialshere.php:88
10645
- msgid "Skype"
10646
- msgstr ""
10647
-
10648
- #: includes/widgets/htmega_animated_heading.php:73
10649
- msgid "Slide"
10650
- msgstr ""
10651
-
10652
- #: includes/widgets/htmega_carousel.php:112
10653
- #: includes/widgets/htmega_instagram.php:199
10654
- #: includes/widgets/htmega_panel_slider.php:178
10655
- #: includes/widgets/htmega_post_slider.php:276
10656
- #: includes/widgets/htmega_twitter_feed.php:217
10657
- msgid "Slider"
10658
- msgstr ""
10659
-
10660
- #: includes/widgets/htmega_carousel.php:152
10661
- #: includes/widgets/htmega_instagram.php:347
10662
- #: includes/widgets/htmega_panel_slider.php:252
10663
- #: includes/widgets/htmega_post_slider.php:316
10664
- #: includes/widgets/htmega_slider_thumb_gallery.php:157
10665
- #: includes/widgets/htmega_twitter_feed.php:274
10666
- msgid "Slider Arrow"
10667
- msgstr ""
10668
-
10669
- #: includes/widgets/htmega_instagram.php:449
10670
- #: includes/widgets/htmega_panel_slider.php:354
10671
- #: includes/widgets/htmega_post_slider.php:434
10672
- #: includes/widgets/htmega_slider_thumb_gallery.php:248
10673
- #: includes/widgets/htmega_twitter_feed.php:376
10674
- msgid "Slider auto play"
10675
- msgstr ""
10676
-
10677
- #: includes/widgets/htmega_carousel.php:254
10678
- msgid "Slider autoplay"
10679
- msgstr ""
10680
-
10681
- #: includes/widgets/htmega_scroll_navigation.php:126
10682
- msgid "Slider Direction"
10683
- msgstr ""
10684
-
10685
- #: includes/widgets/htmega_carousel.php:197
10686
- #: includes/widgets/htmega_instagram.php:392
10687
- #: includes/widgets/htmega_panel_slider.php:297
10688
- #: includes/widgets/htmega_post_slider.php:361
10689
- #: includes/widgets/htmega_slider_thumb_gallery.php:198
10690
- #: includes/widgets/htmega_twitter_feed.php:319
10691
- msgid "Slider dots"
10692
- msgstr ""
10693
-
10694
- #: includes/widgets/htmega_post_slider.php:614
10695
- msgid "Slider Image Max Height"
10696
- msgstr ""
10697
-
10698
- #: includes/widgets/htmega_post_slider.php:600
10699
- msgid "Slider Image Style"
10700
- msgstr ""
10701
-
10702
- #: includes/widgets/htmega_carousel.php:293
10703
- #: includes/widgets/htmega_carousel.php:335
10704
- #: includes/widgets/htmega_carousel.php:390
10705
- #: includes/widgets/htmega_instagram.php:488
10706
- #: includes/widgets/htmega_instagram.php:530
10707
- #: includes/widgets/htmega_instagram.php:585
10708
- #: includes/widgets/htmega_panel_slider.php:393
10709
- #: includes/widgets/htmega_panel_slider.php:435
10710
- #: includes/widgets/htmega_panel_slider.php:490
10711
- #: includes/widgets/htmega_post_slider.php:473
10712
- #: includes/widgets/htmega_post_slider.php:515
10713
- #: includes/widgets/htmega_post_slider.php:570
10714
- #: includes/widgets/htmega_slider_thumb_gallery.php:281
10715
- #: includes/widgets/htmega_slider_thumb_gallery.php:317
10716
- #: includes/widgets/htmega_slider_thumb_gallery.php:364
10717
- #: includes/widgets/htmega_twitter_feed.php:415
10718
- #: includes/widgets/htmega_twitter_feed.php:457
10719
- #: includes/widgets/htmega_twitter_feed.php:512
10720
- msgid "Slider item to scroll"
10721
- msgstr ""
10722
-
10723
- #: includes/widgets/htmega_carousel.php:137
10724
- #: includes/widgets/htmega_carousel.php:320
10725
- #: includes/widgets/htmega_carousel.php:375
10726
- #: includes/widgets/htmega_instagram.php:332
10727
- #: includes/widgets/htmega_instagram.php:515
10728
- #: includes/widgets/htmega_instagram.php:570
10729
- #: includes/widgets/htmega_panel_slider.php:203
10730
- #: includes/widgets/htmega_panel_slider.php:420
10731
- #: includes/widgets/htmega_panel_slider.php:475
10732
- #: includes/widgets/htmega_post_slider.php:301
10733
- #: includes/widgets/htmega_post_slider.php:500
10734
- #: includes/widgets/htmega_post_slider.php:555
10735
- #: includes/widgets/htmega_slider_thumb_gallery.php:144
10736
- #: includes/widgets/htmega_slider_thumb_gallery.php:304
10737
- #: includes/widgets/htmega_slider_thumb_gallery.php:351
10738
- #: includes/widgets/htmega_twitter_feed.php:242
10739
- #: includes/widgets/htmega_twitter_feed.php:442
10740
- #: includes/widgets/htmega_twitter_feed.php:497
10741
- msgid "Slider Items"
10742
- msgstr ""
10743
-
10744
- #: includes/widgets/htmega_scroll_navigation.php:227
10745
- msgid "Slider Navigation"
10746
- msgstr ""
10747
-
10748
- #: includes/widgets/htmega_carousel.php:127
10749
- #: includes/widgets/htmega_instagram.php:322
10750
- #: includes/widgets/htmega_panel_slider.php:193
10751
- #: includes/widgets/htmega_post_slider.php:291
10752
- #: includes/widgets/htmega_slider_thumb_gallery.php:137
10753
- #: includes/widgets/htmega_twitter_feed.php:232
10754
- msgid "Slider Option"
10755
- msgstr ""
10756
-
10757
- #: includes/widgets/htmega_scroll_navigation.php:119
10758
- msgid "Slider Options"
10759
- msgstr ""
10760
-
10761
- #: includes/widgets/htmega_scroll_navigation.php:237
10762
- msgid "Slider Pagination"
10763
- msgstr ""
10764
-
10765
- #: includes/widgets/htmega_panel_slider.php:86
10766
- msgid "Slider Sub Title"
10767
- msgstr ""
10768
-
10769
- #: includes/widgets/htmega_slider_thumb_gallery.php:43
10770
- msgid "Slider Thumbnail"
10771
- msgstr ""
10772
-
10773
- #: admin/include/admin-setting.php:479
10774
- #: includes/widgets/htmega_slider_thumb_gallery.php:14
10775
- msgid "Slider Thumbnail Gallery"
10776
- msgstr ""
10777
-
10778
- #: includes/widgets/htmega_panel_slider.php:77
10779
- msgid "Slider Title"
10780
- msgstr ""
10781
-
10782
- #: includes/widgets/htmega_scroll_navigation.php:191
10783
- msgid "Slider Visible Item"
10784
- msgstr ""
10785
-
10786
- #: includes/widgets/htmega_easy_digital_download.php:199
10787
- #: includes/widgets/htmega_wc_categories.php:130
10788
- msgid "Slug"
10789
- msgstr ""
10790
-
10791
- #: includes/widgets/htmega_booked_calender.php:167
10792
- #: includes/widgets/htmega_button.php:93
10793
- #: includes/widgets/htmega_double_button.php:46
10794
- msgid "Small"
10795
- msgstr ""
10796
-
10797
- #: includes/widgets/htmega_socialshere.php:58
10798
- #: includes/widgets/htmega_teammember.php:205
10799
- #: includes/widgets/htmega_teammember.php:955
10800
- msgid "Social Media"
10801
- msgstr ""
10802
-
10803
- #: admin/include/admin-setting.php:487
10804
- #: includes/widgets/htmega_socialshere.php:13
10805
- #: includes/widgets/htmega_socialshere.php:49
10806
- msgid "Social Share"
10807
- msgstr ""
10808
-
10809
- #: admin/include/admin-setting.php:842
10810
- msgid "Social share"
10811
- msgstr ""
10812
-
10813
- #: admin/include/admin-setting.php:841
10814
- msgid "Social Share <span>( Pro )</span>"
10815
- msgstr ""
10816
-
10817
- #: includes/helper-function.php:425
10818
- msgid "Something is wrong please check again!"
10819
- msgstr ""
10820
-
10821
- #: includes/helper-function.php:447
10822
- msgid "Sorry, that username already exists!"
10823
- msgstr ""
10824
-
10825
- #: includes/helper-function.php:451
10826
- msgid "Sorry, the username you entered is not valid"
10827
- msgstr ""
10828
-
10829
- #: admin/include/template-library.php:390
10830
- msgid "Sorry, you are not allowed to install themes on this site."
10831
- msgstr ""
10832
-
10833
- #: includes/widgets/htmega_data_table.php:73
10834
- msgid "Sorting Options"
10835
- msgstr ""
10836
-
10837
- #: includes/widgets/htmega_data_table.php:1063
10838
- msgid "Sorting Ordering After Color"
10839
- msgstr ""
10840
-
10841
- #: includes/widgets/htmega_data_table.php:1047
10842
- msgid "Sorting Ordering Before Color"
10843
- msgstr ""
10844
-
10845
- #: includes/widgets/htmega_data_table.php:1031
10846
- msgid "Sorting Ordering Color"
10847
- msgstr ""
10848
-
10849
- #: includes/widgets/htmega_data_table.php:788
10850
- msgid "Sorting Style"
10851
- msgstr ""
10852
-
10853
- #: includes/widgets/htmega_videoplayer.php:174
10854
- msgid "Sound Mute"
10855
- msgstr ""
10856
-
10857
- #: includes/widgets/htmega_gallery_justify.php:75
10858
- msgid "Space"
10859
- msgstr ""
10860
-
10861
- #: includes/widgets/htmega_user_login_form.php:433
10862
- msgid "Space Around"
10863
- msgstr ""
10864
-
10865
- #: includes/widgets/htmega_user_login_form.php:432
10866
- msgid "Space Between"
10867
- msgstr ""
10868
-
10869
- #: includes/widgets/htmega_user_login_form.php:434
10870
- msgid "Space Evenly"
10871
- msgstr ""
10872
-
10873
- #: includes/widgets/htmega_popover.php:216
10874
- #: includes/widgets/htmega_tooltip.php:192
10875
- msgid "Space With Button"
10876
- msgstr ""
10877
-
10878
- #: includes/widgets/htmega_caldera_form.php:120
10879
- #: includes/widgets/htmega_caldera_form.php:164
10880
- msgid "Space(px)"
10881
- msgstr ""
10882
-
10883
- #: includes/helper-function.php:209
10884
- msgid "span"
10885
- msgstr ""
10886
-
10887
- #: admin/include/admin-setting.php:143
10888
- #: includes/widgets/htmega_special_day_banner.php:14
10889
- msgid "Special Day Offer"
10890
- msgstr ""
10891
-
10892
- #: includes/widgets/htmega_scroll_image.php:149
10893
- #: includes/widgets/htmega_scroll_navigation.php:182
10894
- msgid "Speed"
10895
- msgstr ""
10896
-
10897
- #: includes/widgets/htmega_accordion.php:1109
10898
- #: includes/widgets/htmega_counter.php:70
10899
- #: includes/widgets/htmega_user_login_form.php:429
10900
- msgid "Start"
10901
- msgstr ""
10902
-
10903
- #: includes/widgets/htmega_bbpress.php:65
10904
- msgid "Stats"
10905
- msgstr ""
10906
-
10907
- #: includes/widgets/htmega_progress_bar.php:75
10908
- msgid "Striped"
10909
- msgstr ""
10910
-
10911
- #: includes/widgets/htmega_progress_bar.php:87
10912
- msgid "Striped Animated"
10913
- msgstr ""
10914
-
10915
- #: includes/widgets/htmega_section_title.php:656
10916
- #: includes/widgets/htmega_section_title.php:1045
10917
- msgid "Stroke"
10918
- msgstr ""
10919
-
10920
- #: includes/widgets/htmega_section_title.php:666
10921
- #: includes/widgets/htmega_section_title.php:1055
10922
- msgid "Stroke Color"
10923
- msgstr ""
10924
-
10925
- #: includes/widgets/htmega_section_title.php:680
10926
- #: includes/widgets/htmega_section_title.php:1069
10927
- msgid "Stroke Fill Width"
10928
- msgstr ""
10929
-
10930
- #: includes/widgets/htmega_socialshere.php:77
10931
- msgid "Stumbleupon"
10932
- msgstr ""
10933
-
10934
- #: includes/widgets/htmega_accordion.php:51
10935
- #: includes/widgets/htmega_add_banner.php:41
10936
- #: includes/widgets/htmega_blockquote.php:172
10937
- #: includes/widgets/htmega_booked_calender.php:50
10938
- #: includes/widgets/htmega_brand.php:42 includes/widgets/htmega_brand.php:120
10939
- #: includes/widgets/htmega_call_to_action.php:39
10940
- #: includes/widgets/htmega_carousel.php:50
10941
- #: includes/widgets/htmega_contact_form_seven.php:51
10942
- #: includes/widgets/htmega_countdown.php:94
10943
- #: includes/widgets/htmega_counter.php:49
10944
- #: includes/widgets/htmega_dropcaps.php:42
10945
- #: includes/widgets/htmega_errorcontent.php:50
10946
- #: includes/widgets/htmega_errorcontent.php:238
10947
- #: includes/widgets/htmega_imagemarker.php:121
10948
- #: includes/widgets/htmega_image_grid.php:42
10949
- #: includes/widgets/htmega_image_magnifier.php:102
10950
- #: includes/widgets/htmega_image_masonry.php:59
10951
- #: includes/widgets/htmega_inlinemenu.php:53
10952
- #: includes/widgets/htmega_instagram.php:51
10953
- #: includes/widgets/htmega_instagram.php:616
10954
- #: includes/widgets/htmega_instragram_feed.php:121
10955
- #: includes/widgets/htmega_mailchimp_wp.php:50
10956
- #: includes/widgets/htmega_mailchimp_wp.php:81
10957
- #: includes/widgets/htmega_newsticker.php:56
10958
- #: includes/widgets/htmega_notify.php:270
10959
- #: includes/widgets/htmega_offcanvas.php:308
10960
- #: includes/widgets/htmega_panel_slider.php:60
10961
- #: includes/widgets/htmega_popover.php:253
10962
- #: includes/widgets/htmega_post_slider.php:1422
10963
- #: includes/widgets/htmega_pricing_list_view.php:307
10964
- #: includes/widgets/htmega_pricing_list_view.php:681
10965
- #: includes/widgets/htmega_progress_bar.php:57
10966
- #: includes/widgets/htmega_progress_bar.php:71
10967
- #: includes/widgets/htmega_search.php:42 includes/widgets/htmega_service.php:42
10968
- #: includes/widgets/htmega_singlepost.php:42
10969
- #: includes/widgets/htmega_socialshere.php:399
10970
- #: includes/widgets/htmega_switcher.php:41
10971
- #: includes/widgets/htmega_switcher.php:238 includes/widgets/htmega_tabs.php:41
10972
- #: includes/widgets/htmega_tabs.php:128
10973
- #: includes/widgets/htmega_teammember.php:50
10974
- #: includes/widgets/htmega_testimonial_grid.php:41
10975
- #: includes/widgets/htmega_twitter_feed.php:55
10976
- #: includes/widgets/htmega_user_login_form.php:50
10977
- #: includes/widgets/htmega_user_login_form.php:549
10978
- #: includes/widgets/htmega_weather.php:65
10979
- #: includes/widgets/htmega_working_process.php:42
10980
- #: extensions/ht-builder/widgets/bl_site_logo.php:99
10981
- msgid "Style"
10982
- msgstr ""
10983
-
10984
- #: includes/widgets/htmega_inlinemenu.php:64
10985
- #: includes/widgets/htmega_teammember.php:61
10986
- msgid "Style Eight"
10987
- msgstr ""
10988
-
10989
- #: includes/widgets/htmega_accordion.php:59
10990
- #: includes/widgets/htmega_add_banner.php:49
10991
- #: includes/widgets/htmega_animated_heading.php:57
10992
- #: includes/widgets/htmega_brand.php:50
10993
- #: includes/widgets/htmega_call_to_action.php:47
10994
- #: includes/widgets/htmega_carousel.php:58
10995
- #: includes/widgets/htmega_contact_form_seven.php:59
10996
- #: includes/widgets/htmega_counter.php:57
10997
- #: includes/widgets/htmega_dropcaps.php:50
10998
- #: includes/widgets/htmega_imagemarker.php:129
10999
- #: includes/widgets/htmega_image_grid.php:50
11000
- #: includes/widgets/htmega_image_masonry.php:67
11001
- #: includes/widgets/htmega_inlinemenu.php:61
11002
- #: includes/widgets/htmega_mailchimp_wp.php:58
11003
- #: includes/widgets/htmega_newsticker.php:64
11004
- #: includes/widgets/htmega_search.php:50
11005
- #: includes/widgets/htmega_section_title.php:49
11006
- #: includes/widgets/htmega_service.php:50 includes/widgets/htmega_tabs.php:49
11007
- #: includes/widgets/htmega_teammember.php:58
11008
- #: includes/widgets/htmega_testimonial_grid.php:49
11009
- #: includes/widgets/htmega_twitter_feed.php:63
11010
- #: includes/widgets/htmega_user_login_form.php:58
11011
- #: includes/widgets/htmega_working_process.php:50
11012
- msgid "Style Five"
11013
- msgstr ""
11014
-
11015
- #: includes/widgets/htmega_accordion.php:58
11016
- #: includes/widgets/htmega_add_banner.php:48
11017
- #: includes/widgets/htmega_animated_heading.php:56
11018
- #: includes/widgets/htmega_brand.php:49 includes/widgets/htmega_button.php:53
11019
- #: includes/widgets/htmega_call_to_action.php:46
11020
- #: includes/widgets/htmega_carousel.php:57
11021
- #: includes/widgets/htmega_contact_form_seven.php:58
11022
- #: includes/widgets/htmega_counter.php:56
11023
- #: includes/widgets/htmega_dropcaps.php:49
11024
- #: includes/widgets/htmega_errorcontent.php:57
11025
- #: includes/widgets/htmega_imagemarker.php:128
11026
- #: includes/widgets/htmega_image_grid.php:49
11027
- #: includes/widgets/htmega_image_masonry.php:66
11028
- #: includes/widgets/htmega_inlinemenu.php:60
11029
- #: includes/widgets/htmega_instagram.php:58
11030
- #: includes/widgets/htmega_mailchimp_wp.php:57
11031
- #: includes/widgets/htmega_newsticker.php:63
11032
- #: includes/widgets/htmega_panel_slider.php:67
11033
- #: includes/widgets/htmega_search.php:49
11034
- #: includes/widgets/htmega_section_title.php:48
11035
- #: includes/widgets/htmega_service.php:49
11036
- #: includes/widgets/htmega_singlepost.php:49
11037
- #: includes/widgets/htmega_tabs.php:48
11038
- #: includes/widgets/htmega_teammember.php:57
11039
- #: includes/widgets/htmega_testimonial_grid.php:48
11040
- #: includes/widgets/htmega_twitter_feed.php:62
11041
- #: includes/widgets/htmega_user_login_form.php:57
11042
- #: includes/widgets/htmega_weather.php:72
11043
- #: includes/widgets/htmega_working_process.php:49
11044
- msgid "Style Four"
11045
- msgstr ""
11046
-
11047
- #: includes/widgets/htmega_countdown.php:101
11048
- msgid "Style Four (Flip)"
11049
- msgstr ""
11050
-
11051
- #: includes/widgets/htmega_inlinemenu.php:65
11052
- msgid "Style Nine"
11053
- msgstr ""
11054
-
11055
- #: includes/widgets/htmega_accordion.php:55
11056
- #: includes/widgets/htmega_add_banner.php:45
11057
- #: includes/widgets/htmega_animated_heading.php:53
11058
- #: includes/widgets/htmega_brand.php:46 includes/widgets/htmega_button.php:50
11059
- #: includes/widgets/htmega_call_to_action.php:43
11060
- #: includes/widgets/htmega_carousel.php:54
11061
- #: includes/widgets/htmega_carousel.php:433
11062
- #: includes/widgets/htmega_contact_form_seven.php:55
11063
- #: includes/widgets/htmega_counter.php:53
11064
- #: includes/widgets/htmega_dropcaps.php:46
11065
- #: includes/widgets/htmega_errorcontent.php:54
11066
- #: includes/widgets/htmega_imagemarker.php:125
11067
- #: includes/widgets/htmega_image_grid.php:46
11068
- #: includes/widgets/htmega_image_masonry.php:63
11069
- #: includes/widgets/htmega_inlinemenu.php:57
11070
- #: includes/widgets/htmega_instagram.php:55
11071
- #: includes/widgets/htmega_mailchimp_wp.php:54
11072
- #: includes/widgets/htmega_newsticker.php:60
11073
- #: includes/widgets/htmega_panel_slider.php:64
11074
- #: includes/widgets/htmega_post_slider.php:1426
11075
- #: includes/widgets/htmega_search.php:46
11076
- #: includes/widgets/htmega_section_title.php:45
11077
- #: includes/widgets/htmega_service.php:46
11078
- #: includes/widgets/htmega_singlepost.php:46
11079
- #: includes/widgets/htmega_tabs.php:45
11080
- #: includes/widgets/htmega_teammember.php:54
11081
- #: includes/widgets/htmega_teammember.php:72
11082
- #: includes/widgets/htmega_teammember.php:87
11083
- #: includes/widgets/htmega_testimonial_grid.php:45
11084
- #: includes/widgets/htmega_twitter_feed.php:59
11085
- #: includes/widgets/htmega_user_login_form.php:54
11086
- #: includes/widgets/htmega_weather.php:69
11087
- #: includes/widgets/htmega_working_process.php:46
11088
- msgid "Style One"
11089
- msgstr ""
11090
-
11091
- #: includes/widgets/htmega_countdown.php:98
11092
- msgid "Style one"
11093
- msgstr ""
11094
-
11095
- #: includes/widgets/htmega_animated_heading.php:59
11096
- #: includes/widgets/htmega_brand.php:52
11097
- #: includes/widgets/htmega_call_to_action.php:49
11098
- #: includes/widgets/htmega_carousel.php:60
11099
- #: includes/widgets/htmega_inlinemenu.php:63
11100
- #: includes/widgets/htmega_newsticker.php:66
11101
- #: includes/widgets/htmega_service.php:52
11102
- #: includes/widgets/htmega_teammember.php:60
11103
- #: includes/widgets/htmega_user_login_form.php:60
11104
- msgid "Style Seven"
11105
- msgstr ""
11106
-
11107
- #: includes/widgets/htmega_add_banner.php:50
11108
- #: includes/widgets/htmega_animated_heading.php:58
11109
- #: includes/widgets/htmega_brand.php:51
11110
- #: includes/widgets/htmega_call_to_action.php:48
11111
- #: includes/widgets/htmega_carousel.php:59
11112
- #: includes/widgets/htmega_contact_form_seven.php:60
11113
- #: includes/widgets/htmega_counter.php:58
11114
- #: includes/widgets/htmega_imagemarker.php:130
11115
- #: includes/widgets/htmega_inlinemenu.php:62
11116
- #: includes/widgets/htmega_newsticker.php:65
11117
- #: includes/widgets/htmega_service.php:51
11118
- #: includes/widgets/htmega_teammember.php:59
11119
- #: includes/widgets/htmega_user_login_form.php:59
11120
- msgid "Style Six"
11121
- msgstr ""
11122
-
11123
- #: includes/widgets/htmega_inlinemenu.php:66
11124
- msgid "Style Ten"
11125
- msgstr ""
11126
-
11127
- #: includes/widgets/htmega_accordion.php:57
11128
- #: includes/widgets/htmega_add_banner.php:47
11129
- #: includes/widgets/htmega_animated_heading.php:55
11130
- #: includes/widgets/htmega_brand.php:48 includes/widgets/htmega_button.php:52
11131
- #: includes/widgets/htmega_call_to_action.php:45
11132
- #: includes/widgets/htmega_carousel.php:56
11133
- #: includes/widgets/htmega_contact_form_seven.php:57
11134
- #: includes/widgets/htmega_countdown.php:100
11135
- #: includes/widgets/htmega_counter.php:55
11136
- #: includes/widgets/htmega_dropcaps.php:48
11137
- #: includes/widgets/htmega_errorcontent.php:56
11138
- #: includes/widgets/htmega_imagemarker.php:127
11139
- #: includes/widgets/htmega_image_grid.php:48
11140
- #: includes/widgets/htmega_image_masonry.php:65
11141
- #: includes/widgets/htmega_inlinemenu.php:59
11142
- #: includes/widgets/htmega_instagram.php:57
11143
- #: includes/widgets/htmega_mailchimp_wp.php:56
11144
- #: includes/widgets/htmega_newsticker.php:62
11145
- #: includes/widgets/htmega_panel_slider.php:66
11146
- #: includes/widgets/htmega_search.php:48
11147
- #: includes/widgets/htmega_section_title.php:47
11148
- #: includes/widgets/htmega_service.php:48
11149
- #: includes/widgets/htmega_singlepost.php:48
11150
- #: includes/widgets/htmega_tabs.php:47
11151
- #: includes/widgets/htmega_teammember.php:56
11152
- #: includes/widgets/htmega_teammember.php:89
11153
- #: includes/widgets/htmega_testimonial_grid.php:47
11154
- #: includes/widgets/htmega_twitter_feed.php:61
11155
- #: includes/widgets/htmega_user_login_form.php:56
11156
- #: includes/widgets/htmega_weather.php:71
11157
- #: includes/widgets/htmega_working_process.php:48
11158
- msgid "Style Three"
11159
- msgstr ""
11160
-
11161
- #: includes/widgets/htmega_accordion.php:56
11162
- #: includes/widgets/htmega_add_banner.php:46
11163
- #: includes/widgets/htmega_animated_heading.php:54
11164
- #: includes/widgets/htmega_brand.php:47 includes/widgets/htmega_button.php:51
11165
- #: includes/widgets/htmega_call_to_action.php:44
11166
- #: includes/widgets/htmega_carousel.php:55
11167
- #: includes/widgets/htmega_carousel.php:434
11168
- #: includes/widgets/htmega_contact_form_seven.php:56
11169
- #: includes/widgets/htmega_countdown.php:99
11170
- #: includes/widgets/htmega_counter.php:54
11171
- #: includes/widgets/htmega_dropcaps.php:47
11172
- #: includes/widgets/htmega_errorcontent.php:55
11173
- #: includes/widgets/htmega_imagemarker.php:126
11174
- #: includes/widgets/htmega_image_grid.php:47
11175
- #: includes/widgets/htmega_image_masonry.php:64
11176
- #: includes/widgets/htmega_inlinemenu.php:58
11177
- #: includes/widgets/htmega_instagram.php:56
11178
- #: includes/widgets/htmega_mailchimp_wp.php:55
11179
- #: includes/widgets/htmega_newsticker.php:61
11180
- #: includes/widgets/htmega_panel_slider.php:65
11181
- #: includes/widgets/htmega_post_slider.php:1427
11182
- #: includes/widgets/htmega_search.php:47
11183
- #: includes/widgets/htmega_section_title.php:46
11184
- #: includes/widgets/htmega_service.php:47
11185
- #: includes/widgets/htmega_singlepost.php:47
11186
- #: includes/widgets/htmega_tabs.php:46
11187
- #: includes/widgets/htmega_teammember.php:55
11188
- #: includes/widgets/htmega_teammember.php:73
11189
- #: includes/widgets/htmega_teammember.php:88
11190
- #: includes/widgets/htmega_testimonial_grid.php:46
11191
- #: includes/widgets/htmega_twitter_feed.php:60
11192
- #: includes/widgets/htmega_user_login_form.php:55
11193
- #: includes/widgets/htmega_weather.php:70
11194
- #: includes/widgets/htmega_working_process.php:47
11195
- msgid "Style Two"
11196
- msgstr ""
11197
-
11198
- #: includes/widgets/htmega_quforms.php:199
11199
- msgid "Sub Label"
11200
- msgstr ""
11201
-
11202
- #: extensions/ht-builder/widgets/bl_nav_menu.php:337
11203
- #: extensions/ht-menu/widgets/inline-mega-menu.php:195
11204
- #: extensions/ht-menu/widgets/verticle-mega-menu.php:196
11205
- msgid "Sub Menu"
11206
- msgstr ""
11207
-
11208
- #: extensions/ht-menu/admin/setting.php:87
11209
- msgid "Sub Menu Background Color"
11210
- msgstr ""
11211
-
11212
- #: extensions/ht-menu/admin/setting.php:94
11213
- msgid "Sub Menu Items Color"
11214
- msgstr ""
11215
-
11216
- #: extensions/ht-menu/admin/setting.php:101
11217
- msgid "Sub Menu Items Hover Color"
11218
- msgstr ""
11219
-
11220
- #: extensions/ht-menu/admin/setting.php:76
11221
- #: extensions/ht-menu/widgets/inline-mega-menu.php:203
11222
- #: extensions/ht-menu/widgets/verticle-mega-menu.php:204
11223
- msgid "Sub Menu Width"
11224
- msgstr ""
11225
-
11226
- #: includes/widgets/htmega_add_banner.php:101
11227
- #: includes/widgets/htmega_add_banner.php:489
11228
- #: includes/widgets/htmega_call_to_action.php:57
11229
- #: includes/widgets/htmega_call_to_action.php:500
11230
- #: includes/widgets/htmega_errorcontent.php:100
11231
- #: includes/widgets/htmega_errorcontent.php:384
11232
- #: includes/widgets/htmega_panel_slider.php:737
11233
- #: includes/widgets/htmega_section_title.php:69
11234
- #: includes/widgets/htmega_slider_thumb_gallery.php:74
11235
- #: includes/widgets/htmega_special_day_banner.php:87
11236
- #: includes/widgets/htmega_special_day_banner.php:394
11237
- msgid "Sub Title"
11238
- msgstr ""
11239
-
11240
- #: includes/widgets/htmega_section_title.php:222
11241
- msgid "Sub Title Setting"
11242
- msgstr ""
11243
-
11244
- #: includes/widgets/htmega_slider_thumb_gallery.php:730
11245
- msgid "Sub Title Style"
11246
- msgstr ""
11247
-
11248
- #: includes/widgets/htmega_section_title.php:768
11249
- msgid "Sub Title style"
11250
- msgstr ""
11251
-
11252
- #: includes/widgets/htmega_call_to_action.php:69
11253
- msgid "Sub Title Tag"
11254
- msgstr ""
11255
-
11256
- #: extensions/ht-menu/menu/templates.php:68
11257
- msgid "SubMenu Position"
11258
- msgstr ""
11259
-
11260
- #: includes/widgets/htmega_caldera_form.php:436
11261
- #: includes/widgets/htmega_search.php:420
11262
- #: includes/widgets/htmega_user_login_form.php:1085
11263
- #: extensions/ht-builder/widgets/bl_post_comments.php:80
11264
- msgid "Submit Button"
11265
- msgstr ""
11266
-
11267
- #: includes/widgets/htmega_notify.php:134
11268
- msgid "Success"
11269
- msgstr ""
11270
-
11271
- #: includes/widgets/htmega_ninja_form.php:1157
11272
- msgid "Success Style"
11273
- msgstr ""
11274
-
11275
- #: extensions/ht-menu/classes/class.mega-menu.php:156
11276
- msgid "Successfully data saved"
11277
- msgstr ""
11278
-
11279
- #: includes/helper-function.php:427
11280
- msgid "Successfully Register"
11281
- msgstr ""
11282
-
11283
- #: admin/include/admin-setting.php:1138
11284
- #: extensions/ht-builder/admin/setting.php:196
11285
- #: extensions/ht-menu/admin/setting.php:148
11286
- #: extensions/wc-sales-notification/admin/setting.php:280
11287
- msgid "Successfully Settings Saved."
11288
- msgstr ""
11289
-
11290
- #: includes/widgets/htmega_counter.php:1016
11291
- msgid "Suffix"
11292
- msgstr ""
11293
-
11294
- #: includes/widgets/htmega_business_hours.php:168
11295
- msgid "Sunday"
11296
- msgstr ""
11297
-
11298
- #: includes/widgets/htmega_socialshere.php:79
11299
- msgid "Surfingbird"
11300
- msgstr ""
11301
-
11302
- #: includes/widgets/htmega_offcanvas.php:248
11303
- msgid "SVG Icon Size"
11304
- msgstr ""
11305
-
11306
- #: includes/widgets/htmega_switcher.php:64
11307
- msgid "Switch One"
11308
- msgstr ""
11309
-
11310
- #: includes/widgets/htmega_switcher.php:155
11311
- msgid "Switch Two"
11312
- msgstr ""
11313
-
11314
- #: admin/include/admin-setting.php:495 includes/widgets/htmega_switcher.php:13
11315
- msgid "Switcher"
11316
- msgstr ""
11317
-
11318
- #: includes/widgets/htmega_switcher.php:275
11319
- msgid "Switcher Button"
11320
- msgstr ""
11321
-
11322
- #: includes/widgets/htmega_switcher.php:136
11323
- msgid "Switcher Content One"
11324
- msgstr ""
11325
-
11326
- #: includes/widgets/htmega_switcher.php:228
11327
- msgid "Switcher Content Two"
11328
- msgstr ""
11329
-
11330
- #: includes/widgets/htmega_switcher.php:34
11331
- msgid "Switcher Layout"
11332
- msgstr ""
11333
-
11334
- #: includes/widgets/htmega_switcher.php:56
11335
- msgid "Switcher One"
11336
- msgstr ""
11337
-
11338
- #: includes/widgets/htmega_switcher.php:65
11339
- #: includes/widgets/htmega_switcher.php:156
11340
- msgid "Switcher Title"
11341
- msgstr ""
11342
-
11343
- #: includes/widgets/htmega_switcher.php:75
11344
- #: includes/widgets/htmega_switcher.php:166
11345
- msgid "Switcher Title Icon"
11346
- msgstr ""
11347
-
11348
- #: includes/widgets/htmega_switcher.php:147
11349
- msgid "Switcher Two"
11350
- msgstr ""
11351
-
11352
- #: admin/include/templates/library/templates.php:10
11353
- #: admin/include/templates/library/templates.php:11
11354
- msgid "Sync Library"
11355
- msgstr ""
11356
-
11357
- #: includes/widgets/htmega_tabs.php:71
11358
- msgid "Tab #1"
11359
- msgstr ""
11360
-
11361
- #: includes/widgets/htmega_tabs.php:248
11362
- msgid "Tab Area Style"
11363
- msgstr ""
11364
-
11365
- #: includes/widgets/htmega_tabs.php:281
11366
- msgid "Tab Content Width (%)"
11367
- msgstr ""
11368
-
11369
- #: includes/widgets/htmega_tabs.php:669
11370
- msgid "Tab Icon Box Style"
11371
- msgstr ""
11372
-
11373
- #: includes/widgets/htmega_tabs.php:491
11374
- msgid "Tab Manu Style"
11375
- msgstr ""
11376
-
11377
- #: includes/widgets/htmega_tabs.php:240
11378
- msgid "Tab Menu"
11379
- msgstr ""
11380
-
11381
- #: includes/widgets/htmega_tabs.php:256
11382
- msgid "Tab Menu Width (%)"
11383
- msgstr ""
11384
-
11385
- #: admin/include/templates/library/templates.php:34
11386
- #: admin/include/templates/library/templates.php:35
11387
- msgid "Tab view"
11388
- msgstr ""
11389
-
11390
- #: includes/widgets/htmega_data_table.php:490
11391
- #: includes/widgets/htmega_pricing_list_view.php:1217
11392
- #: includes/widgets/htmega_tablepress.php:123
11393
- msgid "Table"
11394
- msgstr ""
11395
-
11396
- #: includes/widgets/htmega_data_table.php:669
11397
- #: includes/widgets/htmega_pricing_list_view.php:1366
11398
- #: includes/widgets/htmega_wc_element_pages.php:121
11399
- msgid "Table Body"
11400
- msgstr ""
11401
-
11402
- #: includes/widgets/htmega_pricing_list_view.php:1422
11403
- msgid "Table Body Padding"
11404
- msgstr ""
11405
-
11406
- #: includes/widgets/htmega_wc_element_pages.php:1193
11407
- msgid "Table Body Row"
11408
- msgstr ""
11409
-
11410
- #: includes/widgets/htmega_pricing_list_view.php:692
11411
- msgid "Table Body Typography"
11412
- msgstr ""
11413
-
11414
- #: includes/widgets/htmega_data_table.php:722
11415
- msgid "Table Cell Padding"
11416
- msgstr ""
11417
-
11418
- #: includes/widgets/htmega_data_table.php:228
11419
- #: includes/widgets/htmega_pricing_list_view.php:532
11420
- msgid "Table Content"
11421
- msgstr ""
11422
-
11423
- #: includes/widgets/htmega_wc_element_pages.php:1268
11424
- msgid "Table Footer"
11425
- msgstr ""
11426
-
11427
- #: includes/widgets/htmega_wc_element_pages.php:1161
11428
- msgid "Table Head"
11429
- msgstr ""
11430
-
11431
- #: includes/widgets/htmega_data_table.php:134
11432
- #: includes/widgets/htmega_data_table.php:564
11433
- #: includes/widgets/htmega_pricing_list_view.php:180
11434
- #: includes/widgets/htmega_pricing_list_view.php:1287
11435
- msgid "Table Header"
11436
- msgstr ""
11437
-
11438
- #: includes/widgets/htmega_data_table.php:603
11439
- #: includes/widgets/htmega_pricing_list_view.php:1331
11440
- msgid "Table Header Padding"
11441
- msgstr ""
11442
-
11443
- #: includes/widgets/htmega_wc_element_pages.php:87
11444
- msgid "Table Heading"
11445
- msgstr ""
11446
-
11447
- #: includes/widgets/htmega_data_table.php:37
11448
- msgid "Table Layout"
11449
- msgstr ""
11450
-
11451
- #: admin/include/admin-setting.php:1079
11452
- #: includes/widgets/htmega_tablepress.php:13
11453
- #: includes/widgets/htmega_tablepress.php:48
11454
- msgid "TablePress"
11455
- msgstr ""
11456
-
11457
- #: includes/widgets/htmega_carousel.php:308
11458
- #: includes/widgets/htmega_instagram.php:503
11459
- #: includes/widgets/htmega_panel_slider.php:408
11460
- #: includes/widgets/htmega_post_slider.php:488
11461
- #: includes/widgets/htmega_slider_thumb_gallery.php:294
11462
- #: includes/widgets/htmega_testimonial_grid.php:85
11463
- #: includes/widgets/htmega_twitter_feed.php:430
11464
- msgid "Tablet"
11465
- msgstr ""
11466
-
11467
- #: includes/widgets/htmega_carousel.php:350
11468
- #: includes/widgets/htmega_instagram.php:545
11469
- #: includes/widgets/htmega_panel_slider.php:450
11470
- #: includes/widgets/htmega_post_slider.php:530
11471
- #: includes/widgets/htmega_slider_thumb_gallery.php:330
11472
- #: includes/widgets/htmega_twitter_feed.php:472
11473
- msgid "Tablet Resolution"
11474
- msgstr ""
11475
-
11476
- #: admin/include/admin-setting.php:503 includes/widgets/htmega_tabs.php:13
11477
- #: includes/widgets/htmega_tabs.php:34
11478
- msgid "Tabs"
11479
- msgstr ""
11480
-
11481
- #: includes/widgets/htmega_counter.php:164
11482
- msgid "Target Number"
11483
- msgstr ""
11484
-
11485
- #: includes/widgets/htmega_panel_slider.php:79
11486
- #: includes/widgets/htmega_panel_slider.php:133
11487
- #: includes/widgets/htmega_panel_slider.php:137
11488
- #: includes/widgets/htmega_panel_slider.php:141
11489
- #: includes/widgets/htmega_panel_slider.php:145
11490
- msgid "Tattoo Boy From New York"
11491
- msgstr ""
11492
-
11493
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:156
11494
- msgid "Taxonomy"
11495
- msgstr ""
11496
-
11497
- #: includes/widgets/htmega_teammember.php:322
11498
- msgid "Team Box Style"
11499
- msgstr ""
11500
-
11501
- #: admin/include/admin-setting.php:519
11502
- #: includes/widgets/htmega_teammember.php:14
11503
- #: includes/widgets/htmega_teammember.php:43
11504
- msgid "Team Member"
11505
- msgstr ""
11506
-
11507
- #: includes/widgets/htmega_socialshere.php:89
11508
- msgid "Telegram"
11509
- msgstr ""
11510
-
11511
- #: includes/widgets/htmega_template_selector.php:42
11512
- msgid "Template"
11513
- msgstr ""
11514
-
11515
- #: admin/include/class.library-source.php:219
11516
- msgid "Template does not have any content"
11517
- msgstr ""
11518
-
11519
- #: admin/include/class.htmega-elementor-template-library.php:97
11520
- msgid "Template id missing"
11521
- msgstr ""
11522
-
11523
- #: includes/widgets/htmega_template_selector.php:13
11524
- msgid "Template Selector"
11525
- msgstr ""
11526
-
11527
- #: admin/include/admin-setting.php:902 admin/include/templates_list.php:33
11528
- msgid "Templates"
11529
- msgstr ""
11530
-
11531
- #: admin/include/template-library.php:73 admin/include/template-library.php:74
11532
- msgid "Templates Library"
11533
- msgstr ""
11534
-
11535
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:69
11536
- msgid "Terms"
11537
- msgstr ""
11538
-
11539
- #: admin/include/admin-setting.php:527
11540
- msgid "Testimonial"
11541
- msgstr ""
11542
-
11543
- #: admin/include/admin-setting.php:535
11544
- #: includes/widgets/htmega_testimonial_grid.php:14
11545
- #: includes/widgets/htmega_testimonial_grid.php:35
11546
- msgid "Testimonial Grid"
11547
- msgstr ""
11548
-
11549
- #: includes/widgets/htmega_button.php:62
11550
- #: includes/widgets/htmega_countdown.php:271
11551
- #: includes/widgets/htmega_data_table.php:254
11552
- #: includes/widgets/htmega_double_button.php:99
11553
- #: includes/widgets/htmega_double_button.php:186
11554
- #: includes/widgets/htmega_download_monitor.php:117
11555
- #: includes/widgets/htmega_modal.php:110 includes/widgets/htmega_popover.php:57
11556
- #: includes/widgets/htmega_pricing_list_view.php:578
11557
- #: includes/widgets/htmega_search.php:72 includes/widgets/htmega_tooltip.php:57
11558
- #: includes/widgets/htmega_tooltip.php:72
11559
- #: extensions/ht-builder/widgets/bl_post_search_form.php:58
11560
- msgid "Text"
11561
- msgstr ""
11562
-
11563
- #: includes/widgets/htmega_data_table.php:929
11564
- msgid "Text Active Color"
11565
- msgstr ""
11566
-
11567
- #: includes/widgets/htmega_booked_calender.php:437
11568
- #: includes/widgets/htmega_booked_calender.php:541
11569
- #: includes/widgets/htmega_booked_calender.php:581
11570
- #: includes/widgets/htmega_booked_calender.php:664
11571
- #: includes/widgets/htmega_booked_calender.php:727
11572
- #: includes/widgets/htmega_booked_calender.php:825
11573
- #: includes/widgets/htmega_button.php:207
11574
- #: includes/widgets/htmega_button.php:340
11575
- #: includes/widgets/htmega_button.php:533
11576
- #: includes/widgets/htmega_button.php:617
11577
- #: includes/widgets/htmega_caldera_form.php:201
11578
- #: includes/widgets/htmega_caldera_form.php:375
11579
- #: includes/widgets/htmega_caldera_form.php:454
11580
- #: includes/widgets/htmega_caldera_form.php:563
11581
- #: includes/widgets/htmega_call_to_action.php:706
11582
- #: includes/widgets/htmega_call_to_action.php:912
11583
- #: includes/widgets/htmega_contact_form_seven.php:246
11584
- #: includes/widgets/htmega_contact_form_seven.php:389
11585
- #: includes/widgets/htmega_contact_form_seven.php:501
11586
- #: includes/widgets/htmega_contact_form_seven.php:599
11587
- #: includes/widgets/htmega_contact_form_seven.php:662
11588
- #: includes/widgets/htmega_contact_form_seven.php:824
11589
- #: includes/widgets/htmega_contact_form_seven.php:912
11590
- #: includes/widgets/htmega_data_table.php:572
11591
- #: includes/widgets/htmega_data_table.php:701
11592
- #: includes/widgets/htmega_data_table.php:811
11593
- #: includes/widgets/htmega_data_table.php:862
11594
- #: includes/widgets/htmega_data_table.php:914
11595
- #: includes/widgets/htmega_data_table.php:993
11596
- #: includes/widgets/htmega_mailchimp_wp.php:208
11597
- #: includes/widgets/htmega_mailchimp_wp.php:372
11598
- #: includes/widgets/htmega_mailchimp_wp.php:460
11599
- #: includes/widgets/htmega_offcanvas.php:316
11600
- #: includes/widgets/htmega_pricing_list_view.php:722
11601
- #: includes/widgets/htmega_pricing_list_view.php:1310
11602
- #: includes/widgets/htmega_pricing_list_view.php:1401
11603
- #: includes/widgets/htmega_pricing_list_view.php:1519
11604
- #: includes/widgets/htmega_pricing_list_view.php:1562
11605
- #: includes/widgets/htmega_pricing_list_view.php:1639
11606
- #: includes/widgets/htmega_pricing_list_view.php:1720
11607
- #: includes/widgets/htmega_quforms.php:977
11608
- #: includes/widgets/htmega_search.php:229
11609
- #: includes/widgets/htmega_tablepress.php:282
11610
- #: includes/widgets/htmega_tablepress.php:326
11611
- #: includes/widgets/htmega_user_login_form.php:813
11612
- #: includes/widgets/htmega_user_login_form.php:1008
11613
- #: includes/widgets/htmega_wc_element_pages.php:97
11614
- #: includes/widgets/htmega_wc_element_pages.php:132
11615
- #: includes/widgets/htmega_wc_element_pages.php:212
11616
- #: includes/widgets/htmega_wc_element_pages.php:298
11617
- #: includes/widgets/htmega_wc_element_pages.php:392
11618
- #: includes/widgets/htmega_wc_element_pages.php:478
11619
- #: includes/widgets/htmega_wc_element_pages.php:555
11620
- #: includes/widgets/htmega_wc_element_pages.php:712
11621
- #: includes/widgets/htmega_wc_element_pages.php:899
11622
- #: includes/widgets/htmega_wc_element_pages.php:952
11623
- #: includes/widgets/htmega_wc_element_pages.php:1029
11624
- #: includes/widgets/htmega_wc_element_pages.php:1170
11625
- #: includes/widgets/htmega_wc_element_pages.php:1211
11626
- #: includes/widgets/htmega_wc_element_pages.php:1242
11627
- #: includes/widgets/htmega_wc_element_pages.php:1277
11628
- #: includes/widgets/htmega_wc_element_pages.php:1356
11629
- #: includes/widgets/htmega_wc_element_pages.php:1530
11630
- #: includes/widgets/htmega_wc_element_pages.php:1619
11631
- #: includes/widgets/htmega_weather.php:232
11632
- #: extensions/ht-menu/widgets/inline-mega-menu.php:292
11633
- #: extensions/ht-menu/widgets/inline-mega-menu.php:431
11634
- #: extensions/ht-menu/widgets/inline-mega-menu.php:503
11635
- #: extensions/ht-menu/widgets/verticle-mega-menu.php:389
11636
- #: extensions/ht-menu/widgets/verticle-mega-menu.php:449
11637
- msgid "Text Color"
11638
- msgstr ""
11639
-
11640
- #: includes/widgets/htmega_pricing_list_view.php:894
11641
- msgid "Text Hover Color"
11642
- msgstr ""
11643
-
11644
- #: includes/widgets/htmega_countdown.php:771
11645
- #: includes/widgets/htmega_countdown.php:944
11646
- #: includes/widgets/htmega_inlinemenu.php:233
11647
- #: includes/widgets/htmega_section_title.php:963
11648
- #: extensions/ht-builder/widgets/bl_nav_menu.php:216
11649
- msgid "Text Shadow"
11650
- msgstr ""
11651
-
11652
- #: includes/widgets/htmega_contact_form_seven.php:444
11653
- #: includes/widgets/htmega_ninja_form.php:694
11654
- #: includes/widgets/htmega_quforms.php:530
11655
- #: includes/widgets/htmega_wpforms.php:698
11656
- msgid "Textarea"
11657
- msgstr ""
11658
-
11659
- #: includes/widgets/htmega_caldera_form.php:258
11660
- #: includes/widgets/htmega_gravity_forms.php:466
11661
- #: includes/widgets/htmega_wc_element_pages.php:754
11662
- msgid "Textarea Height"
11663
- msgstr ""
11664
-
11665
- #: includes/widgets/htmega_pricing_list_view.php:226
11666
- msgid "TH Width (Table Header Column Width %)"
11667
- msgstr ""
11668
-
11669
- #. Description of the plugin
11670
- msgid ""
11671
- "The HTMega is a elementor addons package for Elementor page builder plugin "
11672
- "for WordPress."
11673
- msgstr ""
11674
-
11675
- #: includes/widgets/htmega_carousel.php:406
11676
- #: includes/widgets/htmega_instagram.php:601
11677
- #: includes/widgets/htmega_panel_slider.php:506
11678
- #: includes/widgets/htmega_post_slider.php:586
11679
- #: includes/widgets/htmega_slider_thumb_gallery.php:378
11680
- #: includes/widgets/htmega_slider_thumb_gallery.php:657
11681
- #: includes/widgets/htmega_twitter_feed.php:528
11682
- msgid "The resolution to mobile."
11683
- msgstr ""
11684
-
11685
- #: includes/widgets/htmega_carousel.php:351
11686
- #: includes/widgets/htmega_instagram.php:546
11687
- #: includes/widgets/htmega_panel_slider.php:451
11688
- #: includes/widgets/htmega_post_slider.php:531
11689
- #: includes/widgets/htmega_slider_thumb_gallery.php:331
11690
- #: includes/widgets/htmega_slider_thumb_gallery.php:596
11691
- #: includes/widgets/htmega_twitter_feed.php:473
11692
- msgid "The resolution to tablet."
11693
- msgstr ""
11694
-
11695
- #: admin/include/template-library.php:401
11696
- msgid "Theme Activated"
11697
- msgstr ""
11698
-
11699
- #: admin/include/admin-setting.php:100 admin/include/admin-setting.php:678
11700
- #: extensions/ht-builder/admin/setting.php:48
11701
- msgid "Theme Builder"
11702
- msgstr ""
11703
-
11704
- #: includes/widgets/htmega_service.php:131
11705
- msgid ""
11706
- "There are many variations of passages Lorem Ipsum available, but majority "
11707
- "have ama suffered altratio. the lorem."
11708
- msgstr ""
11709
-
11710
- #: admin/include/admin-setting.php:81
11711
- msgid "Third Party"
11712
- msgstr ""
11713
-
11714
- #: includes/helper-function.php:723
11715
- #, php-format
11716
- msgid "This input field supports the following HTML tags: %1$s"
11717
- msgstr ""
11718
-
11719
- #: includes/widgets/htmega_googlemap.php:250
11720
- msgid "This is <span>Dhaka</span>"
11721
- msgstr ""
11722
-
11723
- #: includes/widgets/htmega_image_grid.php:64
11724
- #: includes/widgets/htmega_image_masonry.php:81
11725
- #: includes/widgets/htmega_testimonial_grid.php:75
11726
- #: includes/widgets/htmega_testimonial_grid.php:90
11727
- #: includes/widgets/htmega_testimonial_grid.php:107
11728
- msgid "Three"
11729
- msgstr ""
11730
-
11731
- #: includes/widgets/htmega_instragram_feed.php:74
11732
- msgid "Thumb"
11733
- msgstr ""
11734
-
11735
- #: includes/widgets/htmega_post_slider.php:377
11736
- msgid "Thumbnail"
11737
- msgstr ""
11738
-
11739
- #: includes/widgets/htmega_image_magnifier.php:49
11740
- msgid "Thumbnail Image"
11741
- msgstr ""
11742
-
11743
- #: includes/widgets/htmega_slider_thumb_gallery.php:49
11744
- msgid "Thumbnail Position"
11745
- msgstr ""
11746
-
11747
- #: includes/widgets/htmega_slider_thumb_gallery.php:1212
11748
- msgid "Thumbnail Style"
11749
- msgstr ""
11750
-
11751
- #: includes/widgets/htmega_slider_thumb_gallery.php:411
11752
- msgid "Thumbnails Arrow"
11753
- msgstr ""
11754
-
11755
- #: includes/widgets/htmega_slider_thumb_gallery.php:513
11756
- msgid "Thumbnails auto play"
11757
- msgstr ""
11758
-
11759
- #: includes/widgets/htmega_slider_thumb_gallery.php:536
11760
- msgid "Thumbnails Autoplay animation speed"
11761
- msgstr ""
11762
-
11763
- #: includes/widgets/htmega_slider_thumb_gallery.php:525
11764
- msgid "Thumbnails Autoplay speed"
11765
- msgstr ""
11766
-
11767
- #: includes/widgets/htmega_slider_thumb_gallery.php:487
11768
- msgid "Thumbnails Center Mode"
11769
- msgstr ""
11770
-
11771
- #: includes/widgets/htmega_slider_thumb_gallery.php:498
11772
- msgid "Thumbnails Center padding"
11773
- msgstr ""
11774
-
11775
- #: includes/widgets/htmega_slider_thumb_gallery.php:452
11776
- msgid "Thumbnails dots"
11777
- msgstr ""
11778
-
11779
- #: includes/widgets/htmega_slider_thumb_gallery.php:391
11780
- msgid "Thumbnails Gallery Option"
11781
- msgstr ""
11782
-
11783
- #: includes/widgets/htmega_slider_thumb_gallery.php:99
11784
- msgid "Thumbnails Image Size"
11785
- msgstr ""
11786
-
11787
- #: includes/widgets/htmega_slider_thumb_gallery.php:582
11788
- #: includes/widgets/htmega_slider_thumb_gallery.php:640
11789
- msgid "Thumbnails item to scroll"
11790
- msgstr ""
11791
-
11792
- #: includes/widgets/htmega_slider_thumb_gallery.php:398
11793
- #: includes/widgets/htmega_slider_thumb_gallery.php:569
11794
- #: includes/widgets/htmega_slider_thumb_gallery.php:624
11795
- msgid "Thumbnails Items"
11796
- msgstr ""
11797
-
11798
- #: includes/widgets/htmega_slider_thumb_gallery.php:606
11799
- msgid "Thumbnails Mobile Phone"
11800
- msgstr ""
11801
-
11802
- #: includes/widgets/htmega_slider_thumb_gallery.php:656
11803
- msgid "Thumbnails Mobile Resolution"
11804
- msgstr ""
11805
-
11806
- #: includes/widgets/htmega_slider_thumb_gallery.php:437
11807
- msgid "Thumbnails Next icon"
11808
- msgstr ""
11809
-
11810
- #: includes/widgets/htmega_slider_thumb_gallery.php:422
11811
- msgid "Thumbnails Previous icon"
11812
- msgstr ""
11813
-
11814
- #: includes/widgets/htmega_slider_thumb_gallery.php:546
11815
- msgid "Thumbnails Slider item to scroll"
11816
- msgstr ""
11817
-
11818
- #: includes/widgets/htmega_slider_thumb_gallery.php:559
11819
- msgid "Thumbnails Tablet"
11820
- msgstr ""
11821
-
11822
- #: includes/widgets/htmega_slider_thumb_gallery.php:595
11823
- msgid "Thumbnails Tablet Resolution"
11824
- msgstr ""
11825
-
11826
- #: includes/widgets/htmega_business_hours.php:189
11827
- msgid "Thursday"
11828
- msgstr ""
11829
-
11830
- #: includes/widgets/htmega_newsticker.php:74
11831
- msgid "Ticker Label"
11832
- msgstr ""
11833
-
11834
- #: includes/widgets/htmega_booked_calender.php:508
11835
- #: includes/widgets/htmega_business_hours.php:92
11836
- #: includes/widgets/htmega_business_hours.php:544
11837
- #: includes/widgets/htmega_twitter_feed.php:896
11838
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:67
11839
- msgid "Time"
11840
- msgstr ""
11841
-
11842
- #: includes/widgets/htmega_custom_event.php:277
11843
- msgid "Time / Location"
11844
- msgstr ""
11845
-
11846
- #: extensions/wc-sales-notification/admin/setting.php:141
11847
- msgid "Time between notifications. <span>( Pro )</span>"
11848
- msgstr ""
11849
-
11850
- #: includes/widgets/htmega_business_hours.php:128
11851
- msgid "Time Color"
11852
- msgstr ""
11853
-
11854
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:117
11855
- msgid "Time Format"
11856
- msgstr ""
11857
-
11858
- #: extensions/wc-sales-notification/admin/setting.php:140
11859
- msgid "Time Interval"
11860
- msgstr ""
11861
-
11862
- #: admin/include/admin-setting.php:1255 admin/include/admin-setting.php:1280
11863
- msgid "Time interval each notification"
11864
- msgstr ""
11865
-
11866
- #: includes/widgets/htmega_countdown.php:124
11867
- msgid "Time Setting"
11868
- msgstr ""
11869
-
11870
- #: includes/widgets/htmega_booked_calender.php:462
11871
- msgid "Time Slot Color"
11872
- msgstr ""
11873
-
11874
- #: includes/widgets/htmega_verticle_time_line.php:555
11875
- msgid "Timeline Dot BG Color"
11876
- msgstr ""
11877
-
11878
- #: includes/widgets/htmega_verticle_time_line.php:540
11879
- msgid "Timeline Dot Color"
11880
- msgstr ""
11881
-
11882
- #: includes/widgets/htmega_verticle_time_line.php:569
11883
- msgid "Timeline Dot Hover BG Color"
11884
- msgstr ""
11885
-
11886
- #: includes/widgets/htmega_verticle_time_line.php:584
11887
- msgid "Timeline Hover Line Color"
11888
- msgstr ""
11889
-
11890
- #: includes/widgets/htmega_verticle_time_line.php:523
11891
- msgid "Timeline Line Color"
11892
- msgstr ""
11893
-
11894
- #: includes/widgets/htmega_verticle_time_line.php:505
11895
- msgid "Timeline Primary Color"
11896
- msgstr ""
11897
-
11898
- #: includes/widgets/htmega_verticle_time_line.php:497
11899
- msgid "Timeline Style"
11900
- msgstr ""
11901
-
11902
- #: includes/widgets/htmega_countdown.php:741
11903
- msgid "Timer"
11904
- msgstr ""
11905
-
11906
- #: includes/widgets/htmega_countdown.php:854
11907
- msgid "Timer separator"
11908
- msgstr ""
11909
-
11910
- #: includes/widgets/htmega_accordion.php:70
11911
- #: includes/widgets/htmega_accordion.php:157
11912
- #: includes/widgets/htmega_accordion.php:200
11913
- #: includes/widgets/htmega_add_banner.php:92
11914
- #: includes/widgets/htmega_add_banner.php:430
11915
- #: includes/widgets/htmega_brand.php:62
11916
- #: includes/widgets/htmega_buddy_press.php:306
11917
- #: includes/widgets/htmega_business_hours.php:69
11918
- #: includes/widgets/htmega_business_hours.php:376
11919
- #: includes/widgets/htmega_call_to_action.php:82
11920
- #: includes/widgets/htmega_call_to_action.php:559
11921
- #: includes/widgets/htmega_carousel.php:70
11922
- #: includes/widgets/htmega_counter.php:538
11923
- #: includes/widgets/htmega_custom_event.php:42
11924
- #: includes/widgets/htmega_custom_event.php:123
11925
- #: includes/widgets/htmega_easy_digital_download.php:342
11926
- #: includes/widgets/htmega_errorcontent.php:88
11927
- #: includes/widgets/htmega_errorcontent.php:305
11928
- #: includes/widgets/htmega_googlemap.php:161
11929
- #: includes/widgets/htmega_gravity_forms.php:116
11930
- #: includes/widgets/htmega_imagemarker.php:777
11931
- #: includes/widgets/htmega_image_grid.php:105
11932
- #: includes/widgets/htmega_image_grid.php:271
11933
- #: includes/widgets/htmega_image_masonry.php:94
11934
- #: includes/widgets/htmega_image_masonry.php:255
11935
- #: includes/widgets/htmega_job_manager.php:100
11936
- #: includes/widgets/htmega_newsticker.php:260
11937
- #: includes/widgets/htmega_ninja_form.php:109
11938
- #: includes/widgets/htmega_panel_slider.php:668
11939
- #: includes/widgets/htmega_postgrid.php:151
11940
- #: includes/widgets/htmega_postgrid.php:164
11941
- #: includes/widgets/htmega_postgrid.php:443
11942
- #: includes/widgets/htmega_post_grid_tab.php:158
11943
- #: includes/widgets/htmega_post_grid_tab.php:171
11944
- #: includes/widgets/htmega_post_grid_tab.php:426
11945
- #: includes/widgets/htmega_post_slider.php:162
11946
- #: includes/widgets/htmega_post_slider.php:175
11947
- #: includes/widgets/htmega_post_slider.php:861
11948
- #: includes/widgets/htmega_pricing_list_view.php:1508
11949
- #: includes/widgets/htmega_progress_bar.php:104
11950
- #: includes/widgets/htmega_progress_bar.php:236
11951
- #: includes/widgets/htmega_section_title.php:57
11952
- #: includes/widgets/htmega_section_title.php:509
11953
- #: includes/widgets/htmega_service.php:353
11954
- #: includes/widgets/htmega_singlepost.php:94
11955
- #: includes/widgets/htmega_singlepost.php:153
11956
- #: includes/widgets/htmega_slider_thumb_gallery.php:66
11957
- #: includes/widgets/htmega_socialshere.php:100
11958
- #: includes/widgets/htmega_socialshere.php:179
11959
- #: includes/widgets/htmega_special_day_banner.php:78
11960
- #: includes/widgets/htmega_special_day_banner.php:335
11961
- #: includes/widgets/htmega_switcher.php:62
11962
- #: includes/widgets/htmega_switcher.php:153 includes/widgets/htmega_tabs.php:69
11963
- #: includes/widgets/htmega_teammember.php:214
11964
- #: includes/widgets/htmega_verticle_time_line.php:80
11965
- #: includes/widgets/htmega_verticle_time_line.php:124
11966
- #: includes/widgets/htmega_wc_categories.php:282
11967
- #: includes/widgets/htmega_weather.php:247
11968
- #: includes/widgets/htmega_working_process.php:79
11969
- #: includes/widgets/htmega_working_process.php:620
11970
- #: includes/widgets/htmega_wpforms.php:74
11971
- #: includes/widgets/htmega_wpforms.php:101
11972
- #: extensions/ht-builder/widgets/bl_post_archive.php:202
11973
- #: extensions/ht-builder/widgets/bl_post_archive.php:326
11974
- msgid "Title"
11975
- msgstr ""
11976
-
11977
- #: includes/widgets/htmega_tabs.php:218
11978
- msgid "Title #1"
11979
- msgstr ""
11980
-
11981
- #: includes/widgets/htmega_tabs.php:222
11982
- msgid "Title #2"
11983
- msgstr ""
11984
-
11985
- #: includes/widgets/htmega_tabs.php:226
11986
- msgid "Title #3"
11987
- msgstr ""
11988
-
11989
- #: includes/widgets/htmega_tabs.php:156
11990
- msgid "Title Active Color"
11991
- msgstr ""
11992
-
11993
- #: includes/widgets/htmega_counter.php:657
11994
- msgid "Title After Border Color"
11995
- msgstr ""
11996
-
11997
- #: includes/widgets/htmega_service.php:451
11998
- msgid "Title Border Color"
11999
- msgstr ""
12000
-
12001
- #: includes/widgets/htmega_imagemarker.php:784
12002
- msgid "Title Bottom Border Style"
12003
- msgstr ""
12004
-
12005
- #: includes/widgets/htmega_carousel.php:1309
12006
- #: includes/widgets/htmega_carousel.php:1393
12007
- #: includes/widgets/htmega_gallery_justify.php:151
12008
- #: includes/widgets/htmega_switcher.php:322
12009
- #: includes/widgets/htmega_switcher.php:358
12010
- #: includes/widgets/htmega_tabs.php:135
12011
- #: extensions/ht-builder/widgets/bl_post_title.php:68
12012
- msgid "Title Color"
12013
- msgstr ""
12014
-
12015
- #: includes/widgets/htmega_ninja_form.php:84
12016
- msgid "Title Hide"
12017
- msgstr ""
12018
-
12019
- #: includes/widgets/htmega_accordion.php:275
12020
- #: extensions/ht-builder/widgets/bl_page_title.php:45
12021
- #: extensions/ht-builder/widgets/bl_post_archive_title.php:46
12022
- #: extensions/ht-builder/widgets/bl_post_title.php:47
12023
- #: extensions/ht-builder/widgets/bl_site_title.php:46
12024
- msgid "Title HTML Tag"
12025
- msgstr ""
12026
-
12027
- #: includes/widgets/htmega_newsticker.php:288
12028
- #: includes/widgets/htmega_postgrid.php:174
12029
- #: includes/widgets/htmega_post_grid_tab.php:180
12030
- #: includes/widgets/htmega_post_slider.php:186
12031
- #: includes/widgets/htmega_singlepost.php:104
12032
- #: extensions/ht-builder/widgets/bl_post_archive.php:169
12033
- msgid "Title Length"
12034
- msgstr ""
12035
-
12036
- #: includes/widgets/htmega_section_title.php:463
12037
- msgid "Title Separator Color"
12038
- msgstr ""
12039
-
12040
- #: includes/widgets/htmega_section_title.php:183
12041
- msgid "Title Setting"
12042
- msgstr ""
12043
-
12044
- #: includes/widgets/htmega_download_monitor.php:202
12045
- #: includes/widgets/htmega_progress_bar.php:644
12046
- #: includes/widgets/htmega_section_title.php:41
12047
- #: includes/widgets/htmega_slider_thumb_gallery.php:677
12048
- #: includes/widgets/htmega_socialshere.php:640
12049
- msgid "Title Style"
12050
- msgstr ""
12051
-
12052
- #: includes/widgets/htmega_section_title.php:498
12053
- msgid "Title style"
12054
- msgstr ""
12055
-
12056
- #: includes/widgets/htmega_call_to_action.php:91
12057
- msgid "Title Tag"
12058
- msgstr ""
12059
-
12060
- #: includes/widgets/htmega_postgrid.php:542
12061
- msgid "Title Two style"
12062
- msgstr ""
12063
-
12064
- #: includes/widgets/htmega_teammember.php:640
12065
- #: includes/widgets/htmega_teammember.php:655
12066
- msgid "To hide the shape, please set the color to transparent."
12067
- msgstr ""
12068
-
12069
- #: admin/include/admin-setting.php:1309
12070
- #: extensions/ht-builder/admin/setting.php:151
12071
- #: extensions/wc-sales-notification/admin/setting.php:235
12072
- msgid "to unlock these pro elements!"
12073
- msgstr ""
12074
-
12075
- #: extensions/ht-menu/classes/class.mega-menu.php:268
12076
- msgid "to unlock these pro options!"
12077
- msgstr ""
12078
-
12079
- #: includes/weather-resource/template/layout-1.php:40
12080
- #: includes/weather-resource/template/layout-2.php:14
12081
- #: includes/weather-resource/template/layout-4.php:26
12082
- msgid "Today"
12083
- msgstr ""
12084
-
12085
- #: admin/include/admin-setting.php:543 includes/widgets/htmega_toggle.php:14
12086
- #: includes/widgets/htmega_toggle.php:36
12087
- msgid "Toggle"
12088
- msgstr ""
12089
-
12090
- #: admin/include/admin-setting.php:1342
12091
- msgid "Toggle All"
12092
- msgstr ""
12093
-
12094
- #: includes/widgets/htmega_switcher.php:425
12095
- #: includes/widgets/htmega_switcher.php:500
12096
- msgid "Toggle Color"
12097
- msgstr ""
12098
-
12099
- #: includes/widgets/htmega_lightbox.php:128
12100
- msgid "Toggler Image"
12101
- msgstr ""
12102
-
12103
- #: includes/widgets/htmega_lightbox.php:113
12104
- msgid "Toggler Type"
12105
- msgstr ""
12106
-
12107
- #: admin/include/admin-setting.php:551 includes/widgets/htmega_tooltip.php:14
12108
- #: includes/widgets/htmega_tooltip.php:42
12109
- #: includes/widgets/htmega_tooltip.php:75
12110
- #: includes/widgets/htmega_tooltip.php:475
12111
- msgid "Tooltip"
12112
- msgstr ""
12113
-
12114
- #: includes/widgets/htmega_tooltip.php:168
12115
- msgid "Tooltip content"
12116
- msgstr ""
12117
-
12118
- #: includes/widgets/htmega_tooltip.php:159
12119
- msgid "Tooltip Options"
12120
- msgstr ""
12121
-
12122
- #: includes/widgets/htmega_tooltip.php:165
12123
- msgid "Tooltip Text"
12124
- msgstr ""
12125
-
12126
- #: admin/include/templates_list.php:77 admin/include/templates_list.php:80
12127
- #: includes/widgets/htmega_add_banner.php:62
12128
- #: includes/widgets/htmega_button.php:120
12129
- #: includes/widgets/htmega_imagemarker.php:211
12130
- #: includes/widgets/htmega_image_comparison.php:185
12131
- #: includes/widgets/htmega_notify.php:588
12132
- #: includes/widgets/htmega_notify.php:761
12133
- #: includes/widgets/htmega_offcanvas.php:105
12134
- #: includes/widgets/htmega_popover.php:195
12135
- #: includes/widgets/htmega_pricing_list_view.php:512
12136
- #: includes/widgets/htmega_pricing_list_view.php:1163
12137
- #: includes/widgets/htmega_pricing_list_view.php:1197
12138
- #: includes/widgets/htmega_section_title.php:157
12139
- #: includes/widgets/htmega_section_title.php:236
12140
- #: includes/widgets/htmega_singlepost.php:61
12141
- #: includes/widgets/htmega_slider_thumb_gallery.php:56
12142
- #: includes/widgets/htmega_special_day_banner.php:46
12143
- #: includes/widgets/htmega_teammember.php:107
12144
- #: includes/widgets/htmega_tooltip.php:183
12145
- #: extensions/ht-builder/widgets/bl_post_author_info.php:120
12146
- msgid "Top"
12147
- msgstr ""
12148
-
12149
- #: includes/widgets/htmega_notify.php:114
12150
- msgid "Top Center"
12151
- msgstr ""
12152
-
12153
- #: includes/widgets/htmega_notify.php:119
12154
- msgid "Top Fullwidth"
12155
- msgstr ""
12156
-
12157
- #: includes/widgets/htmega_notify.php:113
12158
- msgid "Top Left"
12159
- msgstr ""
12160
-
12161
- #: includes/widgets/htmega_notify.php:115
12162
- msgid "Top Right"
12163
- msgstr ""
12164
-
12165
- #: includes/widgets/htmega_scroll_image.php:291
12166
- msgid "Top-Bottom"
12167
- msgstr ""
12168
-
12169
- #: includes/widgets/htmega_pricing_list_view.php:368
12170
- #: includes/widgets/htmega_pricing_list_view.php:997
12171
- msgid "Top-Bottom Position"
12172
- msgstr ""
12173
-
12174
- #: includes/widgets/htmega_bbpress.php:58
12175
- msgid "Topic Form"
12176
- msgstr ""
12177
-
12178
- #: includes/widgets/htmega_bbpress.php:57
12179
- msgid "Topic Index"
12180
- msgstr ""
12181
-
12182
- #: includes/widgets/htmega_bbpress.php:62
12183
- msgid "Topic Tags"
12184
- msgstr ""
12185
-
12186
- #: includes/widgets/htmega_brand.php:288
12187
- msgid "Transition Duration"
12188
- msgstr ""
12189
-
12190
- #: includes/widgets/htmega_business_hours.php:179
12191
- msgid "Tues Day"
12192
- msgstr ""
12193
-
12194
- #: includes/widgets/htmega_socialshere.php:67
12195
- msgid "tumblr"
12196
- msgstr ""
12197
-
12198
- #: includes/widgets/htmega_socialshere.php:63
12199
- #: includes/widgets/htmega_socialshere.php:325
12200
- msgid "Twitter"
12201
- msgstr ""
12202
-
12203
- #: includes/widgets/htmega_twitter_feed.php:114
12204
- msgid "Twitter access token secret."
12205
- msgstr ""
12206
-
12207
- #: includes/widgets/htmega_twitter_feed.php:104
12208
- msgid "Twitter access token."
12209
- msgstr ""
12210
-
12211
- #: includes/widgets/htmega_twitter_feed.php:84
12212
- msgid "Twitter consumer key."
12213
- msgstr ""
12214
-
12215
- #: includes/widgets/htmega_twitter_feed.php:94
12216
- msgid "Twitter consumer secret."
12217
- msgstr ""
12218
-
12219
- #: admin/include/admin-setting.php:559
12220
- #: includes/widgets/htmega_twitter_feed.php:18
12221
- #: includes/widgets/htmega_twitter_feed.php:48
12222
- msgid "Twitter Feed"
12223
- msgstr ""
12224
-
12225
- #: includes/widgets/htmega_image_grid.php:63
12226
- #: includes/widgets/htmega_image_masonry.php:80
12227
- #: includes/widgets/htmega_testimonial_grid.php:74
12228
- #: includes/widgets/htmega_testimonial_grid.php:89
12229
- #: includes/widgets/htmega_testimonial_grid.php:106
12230
- msgid "Two"
12231
- msgstr ""
12232
-
12233
- #: includes/widgets/htmega_animated_heading.php:71
12234
- #: includes/widgets/htmega_buddy_press.php:48
12235
- msgid "Type"
12236
- msgstr ""
12237
-
12238
- #: includes/widgets/htmega_errorcontent.php:114
12239
- msgid "Type your Description here."
12240
- msgstr ""
12241
-
12242
- #: includes/widgets/htmega_call_to_action.php:106
12243
- msgid "Type your description here..."
12244
- msgstr ""
12245
-
12246
- #: includes/widgets/htmega_errorcontent.php:102
12247
- msgid "Type your Sub title here."
12248
- msgstr ""
12249
-
12250
- #: includes/widgets/htmega_call_to_action.php:59
12251
- msgid "Type your sub title here..."
12252
- msgstr ""
12253
-
12254
- #: includes/widgets/htmega_counter.php:157
12255
- msgid "Type your title here"
12256
- msgstr ""
12257
-
12258
- #: includes/widgets/htmega_errorcontent.php:90
12259
- msgid "Type your title here."
12260
- msgstr ""
12261
-
12262
- #: includes/widgets/htmega_call_to_action.php:84
12263
- msgid "Type your title here..."
12264
- msgstr ""
12265
-
12266
- #: includes/widgets/htmega_accordion.php:655
12267
- #: includes/widgets/htmega_accordion.php:745
12268
- #: includes/widgets/htmega_accordion.php:1011
12269
- #: includes/widgets/htmega_accordion.php:1339
12270
- #: includes/widgets/htmega_add_banner.php:454
12271
- #: includes/widgets/htmega_add_banner.php:513
12272
- #: includes/widgets/htmega_add_banner.php:572
12273
- #: includes/widgets/htmega_add_banner.php:639
12274
- #: includes/widgets/htmega_animated_heading.php:174
12275
- #: includes/widgets/htmega_animated_heading.php:258
12276
- #: includes/widgets/htmega_animated_heading.php:305
12277
- #: includes/widgets/htmega_animated_heading.php:393
12278
- #: includes/widgets/htmega_buddy_press.php:336
12279
- #: includes/widgets/htmega_buddy_press.php:405
12280
- #: includes/widgets/htmega_button.php:220
12281
- #: includes/widgets/htmega_button.php:590
12282
- #: includes/widgets/htmega_caldera_form.php:113
12283
- #: includes/widgets/htmega_caldera_form.php:157
12284
- #: includes/widgets/htmega_caldera_form.php:477
12285
- #: includes/widgets/htmega_call_to_action.php:524
12286
- #: includes/widgets/htmega_call_to_action.php:583
12287
- #: includes/widgets/htmega_call_to_action.php:642
12288
- #: includes/widgets/htmega_call_to_action.php:698
12289
- #: includes/widgets/htmega_call_to_action.php:904
12290
- #: includes/widgets/htmega_countdown.php:1036
12291
- #: includes/widgets/htmega_data_table.php:595
12292
- #: includes/widgets/htmega_data_table.php:714
12293
- #: includes/widgets/htmega_data_table.php:827
12294
- #: includes/widgets/htmega_data_table.php:945
12295
- #: includes/widgets/htmega_data_table.php:1008
12296
- #: includes/widgets/htmega_double_button.php:479
12297
- #: includes/widgets/htmega_double_button.php:652
12298
- #: includes/widgets/htmega_double_button.php:835
12299
- #: includes/widgets/htmega_download_monitor.php:223
12300
- #: includes/widgets/htmega_download_monitor.php:290
12301
- #: includes/widgets/htmega_easy_digital_download.php:372
12302
- #: includes/widgets/htmega_easy_digital_download.php:457
12303
- #: includes/widgets/htmega_easy_digital_download.php:494
12304
- #: includes/widgets/htmega_easy_digital_download.php:731
12305
- #: includes/widgets/htmega_errorcontent.php:327
12306
- #: includes/widgets/htmega_errorcontent.php:406
12307
- #: includes/widgets/htmega_errorcontent.php:485
12308
- #: includes/widgets/htmega_errorcontent.php:581
12309
- #: includes/widgets/htmega_errorcontent.php:732
12310
- #: includes/widgets/htmega_googlemap.php:189
12311
- #: includes/widgets/htmega_googlemap.php:223
12312
- #: includes/widgets/htmega_googlemap.php:425
12313
- #: includes/widgets/htmega_googlemap.php:512
12314
- #: includes/widgets/htmega_image_comparison.php:253
12315
- #: includes/widgets/htmega_image_comparison.php:334
12316
- #: includes/widgets/htmega_image_grid.php:472
12317
- #: includes/widgets/htmega_notify.php:341
12318
- #: includes/widgets/htmega_panel_slider.php:702
12319
- #: includes/widgets/htmega_panel_slider.php:758
12320
- #: includes/widgets/htmega_postgrid.php:479
12321
- #: includes/widgets/htmega_postgrid.php:554
12322
- #: includes/widgets/htmega_postgrid.php:594
12323
- #: includes/widgets/htmega_postgrid.php:681
12324
- #: includes/widgets/htmega_post_grid_tab.php:459
12325
- #: includes/widgets/htmega_post_grid_tab.php:546
12326
- #: includes/widgets/htmega_post_grid_tab.php:643
12327
- #: includes/widgets/htmega_post_grid_tab.php:769
12328
- #: includes/widgets/htmega_post_grid_tab.php:863
12329
- #: includes/widgets/htmega_post_slider.php:894
12330
- #: includes/widgets/htmega_post_slider.php:981
12331
- #: includes/widgets/htmega_post_slider.php:1078
12332
- #: includes/widgets/htmega_post_slider.php:1197
12333
- #: includes/widgets/htmega_post_slider.php:1291
12334
- #: includes/widgets/htmega_pricing_list_view.php:1323
12335
- #: includes/widgets/htmega_pricing_list_view.php:1414
12336
- #: includes/widgets/htmega_pricing_list_view.php:1532
12337
- #: includes/widgets/htmega_pricing_list_view.php:1664
12338
- #: includes/widgets/htmega_progress_bar.php:751
12339
- #: includes/widgets/htmega_progress_bar.php:830
12340
- #: includes/widgets/htmega_scroll_image.php:401
12341
- #: includes/widgets/htmega_singlepost.php:185
12342
- #: includes/widgets/htmega_singlepost.php:272
12343
- #: includes/widgets/htmega_singlepost.php:385
12344
- #: includes/widgets/htmega_special_day_banner.php:359
12345
- #: includes/widgets/htmega_special_day_banner.php:418
12346
- #: includes/widgets/htmega_special_day_banner.php:477
12347
- #: includes/widgets/htmega_special_day_banner.php:536
12348
- #: includes/widgets/htmega_special_day_banner.php:595
12349
- #: includes/widgets/htmega_special_day_banner.php:662
12350
- #: includes/widgets/htmega_tabs.php:549
12351
- #: includes/widgets/htmega_verticle_time_line.php:158
12352
- #: includes/widgets/htmega_verticle_time_line.php:211
12353
- #: includes/widgets/htmega_verticle_time_line.php:341
12354
- #: includes/widgets/htmega_wc_categories.php:300
12355
- #: includes/widgets/htmega_wc_element_pages.php:279
12356
- #: includes/widgets/htmega_wc_element_pages.php:405
12357
- #: includes/widgets/htmega_wc_element_pages.php:660
12358
- #: includes/widgets/htmega_wc_element_pages.php:942
12359
- #: includes/widgets/htmega_wc_element_pages.php:1326
12360
- #: includes/widgets/htmega_wc_element_pages.php:1591
12361
- #: includes/widgets/htmega_wc_element_pages.php:1725
12362
- #: includes/widgets/htmega_wc_element_pages.php:1873
12363
- #: includes/widgets/htmega_working_process.php:654
12364
- #: includes/widgets/htmega_working_process.php:733
12365
- #: includes/widgets/htmega_working_process.php:833
12366
- #: extensions/ht-builder/widgets/bl_page_title.php:78
12367
- #: extensions/ht-builder/widgets/bl_post_archive.php:359
12368
- #: extensions/ht-builder/widgets/bl_post_archive.php:466
12369
- #: extensions/ht-builder/widgets/bl_post_archive.php:572
12370
- #: extensions/ht-builder/widgets/bl_post_archive.php:664
12371
- #: extensions/ht-builder/widgets/bl_post_archive.php:733
12372
- #: extensions/ht-builder/widgets/bl_post_archive.php:869
12373
- #: extensions/ht-builder/widgets/bl_post_archive_title.php:80
12374
- #: extensions/ht-builder/widgets/bl_post_comments.php:60
12375
- #: extensions/ht-builder/widgets/bl_post_comments.php:121
12376
- #: extensions/ht-builder/widgets/bl_post_content.php:60
12377
- #: extensions/ht-builder/widgets/bl_post_excerpt.php:60
12378
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:367
12379
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:407
12380
- #: extensions/ht-builder/widgets/bl_post_search_form.php:122
12381
- #: extensions/ht-builder/widgets/bl_post_search_form.php:207
12382
- #: extensions/ht-builder/widgets/bl_post_title.php:80
12383
- #: extensions/ht-builder/widgets/bl_site_title.php:80
12384
- msgid "Typography"
12385
- msgstr ""
12386
-
12387
- #: includes/widgets/htmega_weather.php:52
12388
- msgid "Units"
12389
- msgstr ""
12390
-
12391
- #: includes/widgets/htmega_newsticker.php:132
12392
- msgid "Up"
12393
- msgstr ""
12394
-
12395
- #: includes/widgets/htmega_section_title.php:644
12396
- msgid "Use Backround for Text"
12397
- msgstr ""
12398
-
12399
- #: includes/widgets/htmega_googlemap.php:171
12400
- msgid "Use max 32x32 px size."
12401
- msgstr ""
12402
-
12403
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:108
12404
- #: extensions/ht-builder/widgets/bl_post_meta_info.php:147
12405
- #, php-format
12406
- msgid "Use the letters: %s"
12407
- msgstr ""
12408
-
12409
- #: admin/include/admin-setting.php:567
12410
- #: includes/widgets/htmega_user_login_form.php:13
12411
- msgid "User Login Form"
12412
- msgstr ""
12413
-
12414
- #: includes/widgets/htmega_twitter_feed.php:833
12415
- msgid "User Name Style"
12416
- msgstr ""
12417
-
12418
- #: admin/include/admin-setting.php:575
12419
- msgid "User Register Form"
12420
- msgstr ""
12421
-
12422
- #: includes/widgets/htmega_twitter_feed.php:71
12423
- msgid "UserName"
12424
- msgstr ""
12425
-
12426
- #: includes/widgets/htmega_user_login_form.php:1564
12427
- #: includes/widgets/htmega_user_login_form.php:1565
12428
- msgid "Username"
12429
- msgstr ""
12430
-
12431
- #: includes/widgets/htmega_user_login_form.php:208
12432
- msgid "Username Label"
12433
- msgstr ""
12434
-
12435
- #: includes/widgets/htmega_user_login_form.php:210
12436
- #: includes/widgets/htmega_user_login_form.php:223
12437
- msgid "Username or Email"
12438
- msgstr ""
12439
-
12440
- #: includes/widgets/htmega_user_login_form.php:221
12441
- msgid "Username Placeholder"
12442
- msgstr ""
12443
-
12444
- #: includes/helper-function.php:443
12445
- msgid "Username too short. At least 4 characters is required"
12446
- msgstr ""
12447
-
12448
- #: includes/helper-function.php:438
12449
- msgid "Username, Password and E-Mail are required"
12450
- msgstr ""
12451
-
12452
- #: includes/widgets/htmega_caldera_form.php:657
12453
- #: includes/widgets/htmega_ninja_form.php:1137
12454
- msgid "Validation Pass Style"
12455
- msgstr ""
12456
-
12457
- #: includes/widgets/htmega_progress_bar.php:763
12458
- msgid "Value"
12459
- msgstr ""
12460
-
12461
- #: includes/widgets/htmega_progress_bar.php:174
12462
- msgid "Value Indicator"
12463
- msgstr ""
12464
-
12465
- #: includes/widgets/htmega_progress_bar.php:62
12466
- #: includes/widgets/htmega_scroll_navigation.php:131
12467
- msgid "Vertical"
12468
- msgstr ""
12469
-
12470
- #: includes/widgets/htmega_pricing_list_view.php:1155
12471
- msgid "Vertical Alignment"
12472
- msgstr ""
12473
-
12474
- #: includes/widgets/htmega_working_process.php:235
12475
- msgid "Vertical Line Color"
12476
- msgstr ""
12477
-
12478
- #: includes/widgets/htmega_service.php:861
12479
- msgid "Vertical line Hover Color"
12480
- msgstr ""
12481
-
12482
- #: extensions/ht-menu/widgets/verticle-mega-menu.php:15
12483
- msgid "Vertical Mega Menu"
12484
- msgstr ""
12485
-
12486
- #: includes/widgets/htmega_carousel.php:694
12487
- #: includes/widgets/htmega_panel_slider.php:992
12488
- msgid "Vertical Position"
12489
- msgstr ""
12490
-
12491
- #: includes/widgets/htmega_special_day_banner.php:219
12492
- msgid "Vertical Postion"
12493
- msgstr ""
12494
-
12495
- #: includes/widgets/htmega_slider_thumb_gallery.php:463
12496
- msgid "Vertical Slide"
12497
- msgstr ""
12498
-
12499
- #: includes/widgets/htmega_twitter_feed.php:1410
12500
- msgid "Vertical Space"
12501
- msgstr ""
12502
-
12503
- #: includes/widgets/htmega_verticle_time_line.php:14
12504
- msgid "Vertical Timeline"
12505
- msgstr ""
12506
-
12507
- #: includes/widgets/htmega_verticle_time_line.php:36
12508
- msgid "Vertical Timeline Layout"
12509
- msgstr ""
12510
-
12511
- #: admin/include/admin-setting.php:583
12512
- msgid "Verticle Timeline"
12513
- msgstr ""
12514
-
12515
- #: includes/widgets/htmega_socialshere.php:90
12516
- msgid "Viber"
12517
- msgstr ""
12518
-
12519
- #: includes/widgets/htmega_lightbox.php:54
12520
- msgid "Video"
12521
- msgstr ""
12522
-
12523
- #: includes/widgets/htmega_videoplayer.php:233
12524
- msgid "Video Box Style"
12525
- msgstr ""
12526
-
12527
- #: includes/widgets/htmega_videoplayer.php:48
12528
- msgid "Video Container"
12529
- msgstr ""
12530
-
12531
- #: includes/widgets/htmega_videoplayer.php:136
12532
- msgid "Video Image"
12533
- msgstr ""
12534
-
12535
- #: includes/widgets/htmega_videoplayer.php:153
12536
- msgid "Video Options"
12537
- msgstr ""
12538
-
12539
- #: admin/include/admin-setting.php:591
12540
- #: includes/widgets/htmega_videoplayer.php:12
12541
- #: includes/widgets/htmega_videoplayer.php:41
12542
- msgid "Video Player"
12543
- msgstr ""
12544
-
12545
- #: includes/widgets/htmega_videoplayer.php:221
12546
- msgid "Video Start Time"
12547
- msgstr ""
12548
-
12549
- #: admin/include/admin-setting.php:1221
12550
- msgid "Video Tutorial"
12551
- msgstr ""
12552
-
12553
- #: includes/widgets/htmega_lightbox.php:77
12554
- msgid "Video URL"
12555
- msgstr ""
12556
-
12557
- #: includes/widgets/htmega_videoplayer.php:60
12558
- msgid "Video Url"
12559
- msgstr ""
12560
-
12561
- #: includes/widgets/htmega_socialshere.php:341
12562
- msgid "View"
12563
- msgstr ""
12564
-
12565
- #: admin/include/admin-setting.php:860
12566
- msgid "View Counter"
12567
- msgstr ""
12568
-
12569
- #: admin/include/admin-setting.php:859
12570
- msgid "View Counter <span>( Pro )</span>"
12571
- msgstr ""
12572
-
12573
- #: includes/widgets/htmega_accordion.php:430
12574
- msgid "Visible Item"
12575
- msgstr ""
12576
-
12577
- #: includes/widgets/htmega_animated_heading.php:114
12578
- msgid "Visible Item Number"
12579
- msgstr ""
12580
-
12581
- #: includes/widgets/htmega_socialshere.php:68
12582
- msgid "Vkontakte"
12583
- msgstr ""
12584
-
12585
- #: admin/include/templates/library/templates.php:148
12586
- msgid "Want to learn more about the HT Mega library?"
12587
- msgstr ""
12588
-
12589
- #: includes/widgets/htmega_notify.php:135
12590
- msgid "Warning"
12591
- msgstr ""
12592
-
12593
- #: admin/include/admin-setting.php:1090
12594
- #: includes/widgets/htmega_wc_add_to_cart.php:14
12595
- msgid "WC : Add To cart"
12596
- msgstr ""
12597
-
12598
- #: admin/include/admin-setting.php:1098
12599
- #: includes/widgets/htmega_wc_categories.php:13
12600
- msgid "WC : Categories"
12601
- msgstr ""
12602
-
12603
- #: admin/include/admin-setting.php:1106
12604
- #: includes/widgets/htmega_wc_element_pages.php:13
12605
- msgid "WC : Pages"
12606
- msgstr ""
12607
-
12608
- #: extensions/wc-sales-notification/admin/setting.php:268
12609
- msgid "WC Sales Notification Settings"
12610
- msgstr ""
12611
-
12612
- #: admin/include/admin-setting.php:623 includes/widgets/htmega_weather.php:13
12613
- #: includes/widgets/htmega_weather.php:36
12614
- msgid "Weather"
12615
- msgstr ""
12616
-
12617
- #: admin/include/admin-setting.php:644
12618
- msgid "Weather Map API Key"
12619
- msgstr ""
12620
-
12621
- #: admin/include/admin-setting.php:646
12622
- msgid "Weather Map API key"
12623
- msgstr ""
12624
-
12625
- #: extensions/ht-builder/widgets/bl_post_author_info.php:98
12626
- msgid "Website"
12627
- msgstr ""
12628
-
12629
- #: includes/helper-function.php:470
12630
- msgid "Website is not a valid URL"
12631
- msgstr ""
12632
-
12633
- #: includes/widgets/htmega_business_hours.php:184
12634
- msgid "Wednesday"
12635
- msgstr ""
12636
-
12637
- #: includes/widgets/htmega_instagram.php:114
12638
- msgid "Week"
12639
- msgstr ""
12640
-
12641
- #: includes/widgets/htmega_socialshere.php:87
12642
- msgid "Weibo"
12643
- msgstr ""
12644
-
12645
- #: includes/widgets/htmega_socialshere.php:91
12646
- msgid "Whatsapp"
12647
- msgstr ""
12648
-
12649
- #: admin/include/admin-setting.php:1186
12650
- msgid "Which will motivate us a lot."
12651
- msgstr ""
12652
-
12653
- #: includes/recommended-plugins/recommended-plugins.php:83
12654
- msgid "Whols"
12655
- msgstr ""
12656
-
12657
- #: includes/widgets/htmega_blockquote.php:630
12658
- #: includes/widgets/htmega_blockquote.php:755
12659
- #: includes/widgets/htmega_caldera_form.php:521
12660
- #: includes/widgets/htmega_carousel.php:654
12661
- #: includes/widgets/htmega_carousel.php:919
12662
- #: includes/widgets/htmega_carousel.php:1025
12663
- #: includes/widgets/htmega_contact_form_seven.php:727
12664
- #: includes/widgets/htmega_contact_form_seven.php:791
12665
- #: includes/widgets/htmega_gravity_forms.php:662
12666
- #: includes/widgets/htmega_imagemarker.php:808
12667
- #: includes/widgets/htmega_image_comparison.php:463
12668
- #: includes/widgets/htmega_instagram.php:1030
12669
- #: includes/widgets/htmega_instagram.php:1209
12670
- #: includes/widgets/htmega_job_manager.php:171
12671
- #: includes/widgets/htmega_mailchimp_wp.php:327
12672
- #: includes/widgets/htmega_modal.php:312 includes/widgets/htmega_notify.php:734
12673
- #: includes/widgets/htmega_panel_slider.php:927
12674
- #: includes/widgets/htmega_panel_slider.php:1134
12675
- #: includes/widgets/htmega_popover.php:514
12676
- #: includes/widgets/htmega_post_slider.php:1640
12677
- #: includes/widgets/htmega_post_slider.php:1789
12678
- #: includes/widgets/htmega_pricing_list_view.php:405
12679
- #: includes/widgets/htmega_pricing_list_view.php:1034
12680
- #: includes/widgets/htmega_quforms.php:805
12681
- #: includes/widgets/htmega_scroll_navigation.php:382
12682
- #: includes/widgets/htmega_search.php:554
12683
- #: includes/widgets/htmega_search.php:789
12684
- #: includes/widgets/htmega_service.php:571
12685
- #: includes/widgets/htmega_service.php:821
12686
- #: includes/widgets/htmega_service.php:887
12687
- #: includes/widgets/htmega_slider_thumb_gallery.php:921
12688
- #: includes/widgets/htmega_slider_thumb_gallery.php:1138
12689
- #: includes/widgets/htmega_special_day_banner.php:165
12690
- #: includes/widgets/htmega_twitter_feed.php:1169
12691
- #: includes/widgets/htmega_twitter_feed.php:1371
12692
- #: includes/widgets/htmega_user_login_form.php:1173
12693
- #: includes/widgets/htmega_working_process.php:887
12694
- #: includes/widgets/htmega_working_process.php:1012
12695
- #: includes/widgets/htmega_wpforms.php:948
12696
- #: extensions/ht-builder/widgets/bl_post_author_info.php:146
12697
- msgid "Width"
12698
- msgstr ""
12699
-
12700
- #: includes/recommended-plugins/recommended-plugins.php:63
12701
- msgid "WishSuite"
12702
- msgstr ""
12703
-
12704
- #: includes/recommended-plugins/recommended-plugins.php:51
12705
- msgid "WooCommerce"
12706
- msgstr ""
12707
-
12708
- #: includes/recommended-plugins/recommended-plugins.php:58
12709
- msgid "WooLentor – WooCommerce Elementor Addons + Builder"
12710
- msgstr ""
12711
-
12712
- #: includes/widgets/htmega_progress_bar.php:106
12713
- #: includes/widgets/htmega_progress_bar.php:208
12714
- #: includes/widgets/htmega_progress_bar.php:238
12715
- #: includes/widgets/htmega_progress_bar.php:406
12716
- #: includes/widgets/htmega_socialshere.php:84
12717
- msgid "WordPress"
12718
- msgstr ""
12719
-
12720
- #: includes/widgets/htmega_pricing_list_view.php:82
12721
- #: includes/widgets/htmega_pricing_list_view.php:146
12722
- msgid "WordPress Plugin"
12723
- msgstr ""
12724
-
12725
- #: admin/include/admin-setting.php:599
12726
- #: includes/widgets/htmega_working_process.php:14
12727
- #: includes/widgets/htmega_working_process.php:35
12728
- msgid "Working Process"
12729
- msgstr ""
12730
-
12731
- #: admin/include/admin-setting.php:1059 includes/widgets/htmega_wpforms.php:13
12732
- #: includes/widgets/htmega_wpforms.php:57
12733
- msgid "WP Form"
12734
- msgstr ""
12735
-
12736
- #: includes/recommended-plugins/recommended-plugins.php:96
12737
- msgid "WP Plugin Manager"
12738
- msgstr ""
12739
-
12740
- #: includes/widgets/htmega_section_title.php:291
12741
- msgid "X Offset"
12742
- msgstr ""
12743
-
12744
- #: includes/widgets/htmega_imagemarker.php:241
12745
- msgid "X Postion"
12746
- msgstr ""
12747
-
12748
- #: includes/widgets/htmega_socialshere.php:83
12749
- msgid "Xing"
12750
- msgstr ""
12751
-
12752
- #: includes/widgets/htmega_section_title.php:314
12753
- msgid "Y Offset"
12754
- msgstr ""
12755
-
12756
- #: includes/widgets/htmega_imagemarker.php:262
12757
- msgid "Y Postion"
12758
- msgstr ""
12759
-
12760
- #: includes/widgets/htmega_booked_calender.php:128
12761
- #: includes/widgets/htmega_instagram.php:116
12762
- msgid "Year"
12763
- msgstr ""
12764
-
12765
- #: includes/widgets/htmega_carousel.php:212
12766
- #: includes/widgets/htmega_gravity_forms.php:103
12767
- #: includes/widgets/htmega_instagram.php:407
12768
- #: includes/widgets/htmega_panel_slider.php:158
12769
- #: includes/widgets/htmega_panel_slider.php:169
12770
- #: includes/widgets/htmega_panel_slider.php:312
12771
- #: includes/widgets/htmega_post_slider.php:392
12772
- #: includes/widgets/htmega_slider_thumb_gallery.php:211
12773
- #: includes/widgets/htmega_slider_thumb_gallery.php:476
12774
- #: includes/widgets/htmega_twitter_feed.php:334
12775
- #: includes/widgets/htmega_user_login_form.php:121
12776
- #: includes/widgets/htmega_user_login_form.php:264
12777
- #: includes/widgets/htmega_videoplayer.php:124
12778
- #: includes/widgets/htmega_videoplayer.php:164
12779
- #: includes/widgets/htmega_videoplayer.php:176
12780
- #: includes/widgets/htmega_videoplayer.php:188
12781
- #: includes/widgets/htmega_videoplayer.php:200
12782
- #: includes/widgets/htmega_videoplayer.php:212
12783
- msgid "Yes"
12784
- msgstr ""
12785
-
12786
- #: includes/widgets/htmega_business_hours.php:170
12787
- #: includes/widgets/htmega_instragram_feed.php:86
12788
- #: includes/widgets/htmega_instragram_feed.php:97
12789
- msgid "yes"
12790
- msgstr ""
12791
-
12792
- #: includes/widgets/htmega_twitter_feed.php:1677
12793
- msgid "yesterday"
12794
- msgstr ""
12795
-
12796
- #: includes/widgets/htmega_user_login_form.php:1578
12797
- #, php-format
12798
- msgid "You are Logged in as %1$s (<a href=\"%2$s\">Logout</a>)"
12799
- msgstr ""
12800
-
12801
- #: admin/include/admin-setting.php:907
12802
- msgid "You can enable duplicator for individual post."
12803
- msgstr ""
12804
-
12805
- #: admin/include/admin-setting.php:654
12806
- msgid "You can select 404 page from here."
12807
- msgstr ""
12808
-
12809
- #: extensions/ht-builder/admin/setting.php:113
12810
- msgid "You can select 404 page from here. <span>( Pro )</span>"
12811
- msgstr ""
12812
-
12813
- #: extensions/ht-builder/admin/setting.php:74
12814
- msgid "You can select blog page from here."
12815
- msgstr ""
12816
-
12817
- #: extensions/ht-builder/admin/setting.php:125
12818
- msgid "You can select coming soon page from here. <span>( Pro )</span>"
12819
- msgstr ""
12820
-
12821
- #: extensions/ht-builder/admin/setting.php:92
12822
- msgid "You can select footer template from here."
12823
- msgstr ""
12824
-
12825
- #: extensions/ht-builder/admin/setting.php:83
12826
- msgid "You can select header template from here."
12827
- msgstr ""
12828
-
12829
- #: extensions/ht-builder/admin/setting.php:101
12830
- msgid "You can select search page from here. <span>( Pro )</span>"
12831
- msgstr ""
12832
-
12833
- #: extensions/ht-builder/admin/setting.php:65
12834
- msgid "You can select Single blog page from here."
12835
- msgstr ""
12836
-
12837
- #: includes/widgets/htmega_wc_element_pages.php:1924
12838
- msgid "Your cart is currently empty."
12839
- msgstr ""
12840
-
12841
- #: includes/widgets/htmega_animated_heading.php:75
12842
- msgid "Zoom"
12843
- msgstr ""
12844
-
12845
- #: includes/widgets/htmega_lightbox.php:297
12846
- msgid "Zoom Button"
12847
- msgstr ""
12848
-
12849
- #: includes/widgets/htmega_lightbox.php:169
12850
- msgid "Zoom Button Text"
12851
- msgstr ""
12852
-
12853
- #: includes/widgets/htmega_googlemap.php:50
12854
- msgid "Zoom Control"
12855
- msgstr ""
12856
-
12857
- #: includes/widgets/htmega_instagram.php:261
12858
- #: includes/widgets/htmega_lightbox.php:154
12859
- msgid "Zoom Icon"
12860
- msgstr ""
12861
-
12862
- #: includes/widgets/htmega_instagram.php:211
12863
- msgid "Zoom Icon Type"
12864
- msgstr ""
12865
-
12866
- #: includes/widgets/htmega_image_magnifier.php:79
12867
- msgid "Zoom Label"
12868
- msgstr ""
12869
-
12870
- #: includes/widgets/htmega_image_magnifier.php:69
12871
- msgid "Zoomable"
12872
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #, fuzzy
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: HT Mega - Absolute Addons for Elementor Page Builder\n"
5
+ "Report-Msgid-Bugs-To: \n"
6
+ "POT-Creation-Date: 2022-08-30 08:34+0000\n"
7
+ "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
8
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
9
+ "Language-Team: \n"
10
+ "Language: \n"
11
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Loco https://localise.biz/\n"
16
+ "X-Loco-Version: 2.6.2; wp-6.0.1\n"
17
+ "X-Domain: htmega-addons"
18
+
19
+ #: includes/widgets/htmega_twitter_feed.php:1680
20
+ msgid " days ago"
21
+ msgstr ""
22
+
23
+ #: includes/widgets/htmega_verticle_time_line.php:600
24
+ msgid " Dot Border Hover Gradient Color"
25
+ msgstr ""
26
+
27
+ #: includes/widgets/htmega_twitter_feed.php:1674
28
+ msgid " hours ago"
29
+ msgstr ""
30
+
31
+ #: includes/widgets/htmega_twitter_feed.php:1668
32
+ msgid " min ago"
33
+ msgstr ""
34
+
35
+ #: includes/widgets/htmega_twitter_feed.php:1684
36
+ msgid " months ago"
37
+ msgstr ""
38
+
39
+ #: includes/widgets/htmega_twitter_feed.php:1687
40
+ msgid " years ago"
41
+ msgstr ""
42
+
43
+ #: includes/class.htmega.php:180 includes/class.htmega.php:195
44
+ #, php-format
45
+ msgid "\"%1$s\" requires \"%2$s\" version %3$s or greater."
46
+ msgstr ""
47
+
48
+ #: includes/widgets/htmega_brand.php:93 includes/widgets/htmega_brand.php:106
49
+ #: includes/widgets/htmega_image_grid.php:180
50
+ #: includes/widgets/htmega_image_masonry.php:161
51
+ msgid "#"
52
+ msgstr ""
53
+
54
+ #: includes/widgets/htmega_counter.php:175
55
+ msgid "$"
56
+ msgstr ""
57
+
58
+ #: includes/widgets/htmega_pricing_list_view.php:165
59
+ msgid "$42"
60
+ msgstr ""
61
+
62
+ #: includes/widgets/htmega_pricing_list_view.php:159
63
+ msgid "$46"
64
+ msgstr ""
65
+
66
+ #: includes/widgets/htmega_pricing_list_view.php:153
67
+ msgid "$48"
68
+ msgstr ""
69
+
70
+ #: includes/widgets/htmega_pricing_list_view.php:147
71
+ msgid "$52"
72
+ msgstr ""
73
+
74
+ #: includes/widgets/htmega_pricing_list_view.php:99
75
+ msgid "$56"
76
+ msgstr ""
77
+
78
+ #. %s: Number of installations.
79
+ #: includes/recommended-plugins/class.recommended-plugins.php:297
80
+ #, php-format
81
+ msgid "%s Active Installations"
82
+ msgstr ""
83
+
84
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:244
85
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:581
86
+ #, php-format
87
+ msgid "%s Comments"
88
+ msgstr ""
89
+
90
+ #: extensions/ht-menu/menu/templates.php:107
91
+ #: extensions/ht-menu/menu/templates.php:115
92
+ #: extensions/ht-menu/menu/templates.php:129
93
+ #: extensions/ht-menu/menu/templates.php:144
94
+ #: extensions/ht-menu/menu/templates.php:180
95
+ msgid "( Pro )"
96
+ msgstr ""
97
+
98
+ #: includes/widgets/htmega_tablepress.php:36
99
+ msgid "(no name)"
100
+ msgstr ""
101
+
102
+ #: extensions/ht-menu/menu/templates.php:136
103
+ msgid "(Pro)"
104
+ msgstr ""
105
+
106
+ #: includes/widgets/htmega_counter.php:184
107
+ msgid "+"
108
+ msgstr ""
109
+
110
+ #: includes/widgets/htmega_booked_calender.php:67
111
+ msgid "01"
112
+ msgstr ""
113
+
114
+ #: includes/widgets/htmega_booked_calender.php:68
115
+ msgid "02"
116
+ msgstr ""
117
+
118
+ #: includes/widgets/htmega_booked_calender.php:69
119
+ msgid "03"
120
+ msgstr ""
121
+
122
+ #: includes/widgets/htmega_booked_calender.php:70
123
+ msgid "04"
124
+ msgstr ""
125
+
126
+ #: includes/widgets/htmega_booked_calender.php:71
127
+ msgid "05"
128
+ msgstr ""
129
+
130
+ #: includes/widgets/htmega_booked_calender.php:72
131
+ msgid "06"
132
+ msgstr ""
133
+
134
+ #: includes/widgets/htmega_booked_calender.php:73
135
+ msgid "07"
136
+ msgstr ""
137
+
138
+ #: includes/widgets/htmega_booked_calender.php:74
139
+ msgid "08"
140
+ msgstr ""
141
+
142
+ #: includes/widgets/htmega_booked_calender.php:75
143
+ msgid "09"
144
+ msgstr ""
145
+
146
+ #: includes/widgets/htmega_data_table.php:527
147
+ #: includes/widgets/htmega_data_table.php:528
148
+ #: includes/widgets/htmega_data_table.php:534
149
+ #: includes/widgets/htmega_data_table.php:540
150
+ #: includes/widgets/htmega_data_table.php:547
151
+ #: includes/widgets/htmega_instagram.php:162
152
+ #: includes/widgets/htmega_pricing_list_view.php:1093
153
+ #: includes/widgets/htmega_pricing_list_view.php:1094
154
+ #: includes/widgets/htmega_pricing_list_view.php:1100
155
+ #: includes/widgets/htmega_pricing_list_view.php:1106
156
+ #: includes/widgets/htmega_pricing_list_view.php:1113
157
+ #: extensions/ht-builder/widgets/bl_post_archive.php:60
158
+ msgid "1"
159
+ msgstr ""
160
+
161
+ #: includes/widgets/htmega_twitter_feed.php:1671
162
+ msgid "1 hour ago"
163
+ msgstr ""
164
+
165
+ #: includes/widgets/htmega_twitter_feed.php:1665
166
+ msgid "1 min ago"
167
+ msgstr ""
168
+
169
+ #: extensions/wc-sales-notification/admin/setting.php:132
170
+ msgid "1 minute"
171
+ msgstr ""
172
+
173
+ #: includes/widgets/htmega_twitter_feed.php:1684
174
+ msgid "1 month ago"
175
+ msgstr ""
176
+
177
+ #: extensions/wc-sales-notification/admin/setting.php:157
178
+ msgid "1 week"
179
+ msgstr ""
180
+
181
+ #: includes/widgets/htmega_twitter_feed.php:1687
182
+ msgid "1 year ago"
183
+ msgstr ""
184
+
185
+ #: includes/widgets/htmega_countdown.php:425
186
+ msgid "1. Background Days"
187
+ msgstr ""
188
+
189
+ #: extensions/wc-sales-notification/admin/setting.php:133
190
+ msgid "1.5 minutes"
191
+ msgstr ""
192
+
193
+ #: includes/widgets/htmega_booked_calender.php:76
194
+ msgid "10"
195
+ msgstr ""
196
+
197
+ #: extensions/wc-sales-notification/admin/setting.php:127
198
+ msgid "10 seconds"
199
+ msgstr ""
200
+
201
+ #: includes/widgets/htmega_data_table.php:122
202
+ msgid "10,25,50,100"
203
+ msgstr ""
204
+
205
+ #: includes/widgets/htmega_booked_calender.php:77
206
+ msgid "11"
207
+ msgstr ""
208
+
209
+ #: includes/widgets/htmega_booked_calender.php:78
210
+ msgid "12"
211
+ msgstr ""
212
+
213
+ #: includes/widgets/htmega_booked_calender.php:79
214
+ msgid "13"
215
+ msgstr ""
216
+
217
+ #: includes/widgets/htmega_booked_calender.php:80
218
+ msgid "14"
219
+ msgstr ""
220
+
221
+ #: includes/widgets/htmega_booked_calender.php:81
222
+ msgid "15"
223
+ msgstr ""
224
+
225
+ #: admin/include/admin-setting.php:1383
226
+ msgid "15 Categories / Template set"
227
+ msgstr ""
228
+
229
+ #: admin/include/admin-setting.php:1384
230
+ msgid "15 Templates"
231
+ msgstr ""
232
+
233
+ #: includes/widgets/htmega_booked_calender.php:82
234
+ msgid "16"
235
+ msgstr ""
236
+
237
+ #: includes/widgets/htmega_booked_calender.php:83
238
+ msgid "17"
239
+ msgstr ""
240
+
241
+ #: includes/widgets/htmega_booked_calender.php:84
242
+ msgid "18"
243
+ msgstr ""
244
+
245
+ #: includes/widgets/htmega_booked_calender.php:85
246
+ msgid "19"
247
+ msgstr ""
248
+
249
+ #: includes/widgets/htmega_instagram.php:163
250
+ #: extensions/ht-builder/widgets/bl_post_archive.php:61
251
+ msgid "2"
252
+ msgstr ""
253
+
254
+ #: extensions/wc-sales-notification/admin/setting.php:134
255
+ msgid "2 minutes"
256
+ msgstr ""
257
+
258
+ #: extensions/wc-sales-notification/admin/setting.php:119
259
+ msgid "2 seconds"
260
+ msgstr ""
261
+
262
+ #: includes/widgets/htmega_countdown.php:450
263
+ msgid "2. Background Hours"
264
+ msgstr ""
265
+
266
+ #: includes/widgets/htmega_booked_calender.php:86
267
+ msgid "20"
268
+ msgstr ""
269
+
270
+ #: extensions/wc-sales-notification/admin/setting.php:128
271
+ msgid "20 seconds"
272
+ msgstr ""
273
+
274
+ #: includes/widgets/htmega_booked_calender.php:132
275
+ msgid "2018"
276
+ msgstr ""
277
+
278
+ #: includes/widgets/htmega_booked_calender.php:133
279
+ msgid "2019"
280
+ msgstr ""
281
+
282
+ #: includes/widgets/htmega_booked_calender.php:134
283
+ msgid "2020"
284
+ msgstr ""
285
+
286
+ #: includes/widgets/htmega_booked_calender.php:135
287
+ msgid "2021"
288
+ msgstr ""
289
+
290
+ #: includes/widgets/htmega_booked_calender.php:136
291
+ msgid "2022"
292
+ msgstr ""
293
+
294
+ #: includes/widgets/htmega_booked_calender.php:137
295
+ msgid "2023"
296
+ msgstr ""
297
+
298
+ #: includes/widgets/htmega_booked_calender.php:138
299
+ msgid "2024"
300
+ msgstr ""
301
+
302
+ #: includes/widgets/htmega_booked_calender.php:139
303
+ msgid "2025"
304
+ msgstr ""
305
+
306
+ #: includes/widgets/htmega_booked_calender.php:140
307
+ msgid "2026"
308
+ msgstr ""
309
+
310
+ #: includes/widgets/htmega_booked_calender.php:141
311
+ msgid "2027"
312
+ msgstr ""
313
+
314
+ #: includes/widgets/htmega_booked_calender.php:142
315
+ msgid "2028"
316
+ msgstr ""
317
+
318
+ #: includes/widgets/htmega_booked_calender.php:143
319
+ msgid "2029"
320
+ msgstr ""
321
+
322
+ #: includes/widgets/htmega_booked_calender.php:144
323
+ msgid "2030"
324
+ msgstr ""
325
+
326
+ #: includes/widgets/htmega_booked_calender.php:145
327
+ msgid "2031"
328
+ msgstr ""
329
+
330
+ #: includes/widgets/htmega_booked_calender.php:146
331
+ msgid "2032"
332
+ msgstr ""
333
+
334
+ #: includes/widgets/htmega_booked_calender.php:147
335
+ msgid "2033"
336
+ msgstr ""
337
+
338
+ #: includes/widgets/htmega_booked_calender.php:148
339
+ msgid "2034"
340
+ msgstr ""
341
+
342
+ #: includes/widgets/htmega_booked_calender.php:149
343
+ msgid "2035"
344
+ msgstr ""
345
+
346
+ #: includes/widgets/htmega_booked_calender.php:150
347
+ msgid "2036"
348
+ msgstr ""
349
+
350
+ #: includes/widgets/htmega_booked_calender.php:151
351
+ msgid "2037"
352
+ msgstr ""
353
+
354
+ #: includes/widgets/htmega_booked_calender.php:152
355
+ msgid "2038"
356
+ msgstr ""
357
+
358
+ #: includes/widgets/htmega_booked_calender.php:153
359
+ msgid "2039"
360
+ msgstr ""
361
+
362
+ #: includes/widgets/htmega_booked_calender.php:154
363
+ msgid "2040"
364
+ msgstr ""
365
+
366
+ #: includes/widgets/htmega_booked_calender.php:87
367
+ msgid "21"
368
+ msgstr ""
369
+
370
+ #: includes/widgets/htmega_booked_calender.php:88
371
+ msgid "22"
372
+ msgstr ""
373
+
374
+ #: includes/widgets/htmega_booked_calender.php:89
375
+ msgid "23"
376
+ msgstr ""
377
+
378
+ #: includes/widgets/htmega_googlemap.php:251
379
+ msgid "23.8103"
380
+ msgstr ""
381
+
382
+ #: includes/widgets/htmega_booked_calender.php:90
383
+ msgid "24"
384
+ msgstr ""
385
+
386
+ #: includes/widgets/htmega_booked_calender.php:91
387
+ msgid "25"
388
+ msgstr ""
389
+
390
+ #: includes/widgets/htmega_booked_calender.php:92
391
+ msgid "26"
392
+ msgstr ""
393
+
394
+ #: includes/widgets/htmega_booked_calender.php:93
395
+ msgid "27"
396
+ msgstr ""
397
+
398
+ #: includes/widgets/htmega_booked_calender.php:94
399
+ msgid "28"
400
+ msgstr ""
401
+
402
+ #: includes/widgets/htmega_booked_calender.php:95
403
+ msgid "29"
404
+ msgstr ""
405
+
406
+ #: includes/widgets/htmega_mailchimp_wp.php:68
407
+ msgid "294"
408
+ msgstr ""
409
+
410
+ #: includes/widgets/htmega_instagram.php:164
411
+ #: extensions/ht-builder/widgets/bl_post_archive.php:62
412
+ msgid "3"
413
+ msgstr ""
414
+
415
+ #: includes/widgets/htmega_weather.php:84
416
+ msgid "3 Days"
417
+ msgstr ""
418
+
419
+ #: extensions/wc-sales-notification/admin/setting.php:120
420
+ msgid "3 seconds"
421
+ msgstr ""
422
+
423
+ #: includes/widgets/htmega_countdown.php:475
424
+ msgid "3. Background Minutes"
425
+ msgstr ""
426
+
427
+ #: includes/widgets/htmega_booked_calender.php:96
428
+ msgid "30"
429
+ msgstr ""
430
+
431
+ #: extensions/wc-sales-notification/admin/setting.php:129
432
+ msgid "30 seconds"
433
+ msgstr ""
434
+
435
+ #: includes/widgets/htmega_booked_calender.php:97
436
+ msgid "31"
437
+ msgstr ""
438
+
439
+ #: admin/include/admin-setting.php:1408
440
+ msgid "325 Blocks / Sections"
441
+ msgstr ""
442
+
443
+ #: admin/include/admin-setting.php:1409
444
+ msgid "35 Categories / Template set"
445
+ msgstr ""
446
+
447
+ #: admin/include/admin-setting.php:1385
448
+ msgid "360 Blocks / Sections"
449
+ msgstr ""
450
+
451
+ #: admin/include/admin-setting.php:1306
452
+ msgid "360 Elementor Blocks"
453
+ msgstr ""
454
+
455
+ #: admin/include/admin-setting.php:1307
456
+ msgid "39 Categories and 491 Page Templates."
457
+ msgstr ""
458
+
459
+ #: includes/widgets/htmega_instagram.php:165
460
+ #: extensions/ht-builder/widgets/bl_post_archive.php:63
461
+ msgid "4"
462
+ msgstr ""
463
+
464
+ #: includes/widgets/htmega_weather.php:85
465
+ msgid "4 Days"
466
+ msgstr ""
467
+
468
+ #: extensions/wc-sales-notification/admin/setting.php:121
469
+ #: extensions/wc-sales-notification/admin/setting.php:145
470
+ msgid "4 seconds"
471
+ msgstr ""
472
+
473
+ #: includes/widgets/htmega_countdown.php:500
474
+ msgid "4. Background Seconds"
475
+ msgstr ""
476
+
477
+ #: extensions/wc-sales-notification/admin/setting.php:130
478
+ msgid "40 seconds"
479
+ msgstr ""
480
+
481
+ #: admin/include/admin-setting.php:607
482
+ #: includes/widgets/htmega_errorcontent.php:13
483
+ #: includes/widgets/htmega_errorcontent.php:43
484
+ msgid "404 Content"
485
+ msgstr ""
486
+
487
+ #: admin/include/admin-setting.php:1387 admin/include/admin-setting.php:1412
488
+ msgid "404 Error Page Builder"
489
+ msgstr ""
490
+
491
+ #: extensions/ht-builder/admin/setting.php:112
492
+ msgid "404 Page Template."
493
+ msgstr ""
494
+
495
+ #: includes/widgets/htmega_instagram.php:166
496
+ msgid "5"
497
+ msgstr ""
498
+
499
+ #: includes/widgets/htmega_weather.php:86
500
+ msgid "5 Days"
501
+ msgstr ""
502
+
503
+ #: extensions/wc-sales-notification/admin/setting.php:122
504
+ msgid "5 seconds"
505
+ msgstr ""
506
+
507
+ #: extensions/wc-sales-notification/admin/setting.php:131
508
+ msgid "50 seconds"
509
+ msgstr ""
510
+
511
+ #: includes/widgets/htmega_special_day_banner.php:107
512
+ msgid "50%"
513
+ msgstr ""
514
+
515
+ #: admin/include/admin-setting.php:1410
516
+ msgid "524 Templates"
517
+ msgstr ""
518
+
519
+ #: includes/widgets/htmega_instagram.php:167
520
+ msgid "6"
521
+ msgstr ""
522
+
523
+ #: includes/widgets/htmega_weather.php:87
524
+ msgid "6 Days"
525
+ msgstr ""
526
+
527
+ #: extensions/wc-sales-notification/admin/setting.php:123
528
+ msgid "6 seconds"
529
+ msgstr ""
530
+
531
+ #: extensions/wc-sales-notification/admin/setting.php:124
532
+ msgid "7 seconds"
533
+ msgstr ""
534
+
535
+ #: extensions/wc-sales-notification/admin/setting.php:125
536
+ msgid "8 seconds"
537
+ msgstr ""
538
+
539
+ #: admin/include/admin-setting.php:1305
540
+ msgid "80+ Elementor Elements"
541
+ msgstr ""
542
+
543
+ #: admin/include/admin-setting.php:1382 admin/include/admin-setting.php:1407
544
+ msgid "84 Elements"
545
+ msgstr ""
546
+
547
+ #: extensions/wc-sales-notification/admin/setting.php:126
548
+ msgid "9 seconds"
549
+ msgstr ""
550
+
551
+ #: includes/widgets/htmega_googlemap.php:252
552
+ #: includes/widgets/htmega_googlemap.php:253
553
+ msgid "90.4125"
554
+ msgstr ""
555
+
556
+ #: includes/widgets/htmega_business_hours.php:94
557
+ msgid "9:00 AM - 6:00 PM"
558
+ msgstr ""
559
+
560
+ #: includes/widgets/htmega_business_hours.php:164
561
+ #: includes/widgets/htmega_business_hours.php:175
562
+ #: includes/widgets/htmega_business_hours.php:180
563
+ #: includes/widgets/htmega_business_hours.php:185
564
+ #: includes/widgets/htmega_business_hours.php:190
565
+ msgid "9:00 AM to 6:00 PM"
566
+ msgstr ""
567
+
568
+ #: includes/widgets/htmega_business_hours.php:195
569
+ msgid "9:00 AM to 6:30 PM"
570
+ msgstr ""
571
+
572
+ #: includes/class.htmega.php:159
573
+ msgid ""
574
+ "<strong>HTMEGA Addons for Elementor</strong> requires \"<strong>"
575
+ "Elementor</strong>\" plugin to be active. Please activate Elementor to "
576
+ "continue."
577
+ msgstr ""
578
+
579
+ #: includes/class.htmega.php:166
580
+ msgid ""
581
+ "<strong>HTMEGA Addons for Elementor</strong> requires \"<strong>"
582
+ "Elementor</strong>\" plugin to be active. Please install the Elementor "
583
+ "plugin to continue."
584
+ msgstr ""
585
+
586
+ #: includes/widgets/htmega_inlinemenu.php:89
587
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:83
588
+ #, php-format
589
+ msgid ""
590
+ "<strong>There are no menus in your site.</strong><br>Go to the <a "
591
+ "href=\"%s\" target=\"_blank\">Menus Option</a> to create one."
592
+ msgstr ""
593
+
594
+ #: includes/widgets/htmega_notify.php:80
595
+ msgid "<strong>Welcome,</strong>to Notification."
596
+ msgstr ""
597
+
598
+ #: includes/widgets/htmega_twitter_feed.php:102
599
+ msgid "Access Token"
600
+ msgstr ""
601
+
602
+ #: includes/widgets/htmega_twitter_feed.php:112
603
+ msgid "Access Token Secret"
604
+ msgstr ""
605
+
606
+ #: admin/include/admin-setting.php:118 admin/include/admin-setting.php:119
607
+ #: includes/widgets/htmega_accordion.php:44
608
+ msgid "Accordion"
609
+ msgstr ""
610
+
611
+ #: includes/widgets/htmega_accordion.php:13
612
+ msgid "Accordion / FAQ"
613
+ msgstr ""
614
+
615
+ #: includes/widgets/htmega_accordion.php:89
616
+ #: includes/widgets/htmega_accordion.php:100
617
+ #: includes/widgets/htmega_accordion.php:230
618
+ #: includes/widgets/htmega_accordion.php:232
619
+ #: includes/widgets/htmega_accordion.php:241
620
+ #: includes/widgets/htmega_accordion.php:1299
621
+ msgid "Accordion Content"
622
+ msgstr ""
623
+
624
+ #: includes/widgets/htmega_accordion.php:447
625
+ msgid "Accordion Height"
626
+ msgstr ""
627
+
628
+ #: includes/widgets/htmega_accordion.php:1054
629
+ msgid "Accordion Icon"
630
+ msgstr ""
631
+
632
+ #: includes/widgets/htmega_accordion.php:485
633
+ msgid "Accordion Item"
634
+ msgstr ""
635
+
636
+ #: includes/widgets/htmega_accordion.php:831
637
+ msgid "Accordion Item Box"
638
+ msgstr ""
639
+
640
+ #: includes/widgets/htmega_accordion.php:507
641
+ msgid "Accordion Item Spacing"
642
+ msgstr ""
643
+
644
+ #: includes/widgets/htmega_accordion.php:113
645
+ #: includes/widgets/htmega_accordion.php:175
646
+ #: includes/widgets/htmega_accordion.php:254
647
+ msgid "Accordion Items"
648
+ msgstr ""
649
+
650
+ #: includes/widgets/htmega_accordion.php:183
651
+ #: includes/widgets/htmega_accordion.php:530
652
+ #: includes/widgets/htmega_accordion.php:901
653
+ msgid "Accordion Title"
654
+ msgstr ""
655
+
656
+ #: includes/widgets/htmega_accordion.php:733
657
+ msgid "Accordion Title Collapsed"
658
+ msgstr ""
659
+
660
+ #: includes/widgets/htmega_accordion.php:133
661
+ #: includes/widgets/htmega_accordion.php:262
662
+ msgid "Accordion Title One"
663
+ msgstr ""
664
+
665
+ #: includes/widgets/htmega_accordion.php:138
666
+ #: includes/widgets/htmega_accordion.php:142
667
+ msgid "Accordion Title Two"
668
+ msgstr ""
669
+
670
+ #: admin/include/template-library.php:282
671
+ #: admin/include/template-library.php:334
672
+ #: includes/recommended-plugins/class.recommended-plugins.php:242
673
+ msgid "Activate"
674
+ msgstr ""
675
+
676
+ #: admin/include/template-library.php:293
677
+ #: admin/include/template-library.php:345
678
+ #: includes/recommended-plugins/class.recommended-plugins.php:126
679
+ #: includes/recommended-plugins/class.recommended-plugins.php:253
680
+ msgid "Activated"
681
+ msgstr ""
682
+
683
+ #: includes/class.assests.php:389
684
+ #: includes/recommended-plugins/class.recommended-plugins.php:125
685
+ msgid "Activating.."
686
+ msgstr ""
687
+
688
+ #: includes/class.assests.php:390 includes/widgets/htmega_accordion.php:667
689
+ #: includes/widgets/htmega_accordion.php:1230
690
+ #: includes/widgets/htmega_buddy_press.php:68
691
+ #: includes/widgets/htmega_carousel.php:989
692
+ #: includes/widgets/htmega_carousel.php:1189
693
+ #: includes/widgets/htmega_carousel.php:1387
694
+ #: includes/widgets/htmega_inlinemenu.php:407
695
+ #: includes/widgets/htmega_instagram.php:1239
696
+ #: includes/widgets/htmega_panel_slider.php:1205
697
+ #: includes/widgets/htmega_popover.php:204
698
+ #: includes/widgets/htmega_post_slider.php:1860
699
+ #: includes/widgets/htmega_post_slider.php:2009
700
+ #: includes/widgets/htmega_scroll_navigation.php:486
701
+ #: includes/widgets/htmega_slider_thumb_gallery.php:1168
702
+ #: includes/widgets/htmega_slider_thumb_gallery.php:1285
703
+ #: includes/widgets/htmega_switcher.php:468
704
+ #: includes/widgets/htmega_tabs.php:616 includes/widgets/htmega_tabs.php:795
705
+ #: includes/widgets/htmega_twitter_feed.php:1435
706
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:279
707
+ msgid "Active"
708
+ msgstr ""
709
+
710
+ #: includes/widgets/htmega_easy_digital_download.php:719
711
+ msgid "Active Color"
712
+ msgstr ""
713
+
714
+ #: includes/widgets/htmega_booked_calender.php:449
715
+ msgid "Active Date Background Color"
716
+ msgstr ""
717
+
718
+ #: includes/widgets/htmega_tabs.php:193
719
+ msgid "Active Icon Color"
720
+ msgstr ""
721
+
722
+ #: includes/widgets/htmega_accordion.php:1035
723
+ msgid "Active Title Line Height"
724
+ msgstr ""
725
+
726
+ #: includes/widgets/htmega_accordion.php:1020
727
+ msgid "Active Title Space"
728
+ msgstr ""
729
+
730
+ #: includes/widgets/htmega_data_table.php:134
731
+ msgid "Add all option"
732
+ msgstr ""
733
+
734
+ #: includes/widgets/htmega_add_banner.php:13
735
+ msgid "Add Banner"
736
+ msgstr ""
737
+
738
+ #: includes/widgets/htmega_panel_slider.php:219
739
+ #: includes/widgets/htmega_testimonial_grid.php:147
740
+ msgid "Add Column gap Ex. 15px"
741
+ msgstr ""
742
+
743
+ #: includes/widgets/htmega_buddy_press.php:282
744
+ msgid "Add Column Width Ex. 25%"
745
+ msgstr ""
746
+
747
+ #: includes/widgets/htmega_gallery_justify.php:58
748
+ msgid "Add Images"
749
+ msgstr ""
750
+
751
+ #: includes/widgets/htmega_wc_add_to_cart.php:120
752
+ #: includes/widgets/htmega_wc_add_to_cart.php:121
753
+ msgid "Add to Cart"
754
+ msgstr ""
755
+
756
+ #: includes/widgets/htmega_section_title.php:60
757
+ msgid "Add Your Heading Text Here"
758
+ msgstr ""
759
+
760
+ #: includes/widgets/htmega_singlepost.php:76
761
+ msgid "Additional Option"
762
+ msgstr ""
763
+
764
+ #: includes/widgets/htmega_accordion.php:420
765
+ #: extensions/ht-builder/widgets/bl_post_archive.php:90
766
+ msgid "Additional Options"
767
+ msgstr ""
768
+
769
+ #: includes/widgets/htmega_image_comparison.php:147
770
+ msgid "Additional Setting"
771
+ msgstr ""
772
+
773
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:99
774
+ msgid "Admin Posts"
775
+ msgstr ""
776
+
777
+ #: admin/include/admin-setting.php:135
778
+ msgid "Ads Banner"
779
+ msgstr ""
780
+
781
+ #: admin/include/admin-setting.php:91
782
+ msgid "Advance Addons"
783
+ msgstr ""
784
+
785
+ #: includes/widgets/htmega_section_title.php:80
786
+ msgid "Advance Title"
787
+ msgstr ""
788
+
789
+ #: includes/widgets/htmega_section_title.php:281
790
+ msgid "Advance Title Setting"
791
+ msgstr ""
792
+
793
+ #: includes/widgets/htmega_section_title.php:931
794
+ msgid "Advance Title style"
795
+ msgstr ""
796
+
797
+ #: includes/widgets/htmega_blockquote.php:405
798
+ #: includes/widgets/htmega_image_comparison.php:165
799
+ msgid "After"
800
+ msgstr ""
801
+
802
+ #: includes/widgets/htmega_counter.php:776
803
+ msgid "After Border Color"
804
+ msgstr ""
805
+
806
+ #: includes/widgets/htmega_counter.php:701
807
+ msgid "After Border Height"
808
+ msgstr ""
809
+
810
+ #: includes/widgets/htmega_counter.php:731
811
+ msgid "After Border Position"
812
+ msgstr ""
813
+
814
+ #: includes/widgets/htmega_counter.php:671
815
+ msgid "After Border Width"
816
+ msgstr ""
817
+
818
+ #: includes/widgets/htmega_image_comparison.php:70
819
+ msgid "After Image"
820
+ msgstr ""
821
+
822
+ #: includes/widgets/htmega_pricing_list_view.php:106
823
+ msgid "After Price Label"
824
+ msgstr ""
825
+
826
+ #: includes/widgets/htmega_pricing_list_view.php:1700
827
+ msgid "After Price Style"
828
+ msgstr ""
829
+
830
+ #: includes/widgets/htmega_animated_heading.php:282
831
+ msgid "After Text Style"
832
+ msgstr ""
833
+
834
+ #: includes/widgets/htmega_image_comparison.php:163
835
+ #: includes/widgets/htmega_image_comparison.php:309
836
+ msgid "After Title"
837
+ msgstr ""
838
+
839
+ #: includes/widgets/htmega_user_login_form.php:301
840
+ msgid "After/Bottom Login Button"
841
+ msgstr ""
842
+
843
+ #: includes/widgets/htmega_imagemarker.php:450
844
+ msgid "Aleart Note"
845
+ msgstr ""
846
+
847
+ #: includes/widgets/htmega_accordion.php:563
848
+ #: includes/widgets/htmega_accordion.php:754
849
+ #: includes/widgets/htmega_accordion.php:912
850
+ #: includes/widgets/htmega_accordion.php:1105
851
+ #: includes/widgets/htmega_accordion.php:1310
852
+ #: includes/widgets/htmega_accordion.php:1428
853
+ #: includes/widgets/htmega_add_banner.php:364
854
+ #: includes/widgets/htmega_blockquote.php:179
855
+ #: includes/widgets/htmega_buddy_press.php:250
856
+ #: includes/widgets/htmega_business_hours.php:387
857
+ #: includes/widgets/htmega_button.php:157
858
+ #: includes/widgets/htmega_caldera_form.php:68
859
+ #: includes/widgets/htmega_caldera_form.php:343
860
+ #: includes/widgets/htmega_call_to_action.php:326
861
+ #: includes/widgets/htmega_carousel.php:834
862
+ #: includes/widgets/htmega_contact_form_seven.php:113
863
+ #: includes/widgets/htmega_counter.php:66
864
+ #: includes/widgets/htmega_counter.php:284
865
+ #: includes/widgets/htmega_counter.php:317
866
+ #: includes/widgets/htmega_counter.php:423
867
+ #: includes/widgets/htmega_counter.php:549
868
+ #: includes/widgets/htmega_data_table.php:706
869
+ #: includes/widgets/htmega_data_table.php:825
870
+ #: includes/widgets/htmega_double_button.php:321
871
+ #: includes/widgets/htmega_dropcaps.php:80
872
+ #: includes/widgets/htmega_easy_digital_download.php:314
873
+ #: includes/widgets/htmega_easy_digital_download.php:682
874
+ #: includes/widgets/htmega_errorcontent.php:245
875
+ #: includes/widgets/htmega_gravity_forms.php:145
876
+ #: includes/widgets/htmega_gravity_forms.php:201
877
+ #: includes/widgets/htmega_gravity_forms.php:235
878
+ #: includes/widgets/htmega_gravity_forms.php:540
879
+ #: includes/widgets/htmega_gravity_forms.php:771
880
+ #: includes/widgets/htmega_imagemarker.php:706
881
+ #: includes/widgets/htmega_image_grid.php:287
882
+ #: includes/widgets/htmega_image_grid.php:384
883
+ #: includes/widgets/htmega_image_masonry.php:263
884
+ #: includes/widgets/htmega_image_masonry.php:360
885
+ #: includes/widgets/htmega_inlinemenu.php:117
886
+ #: includes/widgets/htmega_instagram.php:1480
887
+ #: includes/widgets/htmega_lightbox.php:192
888
+ #: includes/widgets/htmega_lightbox.php:305
889
+ #: includes/widgets/htmega_mailchimp_wp.php:125
890
+ #: includes/widgets/htmega_modal.php:346 includes/widgets/htmega_modal.php:1001
891
+ #: includes/widgets/htmega_newsticker.php:456
892
+ #: includes/widgets/htmega_ninja_form.php:184
893
+ #: includes/widgets/htmega_ninja_form.php:286
894
+ #: includes/widgets/htmega_ninja_form.php:320
895
+ #: includes/widgets/htmega_ninja_form.php:607
896
+ #: includes/widgets/htmega_ninja_form.php:818
897
+ #: includes/widgets/htmega_ninja_form.php:1030
898
+ #: includes/widgets/htmega_notify.php:278
899
+ #: includes/widgets/htmega_notify.php:558
900
+ #: includes/widgets/htmega_notify.php:824
901
+ #: includes/widgets/htmega_offcanvas.php:279
902
+ #: includes/widgets/htmega_offcanvas.php:371
903
+ #: includes/widgets/htmega_panel_slider.php:599
904
+ #: includes/widgets/htmega_popover.php:261
905
+ #: includes/widgets/htmega_popover.php:657
906
+ #: includes/widgets/htmega_popover.php:761
907
+ #: includes/widgets/htmega_postgrid.php:289
908
+ #: includes/widgets/htmega_postgrid.php:513
909
+ #: includes/widgets/htmega_postgrid.php:626
910
+ #: includes/widgets/htmega_post_grid_tab.php:397
911
+ #: includes/widgets/htmega_post_grid_tab.php:491
912
+ #: includes/widgets/htmega_post_grid_tab.php:578
913
+ #: includes/widgets/htmega_post_grid_tab.php:801
914
+ #: includes/widgets/htmega_post_slider.php:832
915
+ #: includes/widgets/htmega_post_slider.php:926
916
+ #: includes/widgets/htmega_post_slider.php:1013
917
+ #: includes/widgets/htmega_post_slider.php:1229
918
+ #: includes/widgets/htmega_pricing_list_view.php:469
919
+ #: includes/widgets/htmega_pricing_list_view.php:1124
920
+ #: includes/widgets/htmega_quforms.php:86
921
+ #: includes/widgets/htmega_quforms.php:206
922
+ #: includes/widgets/htmega_quforms.php:327
923
+ #: includes/widgets/htmega_quforms.php:547
924
+ #: includes/widgets/htmega_quforms.php:765
925
+ #: includes/widgets/htmega_search.php:152
926
+ #: includes/widgets/htmega_section_title.php:411
927
+ #: includes/widgets/htmega_service.php:237
928
+ #: includes/widgets/htmega_service.php:421
929
+ #: includes/widgets/htmega_service.php:526
930
+ #: includes/widgets/htmega_service.php:715
931
+ #: includes/widgets/htmega_service.php:977
932
+ #: includes/widgets/htmega_singlepost.php:206
933
+ #: includes/widgets/htmega_singlepost.php:302
934
+ #: includes/widgets/htmega_singlepost.php:409
935
+ #: includes/widgets/htmega_socialshere.php:370
936
+ #: includes/widgets/htmega_special_day_banner.php:261
937
+ #: includes/widgets/htmega_tablepress.php:209
938
+ #: includes/widgets/htmega_tablepress.php:366
939
+ #: includes/widgets/htmega_tabs.php:509
940
+ #: includes/widgets/htmega_teammember.php:612
941
+ #: includes/widgets/htmega_teammember.php:741
942
+ #: includes/widgets/htmega_teammember.php:831
943
+ #: includes/widgets/htmega_teammember.php:922
944
+ #: includes/widgets/htmega_teammember.php:989
945
+ #: includes/widgets/htmega_testimonial_grid.php:549
946
+ #: includes/widgets/htmega_toggle.php:192
947
+ #: includes/widgets/htmega_tooltip.php:237
948
+ #: includes/widgets/htmega_user_login_form.php:145
949
+ #: includes/widgets/htmega_user_login_form.php:367
950
+ #: includes/widgets/htmega_user_login_form.php:567
951
+ #: includes/widgets/htmega_videoplayer.php:292
952
+ #: includes/widgets/htmega_wc_categories.php:375
953
+ #: includes/widgets/htmega_wpforms.php:176
954
+ #: includes/widgets/htmega_wpforms.php:278
955
+ #: includes/widgets/htmega_wpforms.php:313
956
+ #: includes/widgets/htmega_wpforms.php:610
957
+ #: includes/widgets/htmega_wpforms.php:829
958
+ #: includes/widgets/htmega_wpforms.php:1057
959
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:111
960
+ #: extensions/ht-builder/widgets/bl_page_title.php:133
961
+ #: extensions/ht-builder/widgets/bl_post_archive.php:298
962
+ #: extensions/ht-builder/widgets/bl_post_archive.php:379
963
+ #: extensions/ht-builder/widgets/bl_post_archive.php:486
964
+ #: extensions/ht-builder/widgets/bl_post_archive.php:592
965
+ #: extensions/ht-builder/widgets/bl_post_archive.php:672
966
+ #: extensions/ht-builder/widgets/bl_post_archive_title.php:135
967
+ #: extensions/ht-builder/widgets/bl_post_content.php:68
968
+ #: extensions/ht-builder/widgets/bl_post_excerpt.php:68
969
+ #: extensions/ht-builder/widgets/bl_post_featured_image.php:67
970
+ #: extensions/ht-builder/widgets/bl_post_title.php:98
971
+ #: extensions/ht-builder/widgets/bl_site_logo.php:155
972
+ #: extensions/ht-builder/widgets/bl_site_title.php:135
973
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:162
974
+ #: extensions/ht-menu/widgets/verticle-mega-menu.php:163
975
+ msgid "Alignment"
976
+ msgstr ""
977
+
978
+ #: admin/include/templates_list.php:52
979
+ msgid "ALL"
980
+ msgstr ""
981
+
982
+ #: includes/widgets/htmega_data_table.php:150
983
+ msgid "All"
984
+ msgstr ""
985
+
986
+ #: admin/include/templates_list.php:41
987
+ msgid "All Builders"
988
+ msgstr ""
989
+
990
+ #: includes/widgets/htmega_service.php:305
991
+ #: includes/widgets/htmega_testimonial_grid.php:359
992
+ #: includes/widgets/htmega_working_process.php:599
993
+ msgid "All Content Color"
994
+ msgstr ""
995
+
996
+ #: extensions/ht-menu/classes/class.mega-menu.php:246
997
+ #: extensions/ht-menu/menu/templates.php:194
998
+ msgid "All Data Saved"
999
+ msgstr ""
1000
+
1001
+ #: includes/class.assests.php:379
1002
+ msgid "All Items have been Loaded"
1003
+ msgstr ""
1004
+
1005
+ #: includes/widgets/htmega_accordion.php:134
1006
+ #: includes/widgets/htmega_accordion.php:139
1007
+ #: includes/widgets/htmega_accordion.php:143
1008
+ #: includes/widgets/htmega_accordion.php:263
1009
+ msgid ""
1010
+ "Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry "
1011
+ "richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard "
1012
+ "dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon "
1013
+ "tempor, sunt aliqua put a bird on it squid single-origin coffee nulla "
1014
+ "assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore "
1015
+ "wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher "
1016
+ "vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic "
1017
+ "synth nesciunt you probably have not heard of them accusamus labore "
1018
+ "sustainable VHS."
1019
+ msgstr ""
1020
+
1021
+ #: admin/include/admin-setting.php:127
1022
+ msgid "Animate Heading"
1023
+ msgstr ""
1024
+
1025
+ #: includes/widgets/htmega_teammember.php:119
1026
+ msgid "Animate Top on Mobile Layout"
1027
+ msgstr ""
1028
+
1029
+ #: includes/widgets/htmega_animated_heading.php:13
1030
+ #: includes/widgets/htmega_animated_heading.php:42
1031
+ msgid "Animated Heading"
1032
+ msgstr ""
1033
+
1034
+ #: includes/widgets/htmega_animated_heading.php:102
1035
+ msgid "Animated Heading Text"
1036
+ msgstr ""
1037
+
1038
+ #: includes/widgets/htmega_animated_heading.php:369
1039
+ msgid "Animated Text Style"
1040
+ msgstr ""
1041
+
1042
+ #: includes/widgets/htmega_newsticker.php:119
1043
+ msgid "Animatied duration"
1044
+ msgstr ""
1045
+
1046
+ #: includes/widgets/htmega_videoplayer.php:429
1047
+ msgid "Animation Border Color"
1048
+ msgstr ""
1049
+
1050
+ #: extensions/wc-sales-notification/admin/setting.php:164
1051
+ msgid "Animation In"
1052
+ msgstr ""
1053
+
1054
+ #: extensions/wc-sales-notification/admin/setting.php:176
1055
+ msgid "Animation Out"
1056
+ msgstr ""
1057
+
1058
+ #: includes/widgets/htmega_newsticker.php:110
1059
+ msgid "Animation Speed"
1060
+ msgstr ""
1061
+
1062
+ #: includes/widgets/htmega_carousel.php:429
1063
+ msgid "Animation Style"
1064
+ msgstr ""
1065
+
1066
+ #: includes/widgets/htmega_animated_heading.php:67
1067
+ msgid "Animation Type"
1068
+ msgstr ""
1069
+
1070
+ #: includes/widgets/htmega_googlemap.php:163
1071
+ msgid "Another Place"
1072
+ msgstr ""
1073
+
1074
+ #: includes/widgets/htmega_booked_calender.php:563
1075
+ msgid "Appointment Button"
1076
+ msgstr ""
1077
+
1078
+ #: includes/widgets/htmega_booked_calender.php:414
1079
+ msgid "Appointments"
1080
+ msgstr ""
1081
+
1082
+ #: includes/widgets/htmega_booked_calender.php:112
1083
+ msgid "April"
1084
+ msgstr ""
1085
+
1086
+ #: admin/include/admin-setting.php:917 admin/include/admin-setting.php:918
1087
+ msgid "Archive Posts"
1088
+ msgstr ""
1089
+
1090
+ #: admin/include/admin-setting.php:926 admin/include/admin-setting.php:927
1091
+ #: extensions/ht-builder/widgets/bl_post_archive_title.php:39
1092
+ #: extensions/ht-builder/widgets/bl_post_archive_title.php:60
1093
+ #: extensions/ht-builder/widgets/bl_post_archive_title.php:170
1094
+ msgid "Archive Title"
1095
+ msgstr ""
1096
+
1097
+ #: includes/widgets/htmega_buddy_press.php:175
1098
+ #: includes/widgets/htmega_popover.php:508
1099
+ msgid "Area"
1100
+ msgstr ""
1101
+
1102
+ #: includes/widgets/htmega_imagemarker.php:100
1103
+ msgid "Area padding"
1104
+ msgstr ""
1105
+
1106
+ #: includes/widgets/htmega_carousel.php:535
1107
+ #: includes/widgets/htmega_instagram.php:912
1108
+ #: includes/widgets/htmega_panel_slider.php:793
1109
+ #: includes/widgets/htmega_popover.php:795
1110
+ #: includes/widgets/htmega_post_slider.php:1410
1111
+ #: includes/widgets/htmega_slider_thumb_gallery.php:802
1112
+ #: includes/widgets/htmega_tooltip.php:548
1113
+ #: includes/widgets/htmega_twitter_feed.php:1053
1114
+ msgid "Arrow"
1115
+ msgstr ""
1116
+
1117
+ #: includes/widgets/htmega_popover.php:821
1118
+ msgid "Arrow Background Color"
1119
+ msgstr ""
1120
+
1121
+ #: includes/widgets/htmega_popover.php:802
1122
+ msgid "Arrow Border Color"
1123
+ msgstr ""
1124
+
1125
+ #: includes/widgets/htmega_working_process.php:270
1126
+ msgid "Arrow Border Height"
1127
+ msgstr ""
1128
+
1129
+ #: includes/widgets/htmega_testimonial_grid.php:655
1130
+ #: includes/widgets/htmega_tooltip.php:554
1131
+ #: includes/widgets/htmega_verticle_time_line.php:414
1132
+ #: includes/widgets/htmega_verticle_time_line.php:455
1133
+ msgid "Arrow Color"
1134
+ msgstr ""
1135
+
1136
+ #: includes/widgets/htmega_working_process.php:320
1137
+ msgid "Arrow Hover Color"
1138
+ msgstr ""
1139
+
1140
+ #: includes/widgets/htmega_working_process.php:291
1141
+ msgid "Arrow Left Color"
1142
+ msgstr ""
1143
+
1144
+ #: includes/widgets/htmega_working_process.php:306
1145
+ msgid "Arrow Right Color"
1146
+ msgstr ""
1147
+
1148
+ #: includes/widgets/htmega_easy_digital_download.php:213
1149
+ msgid "ASC"
1150
+ msgstr ""
1151
+
1152
+ #: includes/widgets/htmega_job_manager.php:83
1153
+ #: includes/widgets/htmega_newsticker.php:278
1154
+ #: includes/widgets/htmega_postgrid.php:132
1155
+ #: includes/widgets/htmega_post_grid_tab.php:139
1156
+ #: includes/widgets/htmega_post_slider.php:143
1157
+ #: includes/widgets/htmega_wc_categories.php:144
1158
+ #: extensions/ht-builder/widgets/bl_post_archive.php:220
1159
+ msgid "Ascending"
1160
+ msgstr ""
1161
+
1162
+ #: includes/widgets/htmega_verticle_time_line.php:109
1163
+ msgid "Aug<br/>2018"
1164
+ msgstr ""
1165
+
1166
+ #: includes/widgets/htmega_booked_calender.php:116
1167
+ msgid "August"
1168
+ msgstr ""
1169
+
1170
+ #: includes/widgets/htmega_job_manager.php:101
1171
+ #: includes/widgets/htmega_post_slider.php:255
1172
+ #: includes/widgets/htmega_singlepost.php:119
1173
+ #: includes/widgets/htmega_twitter_feed.php:688
1174
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:71
1175
+ msgid "Author"
1176
+ msgstr ""
1177
+
1178
+ #: includes/widgets/htmega_twitter_feed.php:754
1179
+ msgid "Author Image Style"
1180
+ msgstr ""
1181
+
1182
+ #: admin/include/admin-setting.php:971 admin/include/admin-setting.php:972
1183
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:39
1184
+ msgid "Author Info"
1185
+ msgstr ""
1186
+
1187
+ #: includes/widgets/htmega_instragram_feed.php:71
1188
+ #: includes/widgets/htmega_notify.php:235
1189
+ msgid "Auto"
1190
+ msgstr ""
1191
+
1192
+ #: includes/widgets/htmega_videoplayer.php:162
1193
+ msgid "Auto Play"
1194
+ msgstr ""
1195
+
1196
+ #: includes/widgets/htmega_newsticker.php:164
1197
+ msgid "Auto Start"
1198
+ msgstr ""
1199
+
1200
+ #: includes/widgets/htmega_carousel.php:281
1201
+ #: includes/widgets/htmega_instagram.php:476
1202
+ #: includes/widgets/htmega_panel_slider.php:381
1203
+ #: includes/widgets/htmega_post_slider.php:461
1204
+ #: includes/widgets/htmega_slider_thumb_gallery.php:271
1205
+ #: includes/widgets/htmega_twitter_feed.php:403
1206
+ msgid "Autoplay animation speed"
1207
+ msgstr ""
1208
+
1209
+ #: includes/widgets/htmega_carousel.php:268
1210
+ #: includes/widgets/htmega_instagram.php:463
1211
+ #: includes/widgets/htmega_panel_slider.php:368
1212
+ #: includes/widgets/htmega_post_slider.php:448
1213
+ #: includes/widgets/htmega_slider_thumb_gallery.php:260
1214
+ #: includes/widgets/htmega_twitter_feed.php:390
1215
+ msgid "Autoplay speed"
1216
+ msgstr ""
1217
+
1218
+ #: includes/widgets/htmega_booked_calender.php:302
1219
+ msgid "Available Date"
1220
+ msgstr ""
1221
+
1222
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:176
1223
+ msgid "Avatar"
1224
+ msgstr ""
1225
+
1226
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:108
1227
+ msgid "Avater Image Position"
1228
+ msgstr ""
1229
+
1230
+ #: includes/widgets/htmega_errorcontent.php:136
1231
+ #: includes/widgets/htmega_errorcontent.php:542
1232
+ msgid "Back Button"
1233
+ msgstr ""
1234
+
1235
+ #: includes/widgets/htmega_errorcontent.php:144
1236
+ #: includes/widgets/htmega_errorcontent.php:145
1237
+ #: includes/widgets/htmega_errorcontent.php:193
1238
+ msgid "Back To Home"
1239
+ msgstr ""
1240
+
1241
+ #: admin/include/templates_list.php:72
1242
+ #: admin/include/templates/library/templates.php:83
1243
+ msgid "Back to Library"
1244
+ msgstr ""
1245
+
1246
+ #: includes/widgets/htmega_accordion.php:589
1247
+ #: includes/widgets/htmega_accordion.php:674
1248
+ #: includes/widgets/htmega_accordion.php:792
1249
+ #: includes/widgets/htmega_accordion.php:843
1250
+ #: includes/widgets/htmega_accordion.php:939
1251
+ #: includes/widgets/htmega_accordion.php:1127
1252
+ #: includes/widgets/htmega_accordion.php:1238
1253
+ #: includes/widgets/htmega_accordion.php:1388
1254
+ #: includes/widgets/htmega_add_banner.php:394
1255
+ #: includes/widgets/htmega_add_banner.php:668
1256
+ #: includes/widgets/htmega_add_banner.php:747
1257
+ #: includes/widgets/htmega_animated_heading.php:203
1258
+ #: includes/widgets/htmega_animated_heading.php:334
1259
+ #: includes/widgets/htmega_animated_heading.php:422
1260
+ #: includes/widgets/htmega_blockquote.php:211
1261
+ #: includes/widgets/htmega_blockquote.php:520
1262
+ #: includes/widgets/htmega_blockquote.php:701
1263
+ #: includes/widgets/htmega_booked_calender.php:256
1264
+ #: includes/widgets/htmega_booked_calender.php:309
1265
+ #: includes/widgets/htmega_booked_calender.php:425
1266
+ #: includes/widgets/htmega_brand.php:178 includes/widgets/htmega_brand.php:203
1267
+ #: includes/widgets/htmega_brand.php:239 includes/widgets/htmega_brand.php:264
1268
+ #: includes/widgets/htmega_buddy_press.php:204
1269
+ #: includes/widgets/htmega_business_hours.php:217
1270
+ #: includes/widgets/htmega_business_hours.php:230
1271
+ #: includes/widgets/htmega_business_hours.php:309
1272
+ #: includes/widgets/htmega_business_hours.php:437
1273
+ #: includes/widgets/htmega_business_hours.php:532
1274
+ #: includes/widgets/htmega_business_hours.php:571
1275
+ #: includes/widgets/htmega_button.php:249
1276
+ #: includes/widgets/htmega_button.php:277
1277
+ #: includes/widgets/htmega_button.php:372
1278
+ #: includes/widgets/htmega_button.php:392
1279
+ #: includes/widgets/htmega_call_to_action.php:358
1280
+ #: includes/widgets/htmega_call_to_action.php:435
1281
+ #: includes/widgets/htmega_call_to_action.php:720
1282
+ #: includes/widgets/htmega_call_to_action.php:857
1283
+ #: includes/widgets/htmega_call_to_action.php:926
1284
+ #: includes/widgets/htmega_call_to_action.php:1063
1285
+ #: includes/widgets/htmega_carousel.php:599
1286
+ #: includes/widgets/htmega_carousel.php:774
1287
+ #: includes/widgets/htmega_carousel.php:864
1288
+ #: includes/widgets/htmega_carousel.php:997
1289
+ #: includes/widgets/htmega_carousel.php:1103
1290
+ #: includes/widgets/htmega_carousel.php:1197
1291
+ #: includes/widgets/htmega_carousel.php:1330
1292
+ #: includes/widgets/htmega_carousel.php:1414
1293
+ #: includes/widgets/htmega_contact_form_seven.php:140
1294
+ #: includes/widgets/htmega_countdown.php:413
1295
+ #: includes/widgets/htmega_countdown.php:438
1296
+ #: includes/widgets/htmega_countdown.php:463
1297
+ #: includes/widgets/htmega_countdown.php:488
1298
+ #: includes/widgets/htmega_countdown.php:513
1299
+ #: includes/widgets/htmega_countdown.php:783
1300
+ #: includes/widgets/htmega_countdown.php:869
1301
+ #: includes/widgets/htmega_countdown.php:953
1302
+ #: includes/widgets/htmega_counter.php:202
1303
+ #: includes/widgets/htmega_counter.php:478
1304
+ #: includes/widgets/htmega_counter.php:603
1305
+ #: includes/widgets/htmega_counter.php:869
1306
+ #: includes/widgets/htmega_counter.php:959
1307
+ #: includes/widgets/htmega_counter.php:1048
1308
+ #: includes/widgets/htmega_data_table.php:233
1309
+ #: includes/widgets/htmega_data_table.php:494
1310
+ #: includes/widgets/htmega_data_table.php:570
1311
+ #: includes/widgets/htmega_data_table.php:656
1312
+ #: includes/widgets/htmega_data_table.php:949
1313
+ #: includes/widgets/htmega_data_table.php:1028
1314
+ #: includes/widgets/htmega_double_button.php:524
1315
+ #: includes/widgets/htmega_double_button.php:611
1316
+ #: includes/widgets/htmega_double_button.php:697
1317
+ #: includes/widgets/htmega_double_button.php:783
1318
+ #: includes/widgets/htmega_double_button.php:880
1319
+ #: includes/widgets/htmega_dropcaps.php:131
1320
+ #: includes/widgets/htmega_dropcaps.php:230
1321
+ #: includes/widgets/htmega_easy_digital_download.php:553
1322
+ #: includes/widgets/htmega_easy_digital_download.php:632
1323
+ #: includes/widgets/htmega_errorcontent.php:570
1324
+ #: includes/widgets/htmega_errorcontent.php:656
1325
+ #: includes/widgets/htmega_errorcontent.php:721
1326
+ #: includes/widgets/htmega_errorcontent.php:807
1327
+ #: includes/widgets/htmega_googlemap.php:306
1328
+ #: includes/widgets/htmega_googlemap.php:391
1329
+ #: includes/widgets/htmega_googlemap.php:447
1330
+ #: includes/widgets/htmega_gravity_forms.php:259
1331
+ #: includes/widgets/htmega_imagemarker.php:52
1332
+ #: includes/widgets/htmega_imagemarker.php:654
1333
+ #: includes/widgets/htmega_imagemarker.php:733
1334
+ #: includes/widgets/htmega_image_comparison.php:102
1335
+ #: includes/widgets/htmega_image_comparison.php:284
1336
+ #: includes/widgets/htmega_image_comparison.php:365
1337
+ #: includes/widgets/htmega_image_comparison.php:454
1338
+ #: includes/widgets/htmega_image_comparison.php:520
1339
+ #: includes/widgets/htmega_image_comparison.php:540
1340
+ #: includes/widgets/htmega_image_grid.php:331
1341
+ #: includes/widgets/htmega_image_grid.php:490
1342
+ #: includes/widgets/htmega_image_grid.php:562
1343
+ #: includes/widgets/htmega_image_masonry.php:307
1344
+ #: includes/widgets/htmega_image_masonry.php:477
1345
+ #: includes/widgets/htmega_image_masonry.php:558
1346
+ #: includes/widgets/htmega_inlinemenu.php:166
1347
+ #: includes/widgets/htmega_inlinemenu.php:265
1348
+ #: includes/widgets/htmega_inlinemenu.php:428
1349
+ #: includes/widgets/htmega_instagram.php:625
1350
+ #: includes/widgets/htmega_instagram.php:671
1351
+ #: includes/widgets/htmega_instagram.php:814
1352
+ #: includes/widgets/htmega_instagram.php:974
1353
+ #: includes/widgets/htmega_instagram.php:1093
1354
+ #: includes/widgets/htmega_instagram.php:1153
1355
+ #: includes/widgets/htmega_instagram.php:1247
1356
+ #: includes/widgets/htmega_instagram.php:1313
1357
+ #: includes/widgets/htmega_instagram.php:1410
1358
+ #: includes/widgets/htmega_lightbox.php:354
1359
+ #: includes/widgets/htmega_mailchimp_wp.php:116
1360
+ #: includes/widgets/htmega_modal.php:249 includes/widgets/htmega_modal.php:455
1361
+ #: includes/widgets/htmega_modal.php:516 includes/widgets/htmega_modal.php:613
1362
+ #: includes/widgets/htmega_modal.php:701 includes/widgets/htmega_modal.php:776
1363
+ #: includes/widgets/htmega_modal.php:868 includes/widgets/htmega_modal.php:946
1364
+ #: includes/widgets/htmega_newsticker.php:361
1365
+ #: includes/widgets/htmega_newsticker.php:520
1366
+ #: includes/widgets/htmega_newsticker.php:649
1367
+ #: includes/widgets/htmega_newsticker.php:756
1368
+ #: includes/widgets/htmega_newsticker.php:880
1369
+ #: includes/widgets/htmega_newsticker.php:937
1370
+ #: includes/widgets/htmega_ninja_form.php:344
1371
+ #: includes/widgets/htmega_notify.php:370
1372
+ #: includes/widgets/htmega_notify.php:437
1373
+ #: includes/widgets/htmega_notify.php:522
1374
+ #: includes/widgets/htmega_notify.php:671
1375
+ #: includes/widgets/htmega_offcanvas.php:362
1376
+ #: includes/widgets/htmega_offcanvas.php:474
1377
+ #: includes/widgets/htmega_offcanvas.php:505
1378
+ #: includes/widgets/htmega_panel_slider.php:580
1379
+ #: includes/widgets/htmega_panel_slider.php:639
1380
+ #: includes/widgets/htmega_panel_slider.php:853
1381
+ #: includes/widgets/htmega_panel_slider.php:1042
1382
+ #: includes/widgets/htmega_panel_slider.php:1162
1383
+ #: includes/widgets/htmega_panel_slider.php:1213
1384
+ #: includes/widgets/htmega_popover.php:395
1385
+ #: includes/widgets/htmega_popover.php:473
1386
+ #: includes/widgets/htmega_popover.php:542
1387
+ #: includes/widgets/htmega_popover.php:628
1388
+ #: includes/widgets/htmega_popover.php:732
1389
+ #: includes/widgets/htmega_postgrid.php:227
1390
+ #: includes/widgets/htmega_postgrid.php:714
1391
+ #: includes/widgets/htmega_post_grid_tab.php:268
1392
+ #: includes/widgets/htmega_post_grid_tab.php:344
1393
+ #: includes/widgets/htmega_post_grid_tab.php:677
1394
+ #: includes/widgets/htmega_post_grid_tab.php:707
1395
+ #: includes/widgets/htmega_post_grid_tab.php:897
1396
+ #: includes/widgets/htmega_post_grid_tab.php:947
1397
+ #: includes/widgets/htmega_post_grid_tab.php:1012
1398
+ #: includes/widgets/htmega_post_grid_tab.php:1070
1399
+ #: includes/widgets/htmega_post_grid_tab.php:1101
1400
+ #: includes/widgets/htmega_post_slider.php:657
1401
+ #: includes/widgets/htmega_post_slider.php:694
1402
+ #: includes/widgets/htmega_post_slider.php:717
1403
+ #: includes/widgets/htmega_post_slider.php:1111
1404
+ #: includes/widgets/htmega_post_slider.php:1141
1405
+ #: includes/widgets/htmega_post_slider.php:1324
1406
+ #: includes/widgets/htmega_post_slider.php:1374
1407
+ #: includes/widgets/htmega_post_slider.php:1584
1408
+ #: includes/widgets/htmega_post_slider.php:1704
1409
+ #: includes/widgets/htmega_post_slider.php:1817
1410
+ #: includes/widgets/htmega_post_slider.php:1868
1411
+ #: includes/widgets/htmega_post_slider.php:1969
1412
+ #: includes/widgets/htmega_post_slider.php:2017
1413
+ #: includes/widgets/htmega_progress_bar.php:487
1414
+ #: includes/widgets/htmega_progress_bar.php:668
1415
+ #: includes/widgets/htmega_quforms.php:110
1416
+ #: includes/widgets/htmega_quforms.php:230
1417
+ #: includes/widgets/htmega_scroll_image.php:174
1418
+ #: includes/widgets/htmega_scroll_image.php:317
1419
+ #: includes/widgets/htmega_scroll_navigation.php:400
1420
+ #: includes/widgets/htmega_scroll_navigation.php:494
1421
+ #: includes/widgets/htmega_search.php:262
1422
+ #: includes/widgets/htmega_search.php:407
1423
+ #: includes/widgets/htmega_search.php:494
1424
+ #: includes/widgets/htmega_search.php:624
1425
+ #: includes/widgets/htmega_search.php:748
1426
+ #: includes/widgets/htmega_search.php:922
1427
+ #: includes/widgets/htmega_search.php:969
1428
+ #: includes/widgets/htmega_section_title.php:378
1429
+ #: includes/widgets/htmega_section_title.php:635
1430
+ #: includes/widgets/htmega_section_title.php:866
1431
+ #: includes/widgets/htmega_section_title.php:1016
1432
+ #: includes/widgets/htmega_service.php:210
1433
+ #: includes/widgets/htmega_service.php:278
1434
+ #: includes/widgets/htmega_service.php:330
1435
+ #: includes/widgets/htmega_service.php:686
1436
+ #: includes/widgets/htmega_service.php:768
1437
+ #: includes/widgets/htmega_service.php:813
1438
+ #: includes/widgets/htmega_service.php:948
1439
+ #: includes/widgets/htmega_service.php:1076
1440
+ #: includes/widgets/htmega_service.php:1128
1441
+ #: includes/widgets/htmega_singlepost.php:294
1442
+ #: includes/widgets/htmega_singlepost.php:472
1443
+ #: includes/widgets/htmega_slider_thumb_gallery.php:790
1444
+ #: includes/widgets/htmega_slider_thumb_gallery.php:865
1445
+ #: includes/widgets/htmega_slider_thumb_gallery.php:1010
1446
+ #: includes/widgets/htmega_slider_thumb_gallery.php:1082
1447
+ #: includes/widgets/htmega_slider_thumb_gallery.php:1176
1448
+ #: includes/widgets/htmega_slider_thumb_gallery.php:1293
1449
+ #: includes/widgets/htmega_socialshere.php:131
1450
+ #: includes/widgets/htmega_socialshere.php:241
1451
+ #: includes/widgets/htmega_socialshere.php:292
1452
+ #: includes/widgets/htmega_socialshere.php:591
1453
+ #: includes/widgets/htmega_socialshere.php:702
1454
+ #: includes/widgets/htmega_socialshere.php:733
1455
+ #: includes/widgets/htmega_special_day_banner.php:322
1456
+ #: includes/widgets/htmega_special_day_banner.php:691
1457
+ #: includes/widgets/htmega_special_day_banner.php:770
1458
+ #: includes/widgets/htmega_switcher.php:284
1459
+ #: includes/widgets/htmega_switcher.php:416
1460
+ #: includes/widgets/htmega_switcher.php:491
1461
+ #: includes/widgets/htmega_switcher.php:603
1462
+ #: includes/widgets/htmega_tablepress.php:151
1463
+ #: includes/widgets/htmega_tablepress.php:270
1464
+ #: includes/widgets/htmega_tablepress.php:314
1465
+ #: includes/widgets/htmega_tabs.php:147 includes/widgets/htmega_tabs.php:168
1466
+ #: includes/widgets/htmega_tabs.php:306 includes/widgets/htmega_tabs.php:559
1467
+ #: includes/widgets/htmega_tabs.php:636 includes/widgets/htmega_tabs.php:722
1468
+ #: includes/widgets/htmega_tabs.php:816 includes/widgets/htmega_tabs.php:882
1469
+ #: includes/widgets/htmega_teammember.php:386
1470
+ #: includes/widgets/htmega_teammember.php:487
1471
+ #: includes/widgets/htmega_teammember.php:523
1472
+ #: includes/widgets/htmega_teammember.php:546
1473
+ #: includes/widgets/htmega_testimonial_grid.php:298
1474
+ #: includes/widgets/htmega_testimonial_grid.php:343
1475
+ #: includes/widgets/htmega_testimonial_grid.php:644
1476
+ #: includes/widgets/htmega_toggle.php:311
1477
+ #: includes/widgets/htmega_toggle.php:363
1478
+ #: includes/widgets/htmega_tooltip.php:372
1479
+ #: includes/widgets/htmega_tooltip.php:450
1480
+ #: includes/widgets/htmega_tooltip.php:525
1481
+ #: includes/widgets/htmega_twitter_feed.php:552
1482
+ #: includes/widgets/htmega_twitter_feed.php:1117
1483
+ #: includes/widgets/htmega_twitter_feed.php:1254
1484
+ #: includes/widgets/htmega_twitter_feed.php:1314
1485
+ #: includes/widgets/htmega_twitter_feed.php:1443
1486
+ #: includes/widgets/htmega_user_login_form.php:558
1487
+ #: includes/widgets/htmega_user_login_form.php:852
1488
+ #: includes/widgets/htmega_user_login_form.php:1124
1489
+ #: includes/widgets/htmega_user_login_form.php:1243
1490
+ #: includes/widgets/htmega_user_login_form.php:1322
1491
+ #: includes/widgets/htmega_user_login_form.php:1427
1492
+ #: includes/widgets/htmega_user_login_form.php:1492
1493
+ #: includes/widgets/htmega_verticle_time_line.php:403
1494
+ #: includes/widgets/htmega_verticle_time_line.php:444
1495
+ #: includes/widgets/htmega_verticle_time_line.php:484
1496
+ #: includes/widgets/htmega_verticle_time_line.php:613
1497
+ #: includes/widgets/htmega_videoplayer.php:242
1498
+ #: includes/widgets/htmega_videoplayer.php:357
1499
+ #: includes/widgets/htmega_videoplayer.php:494
1500
+ #: includes/widgets/htmega_wc_categories.php:184
1501
+ #: includes/widgets/htmega_wc_categories.php:246
1502
+ #: includes/widgets/htmega_wc_categories.php:321
1503
+ #: includes/widgets/htmega_wc_categories.php:423
1504
+ #: includes/widgets/htmega_wc_element_pages.php:1735
1505
+ #: includes/widgets/htmega_wc_element_pages.php:1812
1506
+ #: includes/widgets/htmega_weather.php:297
1507
+ #: includes/widgets/htmega_working_process.php:200
1508
+ #: includes/widgets/htmega_working_process.php:378
1509
+ #: includes/widgets/htmega_working_process.php:392
1510
+ #: includes/widgets/htmega_working_process.php:587
1511
+ #: includes/widgets/htmega_working_process.php:802
1512
+ #: includes/widgets/htmega_working_process.php:1004
1513
+ #: includes/widgets/htmega_working_process.php:1083
1514
+ #: includes/widgets/htmega_wpforms.php:337
1515
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:161
1516
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:246
1517
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:299
1518
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:352
1519
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:394
1520
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:447
1521
+ #: extensions/ht-menu/menu/templates.php:143
1522
+ msgid "Background"
1523
+ msgstr ""
1524
+
1525
+ #: includes/widgets/htmega_booked_calender.php:675
1526
+ #: includes/widgets/htmega_business_hours.php:144
1527
+ #: includes/widgets/htmega_caldera_form.php:227
1528
+ #: includes/widgets/htmega_caldera_form.php:387
1529
+ #: includes/widgets/htmega_caldera_form.php:465
1530
+ #: includes/widgets/htmega_caldera_form.php:574
1531
+ #: includes/widgets/htmega_caldera_form.php:646
1532
+ #: includes/widgets/htmega_caldera_form.php:685
1533
+ #: includes/widgets/htmega_caldera_form.php:724
1534
+ #: includes/widgets/htmega_carousel.php:445
1535
+ #: includes/widgets/htmega_contact_form_seven.php:221
1536
+ #: includes/widgets/htmega_contact_form_seven.php:373
1537
+ #: includes/widgets/htmega_contact_form_seven.php:493
1538
+ #: includes/widgets/htmega_contact_form_seven.php:599
1539
+ #: includes/widgets/htmega_contact_form_seven.php:662
1540
+ #: includes/widgets/htmega_contact_form_seven.php:846
1541
+ #: includes/widgets/htmega_contact_form_seven.php:934
1542
+ #: includes/widgets/htmega_custom_event.php:342
1543
+ #: includes/widgets/htmega_gravity_forms.php:404
1544
+ #: includes/widgets/htmega_gravity_forms.php:574
1545
+ #: includes/widgets/htmega_gravity_forms.php:706
1546
+ #: includes/widgets/htmega_gravity_forms.php:816
1547
+ #: includes/widgets/htmega_mailchimp_wp.php:195
1548
+ #: includes/widgets/htmega_mailchimp_wp.php:383
1549
+ #: includes/widgets/htmega_mailchimp_wp.php:471
1550
+ #: includes/widgets/htmega_ninja_form.php:490
1551
+ #: includes/widgets/htmega_ninja_form.php:640
1552
+ #: includes/widgets/htmega_ninja_form.php:712
1553
+ #: includes/widgets/htmega_ninja_form.php:859
1554
+ #: includes/widgets/htmega_ninja_form.php:965
1555
+ #: includes/widgets/htmega_ninja_form.php:1075
1556
+ #: includes/widgets/htmega_pricing_list_view.php:337
1557
+ #: includes/widgets/htmega_pricing_list_view.php:707
1558
+ #: includes/widgets/htmega_pricing_list_view.php:966
1559
+ #: includes/widgets/htmega_pricing_list_view.php:1228
1560
+ #: includes/widgets/htmega_pricing_list_view.php:1298
1561
+ #: includes/widgets/htmega_pricing_list_view.php:1468
1562
+ #: includes/widgets/htmega_pricing_list_view.php:1574
1563
+ #: includes/widgets/htmega_pricing_list_view.php:1651
1564
+ #: includes/widgets/htmega_pricing_list_view.php:1732
1565
+ #: includes/widgets/htmega_pricing_list_view.php:1809
1566
+ #: includes/widgets/htmega_quforms.php:351
1567
+ #: includes/widgets/htmega_quforms.php:476
1568
+ #: includes/widgets/htmega_quforms.php:571
1569
+ #: includes/widgets/htmega_quforms.php:693
1570
+ #: includes/widgets/htmega_quforms.php:849
1571
+ #: includes/widgets/htmega_quforms.php:936
1572
+ #: includes/widgets/htmega_quforms.php:1004
1573
+ #: includes/widgets/htmega_quforms.php:1043
1574
+ #: includes/widgets/htmega_verticle_time_line.php:219
1575
+ #: includes/widgets/htmega_verticle_time_line.php:296
1576
+ #: includes/widgets/htmega_wc_element_pages.php:108
1577
+ #: includes/widgets/htmega_wc_element_pages.php:143
1578
+ #: includes/widgets/htmega_wc_element_pages.php:224
1579
+ #: includes/widgets/htmega_wc_element_pages.php:309
1580
+ #: includes/widgets/htmega_wc_element_pages.php:415
1581
+ #: includes/widgets/htmega_wc_element_pages.php:489
1582
+ #: includes/widgets/htmega_wc_element_pages.php:566
1583
+ #: includes/widgets/htmega_wc_element_pages.php:587
1584
+ #: includes/widgets/htmega_wc_element_pages.php:725
1585
+ #: includes/widgets/htmega_wc_element_pages.php:850
1586
+ #: includes/widgets/htmega_wc_element_pages.php:910
1587
+ #: includes/widgets/htmega_wc_element_pages.php:964
1588
+ #: includes/widgets/htmega_wc_element_pages.php:1040
1589
+ #: includes/widgets/htmega_wc_element_pages.php:1181
1590
+ #: includes/widgets/htmega_wc_element_pages.php:1222
1591
+ #: includes/widgets/htmega_wc_element_pages.php:1253
1592
+ #: includes/widgets/htmega_wc_element_pages.php:1288
1593
+ #: includes/widgets/htmega_wc_element_pages.php:1369
1594
+ #: includes/widgets/htmega_wc_element_pages.php:1407
1595
+ #: includes/widgets/htmega_wc_element_pages.php:1542
1596
+ #: includes/widgets/htmega_wc_element_pages.php:1630
1597
+ #: includes/widgets/htmega_wpforms.php:493
1598
+ #: includes/widgets/htmega_wpforms.php:643
1599
+ #: includes/widgets/htmega_wpforms.php:715
1600
+ #: includes/widgets/htmega_wpforms.php:861
1601
+ #: includes/widgets/htmega_wpforms.php:992
1602
+ #: includes/widgets/htmega_wpforms.php:1102
1603
+ #: extensions/ht-builder/widgets/bl_post_comments.php:109
1604
+ #: extensions/ht-builder/widgets/bl_post_comments.php:159
1605
+ #: extensions/ht-builder/widgets/bl_post_search_form.php:212
1606
+ #: extensions/ht-builder/widgets/bl_post_search_form.php:286
1607
+ #: extensions/ht-menu/menu/templates.php:179
1608
+ #: extensions/wc-sales-notification/admin/setting.php:188
1609
+ msgid "Background Color"
1610
+ msgstr ""
1611
+
1612
+ #: includes/widgets/htmega_pricing_list_view.php:1377
1613
+ msgid "Background Color ( Even )"
1614
+ msgstr ""
1615
+
1616
+ #: includes/widgets/htmega_data_table.php:748
1617
+ msgid "Background Color ( Event )"
1618
+ msgstr ""
1619
+
1620
+ #: includes/widgets/htmega_data_table.php:760
1621
+ #: includes/widgets/htmega_pricing_list_view.php:1389
1622
+ msgid "Background Color ( Odd )"
1623
+ msgstr ""
1624
+
1625
+ #: admin/include/admin-setting.php:1398 admin/include/admin-setting.php:1423
1626
+ msgid "Background color option"
1627
+ msgstr ""
1628
+
1629
+ #: includes/widgets/htmega_counter.php:211
1630
+ #: includes/widgets/htmega_weather.php:218
1631
+ msgid "Background Overlay"
1632
+ msgstr ""
1633
+
1634
+ #: extensions/ht-menu/menu/templates.php:185
1635
+ msgid "Background Second Color"
1636
+ msgstr ""
1637
+
1638
+ #: admin/include/admin-setting.php:687
1639
+ msgid "Background Switcher <span>( Pro )</span>"
1640
+ msgstr ""
1641
+
1642
+ #: includes/widgets/htmega_dropcaps.php:195
1643
+ msgid "Backround Image as Text Color"
1644
+ msgstr ""
1645
+
1646
+ #: includes/widgets/htmega_scroll_image.php:241
1647
+ msgid "Badge"
1648
+ msgstr ""
1649
+
1650
+ #: includes/widgets/htmega_special_day_banner.php:157
1651
+ msgid "Badge Image"
1652
+ msgstr ""
1653
+
1654
+ #: includes/widgets/htmega_scroll_image.php:132
1655
+ #: includes/widgets/htmega_scroll_image.php:136
1656
+ msgid "Badge Text"
1657
+ msgstr ""
1658
+
1659
+ #: extensions/ht-menu/menu/templates.php:50
1660
+ msgid "Badges"
1661
+ msgstr ""
1662
+
1663
+ #: includes/widgets/htmega_socialshere.php:85
1664
+ msgid "Baidu"
1665
+ msgstr ""
1666
+
1667
+ #: includes/widgets/htmega_googlemap.php:103
1668
+ msgid "Bangladesh"
1669
+ msgstr ""
1670
+
1671
+ #: includes/widgets/htmega_add_banner.php:34
1672
+ #: includes/widgets/htmega_special_day_banner.php:35
1673
+ msgid "Banner"
1674
+ msgstr ""
1675
+
1676
+ #: includes/widgets/htmega_special_day_banner.php:147
1677
+ msgid "Banner Badge"
1678
+ msgstr ""
1679
+
1680
+ #: includes/widgets/htmega_add_banner.php:112
1681
+ #: includes/widgets/htmega_special_day_banner.php:98
1682
+ msgid "Banner Description"
1683
+ msgstr ""
1684
+
1685
+ #: includes/widgets/htmega_special_day_banner.php:313
1686
+ msgid "Banner Hover Color"
1687
+ msgstr ""
1688
+
1689
+ #: includes/widgets/htmega_add_banner.php:119
1690
+ #: includes/widgets/htmega_special_day_banner.php:123
1691
+ msgid "Banner Link"
1692
+ msgstr ""
1693
+
1694
+ #: includes/widgets/htmega_add_banner.php:103
1695
+ #: includes/widgets/htmega_special_day_banner.php:89
1696
+ msgid "Banner Sub Title"
1697
+ msgstr ""
1698
+
1699
+ #: includes/widgets/htmega_add_banner.php:94
1700
+ #: includes/widgets/htmega_special_day_banner.php:80
1701
+ msgid "Banner Title"
1702
+ msgstr ""
1703
+
1704
+ #: includes/widgets/htmega_pricing_list_view.php:1159
1705
+ msgid "Baseline"
1706
+ msgstr ""
1707
+
1708
+ #: includes/widgets/htmega_bbpress.php:13
1709
+ #: includes/widgets/htmega_bbpress.php:43
1710
+ msgid "Bbpress"
1711
+ msgstr ""
1712
+
1713
+ #: admin/include/admin-setting.php:1058
1714
+ msgid "bbPress"
1715
+ msgstr ""
1716
+
1717
+ #: includes/widgets/htmega_section_title.php:710
1718
+ #: includes/widgets/htmega_section_title.php:875
1719
+ msgid "Befor, After Border"
1720
+ msgstr ""
1721
+
1722
+ #: includes/widgets/htmega_blockquote.php:404
1723
+ #: includes/widgets/htmega_image_comparison.php:156
1724
+ msgid "Before"
1725
+ msgstr ""
1726
+
1727
+ #: includes/widgets/htmega_section_title.php:447
1728
+ msgid "Before And After Border Color"
1729
+ msgstr ""
1730
+
1731
+ #: includes/widgets/htmega_inlinemenu.php:296
1732
+ #: includes/widgets/htmega_inlinemenu.php:458
1733
+ msgid "Before Background"
1734
+ msgstr ""
1735
+
1736
+ #: includes/widgets/htmega_inlinemenu.php:382
1737
+ #: includes/widgets/htmega_inlinemenu.php:544
1738
+ msgid "Before Border Botton Position"
1739
+ msgstr ""
1740
+
1741
+ #: includes/widgets/htmega_inlinemenu.php:337
1742
+ #: includes/widgets/htmega_inlinemenu.php:499
1743
+ msgid "Before Border Size"
1744
+ msgstr ""
1745
+
1746
+ #: includes/widgets/htmega_inlinemenu.php:359
1747
+ #: includes/widgets/htmega_inlinemenu.php:521
1748
+ msgid "Before Border Top Position"
1749
+ msgstr ""
1750
+
1751
+ #: includes/widgets/htmega_image_comparison.php:50
1752
+ msgid "Before Image"
1753
+ msgstr ""
1754
+
1755
+ #: includes/widgets/htmega_pricing_list_view.php:89
1756
+ msgid "Before Price Label"
1757
+ msgstr ""
1758
+
1759
+ #: includes/widgets/htmega_pricing_list_view.php:1542
1760
+ msgid "Before Price Style"
1761
+ msgstr ""
1762
+
1763
+ #: includes/widgets/htmega_image_comparison.php:172
1764
+ msgid "Before Start Amount"
1765
+ msgstr ""
1766
+
1767
+ #: includes/widgets/htmega_animated_heading.php:151
1768
+ msgid "Before Text Style"
1769
+ msgstr ""
1770
+
1771
+ #: includes/widgets/htmega_image_comparison.php:154
1772
+ #: includes/widgets/htmega_image_comparison.php:228
1773
+ msgid "Before Title"
1774
+ msgstr ""
1775
+
1776
+ #: includes/widgets/htmega_inlinemenu.php:311
1777
+ #: includes/widgets/htmega_inlinemenu.php:473
1778
+ msgid "Before/After Border"
1779
+ msgstr ""
1780
+
1781
+ #: includes/widgets/htmega_user_login_form.php:300
1782
+ msgid "Before/Top Login Button"
1783
+ msgstr ""
1784
+
1785
+ #: includes/widgets/htmega_teammember.php:175
1786
+ msgid "Bio Info"
1787
+ msgstr ""
1788
+
1789
+ #: includes/widgets/htmega_teammember.php:864
1790
+ msgid "Bio info"
1791
+ msgstr ""
1792
+
1793
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:256
1794
+ msgid "Biography"
1795
+ msgstr ""
1796
+
1797
+ #: extensions/ht-builder/widgets/bl_post_archive.php:23
1798
+ msgid "BL: Archive Posts"
1799
+ msgstr ""
1800
+
1801
+ #: extensions/ht-builder/widgets/bl_post_archive_title.php:22
1802
+ msgid "BL: Archive Title"
1803
+ msgstr ""
1804
+
1805
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:22
1806
+ msgid "BL: Author Info"
1807
+ msgstr ""
1808
+
1809
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:23
1810
+ msgid "BL: Nav Menu"
1811
+ msgstr ""
1812
+
1813
+ #: extensions/ht-builder/widgets/bl_page_title.php:22
1814
+ msgid "BL: Page Title"
1815
+ msgstr ""
1816
+
1817
+ #: extensions/ht-builder/widgets/bl_post_comments.php:23
1818
+ msgid "BL: Post Comments"
1819
+ msgstr ""
1820
+
1821
+ #: extensions/ht-builder/widgets/bl_post_content.php:22
1822
+ msgid "BL: Post Content"
1823
+ msgstr ""
1824
+
1825
+ #: extensions/ht-builder/widgets/bl_post_excerpt.php:22
1826
+ msgid "BL: Post Excerpt"
1827
+ msgstr ""
1828
+
1829
+ #: extensions/ht-builder/widgets/bl_post_featured_image.php:23
1830
+ msgid "BL: Post Featured Image"
1831
+ msgstr ""
1832
+
1833
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:23
1834
+ msgid "BL: Post Meta Info"
1835
+ msgstr ""
1836
+
1837
+ #: extensions/ht-builder/widgets/bl_post_search_form.php:22
1838
+ msgid "BL: Post Search Form"
1839
+ msgstr ""
1840
+
1841
+ #: extensions/ht-builder/widgets/bl_post_title.php:20
1842
+ msgid "BL: Post Title"
1843
+ msgstr ""
1844
+
1845
+ #: extensions/ht-builder/widgets/bl_site_logo.php:24
1846
+ msgid "BL: Site Logo"
1847
+ msgstr ""
1848
+
1849
+ #: extensions/ht-builder/widgets/bl_site_title.php:22
1850
+ msgid "BL: Site Title"
1851
+ msgstr ""
1852
+
1853
+ #: includes/widgets/htmega_section_title.php:616
1854
+ #: includes/widgets/htmega_section_title.php:847
1855
+ msgid "Block"
1856
+ msgstr ""
1857
+
1858
+ #: admin/include/admin-setting.php:151
1859
+ #: includes/widgets/htmega_blockquote.php:13
1860
+ #: includes/widgets/htmega_blockquote.php:34
1861
+ msgid "Blockquote"
1862
+ msgstr ""
1863
+
1864
+ #: includes/widgets/htmega_blockquote.php:79
1865
+ msgid "Blockquote By"
1866
+ msgstr ""
1867
+
1868
+ #: includes/widgets/htmega_blockquote.php:69
1869
+ msgid "Blockquote Content"
1870
+ msgstr ""
1871
+
1872
+ #: includes/widgets/htmega_blockquote.php:149
1873
+ msgid "Blockquote Position"
1874
+ msgstr ""
1875
+
1876
+ #: includes/widgets/htmega_blockquote.php:89
1877
+ msgid "Blockquote Type"
1878
+ msgstr ""
1879
+
1880
+ #: admin/include/templates_list.php:34
1881
+ msgid "Blocks"
1882
+ msgstr ""
1883
+
1884
+ #: admin/include/admin-setting.php:1389 admin/include/admin-setting.php:1414
1885
+ msgid "Blog Archive Category Wise Individual layout"
1886
+ msgstr ""
1887
+
1888
+ #: admin/include/admin-setting.php:1390 admin/include/admin-setting.php:1415
1889
+ msgid "Blog Archive Tag Wise Individual layout"
1890
+ msgstr ""
1891
+
1892
+ #: admin/include/admin-setting.php:1386 admin/include/admin-setting.php:1411
1893
+ msgid "Blog Search Page Builder"
1894
+ msgstr ""
1895
+
1896
+ #: extensions/ht-builder/admin/setting.php:73
1897
+ msgid "Blog Template."
1898
+ msgstr ""
1899
+
1900
+ #: extensions/ht-builder/widgets/bl_post_title.php:133
1901
+ msgid "Blog Title"
1902
+ msgstr ""
1903
+
1904
+ #: includes/widgets/htmega_socialshere.php:72
1905
+ msgid "Blogger"
1906
+ msgstr ""
1907
+
1908
+ #: includes/widgets/htmega_booked_calender.php:246
1909
+ #: includes/widgets/htmega_notify.php:100
1910
+ #: includes/widgets/htmega_tablepress.php:242
1911
+ msgid "Body"
1912
+ msgstr ""
1913
+
1914
+ #: includes/widgets/htmega_booked_calender.php:13
1915
+ msgid "Booked Calendar"
1916
+ msgstr ""
1917
+
1918
+ #: admin/include/admin-setting.php:1068
1919
+ #: includes/widgets/htmega_booked_calender.php:43
1920
+ msgid "Booked Calender"
1921
+ msgstr ""
1922
+
1923
+ #: includes/widgets/htmega_notify.php:231
1924
+ msgid "Bootstrap Column Width"
1925
+ msgstr ""
1926
+
1927
+ #: includes/widgets/htmega_accordion.php:612
1928
+ #: includes/widgets/htmega_accordion.php:696
1929
+ #: includes/widgets/htmega_accordion.php:866
1930
+ #: includes/widgets/htmega_accordion.php:964
1931
+ #: includes/widgets/htmega_accordion.php:1150
1932
+ #: includes/widgets/htmega_accordion.php:1261
1933
+ #: includes/widgets/htmega_accordion.php:1398
1934
+ #: includes/widgets/htmega_add_banner.php:188
1935
+ #: includes/widgets/htmega_add_banner.php:216
1936
+ #: includes/widgets/htmega_add_banner.php:276
1937
+ #: includes/widgets/htmega_add_banner.php:330
1938
+ #: includes/widgets/htmega_add_banner.php:648
1939
+ #: includes/widgets/htmega_add_banner.php:727
1940
+ #: includes/widgets/htmega_animated_heading.php:183
1941
+ #: includes/widgets/htmega_animated_heading.php:314
1942
+ #: includes/widgets/htmega_animated_heading.php:402
1943
+ #: includes/widgets/htmega_blockquote.php:247
1944
+ #: includes/widgets/htmega_blockquote.php:381
1945
+ #: includes/widgets/htmega_blockquote.php:556
1946
+ #: includes/widgets/htmega_blockquote.php:736
1947
+ #: includes/widgets/htmega_brand.php:343 includes/widgets/htmega_brand.php:355
1948
+ #: includes/widgets/htmega_buddy_press.php:184
1949
+ #: includes/widgets/htmega_business_hours.php:269
1950
+ #: includes/widgets/htmega_business_hours.php:345
1951
+ #: includes/widgets/htmega_business_hours.php:473
1952
+ #: includes/widgets/htmega_button.php:229
1953
+ #: includes/widgets/htmega_button.php:352
1954
+ #: includes/widgets/htmega_button.php:556
1955
+ #: includes/widgets/htmega_caldera_form.php:310
1956
+ #: includes/widgets/htmega_caldera_form.php:399
1957
+ #: includes/widgets/htmega_caldera_form.php:486
1958
+ #: includes/widgets/htmega_call_to_action.php:401
1959
+ #: includes/widgets/htmega_call_to_action.php:478
1960
+ #: includes/widgets/htmega_call_to_action.php:757
1961
+ #: includes/widgets/htmega_call_to_action.php:837
1962
+ #: includes/widgets/htmega_call_to_action.php:963
1963
+ #: includes/widgets/htmega_call_to_action.php:1043
1964
+ #: includes/widgets/htmega_carousel.php:512
1965
+ #: includes/widgets/htmega_carousel.php:609
1966
+ #: includes/widgets/htmega_carousel.php:784
1967
+ #: includes/widgets/htmega_carousel.php:874
1968
+ #: includes/widgets/htmega_carousel.php:1007
1969
+ #: includes/widgets/htmega_carousel.php:1113
1970
+ #: includes/widgets/htmega_carousel.php:1207
1971
+ #: includes/widgets/htmega_carousel.php:1340
1972
+ #: includes/widgets/htmega_carousel.php:1424
1973
+ #: includes/widgets/htmega_contact_form_seven.php:292
1974
+ #: includes/widgets/htmega_contact_form_seven.php:417
1975
+ #: includes/widgets/htmega_contact_form_seven.php:537
1976
+ #: includes/widgets/htmega_contact_form_seven.php:622
1977
+ #: includes/widgets/htmega_contact_form_seven.php:693
1978
+ #: includes/widgets/htmega_contact_form_seven.php:884
1979
+ #: includes/widgets/htmega_contact_form_seven.php:946
1980
+ #: includes/widgets/htmega_contact_form_seven.php:986
1981
+ #: includes/widgets/htmega_contact_form_seven.php:1020
1982
+ #: includes/widgets/htmega_countdown.php:535
1983
+ #: includes/widgets/htmega_countdown.php:547
1984
+ #: includes/widgets/htmega_countdown.php:796
1985
+ #: includes/widgets/htmega_countdown.php:963
1986
+ #: includes/widgets/htmega_countdown.php:1073
1987
+ #: includes/widgets/htmega_countdown.php:1158
1988
+ #: includes/widgets/htmega_counter.php:253
1989
+ #: includes/widgets/htmega_counter.php:515
1990
+ #: includes/widgets/htmega_counter.php:638
1991
+ #: includes/widgets/htmega_counter.php:906
1992
+ #: includes/widgets/htmega_counter.php:994
1993
+ #: includes/widgets/htmega_counter.php:1084
1994
+ #: includes/widgets/htmega_custom_event.php:419
1995
+ #: includes/widgets/htmega_custom_event.php:461
1996
+ #: includes/widgets/htmega_data_table.php:243
1997
+ #: includes/widgets/htmega_data_table.php:507
1998
+ #: includes/widgets/htmega_data_table.php:605
1999
+ #: includes/widgets/htmega_data_table.php:687
2000
+ #: includes/widgets/htmega_data_table.php:806
2001
+ #: includes/widgets/htmega_data_table.php:910
2002
+ #: includes/widgets/htmega_data_table.php:962
2003
+ #: includes/widgets/htmega_data_table.php:1041
2004
+ #: includes/widgets/htmega_double_button.php:408
2005
+ #: includes/widgets/htmega_double_button.php:438
2006
+ #: includes/widgets/htmega_double_button.php:504
2007
+ #: includes/widgets/htmega_double_button.php:591
2008
+ #: includes/widgets/htmega_double_button.php:677
2009
+ #: includes/widgets/htmega_double_button.php:763
2010
+ #: includes/widgets/htmega_double_button.php:860
2011
+ #: includes/widgets/htmega_download_monitor.php:169
2012
+ #: includes/widgets/htmega_download_monitor.php:357
2013
+ #: includes/widgets/htmega_dropcaps.php:166
2014
+ #: includes/widgets/htmega_dropcaps.php:267
2015
+ #: includes/widgets/htmega_easy_digital_download.php:282
2016
+ #: includes/widgets/htmega_easy_digital_download.php:564
2017
+ #: includes/widgets/htmega_easy_digital_download.php:643
2018
+ #: includes/widgets/htmega_errorcontent.php:336
2019
+ #: includes/widgets/htmega_errorcontent.php:415
2020
+ #: includes/widgets/htmega_errorcontent.php:494
2021
+ #: includes/widgets/htmega_errorcontent.php:616
2022
+ #: includes/widgets/htmega_errorcontent.php:667
2023
+ #: includes/widgets/htmega_errorcontent.php:767
2024
+ #: includes/widgets/htmega_errorcontent.php:818
2025
+ #: includes/widgets/htmega_gallery_justify.php:85
2026
+ #: includes/widgets/htmega_googlemap.php:316
2027
+ #: includes/widgets/htmega_googlemap.php:457
2028
+ #: includes/widgets/htmega_gravity_forms.php:300
2029
+ #: includes/widgets/htmega_gravity_forms.php:511
2030
+ #: includes/widgets/htmega_gravity_forms.php:596
2031
+ #: includes/widgets/htmega_gravity_forms.php:744
2032
+ #: includes/widgets/htmega_gravity_forms.php:828
2033
+ #: includes/widgets/htmega_imagemarker.php:664
2034
+ #: includes/widgets/htmega_imagemarker.php:743
2035
+ #: includes/widgets/htmega_imagemarker.php:876
2036
+ #: includes/widgets/htmega_image_comparison.php:125
2037
+ #: includes/widgets/htmega_image_comparison.php:263
2038
+ #: includes/widgets/htmega_image_comparison.php:344
2039
+ #: includes/widgets/htmega_image_comparison.php:399
2040
+ #: includes/widgets/htmega_image_comparison.php:433
2041
+ #: includes/widgets/htmega_image_comparison.php:550
2042
+ #: includes/widgets/htmega_image_grid.php:229
2043
+ #: includes/widgets/htmega_image_grid.php:522
2044
+ #: includes/widgets/htmega_image_grid.php:581
2045
+ #: includes/widgets/htmega_image_magnifier.php:111
2046
+ #: includes/widgets/htmega_image_masonry.php:220
2047
+ #: includes/widgets/htmega_image_masonry.php:509
2048
+ #: includes/widgets/htmega_image_masonry.php:577
2049
+ #: includes/widgets/htmega_inlinemenu.php:201
2050
+ #: includes/widgets/htmega_inlinemenu.php:275
2051
+ #: includes/widgets/htmega_inlinemenu.php:438
2052
+ #: includes/widgets/htmega_instagram.php:706
2053
+ #: includes/widgets/htmega_instagram.php:836
2054
+ #: includes/widgets/htmega_instagram.php:984
2055
+ #: includes/widgets/htmega_instagram.php:1103
2056
+ #: includes/widgets/htmega_instagram.php:1163
2057
+ #: includes/widgets/htmega_instagram.php:1257
2058
+ #: includes/widgets/htmega_instagram.php:1323
2059
+ #: includes/widgets/htmega_instagram.php:1459
2060
+ #: includes/widgets/htmega_lightbox.php:265
2061
+ #: includes/widgets/htmega_lightbox.php:453
2062
+ #: includes/widgets/htmega_mailchimp_wp.php:238
2063
+ #: includes/widgets/htmega_mailchimp_wp.php:421
2064
+ #: includes/widgets/htmega_mailchimp_wp.php:483
2065
+ #: includes/widgets/htmega_modal.php:259 includes/widgets/htmega_modal.php:465
2066
+ #: includes/widgets/htmega_modal.php:552 includes/widgets/htmega_modal.php:623
2067
+ #: includes/widgets/htmega_modal.php:724 includes/widgets/htmega_modal.php:786
2068
+ #: includes/widgets/htmega_modal.php:894 includes/widgets/htmega_modal.php:956
2069
+ #: includes/widgets/htmega_newsticker.php:371
2070
+ #: includes/widgets/htmega_newsticker.php:543
2071
+ #: includes/widgets/htmega_newsticker.php:802
2072
+ #: includes/widgets/htmega_newsticker.php:890
2073
+ #: includes/widgets/htmega_newsticker.php:947
2074
+ #: includes/widgets/htmega_ninja_form.php:166
2075
+ #: includes/widgets/htmega_ninja_form.php:268
2076
+ #: includes/widgets/htmega_ninja_form.php:386
2077
+ #: includes/widgets/htmega_ninja_form.php:580
2078
+ #: includes/widgets/htmega_ninja_form.php:662
2079
+ #: includes/widgets/htmega_ninja_form.php:800
2080
+ #: includes/widgets/htmega_ninja_form.php:881
2081
+ #: includes/widgets/htmega_ninja_form.php:1003
2082
+ #: includes/widgets/htmega_ninja_form.php:1087
2083
+ #: includes/widgets/htmega_notify.php:350
2084
+ #: includes/widgets/htmega_notify.php:448
2085
+ #: includes/widgets/htmega_notify.php:502
2086
+ #: includes/widgets/htmega_offcanvas.php:454
2087
+ #: includes/widgets/htmega_offcanvas.php:515
2088
+ #: includes/widgets/htmega_panel_slider.php:555
2089
+ #: includes/widgets/htmega_panel_slider.php:863
2090
+ #: includes/widgets/htmega_panel_slider.php:1052
2091
+ #: includes/widgets/htmega_panel_slider.php:1184
2092
+ #: includes/widgets/htmega_panel_slider.php:1223
2093
+ #: includes/widgets/htmega_popover.php:405
2094
+ #: includes/widgets/htmega_popover.php:483
2095
+ #: includes/widgets/htmega_popover.php:562
2096
+ #: includes/widgets/htmega_popover.php:638
2097
+ #: includes/widgets/htmega_popover.php:742
2098
+ #: includes/widgets/htmega_post_grid_tab.php:278
2099
+ #: includes/widgets/htmega_post_grid_tab.php:354
2100
+ #: includes/widgets/htmega_post_grid_tab.php:907
2101
+ #: includes/widgets/htmega_post_grid_tab.php:957
2102
+ #: includes/widgets/htmega_post_grid_tab.php:1021
2103
+ #: includes/widgets/htmega_post_grid_tab.php:1079
2104
+ #: includes/widgets/htmega_post_grid_tab.php:1111
2105
+ #: includes/widgets/htmega_post_slider.php:778
2106
+ #: includes/widgets/htmega_post_slider.php:1334
2107
+ #: includes/widgets/htmega_post_slider.php:1384
2108
+ #: includes/widgets/htmega_post_slider.php:1594
2109
+ #: includes/widgets/htmega_post_slider.php:1714
2110
+ #: includes/widgets/htmega_post_slider.php:1839
2111
+ #: includes/widgets/htmega_post_slider.php:1878
2112
+ #: includes/widgets/htmega_post_slider.php:1950
2113
+ #: includes/widgets/htmega_post_slider.php:2027
2114
+ #: includes/widgets/htmega_pricing_list_view.php:920
2115
+ #: includes/widgets/htmega_pricing_list_view.php:1265
2116
+ #: includes/widgets/htmega_pricing_list_view.php:1344
2117
+ #: includes/widgets/htmega_pricing_list_view.php:1435
2118
+ #: includes/widgets/htmega_progress_bar.php:361
2119
+ #: includes/widgets/htmega_progress_bar.php:497
2120
+ #: includes/widgets/htmega_progress_bar.php:615
2121
+ #: includes/widgets/htmega_progress_bar.php:706
2122
+ #: includes/widgets/htmega_progress_bar.php:798
2123
+ #: includes/widgets/htmega_quforms.php:150
2124
+ #: includes/widgets/htmega_quforms.php:261
2125
+ #: includes/widgets/htmega_quforms.php:441
2126
+ #: includes/widgets/htmega_quforms.php:499
2127
+ #: includes/widgets/htmega_quforms.php:659
2128
+ #: includes/widgets/htmega_quforms.php:717
2129
+ #: includes/widgets/htmega_quforms.php:887
2130
+ #: includes/widgets/htmega_quforms.php:948
2131
+ #: includes/widgets/htmega_scroll_image.php:84
2132
+ #: includes/widgets/htmega_scroll_image.php:184
2133
+ #: includes/widgets/htmega_scroll_image.php:344
2134
+ #: includes/widgets/htmega_scroll_navigation.php:410
2135
+ #: includes/widgets/htmega_scroll_navigation.php:504
2136
+ #: includes/widgets/htmega_search.php:369
2137
+ #: includes/widgets/htmega_search.php:582
2138
+ #: includes/widgets/htmega_search.php:634
2139
+ #: includes/widgets/htmega_search.php:820
2140
+ #: includes/widgets/htmega_search.php:982
2141
+ #: includes/widgets/htmega_section_title.php:439
2142
+ #: includes/widgets/htmega_section_title.php:567
2143
+ #: includes/widgets/htmega_section_title.php:800
2144
+ #: includes/widgets/htmega_section_title.php:981
2145
+ #: includes/widgets/htmega_service.php:219
2146
+ #: includes/widgets/htmega_service.php:287
2147
+ #: includes/widgets/htmega_service.php:340
2148
+ #: includes/widgets/htmega_service.php:696
2149
+ #: includes/widgets/htmega_service.php:778
2150
+ #: includes/widgets/htmega_service.php:958
2151
+ #: includes/widgets/htmega_service.php:1086
2152
+ #: includes/widgets/htmega_service.php:1138
2153
+ #: includes/widgets/htmega_slider_thumb_gallery.php:875
2154
+ #: includes/widgets/htmega_slider_thumb_gallery.php:1020
2155
+ #: includes/widgets/htmega_slider_thumb_gallery.php:1092
2156
+ #: includes/widgets/htmega_slider_thumb_gallery.php:1186
2157
+ #: includes/widgets/htmega_slider_thumb_gallery.php:1230
2158
+ #: includes/widgets/htmega_slider_thumb_gallery.php:1303
2159
+ #: includes/widgets/htmega_socialshere.php:141
2160
+ #: includes/widgets/htmega_socialshere.php:169
2161
+ #: includes/widgets/htmega_socialshere.php:251
2162
+ #: includes/widgets/htmega_socialshere.php:302
2163
+ #: includes/widgets/htmega_socialshere.php:447
2164
+ #: includes/widgets/htmega_socialshere.php:582
2165
+ #: includes/widgets/htmega_special_day_banner.php:671
2166
+ #: includes/widgets/htmega_special_day_banner.php:750
2167
+ #: includes/widgets/htmega_switcher.php:297
2168
+ #: includes/widgets/htmega_switcher.php:440
2169
+ #: includes/widgets/htmega_switcher.php:515
2170
+ #: includes/widgets/htmega_switcher.php:613
2171
+ #: includes/widgets/htmega_tablepress.php:132
2172
+ #: includes/widgets/htmega_tablepress.php:188
2173
+ #: includes/widgets/htmega_tablepress.php:251
2174
+ #: includes/widgets/htmega_tabs.php:316 includes/widgets/htmega_tabs.php:594
2175
+ #: includes/widgets/htmega_tabs.php:646 includes/widgets/htmega_tabs.php:732
2176
+ #: includes/widgets/htmega_tabs.php:827 includes/widgets/htmega_tabs.php:892
2177
+ #: includes/widgets/htmega_teammember.php:359
2178
+ #: includes/widgets/htmega_teammember.php:500
2179
+ #: includes/widgets/htmega_teammember.php:558
2180
+ #: includes/widgets/htmega_teammember.php:1020
2181
+ #: includes/widgets/htmega_testimonial_grid.php:307
2182
+ #: includes/widgets/htmega_testimonial_grid.php:352
2183
+ #: includes/widgets/htmega_testimonial_grid.php:397
2184
+ #: includes/widgets/htmega_toggle.php:321
2185
+ #: includes/widgets/htmega_toggle.php:373
2186
+ #: includes/widgets/htmega_tooltip.php:382
2187
+ #: includes/widgets/htmega_tooltip.php:460
2188
+ #: includes/widgets/htmega_twitter_feed.php:597
2189
+ #: includes/widgets/htmega_twitter_feed.php:766
2190
+ #: includes/widgets/htmega_twitter_feed.php:1015
2191
+ #: includes/widgets/htmega_twitter_feed.php:1127
2192
+ #: includes/widgets/htmega_twitter_feed.php:1264
2193
+ #: includes/widgets/htmega_twitter_feed.php:1324
2194
+ #: includes/widgets/htmega_twitter_feed.php:1453
2195
+ #: includes/widgets/htmega_user_login_form.php:928
2196
+ #: includes/widgets/htmega_user_login_form.php:1201
2197
+ #: includes/widgets/htmega_user_login_form.php:1253
2198
+ #: includes/widgets/htmega_user_login_form.php:1385
2199
+ #: includes/widgets/htmega_user_login_form.php:1437
2200
+ #: includes/widgets/htmega_user_login_form.php:1527
2201
+ #: includes/widgets/htmega_verticle_time_line.php:363
2202
+ #: includes/widgets/htmega_videoplayer.php:263
2203
+ #: includes/widgets/htmega_videoplayer.php:422
2204
+ #: includes/widgets/htmega_videoplayer.php:464
2205
+ #: includes/widgets/htmega_wc_categories.php:194
2206
+ #: includes/widgets/htmega_wc_categories.php:256
2207
+ #: includes/widgets/htmega_wc_categories.php:356
2208
+ #: includes/widgets/htmega_wc_categories.php:433
2209
+ #: includes/widgets/htmega_wc_categories.php:442
2210
+ #: includes/widgets/htmega_wc_categories.php:488
2211
+ #: includes/widgets/htmega_wc_categories.php:516
2212
+ #: includes/widgets/htmega_wc_element_pages.php:167
2213
+ #: includes/widgets/htmega_wc_element_pages.php:236
2214
+ #: includes/widgets/htmega_wc_element_pages.php:335
2215
+ #: includes/widgets/htmega_wc_element_pages.php:427
2216
+ #: includes/widgets/htmega_wc_element_pages.php:501
2217
+ #: includes/widgets/htmega_wc_element_pages.php:599
2218
+ #: includes/widgets/htmega_wc_element_pages.php:622
2219
+ #: includes/widgets/htmega_wc_element_pages.php:813
2220
+ #: includes/widgets/htmega_wc_element_pages.php:865
2221
+ #: includes/widgets/htmega_wc_element_pages.php:976
2222
+ #: includes/widgets/htmega_wc_element_pages.php:1066
2223
+ #: includes/widgets/htmega_wc_element_pages.php:1421
2224
+ #: includes/widgets/htmega_wc_element_pages.php:1479
2225
+ #: includes/widgets/htmega_wc_element_pages.php:1554
2226
+ #: includes/widgets/htmega_wc_element_pages.php:1656
2227
+ #: includes/widgets/htmega_wc_element_pages.php:1770
2228
+ #: includes/widgets/htmega_wc_element_pages.php:1822
2229
+ #: includes/widgets/htmega_weather.php:288
2230
+ #: includes/widgets/htmega_weather.php:326
2231
+ #: includes/widgets/htmega_working_process.php:432
2232
+ #: includes/widgets/htmega_working_process.php:690
2233
+ #: includes/widgets/htmega_working_process.php:769
2234
+ #: includes/widgets/htmega_working_process.php:869
2235
+ #: includes/widgets/htmega_working_process.php:984
2236
+ #: includes/widgets/htmega_working_process.php:1092
2237
+ #: includes/widgets/htmega_wpforms.php:158
2238
+ #: includes/widgets/htmega_wpforms.php:260
2239
+ #: includes/widgets/htmega_wpforms.php:368
2240
+ #: includes/widgets/htmega_wpforms.php:583
2241
+ #: includes/widgets/htmega_wpforms.php:667
2242
+ #: includes/widgets/htmega_wpforms.php:803
2243
+ #: includes/widgets/htmega_wpforms.php:885
2244
+ #: includes/widgets/htmega_wpforms.php:1030
2245
+ #: includes/widgets/htmega_wpforms.php:1114
2246
+ #: includes/widgets/htmega_wpforms.php:1156
2247
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:184
2248
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:256
2249
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:309
2250
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:417
2251
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:457
2252
+ #: extensions/ht-builder/widgets/bl_page_title.php:87
2253
+ #: extensions/ht-builder/widgets/bl_post_archive.php:278
2254
+ #: extensions/ht-builder/widgets/bl_post_archive.php:742
2255
+ #: extensions/ht-builder/widgets/bl_post_archive.php:808
2256
+ #: extensions/ht-builder/widgets/bl_post_archive.php:878
2257
+ #: extensions/ht-builder/widgets/bl_post_archive.php:933
2258
+ #: extensions/ht-builder/widgets/bl_post_archive_title.php:89
2259
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:174
2260
+ #: extensions/ht-builder/widgets/bl_post_comments.php:69
2261
+ #: extensions/ht-builder/widgets/bl_post_comments.php:130
2262
+ #: extensions/ht-builder/widgets/bl_post_comments.php:171
2263
+ #: extensions/ht-builder/widgets/bl_post_search_form.php:148
2264
+ #: extensions/ht-builder/widgets/bl_post_search_form.php:233
2265
+ #: extensions/ht-builder/widgets/bl_post_search_form.php:298
2266
+ #: extensions/ht-builder/widgets/bl_site_logo.php:108
2267
+ #: extensions/ht-builder/widgets/bl_site_title.php:89
2268
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:144
2269
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:264
2270
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:394
2271
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:452
2272
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:516
2273
+ #: extensions/ht-menu/widgets/verticle-mega-menu.php:145
2274
+ #: extensions/ht-menu/widgets/verticle-mega-menu.php:265
2275
+ #: extensions/ht-menu/widgets/verticle-mega-menu.php:352
2276
+ #: extensions/ht-menu/widgets/verticle-mega-menu.php:410
2277
+ #: extensions/ht-menu/widgets/verticle-mega-menu.php:462
2278
+ msgid "Border"
2279
+ msgstr ""
2280
+
2281
+ #: includes/widgets/htmega_counter.php:764
2282
+ msgid "Border After Color"
2283
+ msgstr ""
2284
+
2285
+ #: includes/widgets/htmega_imagemarker.php:797
2286
+ msgid "Border Background"
2287
+ msgstr ""
2288
+
2289
+ #: includes/widgets/htmega_booked_calender.php:374
2290
+ #: includes/widgets/htmega_booked_calender.php:849
2291
+ #: includes/widgets/htmega_caldera_form.php:585
2292
+ #: includes/widgets/htmega_caldera_form.php:636
2293
+ #: includes/widgets/htmega_caldera_form.php:675
2294
+ #: includes/widgets/htmega_caldera_form.php:714
2295
+ #: includes/widgets/htmega_gravity_forms.php:867
2296
+ #: includes/widgets/htmega_ninja_form.php:1126
2297
+ #: includes/widgets/htmega_quforms.php:994
2298
+ #: includes/widgets/htmega_quforms.php:1033
2299
+ #: includes/widgets/htmega_tablepress.php:293
2300
+ #: includes/widgets/htmega_tablepress.php:337
2301
+ #: includes/widgets/htmega_wc_element_pages.php:320
2302
+ #: includes/widgets/htmega_wc_element_pages.php:1051
2303
+ #: includes/widgets/htmega_wc_element_pages.php:1641
2304
+ msgid "Border Color"
2305
+ msgstr ""
2306
+
2307
+ #: includes/widgets/htmega_progress_bar.php:374
2308
+ msgid "Border color"
2309
+ msgstr ""
2310
+
2311
+ #: includes/widgets/htmega_search.php:398
2312
+ msgid "Border Focus Color"
2313
+ msgstr ""
2314
+
2315
+ #: includes/widgets/htmega_section_title.php:747
2316
+ #: includes/widgets/htmega_section_title.php:909
2317
+ msgid "Border Height"
2318
+ msgstr ""
2319
+
2320
+ #: includes/widgets/htmega_accordion.php:620
2321
+ #: includes/widgets/htmega_accordion.php:704
2322
+ #: includes/widgets/htmega_accordion.php:874
2323
+ #: includes/widgets/htmega_accordion.php:973
2324
+ #: includes/widgets/htmega_accordion.php:1158
2325
+ #: includes/widgets/htmega_accordion.php:1269
2326
+ #: includes/widgets/htmega_accordion.php:1406
2327
+ #: includes/widgets/htmega_add_banner.php:284
2328
+ #: includes/widgets/htmega_add_banner.php:338
2329
+ #: includes/widgets/htmega_add_banner.php:656
2330
+ #: includes/widgets/htmega_add_banner.php:735
2331
+ #: includes/widgets/htmega_animated_heading.php:191
2332
+ #: includes/widgets/htmega_animated_heading.php:322
2333
+ #: includes/widgets/htmega_animated_heading.php:410
2334
+ #: includes/widgets/htmega_blockquote.php:255
2335
+ #: includes/widgets/htmega_blockquote.php:389
2336
+ #: includes/widgets/htmega_blockquote.php:564
2337
+ #: includes/widgets/htmega_blockquote.php:744
2338
+ #: includes/widgets/htmega_booked_calender.php:613
2339
+ #: includes/widgets/htmega_booked_calender.php:765
2340
+ #: includes/widgets/htmega_brand.php:366
2341
+ #: includes/widgets/htmega_buddy_press.php:192
2342
+ #: includes/widgets/htmega_business_hours.php:277
2343
+ #: includes/widgets/htmega_business_hours.php:353
2344
+ #: includes/widgets/htmega_business_hours.php:481
2345
+ #: includes/widgets/htmega_button.php:237
2346
+ #: includes/widgets/htmega_button.php:360
2347
+ #: includes/widgets/htmega_button.php:564
2348
+ #: includes/widgets/htmega_caldera_form.php:321
2349
+ #: includes/widgets/htmega_caldera_form.php:410
2350
+ #: includes/widgets/htmega_caldera_form.php:497
2351
+ #: includes/widgets/htmega_call_to_action.php:409
2352
+ #: includes/widgets/htmega_call_to_action.php:486
2353
+ #: includes/widgets/htmega_call_to_action.php:765
2354
+ #: includes/widgets/htmega_call_to_action.php:845
2355
+ #: includes/widgets/htmega_call_to_action.php:971
2356
+ #: includes/widgets/htmega_call_to_action.php:1051
2357
+ #: includes/widgets/htmega_carousel.php:520
2358
+ #: includes/widgets/htmega_carousel.php:617
2359
+ #: includes/widgets/htmega_carousel.php:792
2360
+ #: includes/widgets/htmega_carousel.php:882
2361
+ #: includes/widgets/htmega_carousel.php:1015
2362
+ #: includes/widgets/htmega_carousel.php:1121
2363
+ #: includes/widgets/htmega_carousel.php:1215
2364
+ #: includes/widgets/htmega_carousel.php:1348
2365
+ #: includes/widgets/htmega_carousel.php:1432
2366
+ #: includes/widgets/htmega_contact_form_seven.php:300
2367
+ #: includes/widgets/htmega_contact_form_seven.php:425
2368
+ #: includes/widgets/htmega_contact_form_seven.php:545
2369
+ #: includes/widgets/htmega_contact_form_seven.php:630
2370
+ #: includes/widgets/htmega_contact_form_seven.php:701
2371
+ #: includes/widgets/htmega_contact_form_seven.php:892
2372
+ #: includes/widgets/htmega_countdown.php:559
2373
+ #: includes/widgets/htmega_countdown.php:807
2374
+ #: includes/widgets/htmega_countdown.php:971
2375
+ #: includes/widgets/htmega_countdown.php:1084
2376
+ #: includes/widgets/htmega_countdown.php:1169
2377
+ #: includes/widgets/htmega_counter.php:261
2378
+ #: includes/widgets/htmega_counter.php:523
2379
+ #: includes/widgets/htmega_counter.php:646
2380
+ #: includes/widgets/htmega_counter.php:914
2381
+ #: includes/widgets/htmega_counter.php:1002
2382
+ #: includes/widgets/htmega_counter.php:1092
2383
+ #: includes/widgets/htmega_custom_event.php:427
2384
+ #: includes/widgets/htmega_data_table.php:251
2385
+ #: includes/widgets/htmega_data_table.php:613
2386
+ #: includes/widgets/htmega_data_table.php:695
2387
+ #: includes/widgets/htmega_data_table.php:814
2388
+ #: includes/widgets/htmega_double_button.php:276
2389
+ #: includes/widgets/htmega_double_button.php:416
2390
+ #: includes/widgets/htmega_double_button.php:446
2391
+ #: includes/widgets/htmega_double_button.php:512
2392
+ #: includes/widgets/htmega_double_button.php:599
2393
+ #: includes/widgets/htmega_double_button.php:685
2394
+ #: includes/widgets/htmega_double_button.php:771
2395
+ #: includes/widgets/htmega_double_button.php:868
2396
+ #: includes/widgets/htmega_download_monitor.php:179
2397
+ #: includes/widgets/htmega_download_monitor.php:368
2398
+ #: includes/widgets/htmega_dropcaps.php:174
2399
+ #: includes/widgets/htmega_dropcaps.php:276
2400
+ #: includes/widgets/htmega_easy_digital_download.php:291
2401
+ #: includes/widgets/htmega_easy_digital_download.php:575
2402
+ #: includes/widgets/htmega_easy_digital_download.php:653
2403
+ #: includes/widgets/htmega_errorcontent.php:344
2404
+ #: includes/widgets/htmega_errorcontent.php:423
2405
+ #: includes/widgets/htmega_errorcontent.php:502
2406
+ #: includes/widgets/htmega_errorcontent.php:624
2407
+ #: includes/widgets/htmega_errorcontent.php:675
2408
+ #: includes/widgets/htmega_errorcontent.php:775
2409
+ #: includes/widgets/htmega_errorcontent.php:826
2410
+ #: includes/widgets/htmega_gallery_justify.php:93
2411
+ #: includes/widgets/htmega_googlemap.php:325
2412
+ #: includes/widgets/htmega_googlemap.php:466
2413
+ #: includes/widgets/htmega_gravity_forms.php:308
2414
+ #: includes/widgets/htmega_gravity_forms.php:520
2415
+ #: includes/widgets/htmega_gravity_forms.php:605
2416
+ #: includes/widgets/htmega_gravity_forms.php:752
2417
+ #: includes/widgets/htmega_imagemarker.php:672
2418
+ #: includes/widgets/htmega_imagemarker.php:884
2419
+ #: includes/widgets/htmega_image_comparison.php:133
2420
+ #: includes/widgets/htmega_image_comparison.php:271
2421
+ #: includes/widgets/htmega_image_comparison.php:352
2422
+ #: includes/widgets/htmega_image_comparison.php:441
2423
+ #: includes/widgets/htmega_image_grid.php:237
2424
+ #: includes/widgets/htmega_image_grid.php:530
2425
+ #: includes/widgets/htmega_image_grid.php:589
2426
+ #: includes/widgets/htmega_image_magnifier.php:119
2427
+ #: includes/widgets/htmega_image_masonry.php:228
2428
+ #: includes/widgets/htmega_image_masonry.php:517
2429
+ #: includes/widgets/htmega_image_masonry.php:585
2430
+ #: includes/widgets/htmega_inlinemenu.php:209
2431
+ #: includes/widgets/htmega_inlinemenu.php:283
2432
+ #: includes/widgets/htmega_inlinemenu.php:446
2433
+ #: includes/widgets/htmega_instagram.php:714
2434
+ #: includes/widgets/htmega_instagram.php:844
2435
+ #: includes/widgets/htmega_instagram.php:992
2436
+ #: includes/widgets/htmega_instagram.php:1111
2437
+ #: includes/widgets/htmega_instagram.php:1171
2438
+ #: includes/widgets/htmega_instagram.php:1265
2439
+ #: includes/widgets/htmega_instagram.php:1331
2440
+ #: includes/widgets/htmega_instagram.php:1468
2441
+ #: includes/widgets/htmega_lightbox.php:273
2442
+ #: includes/widgets/htmega_lightbox.php:461
2443
+ #: includes/widgets/htmega_mailchimp_wp.php:246
2444
+ #: includes/widgets/htmega_mailchimp_wp.php:429
2445
+ #: includes/widgets/htmega_modal.php:267 includes/widgets/htmega_modal.php:560
2446
+ #: includes/widgets/htmega_modal.php:631 includes/widgets/htmega_modal.php:732
2447
+ #: includes/widgets/htmega_modal.php:794 includes/widgets/htmega_modal.php:902
2448
+ #: includes/widgets/htmega_modal.php:964
2449
+ #: includes/widgets/htmega_newsticker.php:379
2450
+ #: includes/widgets/htmega_newsticker.php:554
2451
+ #: includes/widgets/htmega_newsticker.php:691
2452
+ #: includes/widgets/htmega_newsticker.php:810
2453
+ #: includes/widgets/htmega_newsticker.php:955
2454
+ #: includes/widgets/htmega_ninja_form.php:174
2455
+ #: includes/widgets/htmega_ninja_form.php:276
2456
+ #: includes/widgets/htmega_ninja_form.php:394
2457
+ #: includes/widgets/htmega_ninja_form.php:588
2458
+ #: includes/widgets/htmega_ninja_form.php:670
2459
+ #: includes/widgets/htmega_ninja_form.php:808
2460
+ #: includes/widgets/htmega_ninja_form.php:889
2461
+ #: includes/widgets/htmega_ninja_form.php:1011
2462
+ #: includes/widgets/htmega_notify.php:358
2463
+ #: includes/widgets/htmega_notify.php:510
2464
+ #: includes/widgets/htmega_notify.php:813
2465
+ #: includes/widgets/htmega_offcanvas.php:462
2466
+ #: includes/widgets/htmega_panel_slider.php:566
2467
+ #: includes/widgets/htmega_panel_slider.php:871
2468
+ #: includes/widgets/htmega_panel_slider.php:1060
2469
+ #: includes/widgets/htmega_panel_slider.php:1192
2470
+ #: includes/widgets/htmega_panel_slider.php:1231
2471
+ #: includes/widgets/htmega_popover.php:413
2472
+ #: includes/widgets/htmega_popover.php:570
2473
+ #: includes/widgets/htmega_popover.php:646
2474
+ #: includes/widgets/htmega_popover.php:750
2475
+ #: includes/widgets/htmega_post_grid_tab.php:286
2476
+ #: includes/widgets/htmega_post_grid_tab.php:362
2477
+ #: includes/widgets/htmega_post_grid_tab.php:915
2478
+ #: includes/widgets/htmega_post_grid_tab.php:965
2479
+ #: includes/widgets/htmega_post_grid_tab.php:1028
2480
+ #: includes/widgets/htmega_post_grid_tab.php:1119
2481
+ #: includes/widgets/htmega_post_slider.php:636
2482
+ #: includes/widgets/htmega_post_slider.php:789
2483
+ #: includes/widgets/htmega_post_slider.php:1342
2484
+ #: includes/widgets/htmega_post_slider.php:1392
2485
+ #: includes/widgets/htmega_post_slider.php:1602
2486
+ #: includes/widgets/htmega_post_slider.php:1722
2487
+ #: includes/widgets/htmega_post_slider.php:1847
2488
+ #: includes/widgets/htmega_post_slider.php:1886
2489
+ #: includes/widgets/htmega_post_slider.php:1958
2490
+ #: includes/widgets/htmega_post_slider.php:2035
2491
+ #: includes/widgets/htmega_pricing_list_view.php:425
2492
+ #: includes/widgets/htmega_pricing_list_view.php:820
2493
+ #: includes/widgets/htmega_pricing_list_view.php:943
2494
+ #: includes/widgets/htmega_pricing_list_view.php:1054
2495
+ #: includes/widgets/htmega_pricing_list_view.php:1273
2496
+ #: includes/widgets/htmega_pricing_list_view.php:1352
2497
+ #: includes/widgets/htmega_pricing_list_view.php:1443
2498
+ #: includes/widgets/htmega_pricing_list_view.php:1480
2499
+ #: includes/widgets/htmega_pricing_list_view.php:1586
2500
+ #: includes/widgets/htmega_pricing_list_view.php:1744
2501
+ #: includes/widgets/htmega_pricing_list_view.php:1821
2502
+ #: includes/widgets/htmega_progress_bar.php:505
2503
+ #: includes/widgets/htmega_progress_bar.php:714
2504
+ #: includes/widgets/htmega_progress_bar.php:806
2505
+ #: includes/widgets/htmega_quforms.php:158
2506
+ #: includes/widgets/htmega_quforms.php:269
2507
+ #: includes/widgets/htmega_quforms.php:449
2508
+ #: includes/widgets/htmega_quforms.php:507
2509
+ #: includes/widgets/htmega_quforms.php:667
2510
+ #: includes/widgets/htmega_quforms.php:725
2511
+ #: includes/widgets/htmega_quforms.php:895
2512
+ #: includes/widgets/htmega_scroll_image.php:192
2513
+ #: includes/widgets/htmega_scroll_image.php:352
2514
+ #: includes/widgets/htmega_scroll_navigation.php:418
2515
+ #: includes/widgets/htmega_scroll_navigation.php:512
2516
+ #: includes/widgets/htmega_search.php:378
2517
+ #: includes/widgets/htmega_search.php:591
2518
+ #: includes/widgets/htmega_search.php:643
2519
+ #: includes/widgets/htmega_search.php:832
2520
+ #: includes/widgets/htmega_search.php:994
2521
+ #: includes/widgets/htmega_section_title.php:576
2522
+ #: includes/widgets/htmega_section_title.php:808
2523
+ #: includes/widgets/htmega_section_title.php:990
2524
+ #: includes/widgets/htmega_service.php:227
2525
+ #: includes/widgets/htmega_service.php:295
2526
+ #: includes/widgets/htmega_service.php:704
2527
+ #: includes/widgets/htmega_service.php:785
2528
+ #: includes/widgets/htmega_service.php:966
2529
+ #: includes/widgets/htmega_service.php:1094
2530
+ #: includes/widgets/htmega_service.php:1146
2531
+ #: includes/widgets/htmega_slider_thumb_gallery.php:883
2532
+ #: includes/widgets/htmega_slider_thumb_gallery.php:1028
2533
+ #: includes/widgets/htmega_slider_thumb_gallery.php:1100
2534
+ #: includes/widgets/htmega_slider_thumb_gallery.php:1194
2535
+ #: includes/widgets/htmega_slider_thumb_gallery.php:1238
2536
+ #: includes/widgets/htmega_slider_thumb_gallery.php:1311
2537
+ #: includes/widgets/htmega_socialshere.php:259
2538
+ #: includes/widgets/htmega_socialshere.php:431
2539
+ #: includes/widgets/htmega_socialshere.php:600
2540
+ #: includes/widgets/htmega_special_day_banner.php:679
2541
+ #: includes/widgets/htmega_special_day_banner.php:758
2542
+ #: includes/widgets/htmega_switcher.php:308
2543
+ #: includes/widgets/htmega_switcher.php:451
2544
+ #: includes/widgets/htmega_switcher.php:526
2545
+ #: includes/widgets/htmega_switcher.php:621
2546
+ #: includes/widgets/htmega_tabs.php:325 includes/widgets/htmega_tabs.php:602
2547
+ #: includes/widgets/htmega_tabs.php:654 includes/widgets/htmega_tabs.php:740
2548
+ #: includes/widgets/htmega_tabs.php:835 includes/widgets/htmega_tabs.php:900
2549
+ #: includes/widgets/htmega_teammember.php:371
2550
+ #: includes/widgets/htmega_teammember.php:569
2551
+ #: includes/widgets/htmega_teammember.php:1028
2552
+ #: includes/widgets/htmega_testimonial_grid.php:315
2553
+ #: includes/widgets/htmega_testimonial_grid.php:405
2554
+ #: includes/widgets/htmega_testimonial_grid.php:629
2555
+ #: includes/widgets/htmega_toggle.php:329
2556
+ #: includes/widgets/htmega_tooltip.php:390
2557
+ #: includes/widgets/htmega_tooltip.php:534
2558
+ #: includes/widgets/htmega_twitter_feed.php:605
2559
+ #: includes/widgets/htmega_twitter_feed.php:777
2560
+ #: includes/widgets/htmega_twitter_feed.php:1135
2561
+ #: includes/widgets/htmega_twitter_feed.php:1272
2562
+ #: includes/widgets/htmega_twitter_feed.php:1332
2563
+ #: includes/widgets/htmega_twitter_feed.php:1461
2564
+ #: includes/widgets/htmega_user_login_form.php:598
2565
+ #: includes/widgets/htmega_user_login_form.php:937
2566
+ #: includes/widgets/htmega_user_login_form.php:1210
2567
+ #: includes/widgets/htmega_user_login_form.php:1262
2568
+ #: includes/widgets/htmega_user_login_form.php:1394
2569
+ #: includes/widgets/htmega_user_login_form.php:1446
2570
+ #: includes/widgets/htmega_user_login_form.php:1536
2571
+ #: includes/widgets/htmega_verticle_time_line.php:235
2572
+ #: includes/widgets/htmega_verticle_time_line.php:374
2573
+ #: includes/widgets/htmega_videoplayer.php:271
2574
+ #: includes/widgets/htmega_videoplayer.php:443
2575
+ #: includes/widgets/htmega_videoplayer.php:471
2576
+ #: includes/widgets/htmega_wc_categories.php:202
2577
+ #: includes/widgets/htmega_wc_categories.php:264
2578
+ #: includes/widgets/htmega_wc_categories.php:364
2579
+ #: includes/widgets/htmega_wc_categories.php:496
2580
+ #: includes/widgets/htmega_wc_categories.php:524
2581
+ #: includes/widgets/htmega_wc_element_pages.php:175
2582
+ #: includes/widgets/htmega_wc_element_pages.php:245
2583
+ #: includes/widgets/htmega_wc_element_pages.php:344
2584
+ #: includes/widgets/htmega_wc_element_pages.php:435
2585
+ #: includes/widgets/htmega_wc_element_pages.php:509
2586
+ #: includes/widgets/htmega_wc_element_pages.php:633
2587
+ #: includes/widgets/htmega_wc_element_pages.php:826
2588
+ #: includes/widgets/htmega_wc_element_pages.php:987
2589
+ #: includes/widgets/htmega_wc_element_pages.php:1075
2590
+ #: includes/widgets/htmega_wc_element_pages.php:1129
2591
+ #: includes/widgets/htmega_wc_element_pages.php:1492
2592
+ #: includes/widgets/htmega_wc_element_pages.php:1565
2593
+ #: includes/widgets/htmega_wc_element_pages.php:1667
2594
+ #: includes/widgets/htmega_wc_element_pages.php:1779
2595
+ #: includes/widgets/htmega_wc_element_pages.php:1831
2596
+ #: includes/widgets/htmega_working_process.php:440
2597
+ #: includes/widgets/htmega_working_process.php:698
2598
+ #: includes/widgets/htmega_working_process.php:777
2599
+ #: includes/widgets/htmega_working_process.php:877
2600
+ #: includes/widgets/htmega_working_process.php:992
2601
+ #: includes/widgets/htmega_wpforms.php:166
2602
+ #: includes/widgets/htmega_wpforms.php:268
2603
+ #: includes/widgets/htmega_wpforms.php:376
2604
+ #: includes/widgets/htmega_wpforms.php:591
2605
+ #: includes/widgets/htmega_wpforms.php:674
2606
+ #: includes/widgets/htmega_wpforms.php:811
2607
+ #: includes/widgets/htmega_wpforms.php:892
2608
+ #: includes/widgets/htmega_wpforms.php:1038
2609
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:192
2610
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:264
2611
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:317
2612
+ #: extensions/ht-builder/widgets/bl_page_title.php:96
2613
+ #: extensions/ht-builder/widgets/bl_post_archive.php:286
2614
+ #: extensions/ht-builder/widgets/bl_post_archive.php:750
2615
+ #: extensions/ht-builder/widgets/bl_post_archive.php:816
2616
+ #: extensions/ht-builder/widgets/bl_post_archive.php:886
2617
+ #: extensions/ht-builder/widgets/bl_post_archive.php:941
2618
+ #: extensions/ht-builder/widgets/bl_post_archive_title.php:98
2619
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:182
2620
+ #: extensions/ht-builder/widgets/bl_post_search_form.php:156
2621
+ #: extensions/ht-builder/widgets/bl_post_search_form.php:241
2622
+ #: extensions/ht-builder/widgets/bl_site_logo.php:117
2623
+ #: extensions/ht-builder/widgets/bl_site_title.php:98
2624
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:131
2625
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:251
2626
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:381
2627
+ #: extensions/ht-menu/widgets/verticle-mega-menu.php:132
2628
+ #: extensions/ht-menu/widgets/verticle-mega-menu.php:252
2629
+ #: extensions/ht-menu/widgets/verticle-mega-menu.php:339
2630
+ msgid "Border Radius"
2631
+ msgstr ""
2632
+
2633
+ #: includes/widgets/htmega_progress_bar.php:385
2634
+ msgid "Border Radius aaa"
2635
+ msgstr ""
2636
+
2637
+ #: includes/widgets/htmega_newsticker.php:820
2638
+ #: includes/widgets/htmega_panel_slider.php:881
2639
+ msgid "Border Radius Next Button"
2640
+ msgstr ""
2641
+
2642
+ #: includes/widgets/htmega_add_banner.php:231
2643
+ #: includes/widgets/htmega_service.php:802
2644
+ msgid "Border Style"
2645
+ msgstr ""
2646
+
2647
+ #: includes/widgets/htmega_counter.php:784
2648
+ #: includes/widgets/htmega_section_title.php:725
2649
+ #: includes/widgets/htmega_section_title.php:887
2650
+ #: includes/widgets/htmega_working_process.php:249
2651
+ msgid "Border Width"
2652
+ msgstr ""
2653
+
2654
+ #: includes/widgets/htmega_pricing_list_view.php:586
2655
+ msgid "Both"
2656
+ msgstr ""
2657
+
2658
+ #: includes/widgets/htmega_add_banner.php:64
2659
+ #: includes/widgets/htmega_button.php:121
2660
+ #: includes/widgets/htmega_imagemarker.php:215
2661
+ #: includes/widgets/htmega_image_comparison.php:187
2662
+ #: includes/widgets/htmega_offcanvas.php:106
2663
+ #: includes/widgets/htmega_popover.php:196
2664
+ #: includes/widgets/htmega_pricing_list_view.php:516
2665
+ #: includes/widgets/htmega_pricing_list_view.php:1171
2666
+ #: includes/widgets/htmega_pricing_list_view.php:1201
2667
+ #: includes/widgets/htmega_section_title.php:165
2668
+ #: includes/widgets/htmega_section_title.php:240
2669
+ #: includes/widgets/htmega_singlepost.php:62
2670
+ #: includes/widgets/htmega_slider_thumb_gallery.php:54
2671
+ #: includes/widgets/htmega_special_day_banner.php:48
2672
+ #: includes/widgets/htmega_teammember.php:108
2673
+ #: includes/widgets/htmega_tooltip.php:184
2674
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:124
2675
+ msgid "Bottom"
2676
+ msgstr ""
2677
+
2678
+ #: includes/widgets/htmega_notify.php:117
2679
+ msgid "Bottom Center"
2680
+ msgstr ""
2681
+
2682
+ #: includes/widgets/htmega_notify.php:120
2683
+ msgid "Bottom Fullwidth"
2684
+ msgstr ""
2685
+
2686
+ #: includes/widgets/htmega_notify.php:116
2687
+ #: extensions/wc-sales-notification/admin/setting.php:82
2688
+ msgid "Bottom Left"
2689
+ msgstr ""
2690
+
2691
+ #: includes/widgets/htmega_notify.php:118
2692
+ msgid "Bottom Right"
2693
+ msgstr ""
2694
+
2695
+ #: includes/widgets/htmega_notify.php:166
2696
+ #: includes/widgets/htmega_notify.php:201
2697
+ msgid "bounceIn"
2698
+ msgstr ""
2699
+
2700
+ #: includes/widgets/htmega_notify.php:167
2701
+ #: includes/widgets/htmega_notify.php:202
2702
+ msgid "bounceInDown"
2703
+ msgstr ""
2704
+
2705
+ #: includes/widgets/htmega_notify.php:168
2706
+ #: includes/widgets/htmega_notify.php:203
2707
+ msgid "bounceInLeft"
2708
+ msgstr ""
2709
+
2710
+ #: includes/widgets/htmega_notify.php:169
2711
+ #: includes/widgets/htmega_notify.php:204
2712
+ msgid "bounceInRight"
2713
+ msgstr ""
2714
+
2715
+ #: includes/widgets/htmega_notify.php:170
2716
+ #: includes/widgets/htmega_notify.php:205
2717
+ msgid "bounceInUp"
2718
+ msgstr ""
2719
+
2720
+ #: includes/widgets/htmega_notify.php:148
2721
+ #: includes/widgets/htmega_notify.php:183
2722
+ msgid "bounceOut"
2723
+ msgstr ""
2724
+
2725
+ #: includes/widgets/htmega_notify.php:149
2726
+ #: includes/widgets/htmega_notify.php:184
2727
+ msgid "bounceOutDown"
2728
+ msgstr ""
2729
+
2730
+ #: includes/widgets/htmega_notify.php:150
2731
+ #: includes/widgets/htmega_notify.php:185
2732
+ msgid "bounceOutLeft"
2733
+ msgstr ""
2734
+
2735
+ #: includes/widgets/htmega_notify.php:151
2736
+ #: includes/widgets/htmega_notify.php:186
2737
+ msgid "bounceOutRight"
2738
+ msgstr ""
2739
+
2740
+ #: includes/widgets/htmega_notify.php:152
2741
+ #: includes/widgets/htmega_notify.php:187
2742
+ msgid "bounceOutUp"
2743
+ msgstr ""
2744
+
2745
+ #: includes/widgets/htmega_counter.php:350
2746
+ msgid "Box Width"
2747
+ msgstr ""
2748
+
2749
+ #: includes/widgets/htmega_verticle_time_line.php:473
2750
+ msgid "Box Background"
2751
+ msgstr ""
2752
+
2753
+ #: includes/widgets/htmega_verticle_time_line.php:391
2754
+ msgid "Box Border"
2755
+ msgstr ""
2756
+
2757
+ #: includes/widgets/htmega_counter.php:380
2758
+ msgid "Box Height"
2759
+ msgstr ""
2760
+
2761
+ #: includes/widgets/htmega_newsticker.php:661
2762
+ msgid "Box Height and Width"
2763
+ msgstr ""
2764
+
2765
+ #: includes/widgets/htmega_carousel.php:421
2766
+ msgid "Box Option"
2767
+ msgstr ""
2768
+
2769
+ #: includes/widgets/htmega_accordion.php:633
2770
+ #: includes/widgets/htmega_accordion.php:717
2771
+ #: includes/widgets/htmega_accordion.php:887
2772
+ #: includes/widgets/htmega_accordion.php:987
2773
+ #: includes/widgets/htmega_accordion.php:1171
2774
+ #: includes/widgets/htmega_accordion.php:1282
2775
+ #: includes/widgets/htmega_accordion.php:1419
2776
+ #: includes/widgets/htmega_animated_heading.php:214
2777
+ #: includes/widgets/htmega_animated_heading.php:345
2778
+ #: includes/widgets/htmega_animated_heading.php:433
2779
+ #: includes/widgets/htmega_brand.php:191 includes/widgets/htmega_brand.php:216
2780
+ #: includes/widgets/htmega_brand.php:252 includes/widgets/htmega_brand.php:277
2781
+ #: includes/widgets/htmega_buddy_press.php:215
2782
+ #: includes/widgets/htmega_business_hours.php:289
2783
+ #: includes/widgets/htmega_business_hours.php:365
2784
+ #: includes/widgets/htmega_business_hours.php:493
2785
+ #: includes/widgets/htmega_button.php:295
2786
+ #: includes/widgets/htmega_button.php:410
2787
+ #: includes/widgets/htmega_button.php:599
2788
+ #: includes/widgets/htmega_caldera_form.php:336
2789
+ #: includes/widgets/htmega_caldera_form.php:423
2790
+ #: includes/widgets/htmega_call_to_action.php:392
2791
+ #: includes/widgets/htmega_call_to_action.php:469
2792
+ #: includes/widgets/htmega_call_to_action.php:777
2793
+ #: includes/widgets/htmega_call_to_action.php:868
2794
+ #: includes/widgets/htmega_call_to_action.php:983
2795
+ #: includes/widgets/htmega_call_to_action.php:1074
2796
+ #: includes/widgets/htmega_contact_form_seven.php:356
2797
+ #: includes/widgets/htmega_contact_form_seven.php:443
2798
+ #: includes/widgets/htmega_contact_form_seven.php:583
2799
+ #: includes/widgets/htmega_contact_form_seven.php:642
2800
+ #: includes/widgets/htmega_contact_form_seven.php:905
2801
+ #: includes/widgets/htmega_countdown.php:526
2802
+ #: includes/widgets/htmega_counter.php:275
2803
+ #: includes/widgets/htmega_data_table.php:261
2804
+ #: includes/widgets/htmega_data_table.php:624
2805
+ #: includes/widgets/htmega_double_button.php:289
2806
+ #: includes/widgets/htmega_double_button.php:535
2807
+ #: includes/widgets/htmega_double_button.php:622
2808
+ #: includes/widgets/htmega_double_button.php:708
2809
+ #: includes/widgets/htmega_double_button.php:794
2810
+ #: includes/widgets/htmega_double_button.php:891
2811
+ #: includes/widgets/htmega_gallery_justify.php:106
2812
+ #: includes/widgets/htmega_gravity_forms.php:532
2813
+ #: includes/widgets/htmega_gravity_forms.php:617
2814
+ #: includes/widgets/htmega_gravity_forms.php:764
2815
+ #: includes/widgets/htmega_image_grid.php:252
2816
+ #: includes/widgets/htmega_image_grid.php:500
2817
+ #: includes/widgets/htmega_image_grid.php:572
2818
+ #: includes/widgets/htmega_image_magnifier.php:133
2819
+ #: includes/widgets/htmega_image_masonry.php:243
2820
+ #: includes/widgets/htmega_image_masonry.php:487
2821
+ #: includes/widgets/htmega_image_masonry.php:568
2822
+ #: includes/widgets/htmega_inlinemenu.php:223
2823
+ #: includes/widgets/htmega_lightbox.php:285
2824
+ #: includes/widgets/htmega_lightbox.php:473
2825
+ #: includes/widgets/htmega_mailchimp_wp.php:442
2826
+ #: includes/widgets/htmega_modal.php:240 includes/widgets/htmega_modal.php:604
2827
+ #: includes/widgets/htmega_ninja_form.php:600
2828
+ #: includes/widgets/htmega_ninja_form.php:682
2829
+ #: includes/widgets/htmega_ninja_form.php:843
2830
+ #: includes/widgets/htmega_ninja_form.php:900
2831
+ #: includes/widgets/htmega_ninja_form.php:1023
2832
+ #: includes/widgets/htmega_notify.php:381
2833
+ #: includes/widgets/htmega_panel_slider.php:589
2834
+ #: includes/widgets/htmega_panel_slider.php:893
2835
+ #: includes/widgets/htmega_panel_slider.php:1071
2836
+ #: includes/widgets/htmega_popover.php:552
2837
+ #: includes/widgets/htmega_progress_bar.php:520
2838
+ #: includes/widgets/htmega_progress_bar.php:728
2839
+ #: includes/widgets/htmega_progress_bar.php:820
2840
+ #: includes/widgets/htmega_quforms.php:461
2841
+ #: includes/widgets/htmega_quforms.php:518
2842
+ #: includes/widgets/htmega_quforms.php:678
2843
+ #: includes/widgets/htmega_quforms.php:736
2844
+ #: includes/widgets/htmega_quforms.php:907
2845
+ #: includes/widgets/htmega_quforms.php:956
2846
+ #: includes/widgets/htmega_scroll_image.php:230
2847
+ #: includes/widgets/htmega_section_title.php:972
2848
+ #: includes/widgets/htmega_socialshere.php:456
2849
+ #: includes/widgets/htmega_teammember.php:399
2850
+ #: includes/widgets/htmega_teammember.php:1039
2851
+ #: includes/widgets/htmega_testimonial_grid.php:326
2852
+ #: includes/widgets/htmega_testimonial_grid.php:375
2853
+ #: includes/widgets/htmega_testimonial_grid.php:669
2854
+ #: includes/widgets/htmega_twitter_feed.php:562
2855
+ #: includes/widgets/htmega_user_login_form.php:634
2856
+ #: includes/widgets/htmega_verticle_time_line.php:262
2857
+ #: includes/widgets/htmega_videoplayer.php:284
2858
+ #: includes/widgets/htmega_wc_categories.php:227
2859
+ #: includes/widgets/htmega_wc_element_pages.php:608
2860
+ #: includes/widgets/htmega_wc_element_pages.php:874
2861
+ #: includes/widgets/htmega_wc_element_pages.php:1430
2862
+ #: includes/widgets/htmega_weather.php:307
2863
+ #: includes/widgets/htmega_working_process.php:812
2864
+ #: includes/widgets/htmega_working_process.php:1053
2865
+ #: includes/widgets/htmega_wpforms.php:603
2866
+ #: includes/widgets/htmega_wpforms.php:686
2867
+ #: includes/widgets/htmega_wpforms.php:822
2868
+ #: includes/widgets/htmega_wpforms.php:903
2869
+ #: includes/widgets/htmega_wpforms.php:1050
2870
+ #: includes/widgets/htmega_wpforms.php:1122
2871
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:205
2872
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:362
2873
+ msgid "Box Shadow"
2874
+ msgstr ""
2875
+
2876
+ #: includes/widgets/htmega_double_button.php:821
2877
+ msgid "Box Size"
2878
+ msgstr ""
2879
+
2880
+ #: includes/widgets/htmega_add_banner.php:146
2881
+ #: includes/widgets/htmega_call_to_action.php:318
2882
+ #: includes/widgets/htmega_counter.php:194
2883
+ #: includes/widgets/htmega_image_comparison.php:93
2884
+ #: includes/widgets/htmega_image_grid.php:194
2885
+ #: includes/widgets/htmega_image_masonry.php:175
2886
+ #: includes/widgets/htmega_lightbox.php:184
2887
+ #: includes/widgets/htmega_service.php:165
2888
+ #: includes/widgets/htmega_working_process.php:191
2889
+ msgid "Box Style"
2890
+ msgstr ""
2891
+
2892
+ #: includes/widgets/htmega_verticle_time_line.php:432
2893
+ msgid "Box Style Reverse"
2894
+ msgstr ""
2895
+
2896
+ #: includes/widgets/htmega_post_slider.php:805
2897
+ msgid "Box Width"
2898
+ msgstr ""
2899
+
2900
+ #: includes/widgets/htmega_brand.php:157
2901
+ msgid "Brand Logo"
2902
+ msgstr ""
2903
+
2904
+ #: admin/include/admin-setting.php:159 includes/widgets/htmega_brand.php:13
2905
+ #: includes/widgets/htmega_brand.php:35
2906
+ msgid "Brands"
2907
+ msgstr ""
2908
+
2909
+ #: admin/include/admin-setting.php:694
2910
+ msgid "Breadcrumbs <span>( Pro )</span>"
2911
+ msgstr ""
2912
+
2913
+ #: includes/widgets/htmega_newsticker.php:76
2914
+ msgid "Breaking News"
2915
+ msgstr ""
2916
+
2917
+ #: admin/include/admin-setting.php:1078
2918
+ #: includes/widgets/htmega_buddy_press.php:13
2919
+ #: includes/widgets/htmega_buddy_press.php:41
2920
+ msgid "BuddyPress"
2921
+ msgstr ""
2922
+
2923
+ #: includes/widgets/htmega_socialshere.php:81
2924
+ msgid "Buffer"
2925
+ msgstr ""
2926
+
2927
+ #: includes/widgets/htmega_business_hours.php:60
2928
+ msgid "Business Hour Title"
2929
+ msgstr ""
2930
+
2931
+ #: admin/include/admin-setting.php:167
2932
+ #: includes/widgets/htmega_business_hours.php:14
2933
+ #: includes/widgets/htmega_business_hours.php:36
2934
+ msgid "Business Hours"
2935
+ msgstr ""
2936
+
2937
+ #: includes/widgets/htmega_business_hours.php:71
2938
+ msgid "Business Hours​"
2939
+ msgstr ""
2940
+
2941
+ #: admin/include/admin-setting.php:175
2942
+ #: includes/widgets/htmega_add_banner.php:607
2943
+ #: includes/widgets/htmega_button.php:13 includes/widgets/htmega_button.php:39
2944
+ #: includes/widgets/htmega_contact_form_seven.php:767
2945
+ #: includes/widgets/htmega_custom_event.php:378
2946
+ #: includes/widgets/htmega_double_button.php:101
2947
+ #: includes/widgets/htmega_double_button.php:188
2948
+ #: includes/widgets/htmega_double_button.php:314
2949
+ #: includes/widgets/htmega_download_monitor.php:110
2950
+ #: includes/widgets/htmega_easy_digital_download.php:520
2951
+ #: includes/widgets/htmega_errorcontent.php:126
2952
+ #: includes/widgets/htmega_gravity_forms.php:630
2953
+ #: includes/widgets/htmega_lightbox.php:118
2954
+ #: includes/widgets/htmega_mailchimp_wp.php:290
2955
+ #: includes/widgets/htmega_modal.php:103 includes/widgets/htmega_modal.php:202
2956
+ #: includes/widgets/htmega_ninja_form.php:913
2957
+ #: includes/widgets/htmega_notify.php:51 includes/widgets/htmega_notify.php:311
2958
+ #: includes/widgets/htmega_offcanvas.php:176
2959
+ #: includes/widgets/htmega_offcanvas.php:404
2960
+ #: includes/widgets/htmega_popover.php:321
2961
+ #: includes/widgets/htmega_pricing_list_view.php:590
2962
+ #: includes/widgets/htmega_quforms.php:749
2963
+ #: includes/widgets/htmega_service.php:1010
2964
+ #: includes/widgets/htmega_special_day_banner.php:630
2965
+ #: includes/widgets/htmega_toggle.php:184
2966
+ #: includes/widgets/htmega_tooltip.php:297
2967
+ #: includes/widgets/htmega_videoplayer.php:325
2968
+ #: includes/widgets/htmega_wc_element_pages.php:1509
2969
+ #: includes/widgets/htmega_wpforms.php:916
2970
+ #: extensions/ht-builder/widgets/bl_post_search_form.php:183
2971
+ msgid "Button"
2972
+ msgstr ""
2973
+
2974
+ #: includes/widgets/htmega_double_button.php:268
2975
+ msgid "Button Area"
2976
+ msgstr ""
2977
+
2978
+ #: includes/widgets/htmega_pricing_list_view.php:870
2979
+ msgid "Button Background"
2980
+ msgstr ""
2981
+
2982
+ #: includes/widgets/htmega_tooltip.php:229
2983
+ msgid "Button Box Style"
2984
+ msgstr ""
2985
+
2986
+ #: includes/widgets/htmega_double_button.php:380
2987
+ msgid "Button Height"
2988
+ msgstr ""
2989
+
2990
+ #: includes/widgets/htmega_pricing_list_view.php:882
2991
+ msgid "Button Hover Background"
2992
+ msgstr ""
2993
+
2994
+ #: includes/widgets/htmega_button.php:418
2995
+ msgid "Button Hover Effect"
2996
+ msgstr ""
2997
+
2998
+ #: includes/widgets/htmega_button.php:481
2999
+ msgid "Button Hover Shadow"
3000
+ msgstr ""
3001
+
3002
+ #: includes/widgets/htmega_instagram.php:1367
3003
+ #: includes/widgets/htmega_offcanvas.php:191
3004
+ #: includes/widgets/htmega_videoplayer.php:111
3005
+ msgid "Button Icon"
3006
+ msgstr ""
3007
+
3008
+ #: includes/widgets/htmega_search.php:68
3009
+ msgid "Button Icon Type"
3010
+ msgstr ""
3011
+
3012
+ #: includes/widgets/htmega_errorcontent.php:152
3013
+ #: includes/widgets/htmega_errorcontent.php:200
3014
+ msgid "Button Icons"
3015
+ msgstr ""
3016
+
3017
+ #: includes/widgets/htmega_videoplayer.php:122
3018
+ msgid "Button Infinity Animation"
3019
+ msgstr ""
3020
+
3021
+ #: includes/widgets/htmega_socialshere.php:614
3022
+ msgid "Button Line Height"
3023
+ msgstr ""
3024
+
3025
+ #: includes/widgets/htmega_call_to_action.php:239
3026
+ #: includes/widgets/htmega_errorcontent.php:164
3027
+ #: includes/widgets/htmega_errorcontent.php:212
3028
+ msgid "Button Link"
3029
+ msgstr ""
3030
+
3031
+ #: includes/widgets/htmega_double_button.php:93
3032
+ #: includes/widgets/htmega_double_button.php:464
3033
+ msgid "Button One"
3034
+ msgstr ""
3035
+
3036
+ #: includes/widgets/htmega_pricing_list_view.php:929
3037
+ msgid "Button Padding"
3038
+ msgstr ""
3039
+
3040
+ #: includes/widgets/htmega_button.php:89
3041
+ #: includes/widgets/htmega_double_button.php:42
3042
+ msgid "Button Size"
3043
+ msgstr ""
3044
+
3045
+ #: includes/widgets/htmega_button.php:46 includes/widgets/htmega_button.php:190
3046
+ #: includes/widgets/htmega_countdown.php:1015
3047
+ #: includes/widgets/htmega_download_monitor.php:136
3048
+ #: includes/widgets/htmega_wc_element_pages.php:923
3049
+ msgid "Button Style"
3050
+ msgstr ""
3051
+
3052
+ #: includes/widgets/htmega_add_banner.php:134
3053
+ #: includes/widgets/htmega_add_banner.php:136
3054
+ #: includes/widgets/htmega_call_to_action.php:138
3055
+ #: includes/widgets/htmega_call_to_action.php:232
3056
+ #: includes/widgets/htmega_errorcontent.php:142
3057
+ #: includes/widgets/htmega_errorcontent.php:191
3058
+ #: includes/widgets/htmega_notify.php:58
3059
+ #: includes/widgets/htmega_offcanvas.php:182
3060
+ #: includes/widgets/htmega_popover.php:72
3061
+ #: includes/widgets/htmega_special_day_banner.php:138
3062
+ #: includes/widgets/htmega_special_day_banner.php:140
3063
+ #: includes/widgets/htmega_user_login_form.php:358
3064
+ #: includes/widgets/htmega_videoplayer.php:70
3065
+ #: extensions/ht-builder/widgets/bl_post_search_form.php:103
3066
+ msgid "Button Text"
3067
+ msgstr ""
3068
+
3069
+ #: includes/widgets/htmega_double_button.php:180
3070
+ #: includes/widgets/htmega_double_button.php:637
3071
+ msgid "Button Two"
3072
+ msgstr ""
3073
+
3074
+ #: includes/widgets/htmega_popover.php:48
3075
+ #: includes/widgets/htmega_tooltip.php:48
3076
+ #: extensions/ht-builder/widgets/bl_post_search_form.php:54
3077
+ msgid "Button Type"
3078
+ msgstr ""
3079
+
3080
+ #: includes/widgets/htmega_double_button.php:347
3081
+ msgid "Button Width"
3082
+ msgstr ""
3083
+
3084
+ #: includes/class.assests.php:386 admin/include/admin-setting.php:1428
3085
+ #: admin/include/template-library.php:301
3086
+ #: admin/include/template-library.php:353
3087
+ #: includes/recommended-plugins/class.recommended-plugins.php:122
3088
+ #: includes/recommended-plugins/class.recommended-plugins.php:284
3089
+ msgid "Buy Now"
3090
+ msgstr ""
3091
+
3092
+ #: includes/recommended-plugins/class.recommended-plugins.php:270
3093
+ msgid "By "
3094
+ msgstr ""
3095
+
3096
+ #: includes/widgets/htmega_easy_digital_download.php:142
3097
+ #: includes/widgets/htmega_wc_categories.php:82
3098
+ msgid "By Parent"
3099
+ msgstr ""
3100
+
3101
+ #: includes/widgets/htmega_weather.php:57
3102
+ msgid "C"
3103
+ msgstr ""
3104
+
3105
+ #: includes/widgets/htmega_instagram.php:108
3106
+ msgid "Cache Time Duration"
3107
+ msgstr ""
3108
+
3109
+ #: admin/include/admin-setting.php:1088
3110
+ #: includes/widgets/htmega_caldera_form.php:13
3111
+ #: includes/widgets/htmega_caldera_form.php:41
3112
+ msgid "Caldera Form"
3113
+ msgstr ""
3114
+
3115
+ #: includes/widgets/htmega_booked_calender.php:874
3116
+ msgid "Calendar"
3117
+ msgstr ""
3118
+
3119
+ #: includes/widgets/htmega_booked_calender.php:896
3120
+ msgid "Calendar Icon Background"
3121
+ msgstr ""
3122
+
3123
+ #: includes/widgets/htmega_booked_calender.php:885
3124
+ msgid "Calendar Icon Color"
3125
+ msgstr ""
3126
+
3127
+ #: includes/widgets/htmega_booked_calender.php:938
3128
+ msgid "Calendar Icon Padding"
3129
+ msgstr ""
3130
+
3131
+ #: includes/widgets/htmega_booked_calender.php:918
3132
+ msgid "Calendar Icon Radius"
3133
+ msgstr ""
3134
+
3135
+ #: includes/widgets/htmega_booked_calender.php:162
3136
+ msgid "Calendar Size"
3137
+ msgstr ""
3138
+
3139
+ #: admin/include/admin-setting.php:183
3140
+ #: includes/widgets/htmega_call_to_action.php:13
3141
+ #: includes/widgets/htmega_call_to_action.php:32
3142
+ msgid "Call To Action"
3143
+ msgstr ""
3144
+
3145
+ #: includes/widgets/htmega_instagram.php:858
3146
+ msgid "Caption"
3147
+ msgstr ""
3148
+
3149
+ #: includes/widgets/htmega_testimonial_grid.php:168
3150
+ #: includes/widgets/htmega_testimonial_grid.php:226
3151
+ msgid "Carolina Monntoya"
3152
+ msgstr ""
3153
+
3154
+ #: admin/include/admin-setting.php:191 includes/widgets/htmega_carousel.php:13
3155
+ #: includes/widgets/htmega_carousel.php:43
3156
+ msgid "Carousel"
3157
+ msgstr ""
3158
+
3159
+ #: includes/widgets/htmega_wc_element_pages.php:58
3160
+ msgid "Cart Page"
3161
+ msgstr ""
3162
+
3163
+ #: includes/widgets/htmega_easy_digital_download.php:156
3164
+ #: includes/widgets/htmega_newsticker.php:204
3165
+ #: includes/widgets/htmega_newsticker.php:218
3166
+ #: includes/widgets/htmega_postgrid.php:79
3167
+ #: includes/widgets/htmega_postgrid.php:93
3168
+ #: includes/widgets/htmega_post_grid_tab.php:86
3169
+ #: includes/widgets/htmega_post_grid_tab.php:100
3170
+ #: includes/widgets/htmega_post_slider.php:90
3171
+ #: includes/widgets/htmega_post_slider.php:104
3172
+ #: includes/widgets/htmega_wc_categories.php:34
3173
+ #: includes/widgets/htmega_wc_categories.php:96
3174
+ msgid "Categories"
3175
+ msgstr ""
3176
+
3177
+ #: includes/widgets/htmega_postgrid.php:189
3178
+ #: includes/widgets/htmega_postgrid.php:658
3179
+ #: includes/widgets/htmega_post_grid_tab.php:213
3180
+ #: includes/widgets/htmega_post_grid_tab.php:610
3181
+ #: includes/widgets/htmega_post_slider.php:245
3182
+ #: includes/widgets/htmega_post_slider.php:1045
3183
+ #: includes/widgets/htmega_singlepost.php:109
3184
+ #: includes/widgets/htmega_singlepost.php:238
3185
+ #: extensions/ht-builder/widgets/bl_post_archive.php:539
3186
+ msgid "Category"
3187
+ msgstr ""
3188
+
3189
+ #: includes/widgets/htmega_wc_categories.php:165
3190
+ msgid "Category Area"
3191
+ msgstr ""
3192
+
3193
+ #: admin/include/admin-setting.php:652
3194
+ msgid "Category List <span>( Pro )</span>"
3195
+ msgstr ""
3196
+
3197
+ #: includes/widgets/htmega_data_table.php:338
3198
+ #: includes/widgets/htmega_pricing_list_view.php:600
3199
+ msgid "Cell Content"
3200
+ msgstr ""
3201
+
3202
+ #: includes/widgets/htmega_data_table.php:351
3203
+ msgid "Cell Icon"
3204
+ msgstr ""
3205
+
3206
+ #: includes/widgets/htmega_data_table.php:408
3207
+ msgid "Cell Image"
3208
+ msgstr ""
3209
+
3210
+ #: includes/widgets/htmega_pricing_list_view.php:617
3211
+ msgid "Cell Label"
3212
+ msgstr ""
3213
+
3214
+ #: includes/widgets/htmega_data_table.php:481
3215
+ msgid "Cell Styles"
3216
+ msgstr ""
3217
+
3218
+ #: includes/widgets/htmega_accordion.php:571
3219
+ #: includes/widgets/htmega_accordion.php:762
3220
+ #: includes/widgets/htmega_accordion.php:920
3221
+ #: includes/widgets/htmega_accordion.php:1318
3222
+ #: includes/widgets/htmega_accordion.php:1436
3223
+ #: includes/widgets/htmega_add_banner.php:63
3224
+ #: includes/widgets/htmega_add_banner.php:372
3225
+ #: includes/widgets/htmega_blockquote.php:187
3226
+ #: includes/widgets/htmega_buddy_press.php:258
3227
+ #: includes/widgets/htmega_business_hours.php:395
3228
+ #: includes/widgets/htmega_button.php:165
3229
+ #: includes/widgets/htmega_caldera_form.php:76
3230
+ #: includes/widgets/htmega_caldera_form.php:351
3231
+ #: includes/widgets/htmega_call_to_action.php:334
3232
+ #: includes/widgets/htmega_carousel.php:842
3233
+ #: includes/widgets/htmega_contact_form_seven.php:121
3234
+ #: includes/widgets/htmega_countdown.php:615
3235
+ #: includes/widgets/htmega_countdown.php:647
3236
+ #: includes/widgets/htmega_counter.php:292
3237
+ #: includes/widgets/htmega_counter.php:325
3238
+ #: includes/widgets/htmega_counter.php:431
3239
+ #: includes/widgets/htmega_counter.php:557
3240
+ #: includes/widgets/htmega_data_table.php:714
3241
+ #: includes/widgets/htmega_data_table.php:833
3242
+ #: includes/widgets/htmega_double_button.php:329
3243
+ #: includes/widgets/htmega_dropcaps.php:88
3244
+ #: includes/widgets/htmega_easy_digital_download.php:322
3245
+ #: includes/widgets/htmega_easy_digital_download.php:690
3246
+ #: includes/widgets/htmega_errorcontent.php:253
3247
+ #: includes/widgets/htmega_gravity_forms.php:153
3248
+ #: includes/widgets/htmega_gravity_forms.php:209
3249
+ #: includes/widgets/htmega_gravity_forms.php:243
3250
+ #: includes/widgets/htmega_gravity_forms.php:548
3251
+ #: includes/widgets/htmega_gravity_forms.php:779
3252
+ #: includes/widgets/htmega_imagemarker.php:714
3253
+ #: includes/widgets/htmega_image_comparison.php:186
3254
+ #: includes/widgets/htmega_image_grid.php:295
3255
+ #: includes/widgets/htmega_image_grid.php:392
3256
+ #: includes/widgets/htmega_image_masonry.php:271
3257
+ #: includes/widgets/htmega_image_masonry.php:368
3258
+ #: includes/widgets/htmega_inlinemenu.php:125
3259
+ #: includes/widgets/htmega_instagram.php:1488
3260
+ #: includes/widgets/htmega_lightbox.php:200
3261
+ #: includes/widgets/htmega_lightbox.php:313
3262
+ #: includes/widgets/htmega_mailchimp_wp.php:133
3263
+ #: includes/widgets/htmega_modal.php:354 includes/widgets/htmega_modal.php:1009
3264
+ #: includes/widgets/htmega_newsticker.php:464
3265
+ #: includes/widgets/htmega_ninja_form.php:192
3266
+ #: includes/widgets/htmega_ninja_form.php:294
3267
+ #: includes/widgets/htmega_ninja_form.php:328
3268
+ #: includes/widgets/htmega_ninja_form.php:615
3269
+ #: includes/widgets/htmega_ninja_form.php:826
3270
+ #: includes/widgets/htmega_ninja_form.php:1038
3271
+ #: includes/widgets/htmega_notify.php:286
3272
+ #: includes/widgets/htmega_notify.php:566
3273
+ #: includes/widgets/htmega_notify.php:832
3274
+ #: includes/widgets/htmega_offcanvas.php:287
3275
+ #: includes/widgets/htmega_offcanvas.php:379
3276
+ #: includes/widgets/htmega_panel_slider.php:607
3277
+ #: includes/widgets/htmega_popover.php:269
3278
+ #: includes/widgets/htmega_popover.php:665
3279
+ #: includes/widgets/htmega_popover.php:769
3280
+ #: includes/widgets/htmega_postgrid.php:297
3281
+ #: includes/widgets/htmega_postgrid.php:521
3282
+ #: includes/widgets/htmega_postgrid.php:634
3283
+ #: includes/widgets/htmega_post_grid_tab.php:405
3284
+ #: includes/widgets/htmega_post_grid_tab.php:499
3285
+ #: includes/widgets/htmega_post_grid_tab.php:586
3286
+ #: includes/widgets/htmega_post_grid_tab.php:809
3287
+ #: includes/widgets/htmega_post_slider.php:840
3288
+ #: includes/widgets/htmega_post_slider.php:934
3289
+ #: includes/widgets/htmega_post_slider.php:1021
3290
+ #: includes/widgets/htmega_post_slider.php:1237
3291
+ #: includes/widgets/htmega_pricing_list_view.php:477
3292
+ #: includes/widgets/htmega_pricing_list_view.php:1132
3293
+ #: includes/widgets/htmega_quforms.php:94
3294
+ #: includes/widgets/htmega_quforms.php:214
3295
+ #: includes/widgets/htmega_quforms.php:335
3296
+ #: includes/widgets/htmega_quforms.php:555
3297
+ #: includes/widgets/htmega_quforms.php:773
3298
+ #: includes/widgets/htmega_search.php:160
3299
+ #: includes/widgets/htmega_section_title.php:161
3300
+ #: includes/widgets/htmega_section_title.php:419
3301
+ #: includes/widgets/htmega_service.php:245
3302
+ #: includes/widgets/htmega_service.php:429
3303
+ #: includes/widgets/htmega_service.php:534
3304
+ #: includes/widgets/htmega_service.php:723
3305
+ #: includes/widgets/htmega_service.php:985
3306
+ #: includes/widgets/htmega_singlepost.php:214
3307
+ #: includes/widgets/htmega_singlepost.php:310
3308
+ #: includes/widgets/htmega_singlepost.php:417
3309
+ #: includes/widgets/htmega_socialshere.php:378
3310
+ #: includes/widgets/htmega_special_day_banner.php:47
3311
+ #: includes/widgets/htmega_special_day_banner.php:269
3312
+ #: includes/widgets/htmega_tablepress.php:217
3313
+ #: includes/widgets/htmega_tablepress.php:374
3314
+ #: includes/widgets/htmega_tabs.php:517
3315
+ #: includes/widgets/htmega_teammember.php:620
3316
+ #: includes/widgets/htmega_teammember.php:749
3317
+ #: includes/widgets/htmega_teammember.php:839
3318
+ #: includes/widgets/htmega_teammember.php:930
3319
+ #: includes/widgets/htmega_teammember.php:997
3320
+ #: includes/widgets/htmega_testimonial_grid.php:557
3321
+ #: includes/widgets/htmega_toggle.php:200
3322
+ #: includes/widgets/htmega_tooltip.php:245
3323
+ #: includes/widgets/htmega_user_login_form.php:153
3324
+ #: includes/widgets/htmega_user_login_form.php:375
3325
+ #: includes/widgets/htmega_user_login_form.php:431
3326
+ #: includes/widgets/htmega_user_login_form.php:575
3327
+ #: includes/widgets/htmega_videoplayer.php:300
3328
+ #: includes/widgets/htmega_wc_categories.php:384
3329
+ #: includes/widgets/htmega_wpforms.php:184
3330
+ #: includes/widgets/htmega_wpforms.php:286
3331
+ #: includes/widgets/htmega_wpforms.php:321
3332
+ #: includes/widgets/htmega_wpforms.php:618
3333
+ #: includes/widgets/htmega_wpforms.php:837
3334
+ #: includes/widgets/htmega_wpforms.php:1065
3335
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:119
3336
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:498
3337
+ #: extensions/ht-builder/widgets/bl_page_title.php:141
3338
+ #: extensions/ht-builder/widgets/bl_post_archive.php:306
3339
+ #: extensions/ht-builder/widgets/bl_post_archive.php:387
3340
+ #: extensions/ht-builder/widgets/bl_post_archive.php:494
3341
+ #: extensions/ht-builder/widgets/bl_post_archive.php:600
3342
+ #: extensions/ht-builder/widgets/bl_post_archive.php:680
3343
+ #: extensions/ht-builder/widgets/bl_post_archive_title.php:143
3344
+ #: extensions/ht-builder/widgets/bl_post_content.php:76
3345
+ #: extensions/ht-builder/widgets/bl_post_excerpt.php:76
3346
+ #: extensions/ht-builder/widgets/bl_post_featured_image.php:75
3347
+ #: extensions/ht-builder/widgets/bl_post_title.php:106
3348
+ #: extensions/ht-builder/widgets/bl_site_logo.php:163
3349
+ #: extensions/ht-builder/widgets/bl_site_title.php:143
3350
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:170
3351
+ #: extensions/ht-menu/widgets/verticle-mega-menu.php:171
3352
+ msgid "Center"
3353
+ msgstr ""
3354
+
3355
+ #: includes/widgets/htmega_googlemap.php:100
3356
+ msgid "Center Address"
3357
+ msgstr ""
3358
+
3359
+ #: includes/widgets/htmega_blockquote.php:158
3360
+ msgid "Center Bottom"
3361
+ msgstr ""
3362
+
3363
+ #: includes/widgets/htmega_blockquote.php:157
3364
+ msgid "Center Center"
3365
+ msgstr ""
3366
+
3367
+ #: includes/widgets/htmega_carousel.php:225
3368
+ #: includes/widgets/htmega_instagram.php:420
3369
+ #: includes/widgets/htmega_panel_slider.php:325
3370
+ #: includes/widgets/htmega_post_slider.php:405
3371
+ #: includes/widgets/htmega_slider_thumb_gallery.php:222
3372
+ #: includes/widgets/htmega_twitter_feed.php:347
3373
+ msgid "Center Mode"
3374
+ msgstr ""
3375
+
3376
+ #: includes/widgets/htmega_carousel.php:238
3377
+ #: includes/widgets/htmega_instagram.php:433
3378
+ #: includes/widgets/htmega_panel_slider.php:338
3379
+ #: includes/widgets/htmega_post_slider.php:418
3380
+ #: includes/widgets/htmega_slider_thumb_gallery.php:233
3381
+ #: includes/widgets/htmega_twitter_feed.php:360
3382
+ msgid "Center padding"
3383
+ msgstr ""
3384
+
3385
+ #: includes/widgets/htmega_blockquote.php:156
3386
+ msgid "Center Top"
3387
+ msgstr ""
3388
+
3389
+ #: includes/widgets/htmega_user_login_form.php:1030
3390
+ msgid "Checkbox Icon Color"
3391
+ msgstr ""
3392
+
3393
+ #: includes/widgets/htmega_wc_element_pages.php:371
3394
+ msgid "Checkout Button"
3395
+ msgstr ""
3396
+
3397
+ #: includes/widgets/htmega_wc_element_pages.php:60
3398
+ msgid "Checkout Page"
3399
+ msgstr ""
3400
+
3401
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:515
3402
+ msgid "Choose"
3403
+ msgstr ""
3404
+
3405
+ #: includes/widgets/htmega_countdown.php:703
3406
+ msgid "Choose Area Seperator Image"
3407
+ msgstr ""
3408
+
3409
+ #: admin/include/class.settings-api.php:398
3410
+ msgid "Choose File"
3411
+ msgstr ""
3412
+
3413
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:310
3414
+ msgid "Choose Icon"
3415
+ msgstr ""
3416
+
3417
+ #: includes/widgets/htmega_scroll_image.php:50
3418
+ msgid "Choose Image"
3419
+ msgstr ""
3420
+
3421
+ #: includes/widgets/htmega_wc_element_pages.php:70
3422
+ msgid "Choose Product"
3423
+ msgstr ""
3424
+
3425
+ #: includes/widgets/htmega_progress_bar.php:63
3426
+ msgid "Circle"
3427
+ msgstr ""
3428
+
3429
+ #: admin/include/templates/library/templates.php:149
3430
+ msgid "Click here"
3431
+ msgstr ""
3432
+
3433
+ #: includes/widgets/htmega_button.php:65
3434
+ msgid "Click Me"
3435
+ msgstr ""
3436
+
3437
+ #: includes/widgets/htmega_testimonial_grid.php:184
3438
+ msgid "Client Rating"
3439
+ msgstr ""
3440
+
3441
+ #: includes/widgets/htmega_testimonial_grid.php:212
3442
+ msgid "Client Say"
3443
+ msgstr ""
3444
+
3445
+ #: includes/widgets/htmega_testimonial_grid.php:541
3446
+ msgid "Client say"
3447
+ msgstr ""
3448
+
3449
+ #: includes/widgets/htmega_animated_heading.php:74
3450
+ msgid "Clip"
3451
+ msgstr ""
3452
+
3453
+ #: includes/widgets/htmega_animated_heading.php:454
3454
+ msgid "Clip Color"
3455
+ msgstr ""
3456
+
3457
+ #: includes/widgets/htmega_animated_heading.php:470
3458
+ msgid "Clip Width"
3459
+ msgstr ""
3460
+
3461
+ #: includes/widgets/htmega_business_hours.php:169
3462
+ #: includes/widgets/htmega_modal.php:833
3463
+ #: includes/widgets/htmega_post_grid_tab.php:983
3464
+ #: includes/widgets/htmega_toggle.php:63 includes/widgets/htmega_toggle.php:64
3465
+ msgid "Close"
3466
+ msgstr ""
3467
+
3468
+ #: includes/widgets/htmega_search.php:121
3469
+ msgid "close"
3470
+ msgstr ""
3471
+
3472
+ #: includes/widgets/htmega_accordion.php:355
3473
+ msgid "Close All Item"
3474
+ msgstr ""
3475
+
3476
+ #: includes/widgets/htmega_notify.php:618
3477
+ msgid "Close Button"
3478
+ msgstr ""
3479
+
3480
+ #: includes/widgets/htmega_search.php:845
3481
+ msgid "Close Button Style"
3482
+ msgstr ""
3483
+
3484
+ #: includes/widgets/htmega_search.php:119
3485
+ msgid "Close Button Text"
3486
+ msgstr ""
3487
+
3488
+ #: includes/widgets/htmega_data_table.php:526
3489
+ #: includes/widgets/htmega_data_table.php:532
3490
+ #: includes/widgets/htmega_data_table.php:538
3491
+ #: includes/widgets/htmega_data_table.php:545
3492
+ #: includes/widgets/htmega_pricing_list_view.php:1092
3493
+ #: includes/widgets/htmega_pricing_list_view.php:1098
3494
+ #: includes/widgets/htmega_pricing_list_view.php:1104
3495
+ #: includes/widgets/htmega_pricing_list_view.php:1111
3496
+ msgid "col"
3497
+ msgstr ""
3498
+
3499
+ #: includes/widgets/htmega_pricing_list_view.php:215
3500
+ msgid "Col Span"
3501
+ msgstr ""
3502
+
3503
+ #: includes/widgets/htmega_notify.php:247
3504
+ msgid "col-md-1"
3505
+ msgstr ""
3506
+
3507
+ #: includes/widgets/htmega_notify.php:238
3508
+ msgid "col-md-10"
3509
+ msgstr ""
3510
+
3511
+ #: includes/widgets/htmega_notify.php:237
3512
+ msgid "col-md-11"
3513
+ msgstr ""
3514
+
3515
+ #: includes/widgets/htmega_notify.php:236
3516
+ msgid "col-md-12"
3517
+ msgstr ""
3518
+
3519
+ #: includes/widgets/htmega_notify.php:246
3520
+ msgid "col-md-2"
3521
+ msgstr ""
3522
+
3523
+ #: includes/widgets/htmega_notify.php:245
3524
+ msgid "col-md-3"
3525
+ msgstr ""
3526
+
3527
+ #: includes/widgets/htmega_notify.php:244
3528
+ msgid "col-md-4"
3529
+ msgstr ""
3530
+
3531
+ #: includes/widgets/htmega_notify.php:243
3532
+ msgid "col-md-5"
3533
+ msgstr ""
3534
+
3535
+ #: includes/widgets/htmega_notify.php:242
3536
+ msgid "col-md-6"
3537
+ msgstr ""
3538
+
3539
+ #: includes/widgets/htmega_notify.php:241
3540
+ msgid "col-md-7"
3541
+ msgstr ""
3542
+
3543
+ #: includes/widgets/htmega_notify.php:240
3544
+ msgid "col-md-8"
3545
+ msgstr ""
3546
+
3547
+ #: includes/widgets/htmega_notify.php:239
3548
+ msgid "col-md-9"
3549
+ msgstr ""
3550
+
3551
+ #: includes/widgets/htmega_accordion.php:642
3552
+ #: includes/widgets/htmega_accordion.php:683
3553
+ #: includes/widgets/htmega_accordion.php:779
3554
+ #: includes/widgets/htmega_accordion.php:997
3555
+ #: includes/widgets/htmega_accordion.php:1136
3556
+ #: includes/widgets/htmega_accordion.php:1247
3557
+ #: includes/widgets/htmega_accordion.php:1348
3558
+ #: includes/widgets/htmega_add_banner.php:441
3559
+ #: includes/widgets/htmega_add_banner.php:500
3560
+ #: includes/widgets/htmega_add_banner.php:559
3561
+ #: includes/widgets/htmega_add_banner.php:626
3562
+ #: includes/widgets/htmega_add_banner.php:714
3563
+ #: includes/widgets/htmega_animated_heading.php:161
3564
+ #: includes/widgets/htmega_animated_heading.php:244
3565
+ #: includes/widgets/htmega_animated_heading.php:292
3566
+ #: includes/widgets/htmega_animated_heading.php:379
3567
+ #: includes/widgets/htmega_blockquote.php:277
3568
+ #: includes/widgets/htmega_blockquote.php:334
3569
+ #: includes/widgets/htmega_blockquote.php:506
3570
+ #: includes/widgets/htmega_booked_calender.php:271
3571
+ #: includes/widgets/htmega_booked_calender.php:320
3572
+ #: includes/widgets/htmega_booked_calender.php:363
3573
+ #: includes/widgets/htmega_booked_calender.php:486
3574
+ #: includes/widgets/htmega_booked_calender.php:519
3575
+ #: includes/widgets/htmega_buddy_press.php:323
3576
+ #: includes/widgets/htmega_buddy_press.php:365
3577
+ #: includes/widgets/htmega_buddy_press.php:392
3578
+ #: includes/widgets/htmega_business_hours.php:418
3579
+ #: includes/widgets/htmega_business_hours.php:513
3580
+ #: includes/widgets/htmega_business_hours.php:552
3581
+ #: includes/widgets/htmega_caldera_form.php:92
3582
+ #: includes/widgets/htmega_caldera_form.php:145
3583
+ #: includes/widgets/htmega_caldera_form.php:665
3584
+ #: includes/widgets/htmega_caldera_form.php:704
3585
+ #: includes/widgets/htmega_call_to_action.php:511
3586
+ #: includes/widgets/htmega_call_to_action.php:570
3587
+ #: includes/widgets/htmega_call_to_action.php:629
3588
+ #: includes/widgets/htmega_call_to_action.php:823
3589
+ #: includes/widgets/htmega_call_to_action.php:1029
3590
+ #: includes/widgets/htmega_carousel.php:557
3591
+ #: includes/widgets/htmega_carousel.php:760
3592
+ #: includes/widgets/htmega_contact_form_seven.php:968
3593
+ #: includes/widgets/htmega_contact_form_seven.php:1002
3594
+ #: includes/widgets/htmega_countdown.php:687
3595
+ #: includes/widgets/htmega_countdown.php:749
3596
+ #: includes/widgets/htmega_countdown.php:922
3597
+ #: includes/widgets/htmega_countdown.php:1044
3598
+ #: includes/widgets/htmega_countdown.php:1129
3599
+ #: includes/widgets/htmega_counter.php:456
3600
+ #: includes/widgets/htmega_counter.php:582
3601
+ #: includes/widgets/htmega_counter.php:821
3602
+ #: includes/widgets/htmega_counter.php:938
3603
+ #: includes/widgets/htmega_counter.php:1026
3604
+ #: includes/widgets/htmega_custom_event.php:143
3605
+ #: includes/widgets/htmega_custom_event.php:198
3606
+ #: includes/widgets/htmega_custom_event.php:228
3607
+ #: includes/widgets/htmega_custom_event.php:285
3608
+ #: includes/widgets/htmega_custom_event.php:330
3609
+ #: includes/widgets/htmega_custom_event.php:398
3610
+ #: includes/widgets/htmega_custom_event.php:448
3611
+ #: includes/widgets/htmega_data_table.php:392
3612
+ #: includes/widgets/htmega_double_button.php:482
3613
+ #: includes/widgets/htmega_double_button.php:578
3614
+ #: includes/widgets/htmega_double_button.php:655
3615
+ #: includes/widgets/htmega_double_button.php:750
3616
+ #: includes/widgets/htmega_double_button.php:838
3617
+ #: includes/widgets/htmega_download_monitor.php:211
3618
+ #: includes/widgets/htmega_download_monitor.php:258
3619
+ #: includes/widgets/htmega_download_monitor.php:328
3620
+ #: includes/widgets/htmega_dropcaps.php:109
3621
+ #: includes/widgets/htmega_dropcaps.php:205
3622
+ #: includes/widgets/htmega_easy_digital_download.php:359
3623
+ #: includes/widgets/htmega_easy_digital_download.php:431
3624
+ #: includes/widgets/htmega_easy_digital_download.php:540
3625
+ #: includes/widgets/htmega_easy_digital_download.php:619
3626
+ #: includes/widgets/htmega_easy_digital_download.php:707
3627
+ #: includes/widgets/htmega_errorcontent.php:315
3628
+ #: includes/widgets/htmega_errorcontent.php:394
3629
+ #: includes/widgets/htmega_errorcontent.php:473
3630
+ #: includes/widgets/htmega_errorcontent.php:558
3631
+ #: includes/widgets/htmega_errorcontent.php:644
3632
+ #: includes/widgets/htmega_errorcontent.php:709
3633
+ #: includes/widgets/htmega_errorcontent.php:795
3634
+ #: includes/widgets/htmega_gravity_forms.php:127
3635
+ #: includes/widgets/htmega_gravity_forms.php:183
3636
+ #: includes/widgets/htmega_gravity_forms.php:270
3637
+ #: includes/widgets/htmega_gravity_forms.php:351
3638
+ #: includes/widgets/htmega_gravity_forms.php:415
3639
+ #: includes/widgets/htmega_gravity_forms.php:585
3640
+ #: includes/widgets/htmega_gravity_forms.php:695
3641
+ #: includes/widgets/htmega_gravity_forms.php:805
3642
+ #: includes/widgets/htmega_gravity_forms.php:886
3643
+ #: includes/widgets/htmega_imagemarker.php:623
3644
+ #: includes/widgets/htmega_imagemarker.php:638
3645
+ #: includes/widgets/htmega_imagemarker.php:855
3646
+ #: includes/widgets/htmega_imagemarker.php:929
3647
+ #: includes/widgets/htmega_imagemarker.php:977
3648
+ #: includes/widgets/htmega_image_comparison.php:239
3649
+ #: includes/widgets/htmega_image_comparison.php:320
3650
+ #: includes/widgets/htmega_image_comparison.php:419
3651
+ #: includes/widgets/htmega_image_grid.php:318
3652
+ #: includes/widgets/htmega_image_grid.php:415
3653
+ #: includes/widgets/htmega_image_grid.php:467
3654
+ #: includes/widgets/htmega_image_grid.php:549
3655
+ #: includes/widgets/htmega_image_masonry.php:294
3656
+ #: includes/widgets/htmega_image_masonry.php:391
3657
+ #: includes/widgets/htmega_image_masonry.php:464
3658
+ #: includes/widgets/htmega_image_masonry.php:545
3659
+ #: includes/widgets/htmega_inlinemenu.php:152
3660
+ #: includes/widgets/htmega_inlinemenu.php:251
3661
+ #: includes/widgets/htmega_inlinemenu.php:414
3662
+ #: includes/widgets/htmega_instagram.php:800
3663
+ #: includes/widgets/htmega_instagram.php:874
3664
+ #: includes/widgets/htmega_instagram.php:934
3665
+ #: includes/widgets/htmega_instagram.php:1080
3666
+ #: includes/widgets/htmega_instagram.php:1301
3667
+ #: includes/widgets/htmega_instagram.php:1397
3668
+ #: includes/widgets/htmega_lightbox.php:339
3669
+ #: includes/widgets/htmega_modal.php:217 includes/widgets/htmega_modal.php:441
3670
+ #: includes/widgets/htmega_modal.php:582 includes/widgets/htmega_modal.php:680
3671
+ #: includes/widgets/htmega_modal.php:754 includes/widgets/htmega_modal.php:840
3672
+ #: includes/widgets/htmega_modal.php:924
3673
+ #: includes/widgets/htmega_newsticker.php:426
3674
+ #: includes/widgets/htmega_newsticker.php:500
3675
+ #: includes/widgets/htmega_newsticker.php:634
3676
+ #: includes/widgets/htmega_newsticker.php:743
3677
+ #: includes/widgets/htmega_newsticker.php:867
3678
+ #: includes/widgets/htmega_newsticker.php:917
3679
+ #: includes/widgets/htmega_ninja_form.php:120
3680
+ #: includes/widgets/htmega_ninja_form.php:222
3681
+ #: includes/widgets/htmega_ninja_form.php:356
3682
+ #: includes/widgets/htmega_ninja_form.php:440
3683
+ #: includes/widgets/htmega_ninja_form.php:502
3684
+ #: includes/widgets/htmega_ninja_form.php:651
3685
+ #: includes/widgets/htmega_ninja_form.php:724
3686
+ #: includes/widgets/htmega_ninja_form.php:870
3687
+ #: includes/widgets/htmega_ninja_form.php:954
3688
+ #: includes/widgets/htmega_ninja_form.php:1064
3689
+ #: includes/widgets/htmega_ninja_form.php:1145
3690
+ #: includes/widgets/htmega_ninja_form.php:1165
3691
+ #: includes/widgets/htmega_notify.php:328
3692
+ #: includes/widgets/htmega_notify.php:424
3693
+ #: includes/widgets/htmega_notify.php:479
3694
+ #: includes/widgets/htmega_notify.php:624
3695
+ #: includes/widgets/htmega_offcanvas.php:421
3696
+ #: includes/widgets/htmega_offcanvas.php:493
3697
+ #: includes/widgets/htmega_panel_slider.php:676
3698
+ #: includes/widgets/htmega_panel_slider.php:745
3699
+ #: includes/widgets/htmega_panel_slider.php:815
3700
+ #: includes/widgets/htmega_panel_slider.php:1028
3701
+ #: includes/widgets/htmega_popover.php:337
3702
+ #: includes/widgets/htmega_popover.php:459
3703
+ #: includes/widgets/htmega_popover.php:602
3704
+ #: includes/widgets/htmega_popover.php:706
3705
+ #: includes/widgets/htmega_postgrid.php:453
3706
+ #: includes/widgets/htmega_postgrid.php:581
3707
+ #: includes/widgets/htmega_postgrid.php:668
3708
+ #: includes/widgets/htmega_post_grid_tab.php:436
3709
+ #: includes/widgets/htmega_post_grid_tab.php:533
3710
+ #: includes/widgets/htmega_post_grid_tab.php:630
3711
+ #: includes/widgets/htmega_post_grid_tab.php:694
3712
+ #: includes/widgets/htmega_post_grid_tab.php:734
3713
+ #: includes/widgets/htmega_post_grid_tab.php:850
3714
+ #: includes/widgets/htmega_post_grid_tab.php:934
3715
+ #: includes/widgets/htmega_post_grid_tab.php:1000
3716
+ #: includes/widgets/htmega_post_grid_tab.php:1058
3717
+ #: includes/widgets/htmega_post_slider.php:871
3718
+ #: includes/widgets/htmega_post_slider.php:968
3719
+ #: includes/widgets/htmega_post_slider.php:1065
3720
+ #: includes/widgets/htmega_post_slider.php:1128
3721
+ #: includes/widgets/htmega_post_slider.php:1164
3722
+ #: includes/widgets/htmega_post_slider.php:1278
3723
+ #: includes/widgets/htmega_post_slider.php:1361
3724
+ #: includes/widgets/htmega_post_slider.php:1542
3725
+ #: includes/widgets/htmega_post_slider.php:1690
3726
+ #: includes/widgets/htmega_pricing_list_view.php:1797
3727
+ #: includes/widgets/htmega_progress_bar.php:737
3728
+ #: includes/widgets/htmega_quforms.php:121
3729
+ #: includes/widgets/htmega_quforms.php:241
3730
+ #: includes/widgets/htmega_quforms.php:363
3731
+ #: includes/widgets/htmega_quforms.php:487
3732
+ #: includes/widgets/htmega_quforms.php:583
3733
+ #: includes/widgets/htmega_quforms.php:705
3734
+ #: includes/widgets/htmega_quforms.php:838
3735
+ #: includes/widgets/htmega_quforms.php:925
3736
+ #: includes/widgets/htmega_quforms.php:1023
3737
+ #: includes/widgets/htmega_scroll_image.php:329
3738
+ #: includes/widgets/htmega_scroll_navigation.php:331
3739
+ #: includes/widgets/htmega_search.php:442
3740
+ #: includes/widgets/htmega_search.php:611
3741
+ #: includes/widgets/htmega_search.php:690
3742
+ #: includes/widgets/htmega_search.php:856
3743
+ #: includes/widgets/htmega_search.php:953
3744
+ #: includes/widgets/htmega_section_title.php:517
3745
+ #: includes/widgets/htmega_section_title.php:546
3746
+ #: includes/widgets/htmega_section_title.php:779
3747
+ #: includes/widgets/htmega_section_title.php:942
3748
+ #: includes/widgets/htmega_service.php:364
3749
+ #: includes/widgets/htmega_service.php:480
3750
+ #: includes/widgets/htmega_service.php:645
3751
+ #: includes/widgets/htmega_service.php:754
3752
+ #: includes/widgets/htmega_service.php:1029
3753
+ #: includes/widgets/htmega_service.php:1115
3754
+ #: includes/widgets/htmega_singlepost.php:152
3755
+ #: includes/widgets/htmega_singlepost.php:248
3756
+ #: includes/widgets/htmega_singlepost.php:350
3757
+ #: includes/widgets/htmega_slider_thumb_gallery.php:685
3758
+ #: includes/widgets/htmega_slider_thumb_gallery.php:738
3759
+ #: includes/widgets/htmega_slider_thumb_gallery.php:823
3760
+ #: includes/widgets/htmega_slider_thumb_gallery.php:996
3761
+ #: includes/widgets/htmega_socialshere.php:186
3762
+ #: includes/widgets/htmega_socialshere.php:228
3763
+ #: includes/widgets/htmega_special_day_banner.php:346
3764
+ #: includes/widgets/htmega_special_day_banner.php:405
3765
+ #: includes/widgets/htmega_special_day_banner.php:464
3766
+ #: includes/widgets/htmega_special_day_banner.php:523
3767
+ #: includes/widgets/htmega_special_day_banner.php:582
3768
+ #: includes/widgets/htmega_special_day_banner.php:649
3769
+ #: includes/widgets/htmega_special_day_banner.php:737
3770
+ #: includes/widgets/htmega_switcher.php:474
3771
+ #: includes/widgets/htmega_switcher.php:553
3772
+ #: includes/widgets/htmega_tablepress.php:175
3773
+ #: includes/widgets/htmega_tablepress.php:410
3774
+ #: includes/widgets/htmega_tabs.php:537 includes/widgets/htmega_tabs.php:623
3775
+ #: includes/widgets/htmega_tabs.php:861
3776
+ #: includes/widgets/htmega_teammember.php:696
3777
+ #: includes/widgets/htmega_teammember.php:786
3778
+ #: includes/widgets/htmega_teammember.php:876
3779
+ #: includes/widgets/htmega_testimonial_grid.php:427
3780
+ #: includes/widgets/htmega_testimonial_grid.php:488
3781
+ #: includes/widgets/htmega_testimonial_grid.php:580
3782
+ #: includes/widgets/htmega_testimonial_grid.php:701
3783
+ #: includes/widgets/htmega_toggle.php:129
3784
+ #: includes/widgets/htmega_toggle.php:232
3785
+ #: includes/widgets/htmega_toggle.php:349
3786
+ #: includes/widgets/htmega_tooltip.php:313
3787
+ #: includes/widgets/htmega_tooltip.php:436
3788
+ #: includes/widgets/htmega_tooltip.php:491
3789
+ #: includes/widgets/htmega_twitter_feed.php:627
3790
+ #: includes/widgets/htmega_twitter_feed.php:708
3791
+ #: includes/widgets/htmega_twitter_feed.php:844
3792
+ #: includes/widgets/htmega_twitter_feed.php:877
3793
+ #: includes/widgets/htmega_twitter_feed.php:907
3794
+ #: includes/widgets/htmega_twitter_feed.php:977
3795
+ #: includes/widgets/htmega_twitter_feed.php:1034
3796
+ #: includes/widgets/htmega_twitter_feed.php:1075
3797
+ #: includes/widgets/htmega_twitter_feed.php:1240
3798
+ #: includes/widgets/htmega_user_login_form.php:1104
3799
+ #: includes/widgets/htmega_user_login_form.php:1231
3800
+ #: includes/widgets/htmega_user_login_form.php:1302
3801
+ #: includes/widgets/htmega_user_login_form.php:1415
3802
+ #: includes/widgets/htmega_user_login_form.php:1472
3803
+ #: includes/widgets/htmega_verticle_time_line.php:132
3804
+ #: includes/widgets/htmega_verticle_time_line.php:198
3805
+ #: includes/widgets/htmega_verticle_time_line.php:281
3806
+ #: includes/widgets/htmega_verticle_time_line.php:328
3807
+ #: includes/widgets/htmega_videoplayer.php:343
3808
+ #: includes/widgets/htmega_videoplayer.php:481
3809
+ #: includes/widgets/htmega_wc_categories.php:308
3810
+ #: includes/widgets/htmega_wc_categories.php:410
3811
+ #: includes/widgets/htmega_wc_element_pages.php:668
3812
+ #: includes/widgets/htmega_wc_element_pages.php:1314
3813
+ #: includes/widgets/htmega_wc_element_pages.php:1713
3814
+ #: includes/widgets/htmega_wc_element_pages.php:1800
3815
+ #: includes/widgets/htmega_wc_element_pages.php:1861
3816
+ #: includes/widgets/htmega_weather.php:255
3817
+ #: includes/widgets/htmega_working_process.php:628
3818
+ #: includes/widgets/htmega_working_process.php:639
3819
+ #: includes/widgets/htmega_working_process.php:720
3820
+ #: includes/widgets/htmega_working_process.php:820
3821
+ #: includes/widgets/htmega_working_process.php:941
3822
+ #: includes/widgets/htmega_working_process.php:1070
3823
+ #: includes/widgets/htmega_wpforms.php:112
3824
+ #: includes/widgets/htmega_wpforms.php:214
3825
+ #: includes/widgets/htmega_wpforms.php:348
3826
+ #: includes/widgets/htmega_wpforms.php:422
3827
+ #: includes/widgets/htmega_wpforms.php:461
3828
+ #: includes/widgets/htmega_wpforms.php:505
3829
+ #: includes/widgets/htmega_wpforms.php:655
3830
+ #: includes/widgets/htmega_wpforms.php:727
3831
+ #: includes/widgets/htmega_wpforms.php:873
3832
+ #: includes/widgets/htmega_wpforms.php:981
3833
+ #: includes/widgets/htmega_wpforms.php:1091
3834
+ #: includes/widgets/htmega_wpforms.php:1144
3835
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:148
3836
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:233
3837
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:286
3838
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:381
3839
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:434
3840
+ #: extensions/ht-builder/widgets/bl_page_title.php:66
3841
+ #: extensions/ht-builder/widgets/bl_post_archive.php:347
3842
+ #: extensions/ht-builder/widgets/bl_post_archive.php:414
3843
+ #: extensions/ht-builder/widgets/bl_post_archive.php:453
3844
+ #: extensions/ht-builder/widgets/bl_post_archive.php:560
3845
+ #: extensions/ht-builder/widgets/bl_post_archive.php:627
3846
+ #: extensions/ht-builder/widgets/bl_post_archive.php:652
3847
+ #: extensions/ht-builder/widgets/bl_post_archive.php:721
3848
+ #: extensions/ht-builder/widgets/bl_post_archive.php:796
3849
+ #: extensions/ht-builder/widgets/bl_post_archive.php:856
3850
+ #: extensions/ht-builder/widgets/bl_post_archive.php:920
3851
+ #: extensions/ht-builder/widgets/bl_post_archive_title.php:68
3852
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:225
3853
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:265
3854
+ #: extensions/ht-builder/widgets/bl_post_comments.php:48
3855
+ #: extensions/ht-builder/widgets/bl_post_comments.php:98
3856
+ #: extensions/ht-builder/widgets/bl_post_comments.php:148
3857
+ #: extensions/ht-builder/widgets/bl_post_content.php:48
3858
+ #: extensions/ht-builder/widgets/bl_post_excerpt.php:48
3859
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:361
3860
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:401
3861
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:431
3862
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:457
3863
+ #: extensions/ht-builder/widgets/bl_post_search_form.php:127
3864
+ #: extensions/ht-builder/widgets/bl_post_search_form.php:201
3865
+ #: extensions/ht-builder/widgets/bl_post_search_form.php:275
3866
+ #: extensions/ht-builder/widgets/bl_site_title.php:68
3867
+ #: extensions/ht-menu/menu/templates.php:114
3868
+ #: extensions/ht-menu/menu/templates.php:135
3869
+ msgid "Color"
3870
+ msgstr ""
3871
+
3872
+ #: includes/widgets/htmega_socialshere.php:689
3873
+ #: includes/widgets/htmega_socialshere.php:721
3874
+ msgid "color"
3875
+ msgstr ""
3876
+
3877
+ #: includes/widgets/htmega_data_table.php:467
3878
+ #: includes/widgets/htmega_pricing_list_view.php:646
3879
+ msgid "Colspan"
3880
+ msgstr ""
3881
+
3882
+ #: includes/widgets/htmega_data_table.php:313
3883
+ #: includes/widgets/htmega_image_grid.php:66
3884
+ #: includes/widgets/htmega_image_masonry.php:75
3885
+ #: includes/widgets/htmega_instagram.php:143
3886
+ #: includes/widgets/htmega_pricing_list_view.php:550
3887
+ #: includes/widgets/htmega_user_login_form.php:404
3888
+ #: includes/widgets/htmega_working_process.php:58
3889
+ msgid "Column"
3890
+ msgstr ""
3891
+
3892
+ #: includes/widgets/htmega_testimonial_grid.php:56
3893
+ msgid "Column "
3894
+ msgstr ""
3895
+
3896
+ #: includes/widgets/htmega_working_process.php:66
3897
+ msgid "Column Five"
3898
+ msgstr ""
3899
+
3900
+ #: includes/widgets/htmega_working_process.php:65
3901
+ msgid "Column Four"
3902
+ msgstr ""
3903
+
3904
+ #: includes/widgets/htmega_panel_slider.php:217
3905
+ #: includes/widgets/htmega_testimonial_grid.php:145
3906
+ msgid "Column Gap"
3907
+ msgstr ""
3908
+
3909
+ #: includes/widgets/htmega_countdown.php:336
3910
+ msgid "Column Height"
3911
+ msgstr ""
3912
+
3913
+ #: includes/widgets/htmega_data_table.php:214
3914
+ #: includes/widgets/htmega_pricing_list_view.php:202
3915
+ msgid "Column Name"
3916
+ msgstr ""
3917
+
3918
+ #: includes/widgets/htmega_working_process.php:62
3919
+ msgid "Column One"
3920
+ msgstr ""
3921
+
3922
+ #: includes/widgets/htmega_image_grid.php:83
3923
+ #: includes/widgets/htmega_twitter_feed.php:257
3924
+ msgid "Column Space"
3925
+ msgstr ""
3926
+
3927
+ #: includes/widgets/htmega_countdown.php:373
3928
+ msgid "Column Spacing"
3929
+ msgstr ""
3930
+
3931
+ #: includes/widgets/htmega_data_table.php:223
3932
+ msgid "Column styles"
3933
+ msgstr ""
3934
+
3935
+ #: includes/widgets/htmega_working_process.php:64
3936
+ msgid "Column Three"
3937
+ msgstr ""
3938
+
3939
+ #: includes/widgets/htmega_working_process.php:63
3940
+ msgid "Column Two"
3941
+ msgstr ""
3942
+
3943
+ #: includes/widgets/htmega_buddy_press.php:280
3944
+ #: includes/widgets/htmega_countdown.php:300
3945
+ msgid "Column Width"
3946
+ msgstr ""
3947
+
3948
+ #: includes/widgets/htmega_panel_slider.php:239
3949
+ msgid "Column width accroding to image"
3950
+ msgstr ""
3951
+
3952
+ #: includes/widgets/htmega_easy_digital_download.php:50
3953
+ #: includes/widgets/htmega_wc_categories.php:41
3954
+ #: extensions/ht-builder/widgets/bl_post_archive.php:56
3955
+ msgid "Columns"
3956
+ msgstr ""
3957
+
3958
+ #: admin/include/admin-setting.php:1388 admin/include/admin-setting.php:1413
3959
+ msgid "Coming soon Page Builder"
3960
+ msgstr ""
3961
+
3962
+ #: extensions/ht-builder/admin/setting.php:124
3963
+ msgid "Coming Soon Page Template."
3964
+ msgstr ""
3965
+
3966
+ #: includes/widgets/htmega_newsticker.php:261
3967
+ #: includes/widgets/htmega_postgrid.php:152
3968
+ #: includes/widgets/htmega_post_grid_tab.php:159
3969
+ #: includes/widgets/htmega_post_slider.php:163
3970
+ #: extensions/ht-builder/widgets/bl_post_archive.php:203
3971
+ msgid "Comment count"
3972
+ msgstr ""
3973
+
3974
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:74
3975
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:241
3976
+ msgid "Comments"
3977
+ msgstr ""
3978
+
3979
+ #: extensions/ht-builder/widgets/bl_post_comments.php:192
3980
+ msgid "Comments Are Closed"
3981
+ msgstr ""
3982
+
3983
+ #: includes/widgets/htmega_caldera_form.php:696
3984
+ #: includes/widgets/htmega_gravity_forms.php:878
3985
+ #: includes/widgets/htmega_quforms.php:1015
3986
+ msgid "Confirmation Style"
3987
+ msgstr ""
3988
+
3989
+ #: includes/widgets/htmega_twitter_feed.php:82
3990
+ msgid "Consumer Key"
3991
+ msgstr ""
3992
+
3993
+ #: includes/widgets/htmega_twitter_feed.php:92
3994
+ msgid "Consumer Secret"
3995
+ msgstr ""
3996
+
3997
+ #: includes/widgets/htmega_errorcontent.php:185
3998
+ #: includes/widgets/htmega_errorcontent.php:693
3999
+ msgid "Contact Button"
4000
+ msgstr ""
4001
+
4002
+ #: includes/widgets/htmega_contact_form_seven.php:44
4003
+ #: includes/widgets/htmega_contact_form_seven.php:68
4004
+ msgid "Contact Form"
4005
+ msgstr ""
4006
+
4007
+ #: admin/include/admin-setting.php:1098
4008
+ #: includes/widgets/htmega_contact_form_seven.php:13
4009
+ msgid "Contact form 7"
4010
+ msgstr ""
4011
+
4012
+ #: admin/include/admin-setting.php:1370
4013
+ msgid "Contact Us"
4014
+ msgstr ""
4015
+
4016
+ #: includes/widgets/htmega_post_slider.php:682
4017
+ msgid "Container background"
4018
+ msgstr ""
4019
+
4020
+ #: includes/widgets/htmega_post_slider.php:667
4021
+ msgid "Container Border Radius"
4022
+ msgstr ""
4023
+
4024
+ #: includes/widgets/htmega_add_banner.php:356
4025
+ #: includes/widgets/htmega_blockquote.php:54
4026
+ #: includes/widgets/htmega_blockquote.php:67
4027
+ #: includes/widgets/htmega_blockquote.php:269
4028
+ #: includes/widgets/htmega_dropcaps.php:58
4029
+ #: includes/widgets/htmega_imagemarker.php:698
4030
+ #: includes/widgets/htmega_modal.php:64 includes/widgets/htmega_modal.php:77
4031
+ #: includes/widgets/htmega_modal.php:79
4032
+ #: includes/widgets/htmega_newsticker.php:419
4033
+ #: includes/widgets/htmega_notify.php:473
4034
+ #: includes/widgets/htmega_popover.php:691
4035
+ #: includes/widgets/htmega_post_grid_tab.php:192
4036
+ #: includes/widgets/htmega_post_grid_tab.php:523
4037
+ #: includes/widgets/htmega_post_slider.php:199
4038
+ #: includes/widgets/htmega_post_slider.php:958
4039
+ #: includes/widgets/htmega_pricing_list_view.php:68
4040
+ #: includes/widgets/htmega_pricing_list_view.php:195
4041
+ #: includes/widgets/htmega_pricing_list_view.php:560
4042
+ #: includes/widgets/htmega_scroll_navigation.php:73
4043
+ #: includes/widgets/htmega_scroll_navigation.php:75
4044
+ #: includes/widgets/htmega_scroll_navigation.php:85
4045
+ #: includes/widgets/htmega_switcher.php:115
4046
+ #: includes/widgets/htmega_switcher.php:128
4047
+ #: includes/widgets/htmega_switcher.php:131
4048
+ #: includes/widgets/htmega_switcher.php:207
4049
+ #: includes/widgets/htmega_switcher.php:220
4050
+ #: includes/widgets/htmega_switcher.php:223
4051
+ #: includes/widgets/htmega_switcher.php:545 includes/widgets/htmega_tabs.php:62
4052
+ #: includes/widgets/htmega_tabs.php:99 includes/widgets/htmega_tabs.php:112
4053
+ #: includes/widgets/htmega_tabs.php:114 includes/widgets/htmega_tabs.php:853
4054
+ #: includes/widgets/htmega_toggle.php:93 includes/widgets/htmega_toggle.php:106
4055
+ #: includes/widgets/htmega_tooltip.php:485
4056
+ #: includes/widgets/htmega_twitter_feed.php:619
4057
+ #: includes/widgets/htmega_verticle_time_line.php:62
4058
+ #: includes/widgets/htmega_verticle_time_line.php:88
4059
+ #: includes/widgets/htmega_verticle_time_line.php:180
4060
+ #: includes/widgets/htmega_wc_element_pages.php:1850
4061
+ #: extensions/ht-builder/widgets/bl_post_archive.php:645
4062
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:209
4063
+ #: extensions/ht-menu/menu/templates.php:43
4064
+ msgid "Content"
4065
+ msgstr ""
4066
+
4067
+ #: includes/widgets/htmega_countdown.php:639
4068
+ #: includes/widgets/htmega_job_manager.php:155
4069
+ msgid "Content Alignment"
4070
+ msgstr ""
4071
+
4072
+ #: includes/widgets/htmega_panel_slider.php:521
4073
+ msgid "Content area"
4074
+ msgstr ""
4075
+
4076
+ #: includes/widgets/htmega_imagemarker.php:751
4077
+ msgid "Content area border radius"
4078
+ msgstr ""
4079
+
4080
+ #: includes/widgets/htmega_imagemarker.php:762
4081
+ msgid "Content area padding"
4082
+ msgstr ""
4083
+
4084
+ #: includes/widgets/htmega_singlepost.php:463
4085
+ #: includes/widgets/htmega_slider_thumb_gallery.php:757
4086
+ msgid "Content Box"
4087
+ msgstr ""
4088
+
4089
+ #: includes/widgets/htmega_teammember.php:511
4090
+ msgid "Content Box Background"
4091
+ msgstr ""
4092
+
4093
+ #: includes/widgets/htmega_teammember.php:534
4094
+ msgid "Content Box Hover Background"
4095
+ msgstr ""
4096
+
4097
+ #: includes/widgets/htmega_teammember.php:583
4098
+ msgid "Content Box Margin"
4099
+ msgstr ""
4100
+
4101
+ #: includes/widgets/htmega_image_grid.php:261
4102
+ #: includes/widgets/htmega_teammember.php:598
4103
+ msgid "Content Box Padding"
4104
+ msgstr ""
4105
+
4106
+ #: includes/widgets/htmega_post_grid_tab.php:335
4107
+ #: includes/widgets/htmega_post_slider.php:709
4108
+ #: includes/widgets/htmega_slider_thumb_gallery.php:670
4109
+ #: includes/widgets/htmega_special_day_banner.php:253
4110
+ msgid "Content Box Style"
4111
+ msgstr ""
4112
+
4113
+ #: includes/widgets/htmega_user_login_form.php:744
4114
+ #: extensions/wc-sales-notification/admin/setting.php:204
4115
+ msgid "Content Color"
4116
+ msgstr ""
4117
+
4118
+ #: admin/include/admin-setting.php:1400 admin/include/admin-setting.php:1425
4119
+ msgid "Content color option"
4120
+ msgstr ""
4121
+
4122
+ #: includes/widgets/htmega_verticle_time_line.php:71
4123
+ msgid "Content Date"
4124
+ msgstr ""
4125
+
4126
+ #: includes/widgets/htmega_imagemarker.php:349
4127
+ msgid "Content Indicator"
4128
+ msgstr ""
4129
+
4130
+ #: includes/widgets/htmega_post_grid_tab.php:201
4131
+ #: includes/widgets/htmega_post_slider.php:209
4132
+ #: includes/widgets/htmega_twitter_feed.php:133
4133
+ #: extensions/ht-builder/widgets/bl_post_archive.php:157
4134
+ msgid "Content Length"
4135
+ msgstr ""
4136
+
4137
+ #: includes/widgets/htmega_newsticker.php:1093
4138
+ msgid "Content Not Found"
4139
+ msgstr ""
4140
+
4141
+ #: includes/widgets/htmega_newsticker.php:187
4142
+ msgid "Content Option"
4143
+ msgstr ""
4144
+
4145
+ #: includes/widgets/htmega_postgrid.php:278
4146
+ msgid "Content Padding"
4147
+ msgstr ""
4148
+
4149
+ #: includes/widgets/htmega_add_banner.php:58
4150
+ #: includes/widgets/htmega_singlepost.php:57
4151
+ #: includes/widgets/htmega_special_day_banner.php:42
4152
+ msgid "Content Position"
4153
+ msgstr ""
4154
+
4155
+ #: includes/widgets/htmega_post_grid_tab.php:76
4156
+ #: includes/widgets/htmega_post_slider.php:80
4157
+ #: includes/widgets/htmega_scroll_navigation.php:60
4158
+ msgid "Content Source"
4159
+ msgstr ""
4160
+
4161
+ #: includes/widgets/htmega_newsticker.php:194
4162
+ #: includes/widgets/htmega_postgrid.php:69
4163
+ msgid "Content Sourse"
4164
+ msgstr ""
4165
+
4166
+ #: includes/widgets/htmega_dropcaps.php:72
4167
+ #: includes/widgets/htmega_teammember.php:68
4168
+ #: includes/widgets/htmega_teammember.php:83
4169
+ #: includes/widgets/htmega_toggle.php:122
4170
+ msgid "Content Style"
4171
+ msgstr ""
4172
+
4173
+ #: includes/widgets/htmega_buddy_press.php:62
4174
+ #: includes/widgets/htmega_pricing_list_view.php:570
4175
+ msgid "Content Type"
4176
+ msgstr ""
4177
+
4178
+ #: includes/widgets/htmega_teammember.php:639
4179
+ msgid "Corner Shape Color"
4180
+ msgstr ""
4181
+
4182
+ #: includes/widgets/htmega_easy_digital_download.php:201
4183
+ #: includes/widgets/htmega_socialshere.php:356
4184
+ #: includes/widgets/htmega_wc_categories.php:132
4185
+ msgid "Count"
4186
+ msgstr ""
4187
+
4188
+ #: includes/widgets/htmega_countdown.php:404
4189
+ msgid "Count Area"
4190
+ msgstr ""
4191
+
4192
+ #: includes/widgets/htmega_countdown.php:291
4193
+ msgid "Count Layout"
4194
+ msgstr ""
4195
+
4196
+ #: admin/include/admin-setting.php:199 includes/widgets/htmega_countdown.php:13
4197
+ #: includes/widgets/htmega_countdown.php:65
4198
+ msgid "Countdown"
4199
+ msgstr ""
4200
+
4201
+ #: admin/include/admin-setting.php:207 includes/widgets/htmega_counter.php:13
4202
+ #: includes/widgets/htmega_counter.php:42
4203
+ msgid "Counter"
4204
+ msgstr ""
4205
+
4206
+ #: includes/widgets/htmega_gallery_justify.php:177
4207
+ msgid "Counter Color"
4208
+ msgstr ""
4209
+
4210
+ #: includes/widgets/htmega_countdown.php:673
4211
+ msgid "Counter separator"
4212
+ msgstr ""
4213
+
4214
+ #: includes/widgets/htmega_counter.php:154
4215
+ msgid "Counter Title"
4216
+ msgstr ""
4217
+
4218
+ #: includes/widgets/htmega_wc_element_pages.php:191
4219
+ msgid "Coupon / Update Button"
4220
+ msgstr ""
4221
+
4222
+ #: admin/include/templates_list.php:16
4223
+ msgid "Create a new page from this template"
4224
+ msgstr ""
4225
+
4226
+ #: extensions/wc-sales-notification/admin/setting.php:212
4227
+ msgid "Cross Icon Color"
4228
+ msgstr ""
4229
+
4230
+ #: admin/include/admin-setting.php:1401 admin/include/admin-setting.php:1426
4231
+ msgid "Cross icon color option"
4232
+ msgstr ""
4233
+
4234
+ #: includes/widgets/htmega_booked_calender.php:356
4235
+ msgid "Current Date"
4236
+ msgstr ""
4237
+
4238
+ #: includes/widgets/htmega_accordion.php:404
4239
+ msgid "Current Item No"
4240
+ msgstr ""
4241
+
4242
+ #: includes/widgets/htmega_accordion.php:81
4243
+ #: includes/widgets/htmega_accordion.php:221
4244
+ #: includes/widgets/htmega_blockquote.php:45
4245
+ #: includes/widgets/htmega_imagemarker.php:231
4246
+ #: includes/widgets/htmega_imagemarker.php:290
4247
+ #: includes/widgets/htmega_imagemarker.php:501
4248
+ #: includes/widgets/htmega_imagemarker.php:787
4249
+ #: includes/widgets/htmega_modal.php:55
4250
+ #: includes/widgets/htmega_scroll_image.php:255
4251
+ #: includes/widgets/htmega_scroll_navigation.php:64
4252
+ #: includes/widgets/htmega_scroll_navigation.php:128
4253
+ #: includes/widgets/htmega_scroll_navigation.php:218
4254
+ #: includes/widgets/htmega_socialshere.php:467
4255
+ #: includes/widgets/htmega_switcher.php:106
4256
+ #: includes/widgets/htmega_switcher.php:198 includes/widgets/htmega_tabs.php:90
4257
+ #: includes/widgets/htmega_testimonial_grid.php:59
4258
+ #: includes/widgets/htmega_toggle.php:83
4259
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:76
4260
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:94
4261
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:132
4262
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:255
4263
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:298
4264
+ #: extensions/ht-builder/widgets/bl_site_logo.php:56
4265
+ msgid "Custom"
4266
+ msgstr ""
4267
+
4268
+ #: includes/widgets/htmega_weather.php:209
4269
+ msgid "Custom Background Color"
4270
+ msgstr ""
4271
+
4272
+ #: includes/widgets/htmega_scroll_navigation.php:324
4273
+ #: includes/widgets/htmega_toggle.php:108
4274
+ msgid "Custom Content"
4275
+ msgstr ""
4276
+
4277
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:105
4278
+ msgid "Custom Date Format"
4279
+ msgstr ""
4280
+
4281
+ #: admin/include/admin-setting.php:215
4282
+ #: includes/widgets/htmega_custom_event.php:13
4283
+ msgid "Custom Event"
4284
+ msgstr ""
4285
+
4286
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:201
4287
+ msgid "Custom Format"
4288
+ msgstr ""
4289
+
4290
+ #: includes/widgets/htmega_weather.php:175
4291
+ msgid "Custom Geolocation"
4292
+ msgstr ""
4293
+
4294
+ #: includes/widgets/htmega_postgrid.php:315
4295
+ #: includes/widgets/htmega_post_grid_tab.php:1160
4296
+ msgid "Custom Gradient Color"
4297
+ msgstr ""
4298
+
4299
+ #: includes/widgets/htmega_scroll_navigation.php:226
4300
+ msgid "Custom Height"
4301
+ msgstr ""
4302
+
4303
+ #: includes/widgets/htmega_countdown.php:190
4304
+ msgid "Custom Label"
4305
+ msgstr ""
4306
+
4307
+ #: includes/widgets/htmega_user_login_form.php:194
4308
+ msgid "Custom label"
4309
+ msgstr ""
4310
+
4311
+ #: includes/widgets/htmega_scroll_image.php:61
4312
+ msgid "Custom Link"
4313
+ msgstr ""
4314
+
4315
+ #: includes/widgets/htmega_googlemap.php:170
4316
+ msgid "Custom marker"
4317
+ msgstr ""
4318
+
4319
+ #: includes/widgets/htmega_data_table.php:106
4320
+ msgid "Custom options for number of Rows?"
4321
+ msgstr ""
4322
+
4323
+ #: includes/widgets/htmega_newsticker.php:242
4324
+ #: includes/widgets/htmega_postgrid.php:117
4325
+ #: includes/widgets/htmega_post_grid_tab.php:124
4326
+ #: includes/widgets/htmega_post_slider.php:128
4327
+ #: extensions/ht-builder/widgets/bl_post_archive.php:184
4328
+ msgid "Custom order"
4329
+ msgstr ""
4330
+
4331
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:143
4332
+ msgid "Custom Time Format"
4333
+ msgstr ""
4334
+
4335
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:279
4336
+ msgid "Custom URL"
4337
+ msgstr ""
4338
+
4339
+ #: includes/widgets/htmega_panel_slider.php:237
4340
+ msgid "Custom Width"
4341
+ msgstr ""
4342
+
4343
+ #: includes/widgets/htmega_notify.php:133
4344
+ msgid "Danger"
4345
+ msgstr ""
4346
+
4347
+ #: admin/include/admin-setting.php:511
4348
+ #: includes/widgets/htmega_data_table.php:13
4349
+ msgid "Data Table"
4350
+ msgstr ""
4351
+
4352
+ #: includes/widgets/htmega_data_table.php:321
4353
+ msgid "Data Type"
4354
+ msgstr ""
4355
+
4356
+ #: includes/recommended-plugins/recommended-plugins.php:121
4357
+ msgid "DataCaptia"
4358
+ msgstr ""
4359
+
4360
+ #: includes/widgets/htmega_booked_calender.php:288
4361
+ #: includes/widgets/htmega_custom_event.php:322
4362
+ #: includes/widgets/htmega_job_manager.php:99
4363
+ #: includes/widgets/htmega_newsticker.php:141
4364
+ #: includes/widgets/htmega_newsticker.php:258
4365
+ #: includes/widgets/htmega_newsticker.php:906
4366
+ #: includes/widgets/htmega_postgrid.php:149
4367
+ #: includes/widgets/htmega_postgrid.php:199
4368
+ #: includes/widgets/htmega_postgrid.php:571
4369
+ #: includes/widgets/htmega_post_grid_tab.php:156
4370
+ #: includes/widgets/htmega_post_slider.php:160
4371
+ #: includes/widgets/htmega_post_slider.php:265
4372
+ #: includes/widgets/htmega_singlepost.php:129
4373
+ #: includes/widgets/htmega_verticle_time_line.php:320
4374
+ #: extensions/ht-builder/widgets/bl_post_archive.php:200
4375
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:72
4376
+ msgid "Date"
4377
+ msgstr ""
4378
+
4379
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:84
4380
+ msgid "Date Format"
4381
+ msgstr ""
4382
+
4383
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:90
4384
+ msgctxt "Date Format"
4385
+ msgid "March 6, 2018 (F j, Y)"
4386
+ msgstr ""
4387
+
4388
+ #: includes/widgets/htmega_newsticker.php:150
4389
+ msgid "Date Position In Left"
4390
+ msgstr ""
4391
+
4392
+ #: includes/widgets/htmega_booked_calender.php:63
4393
+ #: includes/widgets/htmega_business_hours.php:83
4394
+ #: includes/widgets/htmega_business_hours.php:505
4395
+ #: includes/widgets/htmega_countdown.php:132
4396
+ #: includes/widgets/htmega_instagram.php:113
4397
+ msgid "Day"
4398
+ msgstr ""
4399
+
4400
+ #: includes/widgets/htmega_business_hours.php:112
4401
+ msgid "Day Color"
4402
+ msgstr ""
4403
+
4404
+ #: includes/widgets/htmega_booked_calender.php:220
4405
+ msgid "Day Name Background"
4406
+ msgstr ""
4407
+
4408
+ #: includes/widgets/htmega_booked_calender.php:232
4409
+ msgid "Day Name Color"
4410
+ msgstr ""
4411
+
4412
+ #: includes/widgets/htmega_countdown.php:202
4413
+ #: includes/widgets/htmega_countdown.php:204
4414
+ msgid "Days"
4415
+ msgstr ""
4416
+
4417
+ #: includes/widgets/htmega_booked_calender.php:120
4418
+ msgid "December"
4419
+ msgstr ""
4420
+
4421
+ #: includes/widgets/htmega_booked_calender.php:54
4422
+ #: includes/widgets/htmega_booked_calender.php:166
4423
+ #: includes/widgets/htmega_scroll_navigation.php:127
4424
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:297
4425
+ #: extensions/ht-builder/widgets/bl_site_logo.php:52
4426
+ msgid "Default"
4427
+ msgstr ""
4428
+
4429
+ #: includes/widgets/htmega_data_table.php:93
4430
+ msgid "Default option for number of Rows"
4431
+ msgstr ""
4432
+
4433
+ #: includes/widgets/htmega_gallery_justify.php:119
4434
+ msgid "Default Popup"
4435
+ msgstr ""
4436
+
4437
+ #: includes/widgets/htmega_googlemap.php:60
4438
+ msgid "Default Zoom"
4439
+ msgstr ""
4440
+
4441
+ #: includes/widgets/htmega_notify.php:222
4442
+ msgid "Delay"
4443
+ msgstr ""
4444
+
4445
+ #: includes/widgets/htmega_instagram.php:99
4446
+ msgid "Delete existing caching data"
4447
+ msgstr ""
4448
+
4449
+ #: includes/widgets/htmega_socialshere.php:76
4450
+ msgid "Delicious"
4451
+ msgstr ""
4452
+
4453
+ #: includes/widgets/htmega_easy_digital_download.php:214
4454
+ msgid "DESC"
4455
+ msgstr ""
4456
+
4457
+ #: includes/widgets/htmega_job_manager.php:84
4458
+ #: includes/widgets/htmega_newsticker.php:277
4459
+ #: includes/widgets/htmega_postgrid.php:131
4460
+ #: includes/widgets/htmega_post_grid_tab.php:138
4461
+ #: includes/widgets/htmega_post_slider.php:142
4462
+ #: includes/widgets/htmega_wc_categories.php:145
4463
+ #: extensions/ht-builder/widgets/bl_post_archive.php:219
4464
+ msgid "Descending"
4465
+ msgstr ""
4466
+
4467
+ #: includes/widgets/htmega_add_banner.php:110
4468
+ #: includes/widgets/htmega_add_banner.php:548
4469
+ #: includes/widgets/htmega_call_to_action.php:104
4470
+ #: includes/widgets/htmega_call_to_action.php:618
4471
+ #: includes/widgets/htmega_custom_event.php:217
4472
+ #: includes/widgets/htmega_easy_digital_download.php:200
4473
+ #: includes/widgets/htmega_easy_digital_download.php:420
4474
+ #: includes/widgets/htmega_errorcontent.php:112
4475
+ #: includes/widgets/htmega_errorcontent.php:463
4476
+ #: includes/widgets/htmega_gravity_forms.php:172
4477
+ #: includes/widgets/htmega_imagemarker.php:922
4478
+ #: includes/widgets/htmega_image_grid.php:122
4479
+ #: includes/widgets/htmega_image_grid.php:376
4480
+ #: includes/widgets/htmega_image_masonry.php:103
4481
+ #: includes/widgets/htmega_image_masonry.php:352
4482
+ #: includes/widgets/htmega_ninja_form.php:211
4483
+ #: includes/widgets/htmega_service.php:469
4484
+ #: includes/widgets/htmega_special_day_banner.php:96
4485
+ #: includes/widgets/htmega_special_day_banner.php:453
4486
+ #: includes/widgets/htmega_wc_categories.php:131
4487
+ #: includes/widgets/htmega_working_process.php:96
4488
+ #: includes/widgets/htmega_working_process.php:712
4489
+ #: includes/widgets/htmega_wpforms.php:86
4490
+ #: includes/widgets/htmega_wpforms.php:203
4491
+ msgid "Description"
4492
+ msgstr ""
4493
+
4494
+ #: includes/widgets/htmega_ninja_form.php:95
4495
+ msgid "Description Hide"
4496
+ msgstr ""
4497
+
4498
+ #: includes/widgets/htmega_caldera_form.php:137
4499
+ #: includes/widgets/htmega_gravity_forms.php:343
4500
+ #: includes/widgets/htmega_ninja_form.php:432
4501
+ #: includes/widgets/htmega_wpforms.php:414
4502
+ msgid "Description Style"
4503
+ msgstr ""
4504
+
4505
+ #: includes/widgets/htmega_call_to_action.php:113
4506
+ msgid "Description Tag"
4507
+ msgstr ""
4508
+
4509
+ #: includes/widgets/htmega_data_table.php:281
4510
+ #: includes/widgets/htmega_pricing_list_view.php:455
4511
+ #: includes/widgets/htmega_teammember.php:163
4512
+ #: includes/widgets/htmega_teammember.php:774
4513
+ #: includes/widgets/htmega_testimonial_grid.php:175
4514
+ #: includes/widgets/htmega_testimonial_grid.php:480
4515
+ msgid "Designation"
4516
+ msgstr ""
4517
+
4518
+ #: includes/widgets/htmega_testimonial_grid.php:69
4519
+ msgid "Desktop"
4520
+ msgstr ""
4521
+
4522
+ #: includes/widgets/htmega_scroll_navigation.php:138
4523
+ msgid "Desktop Direction"
4524
+ msgstr ""
4525
+
4526
+ #: admin/include/templates/library/templates.php:30
4527
+ #: admin/include/templates/library/templates.php:31
4528
+ msgid "Desktop view"
4529
+ msgstr ""
4530
+
4531
+ #: includes/widgets/htmega_countdown.php:273
4532
+ msgid "Details"
4533
+ msgstr ""
4534
+
4535
+ #: includes/widgets/htmega_data_table.php:539
4536
+ #: includes/widgets/htmega_pricing_list_view.php:1105
4537
+ #: includes/widgets/htmega_testimonial_grid.php:239
4538
+ msgid "Developer"
4539
+ msgstr ""
4540
+
4541
+ #: includes/widgets/htmega_socialshere.php:73
4542
+ msgid "Digg"
4543
+ msgstr ""
4544
+
4545
+ #: includes/widgets/htmega_newsticker.php:128
4546
+ #: includes/widgets/htmega_popover.php:188
4547
+ #: includes/widgets/htmega_scroll_navigation.php:160
4548
+ #: includes/widgets/htmega_scroll_navigation.php:190
4549
+ #: includes/widgets/htmega_tooltip.php:176
4550
+ msgid "Direction"
4551
+ msgstr ""
4552
+
4553
+ #: includes/widgets/htmega_section_title.php:612
4554
+ #: includes/widgets/htmega_section_title.php:843
4555
+ msgid "Display"
4556
+ msgstr ""
4557
+
4558
+ #: includes/widgets/htmega_user_login_form.php:396
4559
+ msgid "Display as"
4560
+ msgstr ""
4561
+
4562
+ #: includes/helper-function.php:208
4563
+ msgid "div"
4564
+ msgstr ""
4565
+
4566
+ #: includes/helper-function.php:96 includes/helper-function.php:104
4567
+ #: extensions/ht-menu/menu/helper_function.php:17
4568
+ msgid "Do not Saved Templates."
4569
+ msgstr ""
4570
+
4571
+ #: extensions/wc-sales-notification/admin/setting.php:153
4572
+ msgid ""
4573
+ "Do not show purchases older than.( More Options are Pro features ) <span>( "
4574
+ "Pro )</span>"
4575
+ msgstr ""
4576
+
4577
+ #: includes/recommended-plugins/recommended-plugins.php:116
4578
+ msgid "Docus"
4579
+ msgstr ""
4580
+
4581
+ #: includes/widgets/htmega_user_login_form.php:105
4582
+ #: includes/widgets/htmega_user_login_form.php:107
4583
+ msgid "Don’t Have account? You can create an account by using this form."
4584
+ msgstr ""
4585
+
4586
+ #: includes/widgets/htmega_post_slider.php:373
4587
+ msgid "Dot Style"
4588
+ msgstr ""
4589
+
4590
+ #: admin/include/admin-setting.php:223
4591
+ #: includes/widgets/htmega_double_button.php:13
4592
+ #: includes/widgets/htmega_double_button.php:35
4593
+ msgid "Double Button"
4594
+ msgstr ""
4595
+
4596
+ #: includes/widgets/htmega_newsticker.php:133
4597
+ msgid "Down"
4598
+ msgstr ""
4599
+
4600
+ #: includes/widgets/htmega_download_monitor.php:54
4601
+ msgid "Download File"
4602
+ msgstr ""
4603
+
4604
+ #: admin/include/admin-setting.php:1108
4605
+ #: includes/widgets/htmega_download_monitor.php:13
4606
+ msgid "Download Monitor"
4607
+ msgstr ""
4608
+
4609
+ #: includes/widgets/htmega_download_monitor.php:421
4610
+ msgid "Downloaded"
4611
+ msgstr ""
4612
+
4613
+ #: admin/include/admin-setting.php:1308
4614
+ msgid "Drag n Drop, No coding Required"
4615
+ msgstr ""
4616
+
4617
+ #: includes/widgets/htmega_dropcaps.php:188
4618
+ msgid "Dropcap Letter"
4619
+ msgstr ""
4620
+
4621
+ #: admin/include/admin-setting.php:231 includes/widgets/htmega_dropcaps.php:13
4622
+ #: includes/widgets/htmega_dropcaps.php:35
4623
+ msgid "Dropcaps"
4624
+ msgstr ""
4625
+
4626
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:47
4627
+ #: extensions/ht-menu/widgets/verticle-mega-menu.php:48
4628
+ msgid "Dropdown Icon"
4629
+ msgstr ""
4630
+
4631
+ #: includes/widgets/htmega_countdown.php:109
4632
+ msgid "Due Date"
4633
+ msgstr ""
4634
+
4635
+ #: admin/include/admin-setting.php:1118
4636
+ #: includes/widgets/htmega_easy_digital_download.php:13
4637
+ #: includes/widgets/htmega_easy_digital_download.php:43
4638
+ msgid "Easy Digital Downloads"
4639
+ msgstr ""
4640
+
4641
+ #: admin/include/template-library.php:219
4642
+ msgid "Edit Page"
4643
+ msgstr ""
4644
+
4645
+ #: admin/include/template-library.php:219
4646
+ msgid "Edit Template"
4647
+ msgstr ""
4648
+
4649
+ #: includes/widgets/htmega_button.php:423
4650
+ msgid "Effect 1"
4651
+ msgstr ""
4652
+
4653
+ #: includes/widgets/htmega_button.php:432
4654
+ msgid "Effect 10"
4655
+ msgstr ""
4656
+
4657
+ #: includes/widgets/htmega_button.php:433
4658
+ msgid "Effect 11"
4659
+ msgstr ""
4660
+
4661
+ #: includes/widgets/htmega_button.php:434
4662
+ msgid "Effect 12"
4663
+ msgstr ""
4664
+
4665
+ #: includes/widgets/htmega_button.php:435
4666
+ msgid "Effect 13"
4667
+ msgstr ""
4668
+
4669
+ #: includes/widgets/htmega_button.php:436
4670
+ msgid "Effect 14"
4671
+ msgstr ""
4672
+
4673
+ #: includes/widgets/htmega_button.php:424
4674
+ msgid "Effect 2"
4675
+ msgstr ""
4676
+
4677
+ #: includes/widgets/htmega_button.php:425
4678
+ msgid "Effect 3"
4679
+ msgstr ""
4680
+
4681
+ #: includes/widgets/htmega_button.php:426
4682
+ msgid "Effect 4"
4683
+ msgstr ""
4684
+
4685
+ #: includes/widgets/htmega_button.php:427
4686
+ msgid "Effect 5"
4687
+ msgstr ""
4688
+
4689
+ #: includes/widgets/htmega_button.php:428
4690
+ msgid "Effect 6"
4691
+ msgstr ""
4692
+
4693
+ #: includes/widgets/htmega_button.php:429
4694
+ msgid "Effect 7"
4695
+ msgstr ""
4696
+
4697
+ #: includes/widgets/htmega_button.php:430
4698
+ msgid "Effect 8"
4699
+ msgstr ""
4700
+
4701
+ #: includes/widgets/htmega_button.php:431
4702
+ msgid "Effect 9"
4703
+ msgstr ""
4704
+
4705
+ #: includes/widgets/htmega_button.php:463
4706
+ msgid "Effect After Color"
4707
+ msgstr ""
4708
+
4709
+ #: includes/widgets/htmega_button.php:444
4710
+ #: includes/widgets/htmega_button.php:454
4711
+ #: includes/widgets/htmega_button.php:472
4712
+ msgid "Effect Before Color"
4713
+ msgstr ""
4714
+
4715
+ #: includes/widgets/htmega_wc_element_pages.php:48
4716
+ msgid "Element"
4717
+ msgstr ""
4718
+
4719
+ #: includes/widgets/htmega_notify.php:96
4720
+ msgid "Element Container"
4721
+ msgstr ""
4722
+
4723
+ #: includes/widgets/htmega_wc_element_pages.php:793
4724
+ #: includes/widgets/htmega_wc_element_pages.php:1459
4725
+ msgid "Element Space"
4726
+ msgstr ""
4727
+
4728
+ #: includes/class.htmega.php:182 admin/include/templates_list.php:42
4729
+ msgid "Elementor"
4730
+ msgstr ""
4731
+
4732
+ #: includes/class.htmega.php:160
4733
+ msgid "Elementor Activate Now"
4734
+ msgstr ""
4735
+
4736
+ #: includes/class.htmega.php:168
4737
+ msgid "Elementor Install Now"
4738
+ msgstr ""
4739
+
4740
+ #: includes/widgets/htmega_accordion.php:82
4741
+ #: includes/widgets/htmega_accordion.php:222
4742
+ #: includes/widgets/htmega_blockquote.php:46
4743
+ #: includes/widgets/htmega_modal.php:56
4744
+ #: includes/widgets/htmega_offcanvas.php:62
4745
+ #: includes/widgets/htmega_scroll_navigation.php:65
4746
+ #: includes/widgets/htmega_switcher.php:107
4747
+ #: includes/widgets/htmega_switcher.php:199 includes/widgets/htmega_tabs.php:91
4748
+ #: includes/widgets/htmega_toggle.php:84
4749
+ msgid "Elementor Template"
4750
+ msgstr ""
4751
+
4752
+ #: admin/include/admin-setting.php:76
4753
+ msgid "Elements"
4754
+ msgstr ""
4755
+
4756
+ #: includes/widgets/htmega_data_table.php:285
4757
+ #: includes/widgets/htmega_pricing_list_view.php:459
4758
+ msgid "Email"
4759
+ msgstr ""
4760
+
4761
+ #: includes/helper-function.php:465
4762
+ msgid "Email Already in Use"
4763
+ msgstr ""
4764
+
4765
+ #: includes/helper-function.php:462
4766
+ msgid "Email is not valid"
4767
+ msgstr ""
4768
+
4769
+ #: extensions/ht-menu/classes/class.mega-menu.php:120
4770
+ msgid "Enable megamenu?"
4771
+ msgstr ""
4772
+
4773
+ #: includes/widgets/htmega_accordion.php:1113
4774
+ #: includes/widgets/htmega_counter.php:74
4775
+ #: includes/widgets/htmega_user_login_form.php:430
4776
+ msgid "End"
4777
+ msgstr ""
4778
+
4779
+ #: includes/widgets/htmega_googlemap.php:113
4780
+ msgid "Enter Map Style Json Code."
4781
+ msgstr ""
4782
+
4783
+ #: includes/widgets/htmega_data_table.php:123
4784
+ msgid "Enter the number separate by comma(10,25,50,100)"
4785
+ msgstr ""
4786
+
4787
+ #: extensions/ht-builder/widgets/bl_post_search_form.php:106
4788
+ msgid "Enter you text"
4789
+ msgstr ""
4790
+
4791
+ #: includes/widgets/htmega_section_title.php:82
4792
+ #: includes/widgets/htmega_section_title.php:84
4793
+ msgid "Enter your advance title"
4794
+ msgstr ""
4795
+
4796
+ #: includes/widgets/htmega_googlemap.php:102
4797
+ msgid "Enter your center address."
4798
+ msgstr ""
4799
+
4800
+ #: includes/widgets/htmega_dropcaps.php:61
4801
+ msgid "Enter Your Dropcaps Content."
4802
+ msgstr ""
4803
+
4804
+ #: includes/widgets/htmega_googlemap.php:283
4805
+ msgid "Enter your fixed address."
4806
+ msgstr ""
4807
+
4808
+ #: includes/widgets/htmega_section_title.php:71
4809
+ #: includes/widgets/htmega_section_title.php:73
4810
+ msgid "Enter your sub title"
4811
+ msgstr ""
4812
+
4813
+ #: extensions/ht-builder/widgets/bl_post_archive.php:74
4814
+ msgid "Enter Your Text"
4815
+ msgstr ""
4816
+
4817
+ #: includes/widgets/htmega_button.php:64 includes/widgets/htmega_button.php:66
4818
+ msgid "Enter your Text"
4819
+ msgstr ""
4820
+
4821
+ #: includes/widgets/htmega_section_title.php:59
4822
+ #: includes/widgets/htmega_section_title.php:61
4823
+ msgid "Enter your title"
4824
+ msgstr ""
4825
+
4826
+ #: includes/widgets/htmega_tablepress.php:75
4827
+ msgid "Entries Hide"
4828
+ msgstr ""
4829
+
4830
+ #: includes/widgets/htmega_ninja_form.php:1109
4831
+ msgid "Error Color"
4832
+ msgstr ""
4833
+
4834
+ #: includes/widgets/htmega_caldera_form.php:619
4835
+ #: includes/widgets/htmega_gravity_forms.php:850
4836
+ msgid "Error Text Color"
4837
+ msgstr ""
4838
+
4839
+ #: includes/widgets/htmega_gravity_forms.php:842
4840
+ msgid "Errors and Confirmation Style"
4841
+ msgstr ""
4842
+
4843
+ #: includes/widgets/htmega_contact_form_seven.php:960
4844
+ msgid "Errors and Feedback Style"
4845
+ msgstr ""
4846
+
4847
+ #: includes/widgets/htmega_caldera_form.php:611
4848
+ #: includes/widgets/htmega_ninja_form.php:1101
4849
+ #: includes/widgets/htmega_quforms.php:969
4850
+ msgid "Errors and Success Style"
4851
+ msgstr ""
4852
+
4853
+ #: includes/widgets/htmega_wpforms.php:1136
4854
+ msgid "Errors Style"
4855
+ msgstr ""
4856
+
4857
+ #: includes/widgets/htmega_wc_element_pages.php:1204
4858
+ msgid "Even"
4859
+ msgstr ""
4860
+
4861
+ #: includes/widgets/htmega_custom_event.php:35
4862
+ msgid "Event"
4863
+ msgstr ""
4864
+
4865
+ #: includes/widgets/htmega_countdown.php:261
4866
+ msgid "Event Button"
4867
+ msgstr ""
4868
+
4869
+ #: includes/widgets/htmega_custom_event.php:102
4870
+ msgid "Event Button Link"
4871
+ msgstr ""
4872
+
4873
+ #: includes/widgets/htmega_custom_event.php:93
4874
+ msgid "Event Button text"
4875
+ msgstr ""
4876
+
4877
+ #: admin/include/admin-setting.php:645
4878
+ msgid "Event Calendar <span>( Pro )</span>"
4879
+ msgstr ""
4880
+
4881
+ #: includes/widgets/htmega_countdown.php:54
4882
+ msgid "Event Calendar Not Installed"
4883
+ msgstr ""
4884
+
4885
+ #: includes/widgets/htmega_tablepress.php:263
4886
+ msgid "Event Cell"
4887
+ msgstr ""
4888
+
4889
+ #: includes/widgets/htmega_countdown.php:72
4890
+ msgid "Event Countdown"
4891
+ msgstr ""
4892
+
4893
+ #: includes/widgets/htmega_custom_event.php:85
4894
+ msgid "Event description"
4895
+ msgstr ""
4896
+
4897
+ #: includes/widgets/htmega_countdown.php:81
4898
+ msgid "Event List"
4899
+ msgstr ""
4900
+
4901
+ #: includes/widgets/htmega_custom_event.php:76
4902
+ msgid "Event Location"
4903
+ msgstr ""
4904
+
4905
+ #: includes/widgets/htmega_custom_event.php:68
4906
+ msgid "Event Time"
4907
+ msgstr ""
4908
+
4909
+ #: includes/widgets/htmega_custom_event.php:44
4910
+ msgid "Event Title."
4911
+ msgstr ""
4912
+
4913
+ #: includes/recommended-plugins/recommended-plugins.php:68
4914
+ msgid "EverCompare"
4915
+ msgstr ""
4916
+
4917
+ #: includes/widgets/htmega_socialshere.php:74
4918
+ msgid "Evernote"
4919
+ msgstr ""
4920
+
4921
+ #: includes/widgets/htmega_notify.php:178
4922
+ msgid "Exit Animation"
4923
+ msgstr ""
4924
+
4925
+ #: includes/widgets/htmega_post_grid_tab.php:259
4926
+ msgid "Expand Box Style"
4927
+ msgstr ""
4928
+
4929
+ #: includes/widgets/htmega_accordion.php:464
4930
+ msgid "Expand Item Height"
4931
+ msgstr ""
4932
+
4933
+ #: includes/widgets/htmega_button.php:96
4934
+ #: includes/widgets/htmega_double_button.php:49
4935
+ msgid "Extra Large"
4936
+ msgstr ""
4937
+
4938
+ #: includes/widgets/htmega_button.php:97
4939
+ #: includes/widgets/htmega_double_button.php:50
4940
+ msgid "Extra Small"
4941
+ msgstr ""
4942
+
4943
+ #: includes/widgets/htmega_weather.php:56
4944
+ msgid "F"
4945
+ msgstr ""
4946
+
4947
+ #: includes/widgets/htmega_socialshere.php:62
4948
+ #: includes/widgets/htmega_socialshere.php:102
4949
+ #: includes/widgets/htmega_socialshere.php:320
4950
+ msgid "Facebook"
4951
+ msgstr ""
4952
+
4953
+ #: admin/include/admin-setting.php:729
4954
+ msgid "Facebook Review <span>( Pro )</span>"
4955
+ msgstr ""
4956
+
4957
+ #: includes/widgets/htmega_notify.php:153
4958
+ #: includes/widgets/htmega_notify.php:188
4959
+ msgid "fadeIn"
4960
+ msgstr ""
4961
+
4962
+ #: includes/widgets/htmega_notify.php:154
4963
+ #: includes/widgets/htmega_notify.php:189
4964
+ msgid "fadeInDown"
4965
+ msgstr ""
4966
+
4967
+ #: includes/widgets/htmega_notify.php:155
4968
+ #: includes/widgets/htmega_notify.php:190
4969
+ msgid "fadeInDownBig"
4970
+ msgstr ""
4971
+
4972
+ #: includes/widgets/htmega_notify.php:156
4973
+ #: includes/widgets/htmega_notify.php:191
4974
+ #: extensions/wc-sales-notification/admin/setting.php:169
4975
+ msgid "fadeInLeft"
4976
+ msgstr ""
4977
+
4978
+ #: includes/widgets/htmega_notify.php:157
4979
+ #: includes/widgets/htmega_notify.php:192
4980
+ msgid "fadeInLeftBig"
4981
+ msgstr ""
4982
+
4983
+ #: includes/widgets/htmega_notify.php:158
4984
+ #: includes/widgets/htmega_notify.php:193
4985
+ msgid "fadeInRight"
4986
+ msgstr ""
4987
+
4988
+ #: includes/widgets/htmega_notify.php:159
4989
+ #: includes/widgets/htmega_notify.php:194
4990
+ msgid "fadeInRightBig"
4991
+ msgstr ""
4992
+
4993
+ #: includes/widgets/htmega_notify.php:162
4994
+ #: includes/widgets/htmega_notify.php:197
4995
+ msgid "fadeInUp"
4996
+ msgstr ""
4997
+
4998
+ #: includes/widgets/htmega_notify.php:165
4999
+ #: includes/widgets/htmega_notify.php:200
5000
+ msgid "fadeInUpBig"
5001
+ msgstr ""
5002
+
5003
+ #: includes/widgets/htmega_notify.php:164
5004
+ #: includes/widgets/htmega_notify.php:199
5005
+ msgid "fadeOutDown"
5006
+ msgstr ""
5007
+
5008
+ #: includes/widgets/htmega_notify.php:161
5009
+ #: includes/widgets/htmega_notify.php:196
5010
+ msgid "fadeOutLeft"
5011
+ msgstr ""
5012
+
5013
+ #: includes/widgets/htmega_notify.php:160
5014
+ #: includes/widgets/htmega_notify.php:195
5015
+ #: extensions/wc-sales-notification/admin/setting.php:181
5016
+ msgid "fadeOutRight"
5017
+ msgstr ""
5018
+
5019
+ #: includes/widgets/htmega_notify.php:163
5020
+ #: includes/widgets/htmega_notify.php:198
5021
+ msgid "fadeOutUp"
5022
+ msgstr ""
5023
+
5024
+ #: extensions/wc-sales-notification/admin/setting.php:70
5025
+ msgid "Fakes"
5026
+ msgstr ""
5027
+
5028
+ #: admin/include/admin-setting.php:1391 admin/include/admin-setting.php:1416
5029
+ msgid "Fakes notification"
5030
+ msgstr ""
5031
+
5032
+ #: includes/widgets/htmega_pricing_list_view.php:148
5033
+ #: includes/widgets/htmega_pricing_list_view.php:154
5034
+ #: includes/widgets/htmega_pricing_list_view.php:160
5035
+ #: includes/widgets/htmega_pricing_list_view.php:166
5036
+ msgid "fas fa-shopping-basket"
5037
+ msgstr ""
5038
+
5039
+ #: includes/widgets/htmega_job_manager.php:113
5040
+ msgid "Feature Jobs only"
5041
+ msgstr ""
5042
+
5043
+ #: admin/include/admin-setting.php:666
5044
+ msgid "Feature List <span>( Pro )</span>"
5045
+ msgstr ""
5046
+
5047
+ #: includes/widgets/htmega_booked_calender.php:110
5048
+ msgid "February"
5049
+ msgstr ""
5050
+
5051
+ #: includes/widgets/htmega_instragram_feed.php:49
5052
+ msgid "Feed Limit"
5053
+ msgstr ""
5054
+
5055
+ #: includes/widgets/htmega_contact_form_seven.php:994
5056
+ msgid "Feedback Style"
5057
+ msgstr ""
5058
+
5059
+ #: includes/widgets/htmega_data_table.php:308
5060
+ msgid "Field Type"
5061
+ msgstr ""
5062
+
5063
+ #: includes/widgets/htmega_pricing_list_view.php:545
5064
+ msgid "Fild Type"
5065
+ msgstr ""
5066
+
5067
+ #: includes/widgets/htmega_job_manager.php:142
5068
+ msgid "Filters"
5069
+ msgstr ""
5070
+
5071
+ #: includes/widgets/htmega_layer_slider.php:72
5072
+ msgid "First Slide Number"
5073
+ msgstr ""
5074
+
5075
+ #: includes/widgets/htmega_image_grid.php:74
5076
+ #: includes/widgets/htmega_image_masonry.php:83
5077
+ #: includes/widgets/htmega_testimonial_grid.php:77
5078
+ msgid "Five"
5079
+ msgstr ""
5080
+
5081
+ #: includes/widgets/htmega_googlemap.php:281
5082
+ msgid "Fixed Address"
5083
+ msgstr ""
5084
+
5085
+ #: includes/widgets/htmega_googlemap.php:502
5086
+ msgid "Fixed Address Span Style"
5087
+ msgstr ""
5088
+
5089
+ #: includes/widgets/htmega_googlemap.php:272
5090
+ msgid "Fixed Maps Address:"
5091
+ msgstr ""
5092
+
5093
+ #: admin/include/admin-setting.php:239
5094
+ msgid "Flip Box"
5095
+ msgstr ""
5096
+
5097
+ #: includes/widgets/htmega_instagram.php:303
5098
+ msgid "Flow Button Icon"
5099
+ msgstr ""
5100
+
5101
+ #: includes/widgets/htmega_caldera_form.php:369
5102
+ #: includes/widgets/htmega_contact_form_seven.php:367
5103
+ #: includes/widgets/htmega_contact_form_seven.php:592
5104
+ #: includes/widgets/htmega_gravity_forms.php:568
5105
+ #: includes/widgets/htmega_ninja_form.php:634
5106
+ #: includes/widgets/htmega_ninja_form.php:852
5107
+ #: includes/widgets/htmega_quforms.php:470
5108
+ #: includes/widgets/htmega_quforms.php:687
5109
+ #: includes/widgets/htmega_search.php:391
5110
+ #: includes/widgets/htmega_wc_element_pages.php:580
5111
+ #: includes/widgets/htmega_wc_element_pages.php:842
5112
+ #: includes/widgets/htmega_wc_element_pages.php:1400
5113
+ #: includes/widgets/htmega_wpforms.php:637
5114
+ #: includes/widgets/htmega_wpforms.php:855
5115
+ msgid "Focus"
5116
+ msgstr ""
5117
+
5118
+ #: includes/widgets/htmega_instagram.php:292
5119
+ msgid "Follow @"
5120
+ msgstr ""
5121
+
5122
+ #: includes/widgets/htmega_instagram.php:1282
5123
+ msgid "Follow Button"
5124
+ msgstr ""
5125
+
5126
+ #: includes/widgets/htmega_instagram.php:290
5127
+ msgid "Follow button Aditional text"
5128
+ msgstr ""
5129
+
5130
+ #: includes/widgets/htmega_instragram_feed.php:158
5131
+ msgid "Follow Color"
5132
+ msgstr ""
5133
+
5134
+ #: includes/widgets/htmega_instragram_feed.php:106
5135
+ #: includes/widgets/htmega_instragram_feed.php:107
5136
+ msgid "Follow on Instagram"
5137
+ msgstr ""
5138
+
5139
+ #: includes/widgets/htmega_instragram_feed.php:104
5140
+ msgid "Follow Text"
5141
+ msgstr ""
5142
+
5143
+ #: includes/widgets/htmega_instragram_feed.php:170
5144
+ msgid "Follow Text Color"
5145
+ msgstr ""
5146
+
5147
+ #: includes/widgets/htmega_googlemap.php:201
5148
+ #: includes/widgets/htmega_googlemap.php:232
5149
+ #: includes/widgets/htmega_googlemap.php:434
5150
+ #: includes/widgets/htmega_googlemap.php:521
5151
+ msgid "Font Color"
5152
+ msgstr ""
5153
+
5154
+ #: includes/widgets/htmega_blockquote.php:575
5155
+ #: includes/widgets/htmega_carousel.php:570
5156
+ #: includes/widgets/htmega_imagemarker.php:514
5157
+ #: includes/widgets/htmega_instagram.php:772
5158
+ #: includes/widgets/htmega_instagram.php:946
5159
+ #: includes/widgets/htmega_lightbox.php:377
5160
+ #: includes/widgets/htmega_panel_slider.php:828
5161
+ #: includes/widgets/htmega_post_slider.php:1555
5162
+ #: includes/widgets/htmega_search.php:464
5163
+ #: includes/widgets/htmega_search.php:716
5164
+ #: includes/widgets/htmega_slider_thumb_gallery.php:836
5165
+ #: includes/widgets/htmega_teammember.php:1047
5166
+ #: includes/widgets/htmega_twitter_feed.php:1088
5167
+ #: includes/widgets/htmega_videoplayer.php:366
5168
+ #: includes/widgets/htmega_working_process.php:955
5169
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:469
5170
+ msgid "Font Size"
5171
+ msgstr ""
5172
+
5173
+ #: includes/widgets/htmega_modal.php:746
5174
+ msgid "Footer"
5175
+ msgstr ""
5176
+
5177
+ #: includes/widgets/htmega_modal.php:831
5178
+ msgid "Footer Close Button"
5179
+ msgstr ""
5180
+
5181
+ #: includes/widgets/htmega_data_table.php:188
5182
+ msgid "Footer Info"
5183
+ msgstr ""
5184
+
5185
+ #: extensions/ht-builder/classes/class.header_footer.php:100
5186
+ msgid "Footer Template"
5187
+ msgstr ""
5188
+
5189
+ #: extensions/ht-builder/admin/setting.php:91
5190
+ msgid "Footer Template."
5191
+ msgstr ""
5192
+
5193
+ #: includes/widgets/htmega_modal.php:91
5194
+ msgid "Footer Text"
5195
+ msgstr ""
5196
+
5197
+ #: includes/widgets/htmega_tablepress.php:399
5198
+ msgid "Footer text"
5199
+ msgstr ""
5200
+
5201
+ #: includes/widgets/htmega_tablepress.php:108
5202
+ msgid "Footer text Hide"
5203
+ msgstr ""
5204
+
5205
+ #: includes/widgets/htmega_pricing_list_view.php:329
5206
+ #: includes/widgets/htmega_pricing_list_view.php:958
5207
+ msgid "For Layout 4 only"
5208
+ msgstr ""
5209
+
5210
+ #: includes/widgets/htmega_mailchimp_wp.php:69
5211
+ msgid ""
5212
+ "For show ID <a href=\"admin.php?page=mailchimp-for-wp-forms\" "
5213
+ "target=\"_blank\"> Click here </a>"
5214
+ msgstr ""
5215
+
5216
+ #: includes/widgets/htmega_weather.php:317
5217
+ msgid "Forcast"
5218
+ msgstr ""
5219
+
5220
+ #: includes/widgets/htmega_weather.php:80
5221
+ msgid "Forecast"
5222
+ msgstr ""
5223
+
5224
+ #: includes/widgets/htmega_user_login_form.php:296
5225
+ msgid "Forget Password Position"
5226
+ msgstr ""
5227
+
5228
+ #: includes/widgets/htmega_user_login_form.php:951
5229
+ msgid "Forget Text"
5230
+ msgstr ""
5231
+
5232
+ #: includes/widgets/htmega_user_login_form.php:967
5233
+ msgid "Forget Text Color"
5234
+ msgstr ""
5235
+
5236
+ #: includes/widgets/htmega_user_login_form.php:978
5237
+ msgid "Forget Text Hover Color"
5238
+ msgstr ""
5239
+
5240
+ #: includes/widgets/htmega_user_login_form.php:1639
5241
+ #: includes/widgets/htmega_user_login_form.php:1662
5242
+ msgid "Forgot Password?"
5243
+ msgstr ""
5244
+
5245
+ #: includes/widgets/htmega_wpforms.php:47
5246
+ msgid "Form not found"
5247
+ msgstr ""
5248
+
5249
+ #: includes/helper-function.php:356
5250
+ #: includes/widgets/htmega_gravity_forms.php:48
5251
+ #: includes/widgets/htmega_quforms.php:49
5252
+ msgid "Form Not Found!"
5253
+ msgstr ""
5254
+
5255
+ #: includes/widgets/htmega_ninja_form.php:49
5256
+ msgid "Form Not Found."
5257
+ msgstr ""
5258
+
5259
+ #: includes/widgets/htmega_contact_form_seven.php:80
5260
+ msgid "Form Wrapper Style"
5261
+ msgstr ""
5262
+
5263
+ #: includes/widgets/htmega_bbpress.php:55
5264
+ msgid "Forum Form"
5265
+ msgstr ""
5266
+
5267
+ #: includes/widgets/htmega_bbpress.php:54
5268
+ msgid "Forum Index"
5269
+ msgstr ""
5270
+
5271
+ #: includes/widgets/htmega_image_grid.php:73
5272
+ #: includes/widgets/htmega_image_masonry.php:82
5273
+ #: includes/widgets/htmega_testimonial_grid.php:76
5274
+ #: includes/widgets/htmega_testimonial_grid.php:91
5275
+ #: includes/widgets/htmega_testimonial_grid.php:108
5276
+ msgid "Four"
5277
+ msgstr ""
5278
+
5279
+ #: admin/include/templates_list.php:53
5280
+ msgid "Free"
5281
+ msgstr ""
5282
+
5283
+ #: includes/widgets/htmega_business_hours.php:194
5284
+ msgid "Friday"
5285
+ msgstr ""
5286
+
5287
+ #: includes/widgets/htmega_gravity_forms.php:100
5288
+ msgid "From Ajax"
5289
+ msgstr ""
5290
+
5291
+ #: includes/widgets/htmega_instragram_feed.php:72
5292
+ msgid "Full"
5293
+ msgstr ""
5294
+
5295
+ #: includes/widgets/htmega_scroll_navigation.php:217
5296
+ msgid "Full Screen"
5297
+ msgstr ""
5298
+
5299
+ #: admin/include/admin-setting.php:247
5300
+ #: includes/widgets/htmega_gallery_justify.php:13
5301
+ #: includes/widgets/htmega_gallery_justify.php:51
5302
+ msgid "Gallery Justify"
5303
+ msgstr ""
5304
+
5305
+ #: includes/widgets/htmega_gallery_justify.php:120
5306
+ msgid "Gallery Popup "
5307
+ msgstr ""
5308
+
5309
+ #: admin/include/admin-setting.php:71
5310
+ msgid "General"
5311
+ msgstr ""
5312
+
5313
+ #: includes/widgets/htmega_testimonial_grid.php:238
5314
+ msgid "Gerald Gilbert"
5315
+ msgstr ""
5316
+
5317
+ #: admin/include/admin-setting.php:1314
5318
+ msgid "Get Pro Now"
5319
+ msgstr ""
5320
+
5321
+ #: admin/include/admin-setting.php:1315
5322
+ msgid "Get pro now"
5323
+ msgstr ""
5324
+
5325
+ #: includes/class.htmega.php:212
5326
+ #: admin/include/templates/library/templates.php:71
5327
+ msgid "Go Pro"
5328
+ msgstr ""
5329
+
5330
+ #: admin/include/admin-setting.php:762
5331
+ msgid ""
5332
+ "Go to <a href=\"https://developers.google."
5333
+ "com/maps/documentation/javascript/get-api-key\" target=\"_blank\">https:"
5334
+ "//developers.google.com</a> and generate the API key."
5335
+ msgstr ""
5336
+
5337
+ #: includes/widgets/htmega_googlemap.php:114
5338
+ msgid ""
5339
+ "Go to <a href=\"https://snazzymaps.com/\" target=_blank>Snazzy Maps</a> and "
5340
+ "Choose/Customize your Map Style. Click on your demo and copy JavaScript "
5341
+ "Style Array"
5342
+ msgstr ""
5343
+
5344
+ #: includes/widgets/htmega_inlinemenu.php:81
5345
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:75
5346
+ #, php-format
5347
+ msgid ""
5348
+ "Go to the <a href=\"%s\" target=\"_blank\">Menus Option</a> to manage your "
5349
+ "menus."
5350
+ msgstr ""
5351
+
5352
+ #: includes/widgets/htmega_lightbox.php:95
5353
+ msgid "Goggle Map Embed URL"
5354
+ msgstr ""
5355
+
5356
+ #: admin/include/admin-setting.php:255 includes/widgets/htmega_googlemap.php:13
5357
+ #: includes/widgets/htmega_googlemap.php:43
5358
+ #: includes/widgets/htmega_lightbox.php:55
5359
+ msgid "Google Map"
5360
+ msgstr ""
5361
+
5362
+ #: admin/include/admin-setting.php:761
5363
+ msgid "Google Map API Key"
5364
+ msgstr ""
5365
+
5366
+ #: admin/include/admin-setting.php:763
5367
+ msgid "Google Map API key"
5368
+ msgstr ""
5369
+
5370
+ #: includes/widgets/htmega_socialshere.php:330
5371
+ msgid "Google Plus"
5372
+ msgstr ""
5373
+
5374
+ #: includes/widgets/htmega_socialshere.php:64
5375
+ msgid "Google+"
5376
+ msgstr ""
5377
+
5378
+ #: includes/widgets/htmega_postgrid.php:424
5379
+ #: includes/widgets/htmega_post_grid_tab.php:1269
5380
+ #: includes/widgets/htmega_post_grid_tab.php:1287
5381
+ msgid "Gradient "
5382
+ msgstr ""
5383
+
5384
+ #: includes/widgets/htmega_postgrid.php:406
5385
+ #: includes/widgets/htmega_post_grid_tab.php:1251
5386
+ msgid "Gradient Five"
5387
+ msgstr ""
5388
+
5389
+ #: includes/widgets/htmega_postgrid.php:388
5390
+ #: includes/widgets/htmega_post_grid_tab.php:1233
5391
+ msgid "Gradient Four"
5392
+ msgstr ""
5393
+
5394
+ #: includes/widgets/htmega_postgrid.php:334
5395
+ #: includes/widgets/htmega_postgrid.php:352
5396
+ #: includes/widgets/htmega_post_grid_tab.php:1179
5397
+ #: includes/widgets/htmega_post_grid_tab.php:1197
5398
+ msgid "Gradient One"
5399
+ msgstr ""
5400
+
5401
+ #: includes/widgets/htmega_postgrid.php:370
5402
+ #: includes/widgets/htmega_post_grid_tab.php:1215
5403
+ msgid "Gradient Three"
5404
+ msgstr ""
5405
+
5406
+ #: admin/include/admin-setting.php:1128
5407
+ #: includes/widgets/htmega_gravity_forms.php:13
5408
+ #: includes/widgets/htmega_gravity_forms.php:59
5409
+ msgid "Gravity Forms"
5410
+ msgstr ""
5411
+
5412
+ #: includes/widgets/htmega_buddy_press.php:53
5413
+ msgid "Group"
5414
+ msgstr ""
5415
+
5416
+ #: includes/widgets/htmega_post_grid_tab.php:1092
5417
+ msgid "Group Item Style"
5418
+ msgstr ""
5419
+
5420
+ #: includes/helper-function.php:201
5421
+ msgid "H1"
5422
+ msgstr ""
5423
+
5424
+ #: includes/helper-function.php:202
5425
+ msgid "H2"
5426
+ msgstr ""
5427
+
5428
+ #: includes/helper-function.php:203
5429
+ msgid "H3"
5430
+ msgstr ""
5431
+
5432
+ #: includes/helper-function.php:204
5433
+ msgid "H4"
5434
+ msgstr ""
5435
+
5436
+ #: includes/helper-function.php:205
5437
+ msgid "H5"
5438
+ msgstr ""
5439
+
5440
+ #: includes/helper-function.php:206
5441
+ msgid "H6"
5442
+ msgstr ""
5443
+
5444
+ #: includes/widgets/htmega_image_comparison.php:411
5445
+ msgid "Handler"
5446
+ msgstr ""
5447
+
5448
+ #: includes/widgets/htmega_counter.php:156
5449
+ msgid "Happy Clients"
5450
+ msgstr ""
5451
+
5452
+ #: includes/widgets/htmega_twitter_feed.php:73
5453
+ msgid "hastechit"
5454
+ msgstr ""
5455
+
5456
+ #: includes/recommended-plugins/class.recommended-plugins.php:227
5457
+ msgid "HasTheme"
5458
+ msgstr ""
5459
+
5460
+ #. Author of the plugin
5461
+ msgid "HasThemes"
5462
+ msgstr ""
5463
+
5464
+ #: includes/widgets/htmega_booked_calender.php:186
5465
+ #: includes/widgets/htmega_modal.php:574
5466
+ #: includes/widgets/htmega_popover.php:584
5467
+ #: includes/widgets/htmega_tablepress.php:143
5468
+ msgid "Header"
5469
+ msgstr ""
5470
+
5471
+ #: includes/widgets/htmega_booked_calender.php:197
5472
+ msgid "Header Background"
5473
+ msgstr ""
5474
+
5475
+ #: includes/widgets/htmega_booked_calender.php:209
5476
+ #: includes/widgets/htmega_instragram_feed.php:146
5477
+ #: includes/widgets/htmega_user_login_form.php:692
5478
+ msgid "Header Color"
5479
+ msgstr ""
5480
+
5481
+ #: includes/widgets/htmega_modal.php:42
5482
+ #: includes/widgets/htmega_user_login_form.php:721
5483
+ msgid "Header Content"
5484
+ msgstr ""
5485
+
5486
+ #: extensions/ht-builder/classes/class.header_footer.php:89
5487
+ msgid "Header Template"
5488
+ msgstr ""
5489
+
5490
+ #: extensions/ht-builder/admin/setting.php:82
5491
+ msgid "Header Template."
5492
+ msgstr ""
5493
+
5494
+ #: includes/widgets/htmega_booked_calender.php:475
5495
+ msgid "Heading"
5496
+ msgstr ""
5497
+
5498
+ #: includes/widgets/htmega_animated_heading.php:128
5499
+ msgid "Heading After Text"
5500
+ msgstr ""
5501
+
5502
+ #: includes/widgets/htmega_animated_heading.php:91
5503
+ msgid "Heading Before Text"
5504
+ msgstr ""
5505
+
5506
+ #: extensions/wc-sales-notification/admin/setting.php:196
5507
+ msgid "Heading Color"
5508
+ msgstr ""
5509
+
5510
+ #: admin/include/admin-setting.php:1399 admin/include/admin-setting.php:1424
5511
+ msgid "Heading color option"
5512
+ msgstr ""
5513
+
5514
+ #: includes/widgets/htmega_animated_heading.php:138
5515
+ msgid "Heading Placeholder Text"
5516
+ msgstr ""
5517
+
5518
+ #: includes/widgets/htmega_user_login_form.php:669
5519
+ msgid "Heading Title Style"
5520
+ msgstr ""
5521
+
5522
+ #: includes/widgets/htmega_blockquote.php:658
5523
+ #: includes/widgets/htmega_caldera_form.php:239
5524
+ #: includes/widgets/htmega_carousel.php:628
5525
+ #: includes/widgets/htmega_carousel.php:893
5526
+ #: includes/widgets/htmega_carousel.php:1132
5527
+ #: includes/widgets/htmega_carousel.php:1226
5528
+ #: includes/widgets/htmega_contact_form_seven.php:195
5529
+ #: includes/widgets/htmega_contact_form_seven.php:473
5530
+ #: includes/widgets/htmega_contact_form_seven.php:784
5531
+ #: includes/widgets/htmega_gravity_forms.php:448
5532
+ #: includes/widgets/htmega_gravity_forms.php:647
5533
+ #: includes/widgets/htmega_imagemarker.php:830
5534
+ #: includes/widgets/htmega_image_comparison.php:486
5535
+ #: includes/widgets/htmega_instagram.php:1003
5536
+ #: includes/widgets/htmega_instagram.php:1182
5537
+ #: includes/widgets/htmega_mailchimp_wp.php:167
5538
+ #: includes/widgets/htmega_mailchimp_wp.php:308
5539
+ #: includes/widgets/htmega_modal.php:329
5540
+ #: includes/widgets/htmega_ninja_form.php:533
5541
+ #: includes/widgets/htmega_ninja_form.php:755
5542
+ #: includes/widgets/htmega_ninja_form.php:930
5543
+ #: includes/widgets/htmega_notify.php:680
5544
+ #: includes/widgets/htmega_panel_slider.php:900
5545
+ #: includes/widgets/htmega_panel_slider.php:1107
5546
+ #: includes/widgets/htmega_post_slider.php:1613
5547
+ #: includes/widgets/htmega_post_slider.php:1762
5548
+ #: includes/widgets/htmega_pricing_list_view.php:385
5549
+ #: includes/widgets/htmega_pricing_list_view.php:1014
5550
+ #: includes/widgets/htmega_progress_bar.php:428
5551
+ #: includes/widgets/htmega_quforms.php:394
5552
+ #: includes/widgets/htmega_quforms.php:614
5553
+ #: includes/widgets/htmega_quforms.php:790
5554
+ #: includes/widgets/htmega_scroll_navigation.php:213
5555
+ #: includes/widgets/htmega_scroll_navigation.php:429
5556
+ #: includes/widgets/htmega_search.php:309
5557
+ #: includes/widgets/htmega_search.php:528
5558
+ #: includes/widgets/htmega_search.php:759
5559
+ #: includes/widgets/htmega_service.php:593
5560
+ #: includes/widgets/htmega_service.php:841
5561
+ #: includes/widgets/htmega_service.php:904
5562
+ #: includes/widgets/htmega_slider_thumb_gallery.php:894
5563
+ #: includes/widgets/htmega_slider_thumb_gallery.php:1111
5564
+ #: includes/widgets/htmega_twitter_feed.php:1146
5565
+ #: includes/widgets/htmega_twitter_feed.php:1343
5566
+ #: includes/widgets/htmega_user_login_form.php:899
5567
+ #: includes/widgets/htmega_user_login_form.php:1054
5568
+ #: includes/widgets/htmega_user_login_form.php:1145
5569
+ #: includes/widgets/htmega_working_process.php:904
5570
+ #: includes/widgets/htmega_working_process.php:1032
5571
+ #: includes/widgets/htmega_wpforms.php:536
5572
+ #: includes/widgets/htmega_wpforms.php:758
5573
+ #: includes/widgets/htmega_wpforms.php:933
5574
+ msgid "Height"
5575
+ msgstr ""
5576
+
5577
+ #: includes/widgets/htmega_teammember.php:1070
5578
+ msgid "Height and Width"
5579
+ msgstr ""
5580
+
5581
+ #: includes/widgets/htmega_notify.php:493
5582
+ msgid "Hello Typography"
5583
+ msgstr ""
5584
+
5585
+ #: includes/widgets/htmega_user_login_form.php:92
5586
+ #: includes/widgets/htmega_user_login_form.php:93
5587
+ msgid "Hello!"
5588
+ msgstr ""
5589
+
5590
+ #: includes/widgets/htmega_imagemarker.php:138
5591
+ #: includes/widgets/htmega_imagemarker.php:161
5592
+ msgid "Hidden Field"
5593
+ msgstr ""
5594
+
5595
+ #: includes/widgets/htmega_buddy_press.php:116
5596
+ #: includes/widgets/htmega_buddy_press.php:129
5597
+ #: includes/widgets/htmega_buddy_press.php:144
5598
+ #: includes/widgets/htmega_buddy_press.php:159
5599
+ #: includes/widgets/htmega_data_table.php:61
5600
+ #: includes/widgets/htmega_data_table.php:85
5601
+ #: includes/widgets/htmega_data_table.php:109
5602
+ #: includes/widgets/htmega_data_table.php:137
5603
+ #: includes/widgets/htmega_data_table.php:166
5604
+ #: includes/widgets/htmega_data_table.php:179
5605
+ #: includes/widgets/htmega_data_table.php:191
5606
+ #: includes/widgets/htmega_double_button.php:81
5607
+ #: includes/widgets/htmega_gravity_forms.php:80
5608
+ #: includes/widgets/htmega_gravity_forms.php:92
5609
+ #: includes/widgets/htmega_instagram.php:178
5610
+ #: includes/widgets/htmega_instagram.php:190
5611
+ #: includes/widgets/htmega_instagram.php:280
5612
+ #: includes/widgets/htmega_popover.php:130
5613
+ #: includes/widgets/htmega_popover.php:207
5614
+ #: includes/widgets/htmega_scroll_image.php:123
5615
+ #: includes/widgets/htmega_socialshere.php:359
5616
+ #: includes/widgets/htmega_tooltip.php:130
5617
+ #: includes/widgets/htmega_twitter_feed.php:147
5618
+ #: includes/widgets/htmega_twitter_feed.php:159
5619
+ #: includes/widgets/htmega_twitter_feed.php:171
5620
+ #: includes/widgets/htmega_twitter_feed.php:183
5621
+ #: includes/widgets/htmega_twitter_feed.php:195
5622
+ #: includes/widgets/htmega_twitter_feed.php:209
5623
+ #: includes/widgets/htmega_user_login_form.php:80
5624
+ #: includes/widgets/htmega_user_login_form.php:186
5625
+ #: includes/widgets/htmega_user_login_form.php:197
5626
+ #: includes/widgets/htmega_user_login_form.php:288
5627
+ #: includes/widgets/htmega_user_login_form.php:315
5628
+ #: includes/widgets/htmega_user_login_form.php:327
5629
+ #: includes/widgets/htmega_wc_add_to_cart.php:75
5630
+ #: includes/widgets/htmega_wpforms.php:78
5631
+ #: includes/widgets/htmega_wpforms.php:90
5632
+ #: extensions/ht-builder/widgets/bl_post_archive.php:102
5633
+ #: extensions/ht-builder/widgets/bl_post_archive.php:114
5634
+ #: extensions/ht-builder/widgets/bl_post_archive.php:126
5635
+ #: extensions/ht-builder/widgets/bl_post_archive.php:138
5636
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:48
5637
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:73
5638
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:85
5639
+ msgid "Hide"
5640
+ msgstr ""
5641
+
5642
+ #: includes/widgets/htmega_search.php:130
5643
+ msgid "Hide Close Icon"
5644
+ msgstr ""
5645
+
5646
+ #: includes/widgets/htmega_weather.php:115
5647
+ msgid "Hide Current Status"
5648
+ msgstr ""
5649
+
5650
+ #: includes/widgets/htmega_easy_digital_download.php:185
5651
+ #: includes/widgets/htmega_wc_categories.php:153
5652
+ msgid "Hide Empty"
5653
+ msgstr ""
5654
+
5655
+ #: includes/widgets/htmega_weather.php:151
5656
+ msgid "Hide Forecast"
5657
+ msgstr ""
5658
+
5659
+ #: includes/widgets/htmega_countdown.php:180
5660
+ msgid "Hide Label"
5661
+ msgstr ""
5662
+
5663
+ #: includes/widgets/htmega_slider_thumb_gallery.php:615
5664
+ msgid "Hide on Mobile"
5665
+ msgstr ""
5666
+
5667
+ #: extensions/ht-builder/widgets/bl_post_archive.php:231
5668
+ msgid "Hide Pagination"
5669
+ msgstr ""
5670
+
5671
+ #: includes/widgets/htmega_weather.php:139
5672
+ msgid "Hide Sun Status"
5673
+ msgstr ""
5674
+
5675
+ #: includes/widgets/htmega_section_title.php:537
5676
+ msgid "Highlight Title Color"
5677
+ msgstr ""
5678
+
5679
+ #: includes/widgets/htmega_business_hours.php:101
5680
+ msgid "Hight Light this day"
5681
+ msgstr ""
5682
+
5683
+ #: includes/widgets/htmega_animated_heading.php:93
5684
+ msgid "Honesty is the best policy"
5685
+ msgstr ""
5686
+
5687
+ #: includes/widgets/htmega_progress_bar.php:61
5688
+ #: includes/widgets/htmega_scroll_navigation.php:142
5689
+ #: includes/widgets/htmega_scroll_navigation.php:164
5690
+ #: includes/widgets/htmega_scroll_navigation.php:194
5691
+ msgid "Horizontal"
5692
+ msgstr ""
5693
+
5694
+ #: includes/widgets/htmega_carousel.php:722
5695
+ #: includes/widgets/htmega_carousel.php:947
5696
+ #: includes/widgets/htmega_carousel.php:1159
5697
+ #: includes/widgets/htmega_carousel.php:1253
5698
+ #: includes/widgets/htmega_panel_slider.php:966
5699
+ #: includes/widgets/htmega_slider_thumb_gallery.php:947
5700
+ #: includes/widgets/htmega_twitter_feed.php:1204
5701
+ msgid "Horizontal Position"
5702
+ msgstr ""
5703
+
5704
+ #: includes/widgets/htmega_special_day_banner.php:190
5705
+ msgid "Horizontal Postion"
5706
+ msgstr ""
5707
+
5708
+ #: includes/widgets/htmega_instagram.php:112
5709
+ msgid "Hour"
5710
+ msgstr ""
5711
+
5712
+ #: includes/widgets/htmega_countdown.php:142
5713
+ #: includes/widgets/htmega_countdown.php:216
5714
+ #: includes/widgets/htmega_countdown.php:218
5715
+ msgid "Hours"
5716
+ msgstr ""
5717
+
5718
+ #: includes/widgets/htmega_add_banner.php:198
5719
+ #: includes/widgets/htmega_add_banner.php:298
5720
+ #: includes/widgets/htmega_add_banner.php:707
5721
+ #: includes/widgets/htmega_booked_calender.php:657
5722
+ #: includes/widgets/htmega_booked_calender.php:818
5723
+ #: includes/widgets/htmega_brand.php:231
5724
+ #: includes/widgets/htmega_buddy_press.php:359
5725
+ #: includes/widgets/htmega_button.php:333
5726
+ #: includes/widgets/htmega_button.php:610
5727
+ #: includes/widgets/htmega_caldera_form.php:556
5728
+ #: includes/widgets/htmega_call_to_action.php:816
5729
+ #: includes/widgets/htmega_call_to_action.php:1022
5730
+ #: includes/widgets/htmega_carousel.php:753
5731
+ #: includes/widgets/htmega_contact_form_seven.php:916
5732
+ #: includes/widgets/htmega_countdown.php:1123
5733
+ #: includes/widgets/htmega_custom_event.php:191
5734
+ #: includes/widgets/htmega_custom_event.php:441
5735
+ #: includes/widgets/htmega_double_button.php:430
5736
+ #: includes/widgets/htmega_double_button.php:571
5737
+ #: includes/widgets/htmega_double_button.php:744
5738
+ #: includes/widgets/htmega_download_monitor.php:322
5739
+ #: includes/widgets/htmega_easy_digital_download.php:395
5740
+ #: includes/widgets/htmega_easy_digital_download.php:612
5741
+ #: includes/widgets/htmega_errorcontent.php:637
5742
+ #: includes/widgets/htmega_errorcontent.php:788
5743
+ #: includes/widgets/htmega_gravity_forms.php:798
5744
+ #: includes/widgets/htmega_image_grid.php:543
5745
+ #: includes/widgets/htmega_image_masonry.php:530
5746
+ #: includes/widgets/htmega_inlinemenu.php:244
5747
+ #: includes/widgets/htmega_instagram.php:1073
5748
+ #: includes/widgets/htmega_mailchimp_wp.php:453
5749
+ #: includes/widgets/htmega_modal.php:434
5750
+ #: includes/widgets/htmega_newsticker.php:861
5751
+ #: includes/widgets/htmega_ninja_form.php:1057
5752
+ #: includes/widgets/htmega_notify.php:418
5753
+ #: includes/widgets/htmega_offcanvas.php:486
5754
+ #: includes/widgets/htmega_panel_slider.php:1021
5755
+ #: includes/widgets/htmega_popover.php:453
5756
+ #: includes/widgets/htmega_post_grid_tab.php:688
5757
+ #: includes/widgets/htmega_post_grid_tab.php:928
5758
+ #: includes/widgets/htmega_post_grid_tab.php:1051
5759
+ #: includes/widgets/htmega_post_slider.php:1122
5760
+ #: includes/widgets/htmega_post_slider.php:1355
5761
+ #: includes/widgets/htmega_post_slider.php:1683
5762
+ #: includes/widgets/htmega_quforms.php:918
5763
+ #: includes/widgets/htmega_search.php:604
5764
+ #: includes/widgets/htmega_search.php:936
5765
+ #: includes/widgets/htmega_service.php:271
5766
+ #: includes/widgets/htmega_service.php:748
5767
+ #: includes/widgets/htmega_service.php:1108
5768
+ #: includes/widgets/htmega_singlepost.php:442
5769
+ #: includes/widgets/htmega_slider_thumb_gallery.php:989
5770
+ #: includes/widgets/htmega_socialshere.php:714
5771
+ #: includes/widgets/htmega_special_day_banner.php:730
5772
+ #: includes/widgets/htmega_testimonial_grid.php:336
5773
+ #: includes/widgets/htmega_toggle.php:343
5774
+ #: includes/widgets/htmega_tooltip.php:430
5775
+ #: includes/widgets/htmega_twitter_feed.php:871
5776
+ #: includes/widgets/htmega_twitter_feed.php:1028
5777
+ #: includes/widgets/htmega_twitter_feed.php:1233
5778
+ #: includes/widgets/htmega_user_login_form.php:1224
5779
+ #: includes/widgets/htmega_user_login_form.php:1408
5780
+ #: includes/widgets/htmega_verticle_time_line.php:275
5781
+ #: includes/widgets/htmega_videoplayer.php:457
5782
+ #: includes/widgets/htmega_wc_categories.php:238
5783
+ #: includes/widgets/htmega_wc_categories.php:403
5784
+ #: includes/widgets/htmega_wc_categories.php:509
5785
+ #: includes/widgets/htmega_wc_element_pages.php:291
5786
+ #: includes/widgets/htmega_wc_element_pages.php:471
5787
+ #: includes/widgets/htmega_wc_element_pages.php:1022
5788
+ #: includes/widgets/htmega_wc_element_pages.php:1612
5789
+ #: includes/widgets/htmega_wc_element_pages.php:1793
5790
+ #: includes/widgets/htmega_working_process.php:555
5791
+ #: includes/widgets/htmega_working_process.php:1064
5792
+ #: includes/widgets/htmega_wpforms.php:1084
5793
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:226
5794
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:428
5795
+ #: extensions/ht-builder/widgets/bl_post_archive.php:407
5796
+ #: extensions/ht-builder/widgets/bl_post_archive.php:514
5797
+ #: extensions/ht-builder/widgets/bl_post_archive.php:620
5798
+ #: extensions/ht-builder/widgets/bl_post_archive.php:789
5799
+ #: extensions/ht-builder/widgets/bl_post_archive.php:913
5800
+ #: extensions/ht-builder/widgets/bl_post_comments.php:141
5801
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:425
5802
+ #: extensions/ht-builder/widgets/bl_post_search_form.php:268
5803
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:496
5804
+ #: extensions/ht-menu/widgets/verticle-mega-menu.php:442
5805
+ msgid "Hover"
5806
+ msgstr ""
5807
+
5808
+ #: includes/widgets/htmega_button.php:496
5809
+ msgid "Hover Animation"
5810
+ msgstr ""
5811
+
5812
+ #: includes/widgets/htmega_add_banner.php:206
5813
+ #: includes/widgets/htmega_booked_calender.php:331
5814
+ #: includes/widgets/htmega_booked_calender.php:385
5815
+ #: includes/widgets/htmega_socialshere.php:159
5816
+ #: includes/widgets/htmega_tablepress.php:163
5817
+ msgid "Hover Background"
5818
+ msgstr ""
5819
+
5820
+ #: includes/widgets/htmega_teammember.php:407
5821
+ msgid "Hover Background Color"
5822
+ msgstr ""
5823
+
5824
+ #: includes/widgets/htmega_booked_calender.php:342
5825
+ #: includes/widgets/htmega_booked_calender.php:396
5826
+ #: includes/widgets/htmega_easy_digital_download.php:402
5827
+ #: includes/widgets/htmega_panel_slider.php:687
5828
+ #: includes/widgets/htmega_postgrid.php:465
5829
+ #: includes/widgets/htmega_post_grid_tab.php:447
5830
+ #: includes/widgets/htmega_post_slider.php:882
5831
+ #: includes/widgets/htmega_post_slider.php:1186
5832
+ #: includes/widgets/htmega_service.php:376
5833
+ #: includes/widgets/htmega_singlepost.php:162
5834
+ #: includes/widgets/htmega_user_login_form.php:1019
5835
+ #: includes/widgets/htmega_verticle_time_line.php:143
5836
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:497
5837
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:312
5838
+ msgid "Hover Color"
5839
+ msgstr ""
5840
+
5841
+ #: includes/widgets/htmega_socialshere.php:198
5842
+ #: includes/widgets/htmega_socialshere.php:280
5843
+ msgid "Hover color"
5844
+ msgstr ""
5845
+
5846
+ #: includes/widgets/htmega_teammember.php:441
5847
+ msgid "Hover Content background color"
5848
+ msgstr ""
5849
+
5850
+ #: includes/widgets/htmega_teammember.php:423
5851
+ msgid "Hover Round Space"
5852
+ msgstr ""
5853
+
5854
+ #: includes/widgets/htmega_teammember.php:654
5855
+ msgid "Hover Shape Color"
5856
+ msgstr ""
5857
+
5858
+ #: includes/widgets/htmega_socialshere.php:149
5859
+ #: includes/widgets/htmega_socialshere.php:271
5860
+ msgid "Hover Style"
5861
+ msgstr ""
5862
+
5863
+ #: extensions/ht-builder/admin/setting.php:33
5864
+ #: extensions/ht-builder/admin/setting.php:34
5865
+ msgid "HT Builder"
5866
+ msgstr ""
5867
+
5868
+ #: extensions/ht-builder/admin/setting.php:184
5869
+ msgid "HT Builder Settings"
5870
+ msgstr ""
5871
+
5872
+ #: includes/recommended-plugins/recommended-plugins.php:106
5873
+ msgid "HT Contact Form 7"
5874
+ msgstr ""
5875
+
5876
+ #: includes/class.post-duplicator.php:45
5877
+ msgid "HT Duplicate"
5878
+ msgstr ""
5879
+
5880
+ #: includes/recommended-plugins/recommended-plugins.php:101
5881
+ msgid "HT Easy GA4 ( Google Analytics 4 )"
5882
+ msgstr ""
5883
+
5884
+ #: extensions/ht-builder/classes/class.header_footer.php:81
5885
+ msgid "HT Header & Footer"
5886
+ msgstr ""
5887
+
5888
+ #. Name of the plugin
5889
+ msgid "HT Mega - Absolute Addons for Elementor Page Builder"
5890
+ msgstr ""
5891
+
5892
+ #: includes/class.post-duplicator.php:45
5893
+ msgid "HT Mega Duplicator"
5894
+ msgstr ""
5895
+
5896
+ #: admin/include/class.library-source.php:24
5897
+ msgid "HT Mega Library"
5898
+ msgstr ""
5899
+
5900
+ #: extensions/ht-menu/admin/setting.php:31
5901
+ #: extensions/ht-menu/admin/setting.php:32
5902
+ msgid "HT Menu"
5903
+ msgstr ""
5904
+
5905
+ #: extensions/ht-menu/admin/setting.php:46
5906
+ #: extensions/ht-menu/admin/setting.php:136
5907
+ msgid "HT Menu Settings"
5908
+ msgstr ""
5909
+
5910
+ #: includes/recommended-plugins/recommended-plugins.php:111
5911
+ msgid "HT WPForms"
5912
+ msgstr ""
5913
+
5914
+ #: admin/include/admin-setting.php:1297
5915
+ msgid "HTMega"
5916
+ msgstr ""
5917
+
5918
+ #: includes/class.htmega.php:181 includes/class.htmega.php:196
5919
+ #: includes/widgets_control.php:40 admin/include/admin-setting.php:37
5920
+ #: admin/include/admin-setting.php:38
5921
+ msgid "HTMega Addons"
5922
+ msgstr ""
5923
+
5924
+ #: admin/include/admin-setting.php:1261
5925
+ msgid "HTMega Addons Settings"
5926
+ msgstr ""
5927
+
5928
+ #: extensions/ht-builder/classes/class.widgets_control.php:44
5929
+ msgid "HTMega Builder"
5930
+ msgstr ""
5931
+
5932
+ #: admin/include/admin-setting.php:1380
5933
+ msgid "HTMega Free"
5934
+ msgstr ""
5935
+
5936
+ #: admin/include/admin-setting.php:1376
5937
+ msgid "HTMega Free Vs HTMega Pro."
5938
+ msgstr ""
5939
+
5940
+ #: extensions/ht-menu/classes/class.mega-menu.php:73
5941
+ msgid "HTMega Menu"
5942
+ msgstr ""
5943
+
5944
+ #: admin/include/admin-setting.php:1405
5945
+ msgid "HTMega Pro"
5946
+ msgstr ""
5947
+
5948
+ #: includes/widgets/htmega_section_title.php:209
5949
+ #: includes/widgets/htmega_section_title.php:267
5950
+ msgid "HTML Tag"
5951
+ msgstr ""
5952
+
5953
+ #: includes/widgets/htmega_pricing_list_view.php:164
5954
+ msgid "Html Template"
5955
+ msgstr ""
5956
+
5957
+ #: includes/widgets/htmega_scroll_image.php:64
5958
+ msgid "https://example.com/"
5959
+ msgstr ""
5960
+
5961
+ #. Author URI of the plugin
5962
+ msgid "https://hasthemes.com/"
5963
+ msgstr ""
5964
+
5965
+ #. URI of the plugin
5966
+ msgid "https://wphtmega.com/"
5967
+ msgstr ""
5968
+
5969
+ #: includes/widgets/htmega_teammember.php:225
5970
+ #: includes/widgets/htmega_teammember.php:308
5971
+ msgid "https://www.facebook.com/hastech.company/"
5972
+ msgstr ""
5973
+
5974
+ #: includes/widgets/htmega_lightbox.php:101
5975
+ msgid "https://www.google.com/maps/embed?pb"
5976
+ msgstr ""
5977
+
5978
+ #: includes/widgets/htmega_lightbox.php:99
5979
+ msgid ""
5980
+ "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d233668.38703692693!"
5981
+ "2d90.27923991057244!3d23.780573258035957!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!"
5982
+ "4f13.1!3m3!1m2!1s0x3755b8b087026b81%3A0x8fa563bbdd5904c2!2sDhaka!5e0!3m2!"
5983
+ "1sen!2sbd!4v1536834022797"
5984
+ msgstr ""
5985
+
5986
+ #: includes/widgets/htmega_videoplayer.php:62
5987
+ #: includes/widgets/htmega_videoplayer.php:63
5988
+ msgid "https://www.youtube.com/watch?v=CDilI6jcpP4"
5989
+ msgstr ""
5990
+
5991
+ #: includes/widgets/htmega_lightbox.php:81
5992
+ #: includes/widgets/htmega_lightbox.php:83
5993
+ msgid "https://www.youtube.com/watch?v=G_G8SdXktHg"
5994
+ msgstr ""
5995
+
5996
+ #: includes/widgets/htmega_add_banner.php:121
5997
+ #: includes/widgets/htmega_button.php:78
5998
+ #: includes/widgets/htmega_call_to_action.php:147
5999
+ #: includes/widgets/htmega_call_to_action.php:241
6000
+ #: includes/widgets/htmega_custom_event.php:104
6001
+ #: includes/widgets/htmega_double_button.php:110
6002
+ #: includes/widgets/htmega_double_button.php:197
6003
+ #: includes/widgets/htmega_errorcontent.php:169
6004
+ #: includes/widgets/htmega_errorcontent.php:217
6005
+ #: includes/widgets/htmega_image_grid.php:159
6006
+ #: includes/widgets/htmega_image_masonry.php:140
6007
+ #: includes/widgets/htmega_panel_slider.php:119
6008
+ #: includes/widgets/htmega_popover.php:141
6009
+ #: includes/widgets/htmega_pricing_list_view.php:128
6010
+ #: includes/widgets/htmega_pricing_list_view.php:662
6011
+ #: includes/widgets/htmega_section_title.php:198
6012
+ #: includes/widgets/htmega_section_title.php:256
6013
+ #: includes/widgets/htmega_service.php:149
6014
+ #: includes/widgets/htmega_special_day_banner.php:125
6015
+ #: includes/widgets/htmega_tooltip.php:141
6016
+ msgid "https://your-link.com"
6017
+ msgstr ""
6018
+
6019
+ #: includes/widgets/htmega_teammember.php:177
6020
+ msgid "I am web developer."
6021
+ msgstr ""
6022
+
6023
+ #: includes/widgets/htmega_blockquote.php:97
6024
+ #: includes/widgets/htmega_blockquote.php:134
6025
+ #: includes/widgets/htmega_button.php:105
6026
+ #: includes/widgets/htmega_call_to_action.php:163
6027
+ #: includes/widgets/htmega_call_to_action.php:257
6028
+ #: includes/widgets/htmega_countdown.php:280
6029
+ #: includes/widgets/htmega_counter.php:103
6030
+ #: includes/widgets/htmega_counter.php:114
6031
+ #: includes/widgets/htmega_data_table.php:326
6032
+ #: includes/widgets/htmega_double_button.php:123
6033
+ #: includes/widgets/htmega_double_button.php:210
6034
+ #: includes/widgets/htmega_download_monitor.php:125
6035
+ #: includes/widgets/htmega_instagram.php:219
6036
+ #: includes/widgets/htmega_instagram.php:760
6037
+ #: includes/widgets/htmega_lightbox.php:119
6038
+ #: includes/widgets/htmega_modal.php:127 includes/widgets/htmega_modal.php:163
6039
+ #: includes/widgets/htmega_notify.php:255
6040
+ #: includes/widgets/htmega_popover.php:53
6041
+ #: includes/widgets/htmega_popover.php:86
6042
+ #: includes/widgets/htmega_pricing_list_view.php:114
6043
+ #: includes/widgets/htmega_pricing_list_view.php:244
6044
+ #: includes/widgets/htmega_pricing_list_view.php:262
6045
+ #: includes/widgets/htmega_pricing_list_view.php:582
6046
+ #: includes/widgets/htmega_pricing_list_view.php:1786
6047
+ #: includes/widgets/htmega_search.php:76 includes/widgets/htmega_search.php:104
6048
+ #: includes/widgets/htmega_section_title.php:102
6049
+ #: includes/widgets/htmega_section_title.php:138
6050
+ #: includes/widgets/htmega_service.php:77
6051
+ #: includes/widgets/htmega_service.php:114
6052
+ #: includes/widgets/htmega_service.php:559
6053
+ #: includes/widgets/htmega_socialshere.php:109
6054
+ #: includes/widgets/htmega_socialshere.php:212
6055
+ #: includes/widgets/htmega_switcher.php:73
6056
+ #: includes/widgets/htmega_switcher.php:164 includes/widgets/htmega_tabs.php:78
6057
+ #: includes/widgets/htmega_teammember.php:232
6058
+ #: includes/widgets/htmega_tooltip.php:53
6059
+ #: includes/widgets/htmega_tooltip.php:86
6060
+ #: includes/widgets/htmega_videoplayer.php:85
6061
+ #: includes/widgets/htmega_working_process.php:113
6062
+ #: includes/widgets/htmega_working_process.php:150
6063
+ #: includes/widgets/htmega_working_process.php:924
6064
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:293
6065
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:449
6066
+ #: extensions/ht-builder/widgets/bl_post_search_form.php:62
6067
+ #: extensions/ht-builder/widgets/bl_post_search_form.php:74
6068
+ #: extensions/ht-menu/menu/templates.php:47
6069
+ #: extensions/ht-menu/menu/templates.php:106
6070
+ msgid "Icon"
6071
+ msgstr ""
6072
+
6073
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:491
6074
+ msgid "Icon Align"
6075
+ msgstr ""
6076
+
6077
+ #: includes/widgets/htmega_button.php:545
6078
+ #: includes/widgets/htmega_button.php:629
6079
+ #: includes/widgets/htmega_teammember.php:256
6080
+ msgid "Icon Background"
6081
+ msgstr ""
6082
+
6083
+ #: admin/include/admin-setting.php:708
6084
+ msgid "Icon Box <span>( Pro )</span>"
6085
+ msgstr ""
6086
+
6087
+ #: includes/widgets/htmega_accordion.php:1197
6088
+ msgid "Icon Box Height"
6089
+ msgstr ""
6090
+
6091
+ #: includes/widgets/htmega_newsticker.php:784
6092
+ msgid "Icon Box Height/Width"
6093
+ msgstr ""
6094
+
6095
+ #: includes/widgets/htmega_accordion.php:1180
6096
+ msgid "Icon Box Width"
6097
+ msgstr ""
6098
+
6099
+ #: includes/widgets/htmega_booked_calender.php:530
6100
+ #: includes/widgets/htmega_notify.php:657
6101
+ #: includes/widgets/htmega_post_grid_tab.php:756
6102
+ #: includes/widgets/htmega_post_slider.php:1176
6103
+ #: includes/widgets/htmega_pricing_list_view.php:314
6104
+ #: includes/widgets/htmega_pricing_list_view.php:906
6105
+ #: includes/widgets/htmega_search.php:270
6106
+ #: includes/widgets/htmega_singlepost.php:361
6107
+ #: includes/widgets/htmega_tabs.php:177 includes/widgets/htmega_tabs.php:687
6108
+ #: includes/widgets/htmega_tabs.php:802
6109
+ #: includes/widgets/htmega_teammember.php:244
6110
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:480
6111
+ msgid "Icon Color"
6112
+ msgstr ""
6113
+
6114
+ #: includes/widgets/htmega_lightbox.php:408
6115
+ msgid "Icon Dimensions"
6116
+ msgstr ""
6117
+
6118
+ #: includes/widgets/htmega_search.php:881
6119
+ #: includes/widgets/htmega_socialshere.php:480
6120
+ #: includes/widgets/htmega_toggle.php:252
6121
+ msgid "Icon Font Size"
6122
+ msgstr ""
6123
+
6124
+ #: includes/widgets/htmega_instagram.php:1439
6125
+ #: includes/widgets/htmega_socialshere.php:509
6126
+ #: includes/widgets/htmega_tabs.php:772
6127
+ msgid "Icon Height"
6128
+ msgstr ""
6129
+
6130
+ #: includes/widgets/htmega_teammember.php:279
6131
+ msgid "Icon Hover Background"
6132
+ msgstr ""
6133
+
6134
+ #: includes/widgets/htmega_teammember.php:290
6135
+ msgid "Icon Hover border color"
6136
+ msgstr ""
6137
+
6138
+ #: includes/widgets/htmega_teammember.php:267
6139
+ msgid "Icon Hover Color"
6140
+ msgstr ""
6141
+
6142
+ #: includes/widgets/htmega_videoplayer.php:97
6143
+ msgid "Icon Image"
6144
+ msgstr ""
6145
+
6146
+ #: includes/widgets/htmega_button.php:114
6147
+ #: includes/widgets/htmega_call_to_action.php:196
6148
+ #: includes/widgets/htmega_call_to_action.php:290
6149
+ #: includes/widgets/htmega_double_button.php:153
6150
+ #: includes/widgets/htmega_double_button.php:240
6151
+ #: includes/widgets/htmega_modal.php:174
6152
+ #: includes/widgets/htmega_offcanvas.php:199
6153
+ #: includes/widgets/htmega_pricing_list_view.php:1185
6154
+ msgid "Icon Position"
6155
+ msgstr ""
6156
+
6157
+ #: includes/widgets/htmega_socialshere.php:464
6158
+ msgid "Icon Settings"
6159
+ msgstr ""
6160
+
6161
+ #: includes/widgets/htmega_data_table.php:363
6162
+ msgid "Icon SIze"
6163
+ msgstr ""
6164
+
6165
+ #: includes/widgets/htmega_accordion.php:1087
6166
+ #: includes/widgets/htmega_call_to_action.php:785
6167
+ #: includes/widgets/htmega_call_to_action.php:991
6168
+ #: includes/widgets/htmega_instagram.php:1377
6169
+ #: includes/widgets/htmega_modal.php:377
6170
+ #: includes/widgets/htmega_newsticker.php:612
6171
+ #: includes/widgets/htmega_newsticker.php:764
6172
+ #: includes/widgets/htmega_notify.php:646
6173
+ #: includes/widgets/htmega_popover.php:362
6174
+ #: includes/widgets/htmega_pricing_list_view.php:751
6175
+ #: includes/widgets/htmega_service.php:624
6176
+ #: includes/widgets/htmega_switcher.php:82
6177
+ #: includes/widgets/htmega_switcher.php:173
6178
+ #: includes/widgets/htmega_tabs.php:700 includes/widgets/htmega_tooltip.php:339
6179
+ msgid "Icon Size"
6180
+ msgstr ""
6181
+
6182
+ #: includes/widgets/htmega_modal.php:409
6183
+ msgid "Icon Space"
6184
+ msgstr ""
6185
+
6186
+ #: includes/widgets/htmega_button.php:132
6187
+ #: includes/widgets/htmega_call_to_action.php:174
6188
+ #: includes/widgets/htmega_call_to_action.php:268
6189
+ #: includes/widgets/htmega_double_button.php:131
6190
+ #: includes/widgets/htmega_double_button.php:218
6191
+ #: includes/widgets/htmega_offcanvas.php:223
6192
+ msgid "Icon Spacing"
6193
+ msgstr ""
6194
+
6195
+ #: includes/widgets/htmega_button.php:511
6196
+ #: includes/widgets/htmega_newsticker.php:600
6197
+ msgid "Icon Style"
6198
+ msgstr ""
6199
+
6200
+ #: includes/widgets/htmega_counter.php:90 includes/widgets/htmega_modal.php:119
6201
+ #: includes/widgets/htmega_section_title.php:94
6202
+ #: includes/widgets/htmega_working_process.php:105
6203
+ msgid "Icon Type"
6204
+ msgstr ""
6205
+
6206
+ #: includes/widgets/htmega_instagram.php:1420
6207
+ #: includes/widgets/htmega_socialshere.php:557
6208
+ #: includes/widgets/htmega_tabs.php:751
6209
+ msgid "Icon Width"
6210
+ msgstr ""
6211
+
6212
+ #: includes/widgets/htmega_counter.php:814
6213
+ msgid "Icon/Image"
6214
+ msgstr ""
6215
+
6216
+ #: includes/widgets/htmega_pricing_list_view.php:629
6217
+ msgid "Icons"
6218
+ msgstr ""
6219
+
6220
+ #: includes/widgets/htmega_bbpress.php:73
6221
+ #: includes/widgets/htmega_newsticker.php:257
6222
+ #: includes/widgets/htmega_postgrid.php:148
6223
+ #: includes/widgets/htmega_post_grid_tab.php:155
6224
+ #: includes/widgets/htmega_post_slider.php:159
6225
+ #: extensions/ht-builder/widgets/bl_post_archive.php:199
6226
+ msgid "ID"
6227
+ msgstr ""
6228
+
6229
+ #: includes/widgets/htmega_newsticker.php:821
6230
+ #: includes/widgets/htmega_panel_slider.php:882
6231
+ msgid "If need to different from prev button"
6232
+ msgstr ""
6233
+
6234
+ #: admin/include/class.diagnostic-data.php:458
6235
+ #, php-format
6236
+ msgid ""
6237
+ "If you want to help us improve the %4$s%1$s%5$s plugin even more, please "
6238
+ "allow us to collect non-sensitive diagnostic data and usages information. "
6239
+ "Over %2$shere%3$s, you can see what kind of data we collect."
6240
+ msgstr ""
6241
+
6242
+ #: admin/include/admin-setting.php:1325
6243
+ msgid ""
6244
+ "If you’re loving how our product has helped your business, please let the "
6245
+ "WordPress community know by"
6246
+ msgstr ""
6247
+
6248
+ #: includes/widgets/htmega_accordion.php:164
6249
+ #: includes/widgets/htmega_accordion.php:207
6250
+ #: includes/widgets/htmega_add_banner.php:72
6251
+ #: includes/widgets/htmega_blockquote.php:93
6252
+ #: includes/widgets/htmega_blockquote.php:108
6253
+ #: includes/widgets/htmega_carousel.php:79
6254
+ #: includes/widgets/htmega_counter.php:99
6255
+ #: includes/widgets/htmega_counter.php:125
6256
+ #: includes/widgets/htmega_custom_event.php:51
6257
+ #: includes/widgets/htmega_data_table.php:327
6258
+ #: includes/widgets/htmega_errorcontent.php:65
6259
+ #: includes/widgets/htmega_image_grid.php:131
6260
+ #: includes/widgets/htmega_image_masonry.php:112
6261
+ #: includes/widgets/htmega_instagram.php:215
6262
+ #: includes/widgets/htmega_instagram.php:233
6263
+ #: includes/widgets/htmega_lightbox.php:53
6264
+ #: includes/widgets/htmega_lightbox.php:63
6265
+ #: includes/widgets/htmega_lightbox.php:117
6266
+ #: includes/widgets/htmega_modal.php:123 includes/widgets/htmega_modal.php:137
6267
+ #: includes/widgets/htmega_panel_slider.php:95
6268
+ #: includes/widgets/htmega_popover.php:61
6269
+ #: includes/widgets/htmega_popover.php:101
6270
+ #: includes/widgets/htmega_pricing_list_view.php:248
6271
+ #: includes/widgets/htmega_pricing_list_view.php:275
6272
+ #: includes/widgets/htmega_section_title.php:98
6273
+ #: includes/widgets/htmega_section_title.php:112
6274
+ #: includes/widgets/htmega_service.php:73
6275
+ #: includes/widgets/htmega_service.php:88
6276
+ #: includes/widgets/htmega_service.php:876
6277
+ #: includes/widgets/htmega_slider_thumb_gallery.php:82
6278
+ #: includes/widgets/htmega_special_day_banner.php:58
6279
+ #: includes/widgets/htmega_testimonial_grid.php:195
6280
+ #: includes/widgets/htmega_testimonial_grid.php:388
6281
+ #: includes/widgets/htmega_tooltip.php:61
6282
+ #: includes/widgets/htmega_tooltip.php:101
6283
+ #: includes/widgets/htmega_videoplayer.php:86
6284
+ #: includes/widgets/htmega_wc_categories.php:458
6285
+ #: includes/widgets/htmega_working_process.php:109
6286
+ #: includes/widgets/htmega_working_process.php:124
6287
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:139
6288
+ msgid "Image"
6289
+ msgstr ""
6290
+
6291
+ #: includes/widgets/htmega_image_comparison.php:532
6292
+ msgid "Image After"
6293
+ msgstr ""
6294
+
6295
+ #: includes/widgets/htmega_image_comparison.php:512
6296
+ msgid "Image Before"
6297
+ msgstr ""
6298
+
6299
+ #: includes/widgets/htmega_postgrid.php:236
6300
+ #: includes/widgets/htmega_post_grid_tab.php:324
6301
+ msgid "Image Border Radius"
6302
+ msgstr ""
6303
+
6304
+ #: includes/widgets/htmega_panel_slider.php:650
6305
+ msgid "Image Box Padding"
6306
+ msgstr ""
6307
+
6308
+ #: admin/include/admin-setting.php:263
6309
+ #: includes/widgets/htmega_image_comparison.php:13
6310
+ #: includes/widgets/htmega_image_comparison.php:43
6311
+ msgid "Image Comparison"
6312
+ msgstr ""
6313
+
6314
+ #: admin/include/admin-setting.php:271
6315
+ #: includes/widgets/htmega_image_grid.php:13
6316
+ #: includes/widgets/htmega_image_grid.php:43
6317
+ msgid "Image Grid"
6318
+ msgstr ""
6319
+
6320
+ #: includes/widgets/htmega_image_grid.php:178
6321
+ msgid "Image Grid Description"
6322
+ msgstr ""
6323
+
6324
+ #: includes/widgets/htmega_image_grid.php:124
6325
+ msgid "Image Grid Description."
6326
+ msgstr ""
6327
+
6328
+ #: includes/widgets/htmega_carousel.php:101
6329
+ #: includes/widgets/htmega_image_grid.php:177
6330
+ msgid "Image Grid Title"
6331
+ msgstr ""
6332
+
6333
+ #: includes/widgets/htmega_carousel.php:72
6334
+ #: includes/widgets/htmega_image_grid.php:115
6335
+ msgid "Image Grid Title."
6336
+ msgstr ""
6337
+
6338
+ #: includes/widgets/htmega_data_table.php:443
6339
+ msgid "Image Height"
6340
+ msgstr ""
6341
+
6342
+ #: includes/widgets/htmega_teammember.php:100
6343
+ msgid "Image Hover Animate"
6344
+ msgstr ""
6345
+
6346
+ #: extensions/wc-sales-notification/admin/setting.php:94
6347
+ msgid "Image Left"
6348
+ msgstr ""
6349
+
6350
+ #: includes/widgets/htmega_instagram.php:87
6351
+ msgid "Image link in new tab"
6352
+ msgstr ""
6353
+
6354
+ #: admin/include/admin-setting.php:279
6355
+ #: includes/widgets/htmega_image_magnifier.php:13
6356
+ msgid "Image Magnifier"
6357
+ msgstr ""
6358
+
6359
+ #: admin/include/admin-setting.php:287
6360
+ #: includes/widgets/htmega_imagemarker.php:13
6361
+ msgid "Image Marker"
6362
+ msgstr ""
6363
+
6364
+ #: admin/include/admin-setting.php:295
6365
+ #: includes/widgets/htmega_image_masonry.php:13
6366
+ #: includes/widgets/htmega_image_masonry.php:52
6367
+ msgid "Image Masonry"
6368
+ msgstr ""
6369
+
6370
+ #: includes/widgets/htmega_image_masonry.php:159
6371
+ msgid "Image Masonry Description"
6372
+ msgstr ""
6373
+
6374
+ #: includes/widgets/htmega_image_masonry.php:105
6375
+ msgid "Image Masonry Description."
6376
+ msgstr ""
6377
+
6378
+ #: includes/widgets/htmega_image_masonry.php:158
6379
+ msgid "Image Masonry Title"
6380
+ msgstr ""
6381
+
6382
+ #: includes/widgets/htmega_image_masonry.php:96
6383
+ msgid "Image Masonry Title."
6384
+ msgstr ""
6385
+
6386
+ #: includes/widgets/htmega_panel_slider.php:627
6387
+ #: includes/widgets/htmega_postgrid.php:218
6388
+ #: includes/widgets/htmega_post_slider.php:648
6389
+ msgid "Image Overlay"
6390
+ msgstr ""
6391
+
6392
+ #: includes/widgets/htmega_instragram_feed.php:129
6393
+ msgid "Image Padding"
6394
+ msgstr ""
6395
+
6396
+ #: includes/widgets/htmega_section_title.php:153
6397
+ #: extensions/wc-sales-notification/admin/setting.php:89
6398
+ msgid "Image Position"
6399
+ msgstr ""
6400
+
6401
+ #: includes/widgets/htmega_buddy_press.php:95
6402
+ #: includes/widgets/htmega_instragram_feed.php:67
6403
+ msgid "Image Size"
6404
+ msgstr ""
6405
+
6406
+ #: includes/widgets/htmega_modal.php:291
6407
+ msgid "Image space"
6408
+ msgstr ""
6409
+
6410
+ #: includes/widgets/htmega_data_table.php:420
6411
+ #: includes/widgets/htmega_twitter_feed.php:807
6412
+ msgid "Image Width"
6413
+ msgstr ""
6414
+
6415
+ #: includes/widgets/htmega_pricing_list_view.php:500
6416
+ msgid "Image/Icon Position"
6417
+ msgstr ""
6418
+
6419
+ #: includes/class.assests.php:385
6420
+ msgid "Import"
6421
+ msgstr ""
6422
+
6423
+ #: admin/include/templates_list.php:13
6424
+ msgid "Import template to your Library"
6425
+ msgstr ""
6426
+
6427
+ #: includes/class.assests.php:383
6428
+ msgid "Import to Library"
6429
+ msgstr ""
6430
+
6431
+ #: includes/class.assests.php:384
6432
+ msgid "Import to Page"
6433
+ msgstr ""
6434
+
6435
+ #: includes/class.assests.php:378
6436
+ msgid "in this package"
6437
+ msgstr ""
6438
+
6439
+ #: admin/include/admin-setting.php:1396 admin/include/admin-setting.php:1421
6440
+ msgid "Incoming animation option"
6441
+ msgstr ""
6442
+
6443
+ #: admin/include/custom-control/preset-manage.php:19
6444
+ msgid "Incomplete preset request"
6445
+ msgstr ""
6446
+
6447
+ #: includes/widgets/htmega_instagram.php:1541
6448
+ msgid "Incorrect access token specified."
6449
+ msgstr ""
6450
+
6451
+ #: includes/widgets/htmega_progress_bar.php:602
6452
+ msgid "Indicator Background"
6453
+ msgstr ""
6454
+
6455
+ #: includes/widgets/htmega_progress_bar.php:626
6456
+ msgid "Indicator Border Radius"
6457
+ msgstr ""
6458
+
6459
+ #: includes/widgets/htmega_imagemarker.php:436
6460
+ #: includes/widgets/htmega_progress_bar.php:183
6461
+ msgid "Indicator color"
6462
+ msgstr ""
6463
+
6464
+ #: includes/widgets/htmega_imagemarker.php:569
6465
+ msgid "Indicator Height"
6466
+ msgstr ""
6467
+
6468
+ #: includes/widgets/htmega_imagemarker.php:596
6469
+ msgid "Indicator Line Height"
6470
+ msgstr ""
6471
+
6472
+ #: includes/widgets/htmega_imagemarker.php:361
6473
+ msgid "Indicator Position(X)"
6474
+ msgstr ""
6475
+
6476
+ #: includes/widgets/htmega_imagemarker.php:388
6477
+ msgid "Indicator Position(Y)"
6478
+ msgstr ""
6479
+
6480
+ #: includes/widgets/htmega_imagemarker.php:414
6481
+ msgid "Indicator Rotated"
6482
+ msgstr ""
6483
+
6484
+ #: includes/widgets/htmega_progress_bar.php:571
6485
+ msgid "Indicator Size"
6486
+ msgstr ""
6487
+
6488
+ #: includes/widgets/htmega_imagemarker.php:542
6489
+ msgid "Indicator Width"
6490
+ msgstr ""
6491
+
6492
+ #: includes/widgets/htmega_notify.php:132
6493
+ msgid "Info"
6494
+ msgstr ""
6495
+
6496
+ #: includes/widgets/htmega_googlemap.php:213
6497
+ msgid "Info Address Span Style"
6498
+ msgstr ""
6499
+
6500
+ #: includes/widgets/htmega_googlemap.php:179
6501
+ msgid "Info Address Style"
6502
+ msgstr ""
6503
+
6504
+ #: admin/include/admin-setting.php:631
6505
+ msgid "Info Box <span>( Pro )</span>"
6506
+ msgstr ""
6507
+
6508
+ #: includes/widgets/htmega_googlemap.php:400
6509
+ msgid "Info Button Close"
6510
+ msgstr ""
6511
+
6512
+ #: includes/widgets/htmega_notify.php:639
6513
+ msgid "Info Icon"
6514
+ msgstr ""
6515
+
6516
+ #: includes/widgets/htmega_googlemap.php:361
6517
+ msgid "Info Pointer"
6518
+ msgstr ""
6519
+
6520
+ #: includes/widgets/htmega_scroll_navigation.php:274
6521
+ msgid "Initial Slide"
6522
+ msgstr ""
6523
+
6524
+ #: includes/widgets/htmega_section_title.php:620
6525
+ #: includes/widgets/htmega_section_title.php:851
6526
+ msgid "Inline block"
6527
+ msgstr ""
6528
+
6529
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:14
6530
+ msgid "Inline Mega Menu"
6531
+ msgstr ""
6532
+
6533
+ #: admin/include/admin-setting.php:303
6534
+ #: includes/widgets/htmega_inlinemenu.php:13
6535
+ #: includes/widgets/htmega_inlinemenu.php:46
6536
+ msgid "Inline Navigation"
6537
+ msgstr ""
6538
+
6539
+ #: includes/widgets/htmega_progress_bar.php:654
6540
+ #: includes/widgets/htmega_progress_bar.php:773
6541
+ msgid "Inner"
6542
+ msgstr ""
6543
+
6544
+ #: includes/widgets/htmega_call_to_action.php:423
6545
+ msgid "Inner Box Style"
6546
+ msgstr ""
6547
+
6548
+ #: includes/widgets/htmega_caldera_form.php:184
6549
+ #: includes/widgets/htmega_contact_form_seven.php:177
6550
+ #: includes/widgets/htmega_gravity_forms.php:387
6551
+ #: includes/widgets/htmega_ninja_form.php:473
6552
+ #: includes/widgets/htmega_quforms.php:310
6553
+ #: includes/widgets/htmega_search.php:212
6554
+ #: includes/widgets/htmega_user_login_form.php:805
6555
+ #: includes/widgets/htmega_wc_element_pages.php:692
6556
+ #: includes/widgets/htmega_wc_element_pages.php:1336
6557
+ #: includes/widgets/htmega_wpforms.php:474
6558
+ msgid "Input"
6559
+ msgstr ""
6560
+
6561
+ #: includes/widgets/htmega_mailchimp_wp.php:159
6562
+ #: extensions/ht-builder/widgets/bl_post_comments.php:40
6563
+ #: extensions/ht-builder/widgets/bl_post_search_form.php:119
6564
+ msgid "Input Box"
6565
+ msgstr ""
6566
+
6567
+ #: includes/widgets/htmega_caldera_form.php:290
6568
+ msgid "Input Space"
6569
+ msgstr ""
6570
+
6571
+ #: admin/include/templates/library/templates.php:64
6572
+ msgid "Insert"
6573
+ msgstr ""
6574
+
6575
+ #: includes/recommended-plugins/recommended-plugins.php:44
6576
+ msgid "Insert Headers and Footers Code"
6577
+ msgstr ""
6578
+
6579
+ #: admin/include/admin-setting.php:311 includes/widgets/htmega_instagram.php:15
6580
+ #: includes/widgets/htmega_instagram.php:44
6581
+ msgid "Instagram"
6582
+ msgstr ""
6583
+
6584
+ #: includes/widgets/htmega_instagram.php:77
6585
+ msgid "Instagram Access Token"
6586
+ msgstr ""
6587
+
6588
+ #: includes/widgets/htmega_instragram_feed.php:13
6589
+ #: includes/widgets/htmega_instragram_feed.php:35
6590
+ msgid "Instagram Feed"
6591
+ msgstr ""
6592
+
6593
+ #: admin/include/template-library.php:288
6594
+ #: admin/include/template-library.php:340
6595
+ #: includes/recommended-plugins/class.recommended-plugins.php:248
6596
+ msgid "Install Now"
6597
+ msgstr ""
6598
+
6599
+ #: includes/class.assests.php:388
6600
+ #: includes/recommended-plugins/class.recommended-plugins.php:124
6601
+ msgid "Installing.."
6602
+ msgstr ""
6603
+
6604
+ #: includes/widgets/htmega_socialshere.php:82
6605
+ msgid "Instapaper"
6606
+ msgstr ""
6607
+
6608
+ #: admin/include/admin-setting.php:1138
6609
+ msgid "Instragram Feed"
6610
+ msgstr ""
6611
+
6612
+ #: admin/include/admin-setting.php:722
6613
+ msgid "Interactive Promo <span>( Pro )</span>"
6614
+ msgstr ""
6615
+
6616
+ #: admin/include/custom-control/preset-manage.php:15
6617
+ msgid "Invalid preset request"
6618
+ msgstr ""
6619
+
6620
+ #: includes/helper-function.php:390
6621
+ msgid "Invalid username or password!"
6622
+ msgstr ""
6623
+
6624
+ #: includes/widgets/htmega_business_hours.php:300
6625
+ #: includes/widgets/htmega_instagram.php:662
6626
+ #: extensions/ht-builder/widgets/bl_post_archive.php:245
6627
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:353
6628
+ msgid "Item"
6629
+ msgstr ""
6630
+
6631
+ #: includes/widgets/htmega_countdown.php:607
6632
+ msgid "Item Alignment"
6633
+ msgstr ""
6634
+
6635
+ #: includes/widgets/htmega_business_hours.php:209
6636
+ msgid "Item Area"
6637
+ msgstr ""
6638
+
6639
+ #: includes/widgets/htmega_easy_digital_download.php:259
6640
+ msgid "Item Background"
6641
+ msgstr ""
6642
+
6643
+ #: includes/widgets/htmega_testimonial_grid.php:253
6644
+ msgid "Item Box Style"
6645
+ msgstr ""
6646
+
6647
+ #: includes/widgets/htmega_accordion.php:300
6648
+ msgid "Item Collapse Icon"
6649
+ msgstr ""
6650
+
6651
+ #: includes/widgets/htmega_postgrid.php:397
6652
+ #: includes/widgets/htmega_post_grid_tab.php:1242
6653
+ msgid "Item Five Gradient"
6654
+ msgstr ""
6655
+
6656
+ #: includes/widgets/htmega_postgrid.php:379
6657
+ #: includes/widgets/htmega_post_grid_tab.php:1224
6658
+ msgid "Item Four Gradient"
6659
+ msgstr ""
6660
+
6661
+ #: includes/widgets/htmega_easy_digital_download.php:233
6662
+ msgid "Item Gap"
6663
+ msgstr ""
6664
+
6665
+ #: includes/widgets/htmega_progress_bar.php:543
6666
+ msgid "Item Inner Padding"
6667
+ msgstr ""
6668
+
6669
+ #: includes/widgets/htmega_instagram.php:130
6670
+ msgid "Item Limit"
6671
+ msgstr ""
6672
+
6673
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:384
6674
+ msgid "Item Link"
6675
+ msgstr ""
6676
+
6677
+ #: includes/widgets/htmega_working_process.php:463
6678
+ msgid "Item Number Shape"
6679
+ msgstr ""
6680
+
6681
+ #: includes/widgets/htmega_postgrid.php:326
6682
+ #: includes/widgets/htmega_post_grid_tab.php:1171
6683
+ msgid "Item One Gradient"
6684
+ msgstr ""
6685
+
6686
+ #: includes/widgets/htmega_instagram.php:725
6687
+ msgid "Item Overlay"
6688
+ msgstr ""
6689
+
6690
+ #: includes/widgets/htmega_progress_bar.php:529
6691
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:280
6692
+ msgid "Item Padding"
6693
+ msgstr ""
6694
+
6695
+ #: includes/widgets/htmega_postgrid.php:433
6696
+ #: includes/widgets/htmega_post_grid_tab.php:1278
6697
+ msgid "Item Seven Gradient"
6698
+ msgstr ""
6699
+
6700
+ #: includes/widgets/htmega_postgrid.php:415
6701
+ #: includes/widgets/htmega_post_grid_tab.php:1260
6702
+ msgid "Item Six Gradient"
6703
+ msgstr ""
6704
+
6705
+ #: includes/widgets/htmega_slider_thumb_gallery.php:1249
6706
+ msgid "Item space"
6707
+ msgstr ""
6708
+
6709
+ #: includes/widgets/htmega_working_process.php:340
6710
+ msgid "Item style"
6711
+ msgstr ""
6712
+
6713
+ #: includes/widgets/htmega_postgrid.php:361
6714
+ #: includes/widgets/htmega_post_grid_tab.php:1206
6715
+ msgid "Item Three Gradient"
6716
+ msgstr ""
6717
+
6718
+ #: includes/widgets/htmega_postgrid.php:343
6719
+ #: includes/widgets/htmega_post_grid_tab.php:1188
6720
+ msgid "Item Two Gradient"
6721
+ msgstr ""
6722
+
6723
+ #: includes/widgets/htmega_working_process.php:357
6724
+ #: includes/widgets/htmega_working_process.php:564
6725
+ msgid "Item Width"
6726
+ msgstr ""
6727
+
6728
+ #: includes/widgets/htmega_working_process.php:451
6729
+ msgid "Items Seperator Style"
6730
+ msgstr ""
6731
+
6732
+ #: includes/widgets/htmega_progress_bar.php:420
6733
+ msgid "Items Style"
6734
+ msgstr ""
6735
+
6736
+ #: includes/widgets/htmega_booked_calender.php:109
6737
+ msgid "January"
6738
+ msgstr ""
6739
+
6740
+ #: includes/widgets/htmega_job_manager.php:56
6741
+ msgid "Job Apply To"
6742
+ msgstr ""
6743
+
6744
+ #: includes/widgets/htmega_job_manager.php:58
6745
+ msgid "Job Dashboard"
6746
+ msgstr ""
6747
+
6748
+ #: includes/widgets/htmega_job_manager.php:54
6749
+ msgid "Job List"
6750
+ msgstr ""
6751
+
6752
+ #: admin/include/admin-setting.php:1148 admin/include/admin-setting.php:1158
6753
+ #: includes/widgets/htmega_job_manager.php:13
6754
+ #: includes/widgets/htmega_job_manager.php:43
6755
+ msgid "Job Manager"
6756
+ msgstr ""
6757
+
6758
+ #: includes/widgets/htmega_job_manager.php:57
6759
+ msgid "Job Post Form"
6760
+ msgstr ""
6761
+
6762
+ #: includes/widgets/htmega_job_manager.php:55
6763
+ msgid "Job Summary"
6764
+ msgstr ""
6765
+
6766
+ #: includes/widgets/htmega_blockquote.php:81
6767
+ #: includes/widgets/htmega_blockquote.php:82
6768
+ msgid "Jon Doy"
6769
+ msgstr ""
6770
+
6771
+ #: includes/widgets/htmega_data_table.php:546
6772
+ msgid "jondoy@gmail.com"
6773
+ msgstr ""
6774
+
6775
+ #: includes/widgets/htmega_progress_bar.php:214
6776
+ msgid "Joomla"
6777
+ msgstr ""
6778
+
6779
+ #: includes/widgets/htmega_pricing_list_view.php:158
6780
+ msgid "Joomla Template"
6781
+ msgstr ""
6782
+
6783
+ #: includes/widgets/htmega_booked_calender.php:115
6784
+ msgid "July"
6785
+ msgstr ""
6786
+
6787
+ #: includes/widgets/htmega_booked_calender.php:114
6788
+ msgid "June"
6789
+ msgstr ""
6790
+
6791
+ #: includes/widgets/htmega_add_banner.php:380
6792
+ #: includes/widgets/htmega_blockquote.php:195
6793
+ #: includes/widgets/htmega_buddy_press.php:266
6794
+ #: includes/widgets/htmega_business_hours.php:403
6795
+ #: includes/widgets/htmega_button.php:173
6796
+ #: includes/widgets/htmega_call_to_action.php:342
6797
+ #: includes/widgets/htmega_carousel.php:850
6798
+ #: includes/widgets/htmega_countdown.php:623
6799
+ #: includes/widgets/htmega_countdown.php:655
6800
+ #: includes/widgets/htmega_counter.php:300
6801
+ #: includes/widgets/htmega_counter.php:333
6802
+ #: includes/widgets/htmega_counter.php:439
6803
+ #: includes/widgets/htmega_counter.php:565
6804
+ #: includes/widgets/htmega_data_table.php:722
6805
+ #: includes/widgets/htmega_data_table.php:841
6806
+ #: includes/widgets/htmega_errorcontent.php:261
6807
+ #: includes/widgets/htmega_image_grid.php:303
6808
+ #: includes/widgets/htmega_image_grid.php:400
6809
+ #: includes/widgets/htmega_image_masonry.php:279
6810
+ #: includes/widgets/htmega_image_masonry.php:376
6811
+ #: includes/widgets/htmega_lightbox.php:208
6812
+ #: includes/widgets/htmega_lightbox.php:321
6813
+ #: includes/widgets/htmega_mailchimp_wp.php:141
6814
+ #: includes/widgets/htmega_modal.php:362 includes/widgets/htmega_modal.php:1017
6815
+ #: includes/widgets/htmega_newsticker.php:472
6816
+ #: includes/widgets/htmega_notify.php:294
6817
+ #: includes/widgets/htmega_notify.php:574
6818
+ #: includes/widgets/htmega_notify.php:840
6819
+ #: includes/widgets/htmega_offcanvas.php:387
6820
+ #: includes/widgets/htmega_panel_slider.php:615
6821
+ #: includes/widgets/htmega_popover.php:277
6822
+ #: includes/widgets/htmega_popover.php:673
6823
+ #: includes/widgets/htmega_popover.php:777
6824
+ #: includes/widgets/htmega_postgrid.php:529
6825
+ #: includes/widgets/htmega_postgrid.php:642
6826
+ #: includes/widgets/htmega_post_grid_tab.php:507
6827
+ #: includes/widgets/htmega_post_grid_tab.php:594
6828
+ #: includes/widgets/htmega_post_slider.php:942
6829
+ #: includes/widgets/htmega_post_slider.php:1029
6830
+ #: includes/widgets/htmega_pricing_list_view.php:485
6831
+ #: includes/widgets/htmega_pricing_list_view.php:1140
6832
+ #: includes/widgets/htmega_search.php:168
6833
+ #: includes/widgets/htmega_service.php:253
6834
+ #: includes/widgets/htmega_service.php:437
6835
+ #: includes/widgets/htmega_service.php:542
6836
+ #: includes/widgets/htmega_service.php:731
6837
+ #: includes/widgets/htmega_service.php:993
6838
+ #: includes/widgets/htmega_singlepost.php:222
6839
+ #: includes/widgets/htmega_singlepost.php:425
6840
+ #: includes/widgets/htmega_special_day_banner.php:277
6841
+ #: includes/widgets/htmega_tablepress.php:225
6842
+ #: includes/widgets/htmega_tablepress.php:382
6843
+ #: includes/widgets/htmega_teammember.php:757
6844
+ #: includes/widgets/htmega_teammember.php:847
6845
+ #: includes/widgets/htmega_teammember.php:938
6846
+ #: includes/widgets/htmega_teammember.php:1005
6847
+ #: includes/widgets/htmega_testimonial_grid.php:565
6848
+ #: includes/widgets/htmega_toggle.php:208
6849
+ #: includes/widgets/htmega_tooltip.php:253
6850
+ #: includes/widgets/htmega_user_login_form.php:583
6851
+ #: extensions/ht-builder/widgets/bl_page_title.php:149
6852
+ #: extensions/ht-builder/widgets/bl_post_archive_title.php:151
6853
+ #: extensions/ht-builder/widgets/bl_post_content.php:84
6854
+ #: extensions/ht-builder/widgets/bl_post_excerpt.php:84
6855
+ #: extensions/ht-builder/widgets/bl_post_title.php:114
6856
+ #: extensions/ht-builder/widgets/bl_site_logo.php:171
6857
+ #: extensions/ht-builder/widgets/bl_site_title.php:151
6858
+ msgid "Justified"
6859
+ msgstr ""
6860
+
6861
+ #: includes/widgets/htmega_user_login_form.php:425
6862
+ msgid "Justify Content"
6863
+ msgstr ""
6864
+
6865
+ #: includes/recommended-plugins/recommended-plugins.php:78
6866
+ msgid "JustTables"
6867
+ msgstr ""
6868
+
6869
+ #: includes/widgets/htmega_countdown.php:912
6870
+ #: includes/widgets/htmega_newsticker.php:489
6871
+ #: includes/widgets/htmega_quforms.php:79
6872
+ #: includes/widgets/htmega_user_login_form.php:183
6873
+ #: includes/widgets/htmega_user_login_form.php:1464
6874
+ #: includes/widgets/htmega_wc_element_pages.php:648
6875
+ #: includes/widgets/htmega_wc_element_pages.php:1303
6876
+ msgid "Label"
6877
+ msgstr ""
6878
+
6879
+ #: includes/widgets/htmega_pricing_list_view.php:790
6880
+ msgid "Label Background"
6881
+ msgstr ""
6882
+
6883
+ #: includes/widgets/htmega_pricing_list_view.php:805
6884
+ msgid "Label Color"
6885
+ msgstr ""
6886
+
6887
+ #: includes/widgets/htmega_newsticker.php:567
6888
+ msgid "Label Height"
6889
+ msgstr ""
6890
+
6891
+ #: includes/widgets/htmega_newsticker.php:84
6892
+ msgid "Label Icon"
6893
+ msgstr ""
6894
+
6895
+ #: includes/widgets/htmega_pricing_list_view.php:853
6896
+ msgid "Label Margin"
6897
+ msgstr ""
6898
+
6899
+ #: includes/widgets/htmega_pricing_list_view.php:837
6900
+ msgid "Label Padding"
6901
+ msgstr ""
6902
+
6903
+ #: includes/widgets/htmega_pricing_list_view.php:766
6904
+ msgid "Label Position"
6905
+ msgstr ""
6906
+
6907
+ #: includes/widgets/htmega_countdown.php:172
6908
+ msgid "Label Setting"
6909
+ msgstr ""
6910
+
6911
+ #: includes/widgets/htmega_pricing_list_view.php:736
6912
+ msgid "Label Typography"
6913
+ msgstr ""
6914
+
6915
+ #: includes/widgets/htmega_caldera_form.php:61
6916
+ #: includes/widgets/htmega_contact_form_seven.php:654
6917
+ #: includes/widgets/htmega_gravity_forms.php:228
6918
+ #: includes/widgets/htmega_ninja_form.php:313
6919
+ #: includes/widgets/htmega_wpforms.php:306
6920
+ msgid "Labels"
6921
+ msgstr ""
6922
+
6923
+ #: includes/widgets/htmega_button.php:95
6924
+ #: includes/widgets/htmega_double_button.php:48
6925
+ msgid "Large"
6926
+ msgstr ""
6927
+
6928
+ #: includes/widgets/htmega_testimonial_grid.php:101
6929
+ msgid "Large Mobile"
6930
+ msgstr ""
6931
+
6932
+ #: includes/widgets/htmega_googlemap.php:133
6933
+ #: includes/widgets/htmega_weather.php:184
6934
+ msgid "Latitude"
6935
+ msgstr ""
6936
+
6937
+ #: includes/widgets/htmega_layer_slider.php:13
6938
+ #: includes/widgets/htmega_layer_slider.php:56
6939
+ msgid "LayerSlider"
6940
+ msgstr ""
6941
+
6942
+ #: includes/widgets/htmega_animated_heading.php:49
6943
+ #: includes/widgets/htmega_bbpress.php:50
6944
+ #: includes/widgets/htmega_business_hours.php:43
6945
+ #: includes/widgets/htmega_data_table.php:44
6946
+ #: includes/widgets/htmega_job_manager.php:50
6947
+ #: includes/widgets/htmega_postgrid.php:43
6948
+ #: includes/widgets/htmega_post_grid_tab.php:50
6949
+ #: includes/widgets/htmega_post_slider.php:51
6950
+ #: includes/widgets/htmega_pricing_list_view.php:43
6951
+ #: includes/widgets/htmega_pricing_list_view.php:50
6952
+ #: includes/widgets/htmega_verticle_time_line.php:43
6953
+ #: extensions/ht-builder/widgets/bl_post_archive.php:43
6954
+ msgid "Layout"
6955
+ msgstr ""
6956
+
6957
+ #: includes/widgets/htmega_business_hours.php:51
6958
+ #: includes/widgets/htmega_postgrid.php:51
6959
+ #: includes/widgets/htmega_post_grid_tab.php:58
6960
+ #: includes/widgets/htmega_post_slider.php:59
6961
+ msgid "Layout Five"
6962
+ msgstr ""
6963
+
6964
+ #: includes/widgets/htmega_business_hours.php:50
6965
+ #: includes/widgets/htmega_postgrid.php:50
6966
+ #: includes/widgets/htmega_post_grid_tab.php:57
6967
+ #: includes/widgets/htmega_post_slider.php:58
6968
+ #: includes/widgets/htmega_verticle_time_line.php:51
6969
+ msgid "Layout Four"
6970
+ msgstr ""
6971
+
6972
+ #: includes/widgets/htmega_pricing_list_view.php:57
6973
+ msgid "Layout Four ( No Border )"
6974
+ msgstr ""
6975
+
6976
+ #: includes/widgets/htmega_business_hours.php:47
6977
+ #: includes/widgets/htmega_data_table.php:48
6978
+ #: includes/widgets/htmega_postgrid.php:47
6979
+ #: includes/widgets/htmega_post_grid_tab.php:54
6980
+ #: includes/widgets/htmega_post_slider.php:55
6981
+ #: includes/widgets/htmega_pricing_list_view.php:54
6982
+ #: includes/widgets/htmega_switcher.php:45
6983
+ #: includes/widgets/htmega_verticle_time_line.php:48
6984
+ #: extensions/ht-builder/widgets/bl_post_archive.php:47
6985
+ msgid "Layout One"
6986
+ msgstr ""
6987
+
6988
+ #: includes/widgets/htmega_post_slider.php:61
6989
+ msgid "Layout Seven"
6990
+ msgstr ""
6991
+
6992
+ #: includes/widgets/htmega_post_slider.php:60
6993
+ msgid "Layout Six"
6994
+ msgstr ""
6995
+
6996
+ #: includes/widgets/htmega_business_hours.php:49
6997
+ #: includes/widgets/htmega_data_table.php:50
6998
+ #: includes/widgets/htmega_postgrid.php:49
6999
+ #: includes/widgets/htmega_post_grid_tab.php:56
7000
+ #: includes/widgets/htmega_post_slider.php:57
7001
+ #: includes/widgets/htmega_pricing_list_view.php:56
7002
+ #: includes/widgets/htmega_verticle_time_line.php:50
7003
+ msgid "Layout Three"
7004
+ msgstr ""
7005
+
7006
+ #: includes/widgets/htmega_business_hours.php:48
7007
+ #: includes/widgets/htmega_data_table.php:49
7008
+ #: includes/widgets/htmega_postgrid.php:48
7009
+ #: includes/widgets/htmega_post_grid_tab.php:55
7010
+ #: includes/widgets/htmega_post_slider.php:56
7011
+ #: includes/widgets/htmega_pricing_list_view.php:55
7012
+ #: includes/widgets/htmega_switcher.php:46
7013
+ #: includes/widgets/htmega_verticle_time_line.php:49
7014
+ #: extensions/ht-builder/widgets/bl_post_archive.php:48
7015
+ msgid "Layout Two"
7016
+ msgstr ""
7017
+
7018
+ #: admin/include/admin-setting.php:1325
7019
+ msgid "leaving us a review on our WP repository"
7020
+ msgstr ""
7021
+
7022
+ #: includes/widgets/htmega_accordion.php:567
7023
+ #: includes/widgets/htmega_accordion.php:758
7024
+ #: includes/widgets/htmega_accordion.php:916
7025
+ #: includes/widgets/htmega_accordion.php:1314
7026
+ #: includes/widgets/htmega_accordion.php:1432
7027
+ #: includes/widgets/htmega_add_banner.php:368
7028
+ #: includes/widgets/htmega_blockquote.php:183
7029
+ #: includes/widgets/htmega_buddy_press.php:254
7030
+ #: includes/widgets/htmega_business_hours.php:391
7031
+ #: includes/widgets/htmega_button.php:118
7032
+ #: includes/widgets/htmega_button.php:161
7033
+ #: includes/widgets/htmega_caldera_form.php:72
7034
+ #: includes/widgets/htmega_caldera_form.php:347
7035
+ #: includes/widgets/htmega_call_to_action.php:200
7036
+ #: includes/widgets/htmega_call_to_action.php:294
7037
+ #: includes/widgets/htmega_call_to_action.php:330
7038
+ #: includes/widgets/htmega_carousel.php:838
7039
+ #: includes/widgets/htmega_contact_form_seven.php:117
7040
+ #: includes/widgets/htmega_countdown.php:611
7041
+ #: includes/widgets/htmega_countdown.php:643
7042
+ #: includes/widgets/htmega_counter.php:288
7043
+ #: includes/widgets/htmega_counter.php:321
7044
+ #: includes/widgets/htmega_counter.php:427
7045
+ #: includes/widgets/htmega_counter.php:553
7046
+ #: includes/widgets/htmega_data_table.php:710
7047
+ #: includes/widgets/htmega_data_table.php:829
7048
+ #: includes/widgets/htmega_double_button.php:157
7049
+ #: includes/widgets/htmega_double_button.php:244
7050
+ #: includes/widgets/htmega_double_button.php:325
7051
+ #: includes/widgets/htmega_dropcaps.php:84
7052
+ #: includes/widgets/htmega_easy_digital_download.php:318
7053
+ #: includes/widgets/htmega_easy_digital_download.php:686
7054
+ #: includes/widgets/htmega_errorcontent.php:249
7055
+ #: includes/widgets/htmega_gravity_forms.php:149
7056
+ #: includes/widgets/htmega_gravity_forms.php:205
7057
+ #: includes/widgets/htmega_gravity_forms.php:239
7058
+ #: includes/widgets/htmega_gravity_forms.php:544
7059
+ #: includes/widgets/htmega_gravity_forms.php:775
7060
+ #: includes/widgets/htmega_imagemarker.php:203
7061
+ #: includes/widgets/htmega_imagemarker.php:710
7062
+ #: includes/widgets/htmega_image_grid.php:291
7063
+ #: includes/widgets/htmega_image_grid.php:388
7064
+ #: includes/widgets/htmega_image_masonry.php:267
7065
+ #: includes/widgets/htmega_image_masonry.php:364
7066
+ #: includes/widgets/htmega_inlinemenu.php:121
7067
+ #: includes/widgets/htmega_instagram.php:1484
7068
+ #: includes/widgets/htmega_job_manager.php:159
7069
+ #: includes/widgets/htmega_lightbox.php:196
7070
+ #: includes/widgets/htmega_lightbox.php:309
7071
+ #: includes/widgets/htmega_mailchimp_wp.php:129
7072
+ #: includes/widgets/htmega_modal.php:178 includes/widgets/htmega_modal.php:350
7073
+ #: includes/widgets/htmega_modal.php:1005
7074
+ #: includes/widgets/htmega_newsticker.php:460
7075
+ #: includes/widgets/htmega_ninja_form.php:188
7076
+ #: includes/widgets/htmega_ninja_form.php:290
7077
+ #: includes/widgets/htmega_ninja_form.php:324
7078
+ #: includes/widgets/htmega_ninja_form.php:611
7079
+ #: includes/widgets/htmega_ninja_form.php:822
7080
+ #: includes/widgets/htmega_ninja_form.php:1034
7081
+ #: includes/widgets/htmega_notify.php:282
7082
+ #: includes/widgets/htmega_notify.php:562
7083
+ #: includes/widgets/htmega_notify.php:828
7084
+ #: includes/widgets/htmega_offcanvas.php:103
7085
+ #: includes/widgets/htmega_offcanvas.php:204
7086
+ #: includes/widgets/htmega_offcanvas.php:283
7087
+ #: includes/widgets/htmega_offcanvas.php:375
7088
+ #: includes/widgets/htmega_panel_slider.php:603
7089
+ #: includes/widgets/htmega_popover.php:193
7090
+ #: includes/widgets/htmega_popover.php:265
7091
+ #: includes/widgets/htmega_popover.php:661
7092
+ #: includes/widgets/htmega_popover.php:765
7093
+ #: includes/widgets/htmega_postgrid.php:293
7094
+ #: includes/widgets/htmega_postgrid.php:517
7095
+ #: includes/widgets/htmega_postgrid.php:630
7096
+ #: includes/widgets/htmega_post_grid_tab.php:401
7097
+ #: includes/widgets/htmega_post_grid_tab.php:495
7098
+ #: includes/widgets/htmega_post_grid_tab.php:582
7099
+ #: includes/widgets/htmega_post_grid_tab.php:805
7100
+ #: includes/widgets/htmega_post_slider.php:836
7101
+ #: includes/widgets/htmega_post_slider.php:930
7102
+ #: includes/widgets/htmega_post_slider.php:1017
7103
+ #: includes/widgets/htmega_post_slider.php:1233
7104
+ #: includes/widgets/htmega_pricing_list_view.php:473
7105
+ #: includes/widgets/htmega_pricing_list_view.php:504
7106
+ #: includes/widgets/htmega_pricing_list_view.php:1128
7107
+ #: includes/widgets/htmega_pricing_list_view.php:1189
7108
+ #: includes/widgets/htmega_quforms.php:90
7109
+ #: includes/widgets/htmega_quforms.php:210
7110
+ #: includes/widgets/htmega_quforms.php:331
7111
+ #: includes/widgets/htmega_quforms.php:551
7112
+ #: includes/widgets/htmega_quforms.php:769
7113
+ #: includes/widgets/htmega_search.php:156
7114
+ #: includes/widgets/htmega_section_title.php:415
7115
+ #: includes/widgets/htmega_service.php:241
7116
+ #: includes/widgets/htmega_service.php:425
7117
+ #: includes/widgets/htmega_service.php:530
7118
+ #: includes/widgets/htmega_service.php:719
7119
+ #: includes/widgets/htmega_service.php:981
7120
+ #: includes/widgets/htmega_singlepost.php:210
7121
+ #: includes/widgets/htmega_singlepost.php:306
7122
+ #: includes/widgets/htmega_singlepost.php:413
7123
+ #: includes/widgets/htmega_slider_thumb_gallery.php:55
7124
+ #: includes/widgets/htmega_socialshere.php:374
7125
+ #: includes/widgets/htmega_special_day_banner.php:49
7126
+ #: includes/widgets/htmega_special_day_banner.php:265
7127
+ #: includes/widgets/htmega_tablepress.php:213
7128
+ #: includes/widgets/htmega_tablepress.php:370
7129
+ #: includes/widgets/htmega_tabs.php:513
7130
+ #: includes/widgets/htmega_teammember.php:105
7131
+ #: includes/widgets/htmega_teammember.php:616
7132
+ #: includes/widgets/htmega_teammember.php:745
7133
+ #: includes/widgets/htmega_teammember.php:835
7134
+ #: includes/widgets/htmega_teammember.php:926
7135
+ #: includes/widgets/htmega_teammember.php:993
7136
+ #: includes/widgets/htmega_testimonial_grid.php:553
7137
+ #: includes/widgets/htmega_toggle.php:196
7138
+ #: includes/widgets/htmega_tooltip.php:181
7139
+ #: includes/widgets/htmega_tooltip.php:241
7140
+ #: includes/widgets/htmega_user_login_form.php:149
7141
+ #: includes/widgets/htmega_user_login_form.php:371
7142
+ #: includes/widgets/htmega_user_login_form.php:571
7143
+ #: includes/widgets/htmega_videoplayer.php:296
7144
+ #: includes/widgets/htmega_wc_categories.php:380
7145
+ #: includes/widgets/htmega_wpforms.php:180
7146
+ #: includes/widgets/htmega_wpforms.php:282
7147
+ #: includes/widgets/htmega_wpforms.php:317
7148
+ #: includes/widgets/htmega_wpforms.php:614
7149
+ #: includes/widgets/htmega_wpforms.php:833
7150
+ #: includes/widgets/htmega_wpforms.php:1061
7151
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:115
7152
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:497
7153
+ #: extensions/ht-builder/widgets/bl_page_title.php:137
7154
+ #: extensions/ht-builder/widgets/bl_post_archive.php:302
7155
+ #: extensions/ht-builder/widgets/bl_post_archive.php:383
7156
+ #: extensions/ht-builder/widgets/bl_post_archive.php:490
7157
+ #: extensions/ht-builder/widgets/bl_post_archive.php:596
7158
+ #: extensions/ht-builder/widgets/bl_post_archive.php:676
7159
+ #: extensions/ht-builder/widgets/bl_post_archive_title.php:139
7160
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:112
7161
+ #: extensions/ht-builder/widgets/bl_post_content.php:72
7162
+ #: extensions/ht-builder/widgets/bl_post_excerpt.php:72
7163
+ #: extensions/ht-builder/widgets/bl_post_featured_image.php:71
7164
+ #: extensions/ht-builder/widgets/bl_post_title.php:102
7165
+ #: extensions/ht-builder/widgets/bl_site_logo.php:159
7166
+ #: extensions/ht-builder/widgets/bl_site_title.php:139
7167
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:166
7168
+ #: extensions/ht-menu/widgets/verticle-mega-menu.php:167
7169
+ msgid "Left"
7170
+ msgstr ""
7171
+
7172
+ #: includes/widgets/htmega_post_slider.php:1435
7173
+ msgid "Left Arrow position"
7174
+ msgstr ""
7175
+
7176
+ #: includes/widgets/htmega_post_slider.php:1486
7177
+ msgid "Left Arrow Position vertical"
7178
+ msgstr ""
7179
+
7180
+ #: includes/widgets/htmega_blockquote.php:155
7181
+ msgid "Left Bottom"
7182
+ msgstr ""
7183
+
7184
+ #: includes/widgets/htmega_blockquote.php:154
7185
+ msgid "Left Center"
7186
+ msgstr ""
7187
+
7188
+ #: includes/widgets/htmega_blockquote.php:153
7189
+ msgid "Left Top"
7190
+ msgstr ""
7191
+
7192
+ #: includes/widgets/htmega_scroll_image.php:268
7193
+ msgid "Left-Right"
7194
+ msgstr ""
7195
+
7196
+ #: includes/widgets/htmega_pricing_list_view.php:348
7197
+ #: includes/widgets/htmega_pricing_list_view.php:977
7198
+ msgid "Left-Right Position"
7199
+ msgstr ""
7200
+
7201
+ #: includes/widgets/htmega_image_comparison.php:181
7202
+ msgid "Level Position"
7203
+ msgstr ""
7204
+
7205
+ #: admin/include/admin-setting.php:319
7206
+ msgid "Light Box"
7207
+ msgstr ""
7208
+
7209
+ #: includes/widgets/htmega_lightbox.php:13
7210
+ #: includes/widgets/htmega_lightbox.php:42
7211
+ msgid "Lightbox"
7212
+ msgstr ""
7213
+
7214
+ #: includes/widgets/htmega_lightbox.php:49
7215
+ msgid "Lightbox Type"
7216
+ msgstr ""
7217
+
7218
+ #: includes/widgets/htmega_postgrid.php:107
7219
+ #: includes/widgets/htmega_post_grid_tab.php:114
7220
+ #: includes/widgets/htmega_post_slider.php:118
7221
+ #: includes/widgets/htmega_twitter_feed.php:122
7222
+ #: extensions/wc-sales-notification/admin/setting.php:101
7223
+ msgid "Limit"
7224
+ msgstr ""
7225
+
7226
+ #: includes/widgets/htmega_socialshere.php:92
7227
+ msgid "Line"
7228
+ msgstr ""
7229
+
7230
+ #: includes/widgets/htmega_blockquote.php:603
7231
+ #: includes/widgets/htmega_notify.php:707
7232
+ #: includes/widgets/htmega_socialshere.php:533
7233
+ msgid "Line Height"
7234
+ msgstr ""
7235
+
7236
+ #: includes/widgets/htmega_button.php:73
7237
+ #: includes/widgets/htmega_double_button.php:108
7238
+ #: includes/widgets/htmega_double_button.php:195
7239
+ #: includes/widgets/htmega_panel_slider.php:117
7240
+ #: includes/widgets/htmega_popover.php:139
7241
+ #: includes/widgets/htmega_pricing_list_view.php:126
7242
+ #: includes/widgets/htmega_pricing_list_view.php:660
7243
+ #: includes/widgets/htmega_section_title.php:193
7244
+ #: includes/widgets/htmega_section_title.php:251
7245
+ #: includes/widgets/htmega_teammember.php:223
7246
+ #: includes/widgets/htmega_tooltip.php:139
7247
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:94
7248
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:267
7249
+ msgid "Link"
7250
+ msgstr ""
7251
+
7252
+ #: includes/widgets/htmega_offcanvas.php:327
7253
+ #: includes/widgets/htmega_twitter_feed.php:639
7254
+ #: includes/widgets/htmega_user_login_form.php:773
7255
+ #: extensions/ht-builder/widgets/bl_post_archive.php:521
7256
+ msgid "Link Color"
7257
+ msgstr ""
7258
+
7259
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:101
7260
+ msgid "Link for the Author Name and Image"
7261
+ msgstr ""
7262
+
7263
+ #: includes/widgets/htmega_offcanvas.php:338
7264
+ #: includes/widgets/htmega_user_login_form.php:788
7265
+ msgid "Link Hover Color"
7266
+ msgstr ""
7267
+
7268
+ #: includes/widgets/htmega_socialshere.php:66
7269
+ msgid "Linkedin"
7270
+ msgstr ""
7271
+
7272
+ #: includes/widgets/htmega_booked_calender.php:55
7273
+ msgid "List"
7274
+ msgstr ""
7275
+
7276
+ #: includes/widgets/htmega_pricing_list_view.php:1457
7277
+ msgid "List Area"
7278
+ msgstr ""
7279
+
7280
+ #: includes/widgets/htmega_socialshere.php:71
7281
+ msgid "Live journal"
7282
+ msgstr ""
7283
+
7284
+ #: includes/widgets/htmega_socialshere.php:80
7285
+ msgid "Liveinternet"
7286
+ msgstr ""
7287
+
7288
+ #: includes/widgets/htmega_job_manager.php:131
7289
+ msgid "Load More"
7290
+ msgstr ""
7291
+
7292
+ #: admin/include/admin-setting.php:788
7293
+ msgid "Load Post in Elementor Addons"
7294
+ msgstr ""
7295
+
7296
+ #: admin/include/templates/library/templates.php:53
7297
+ msgid "Loading"
7298
+ msgstr ""
7299
+
7300
+ #: includes/widgets/htmega_animated_heading.php:72
7301
+ msgid "Loading bar"
7302
+ msgstr ""
7303
+
7304
+ #: extensions/wc-sales-notification/admin/setting.php:114
7305
+ msgid "Loading Time"
7306
+ msgstr ""
7307
+
7308
+ #: includes/widgets/htmega_slider_thumb_gallery.php:68
7309
+ #: includes/widgets/htmega_slider_thumb_gallery.php:122
7310
+ msgid "Location Name Here."
7311
+ msgstr ""
7312
+
7313
+ #: includes/widgets/htmega_custom_event.php:78
7314
+ msgid "Location."
7315
+ msgstr ""
7316
+
7317
+ #: includes/widgets/htmega_user_login_form.php:360
7318
+ #: includes/widgets/htmega_user_login_form.php:1650
7319
+ msgid "Login"
7320
+ msgstr ""
7321
+
7322
+ #: includes/widgets/htmega_user_login_form.php:349
7323
+ msgid "Login Button"
7324
+ msgstr ""
7325
+
7326
+ #: includes/widgets/htmega_user_login_form.php:103
7327
+ msgid "Login Content"
7328
+ msgstr ""
7329
+
7330
+ #: includes/widgets/htmega_user_login_form.php:43
7331
+ #: includes/widgets/htmega_user_login_form.php:174
7332
+ msgid "Login Form"
7333
+ msgstr ""
7334
+
7335
+ #: includes/widgets/htmega_user_login_form.php:646
7336
+ msgid "Login Form Header Style"
7337
+ msgstr ""
7338
+
7339
+ #: includes/widgets/htmega_user_login_form.php:68
7340
+ msgid "Login Header"
7341
+ msgstr ""
7342
+
7343
+ #: includes/widgets/htmega_user_login_form.php:89
7344
+ msgid "Login Header Title"
7345
+ msgstr ""
7346
+
7347
+ #: includes/helper-function.php:392
7348
+ msgid "Login Successfully"
7349
+ msgstr ""
7350
+
7351
+ #: extensions/ht-builder/widgets/bl_site_logo.php:48
7352
+ msgid "Logo"
7353
+ msgstr ""
7354
+
7355
+ #: includes/widgets/htmega_googlemap.php:141
7356
+ #: includes/widgets/htmega_weather.php:196
7357
+ msgid "Longitude"
7358
+ msgstr ""
7359
+
7360
+ #: includes/widgets/htmega_scroll_navigation.php:105
7361
+ #: includes/widgets/htmega_testimonial_grid.php:214
7362
+ #: includes/widgets/htmega_testimonial_grid.php:228
7363
+ #: includes/widgets/htmega_testimonial_grid.php:234
7364
+ #: includes/widgets/htmega_testimonial_grid.php:240
7365
+ msgid ""
7366
+ "Lorem ipsum dolor sit amet consectetur adipisicing elit sed do eiusmod "
7367
+ "tempor incididunt ut labore et dolore Lorem ipsum dolor sit amet, "
7368
+ "consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et "
7369
+ "dolore magna aliqua."
7370
+ msgstr ""
7371
+
7372
+ #: includes/widgets/htmega_working_process.php:170
7373
+ msgid ""
7374
+ "Lorem ipsum dolor sit amet consectetur adipisicing elit, sed do eiusmod "
7375
+ "tempor incid idunt ut labore"
7376
+ msgstr ""
7377
+
7378
+ #: includes/widgets/htmega_working_process.php:174
7379
+ #: includes/widgets/htmega_working_process.php:178
7380
+ msgid ""
7381
+ "Lorem ipsum dolor sit amet consectetur adipisicing elit, sed do eiusmod "
7382
+ "tempor incid idunt ut labore."
7383
+ msgstr ""
7384
+
7385
+ #: includes/widgets/htmega_dropcaps.php:60
7386
+ msgid ""
7387
+ "Lorem ipsum dolor sit amet, consec adipisicing elit, sed do eiusmod tempor "
7388
+ "incidid ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis "
7389
+ "nostrud exercitation ullamco laboris nisi ut aliquip exl Lorem ipsum dolor "
7390
+ "sit amet, consectetur adipisicing elit, sed do eiusmod tempor incidid ut "
7391
+ "labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud "
7392
+ "exercitation ullamco laboris nisi ut aliquip."
7393
+ msgstr ""
7394
+
7395
+ #: includes/widgets/htmega_modal.php:84
7396
+ msgid ""
7397
+ "Lorem ipsum dolor sit amet, consectetur adipis elit, sed do eiusmod tempor "
7398
+ "incidid ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis "
7399
+ "nostrud exercitati ulla laboris nisi ut aliquip ex ea commodo consequat. "
7400
+ "Duis aute irure dolor in repre in voluptate velit esse cillum dolore eu."
7401
+ msgstr ""
7402
+
7403
+ #: includes/widgets/htmega_verticle_time_line.php:90
7404
+ #: includes/widgets/htmega_verticle_time_line.php:102
7405
+ #: includes/widgets/htmega_verticle_time_line.php:106
7406
+ #: includes/widgets/htmega_verticle_time_line.php:110
7407
+ msgid ""
7408
+ "Lorem ipsum dolor sit amet, consectetur adipis icing elit, sed do eiusmod "
7409
+ "tempor incid ut labore et dolore magna aliqua Ut enim ad min."
7410
+ msgstr ""
7411
+
7412
+ #: includes/widgets/htmega_tabs.php:219 includes/widgets/htmega_tabs.php:223
7413
+ #: includes/widgets/htmega_tabs.php:227
7414
+ #: includes/widgets/htmega_working_process.php:98
7415
+ msgid ""
7416
+ "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod "
7417
+ "tempor incididunt ut labore et dolo magna aliqua. Ut enim ad minim veniam, "
7418
+ "quis nostrud exerci ullamco laboris nisi ut aliquip ex ea commodo consequat. "
7419
+ "Duis aute irure dolor in repre in voluptate."
7420
+ msgstr ""
7421
+
7422
+ #: includes/widgets/htmega_toggle.php:112
7423
+ msgid ""
7424
+ "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod "
7425
+ "tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, "
7426
+ "quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo "
7427
+ "consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse "
7428
+ "cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat "
7429
+ "non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
7430
+ msgstr ""
7431
+
7432
+ #: includes/widgets/htmega_imagemarker.php:192
7433
+ #: includes/widgets/htmega_imagemarker.php:469
7434
+ msgid "Lorem ipsum pisaci volupt atem accusa saes ntisdumtiu loperm asaerks."
7435
+ msgstr ""
7436
+
7437
+ #: includes/widgets/htmega_user_login_form.php:285
7438
+ msgid "Lost your password?"
7439
+ msgstr ""
7440
+
7441
+ #: admin/include/admin-setting.php:638
7442
+ msgid "Lottie <span>( Pro )</span>"
7443
+ msgstr ""
7444
+
7445
+ #: includes/widgets/htmega_data_table.php:340
7446
+ #: includes/widgets/htmega_data_table.php:533
7447
+ #: includes/widgets/htmega_pricing_list_view.php:603
7448
+ #: includes/widgets/htmega_pricing_list_view.php:1099
7449
+ msgid "Louis Hudson"
7450
+ msgstr ""
7451
+
7452
+ #: includes/widgets/htmega_pricing_list_view.php:1112
7453
+ msgid "louishudson@gmail.com"
7454
+ msgstr ""
7455
+
7456
+ #: extensions/ht-builder/widgets/bl_post_archive.php:1066
7457
+ msgid "M d, Y"
7458
+ msgstr ""
7459
+
7460
+ #: includes/weather-resource/weather-resource.php:109
7461
+ msgid "m/s"
7462
+ msgstr ""
7463
+
7464
+ #: includes/widgets/htmega_panel_slider.php:146
7465
+ msgid "Made in 2016"
7466
+ msgstr ""
7467
+
7468
+ #: includes/widgets/htmega_panel_slider.php:88
7469
+ #: includes/widgets/htmega_panel_slider.php:142
7470
+ msgid "Made in 2017"
7471
+ msgstr ""
7472
+
7473
+ #: includes/widgets/htmega_panel_slider.php:138
7474
+ msgid "Made in 2018"
7475
+ msgstr ""
7476
+
7477
+ #: includes/widgets/htmega_panel_slider.php:134
7478
+ msgid "Made in 2019"
7479
+ msgstr ""
7480
+
7481
+ #: includes/widgets/htmega_image_magnifier.php:42
7482
+ msgid "Magnifier"
7483
+ msgstr ""
7484
+
7485
+ #: includes/widgets/htmega_mailchimp_wp.php:43
7486
+ msgid "Mailchimp"
7487
+ msgstr ""
7488
+
7489
+ #: admin/include/admin-setting.php:1168
7490
+ #: includes/widgets/htmega_mailchimp_wp.php:13
7491
+ msgid "Mailchimp for wp"
7492
+ msgstr ""
7493
+
7494
+ #: includes/widgets/htmega_mailchimp_wp.php:66
7495
+ msgid "Mailchimp ID"
7496
+ msgstr ""
7497
+
7498
+ #: includes/widgets/htmega_inlinemenu.php:102
7499
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:96
7500
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:63
7501
+ #: extensions/ht-menu/widgets/verticle-mega-menu.php:64
7502
+ msgid "Main Menu"
7503
+ msgstr ""
7504
+
7505
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:413
7506
+ #: extensions/ht-menu/widgets/verticle-mega-menu.php:371
7507
+ msgid "Main Menu Items"
7508
+ msgstr ""
7509
+
7510
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:71
7511
+ #: extensions/ht-menu/widgets/verticle-mega-menu.php:72
7512
+ msgid "Main Menu Width"
7513
+ msgstr ""
7514
+
7515
+ #: includes/widgets/htmega_testimonial_grid.php:233
7516
+ msgid "Manager"
7517
+ msgstr ""
7518
+
7519
+ #: includes/widgets/htmega_testimonial_grid.php:177
7520
+ #: includes/widgets/htmega_testimonial_grid.php:227
7521
+ msgid "Managing Director"
7522
+ msgstr ""
7523
+
7524
+ #: includes/widgets/htmega_teammember.php:165
7525
+ msgid "Managing director"
7526
+ msgstr ""
7527
+
7528
+ #: includes/widgets/htmega_easy_digital_download.php:141
7529
+ #: includes/widgets/htmega_wc_categories.php:81
7530
+ msgid "Manual Selection"
7531
+ msgstr ""
7532
+
7533
+ #: includes/widgets/htmega_user_login_form.php:449
7534
+ #: includes/widgets/htmega_user_login_form.php:477
7535
+ #: includes/widgets/htmega_user_login_form.php:504
7536
+ msgid "Manual Space"
7537
+ msgstr ""
7538
+
7539
+ #: includes/widgets/htmega_googlemap.php:265
7540
+ msgid "Map Fixed Address"
7541
+ msgstr ""
7542
+
7543
+ #: includes/widgets/htmega_googlemap.php:80
7544
+ msgid "Map Height"
7545
+ msgstr ""
7546
+
7547
+ #: includes/widgets/htmega_googlemap.php:123
7548
+ msgid "Map Marker"
7549
+ msgstr ""
7550
+
7551
+ #: includes/widgets/htmega_googlemap.php:111
7552
+ msgid "Map Style"
7553
+ msgstr ""
7554
+
7555
+ #: includes/widgets/htmega_googlemap.php:413
7556
+ msgid "Maps Fixed Address"
7557
+ msgstr ""
7558
+
7559
+ #: includes/widgets/htmega_googlemap.php:297
7560
+ msgid "Maps Info Address"
7561
+ msgstr ""
7562
+
7563
+ #: includes/widgets/htmega_booked_calender.php:111
7564
+ msgid "March"
7565
+ msgstr ""
7566
+
7567
+ #: includes/widgets/htmega_accordion.php:801
7568
+ #: includes/widgets/htmega_accordion.php:852
7569
+ #: includes/widgets/htmega_accordion.php:1214
7570
+ #: includes/widgets/htmega_accordion.php:1374
7571
+ #: includes/widgets/htmega_add_banner.php:163
7572
+ #: includes/widgets/htmega_add_banner.php:251
7573
+ #: includes/widgets/htmega_add_banner.php:305
7574
+ #: includes/widgets/htmega_add_banner.php:403
7575
+ #: includes/widgets/htmega_add_banner.php:462
7576
+ #: includes/widgets/htmega_add_banner.php:521
7577
+ #: includes/widgets/htmega_add_banner.php:580
7578
+ #: includes/widgets/htmega_add_banner.php:691
7579
+ #: includes/widgets/htmega_animated_heading.php:267
7580
+ #: includes/widgets/htmega_blockquote.php:220
7581
+ #: includes/widgets/htmega_blockquote.php:298
7582
+ #: includes/widgets/htmega_blockquote.php:354
7583
+ #: includes/widgets/htmega_blockquote.php:542
7584
+ #: includes/widgets/htmega_blockquote.php:723
7585
+ #: includes/widgets/htmega_brand.php:128 includes/widgets/htmega_brand.php:314
7586
+ #: includes/widgets/htmega_buddy_press.php:236
7587
+ #: includes/widgets/htmega_buddy_press.php:344
7588
+ #: includes/widgets/htmega_buddy_press.php:413
7589
+ #: includes/widgets/htmega_business_hours.php:242
7590
+ #: includes/widgets/htmega_business_hours.php:318
7591
+ #: includes/widgets/htmega_business_hours.php:446
7592
+ #: includes/widgets/htmega_button.php:317
7593
+ #: includes/widgets/htmega_call_to_action.php:367
7594
+ #: includes/widgets/htmega_call_to_action.php:444
7595
+ #: includes/widgets/htmega_call_to_action.php:532
7596
+ #: includes/widgets/htmega_call_to_action.php:591
7597
+ #: includes/widgets/htmega_call_to_action.php:650
7598
+ #: includes/widgets/htmega_call_to_action.php:743
7599
+ #: includes/widgets/htmega_call_to_action.php:949
7600
+ #: includes/widgets/htmega_carousel.php:456
7601
+ #: includes/widgets/htmega_carousel.php:974
7602
+ #: includes/widgets/htmega_carousel.php:1057
7603
+ #: includes/widgets/htmega_carousel.php:1372
7604
+ #: includes/widgets/htmega_contact_form_seven.php:161
7605
+ #: includes/widgets/htmega_contact_form_seven.php:337
7606
+ #: includes/widgets/htmega_contact_form_seven.php:570
7607
+ #: includes/widgets/htmega_contact_form_seven.php:726
7608
+ #: includes/widgets/htmega_contact_form_seven.php:870
7609
+ #: includes/widgets/htmega_contact_form_seven.php:1027
7610
+ #: includes/widgets/htmega_countdown.php:591
7611
+ #: includes/widgets/htmega_countdown.php:838
7612
+ #: includes/widgets/htmega_countdown.php:998
7613
+ #: includes/widgets/htmega_countdown.php:1096
7614
+ #: includes/widgets/htmega_counter.php:240
7615
+ #: includes/widgets/htmega_counter.php:501
7616
+ #: includes/widgets/htmega_counter.php:625
7617
+ #: includes/widgets/htmega_counter.php:892
7618
+ #: includes/widgets/htmega_counter.php:981
7619
+ #: includes/widgets/htmega_counter.php:1071
7620
+ #: includes/widgets/htmega_custom_event.php:176
7621
+ #: includes/widgets/htmega_custom_event.php:261
7622
+ #: includes/widgets/htmega_custom_event.php:305
7623
+ #: includes/widgets/htmega_custom_event.php:362
7624
+ #: includes/widgets/htmega_data_table.php:592
7625
+ #: includes/widgets/htmega_double_button.php:297
7626
+ #: includes/widgets/htmega_double_button.php:556
7627
+ #: includes/widgets/htmega_double_button.php:729
7628
+ #: includes/widgets/htmega_double_button.php:912
7629
+ #: includes/widgets/htmega_dropcaps.php:153
7630
+ #: includes/widgets/htmega_dropcaps.php:253
7631
+ #: includes/widgets/htmega_easy_digital_download.php:380
7632
+ #: includes/widgets/htmega_easy_digital_download.php:444
7633
+ #: includes/widgets/htmega_easy_digital_download.php:598
7634
+ #: includes/widgets/htmega_easy_digital_download.php:738
7635
+ #: includes/widgets/htmega_errorcontent.php:276
7636
+ #: includes/widgets/htmega_errorcontent.php:368
7637
+ #: includes/widgets/htmega_errorcontent.php:447
7638
+ #: includes/widgets/htmega_errorcontent.php:526
7639
+ #: includes/widgets/htmega_errorcontent.php:602
7640
+ #: includes/widgets/htmega_errorcontent.php:753
7641
+ #: includes/widgets/htmega_googlemap.php:349
7642
+ #: includes/widgets/htmega_googlemap.php:490
7643
+ #: includes/widgets/htmega_gravity_forms.php:331
7644
+ #: includes/widgets/htmega_gravity_forms.php:371
7645
+ #: includes/widgets/htmega_gravity_forms.php:498
7646
+ #: includes/widgets/htmega_gravity_forms.php:730
7647
+ #: includes/widgets/htmega_imagemarker.php:895
7648
+ #: includes/widgets/htmega_imagemarker.php:950
7649
+ #: includes/widgets/htmega_image_comparison.php:111
7650
+ #: includes/widgets/htmega_image_grid.php:215
7651
+ #: includes/widgets/htmega_image_grid.php:361
7652
+ #: includes/widgets/htmega_image_magnifier.php:154
7653
+ #: includes/widgets/htmega_image_masonry.php:207
7654
+ #: includes/widgets/htmega_image_masonry.php:324
7655
+ #: includes/widgets/htmega_image_masonry.php:411
7656
+ #: includes/widgets/htmega_inlinemenu.php:187
7657
+ #: includes/widgets/htmega_instagram.php:634
7658
+ #: includes/widgets/htmega_instagram.php:680
7659
+ #: includes/widgets/htmega_instagram.php:897
7660
+ #: includes/widgets/htmega_instagram.php:1355
7661
+ #: includes/widgets/htmega_lightbox.php:238
7662
+ #: includes/widgets/htmega_mailchimp_wp.php:102
7663
+ #: includes/widgets/htmega_mailchimp_wp.php:273
7664
+ #: includes/widgets/htmega_mailchimp_wp.php:407
7665
+ #: includes/widgets/htmega_modal.php:525 includes/widgets/htmega_modal.php:642
7666
+ #: includes/widgets/htmega_modal.php:805 includes/widgets/htmega_modal.php:975
7667
+ #: includes/widgets/htmega_newsticker.php:403
7668
+ #: includes/widgets/htmega_newsticker.php:705
7669
+ #: includes/widgets/htmega_newsticker.php:845
7670
+ #: includes/widgets/htmega_newsticker.php:978
7671
+ #: includes/widgets/htmega_ninja_form.php:153
7672
+ #: includes/widgets/htmega_ninja_form.php:255
7673
+ #: includes/widgets/htmega_ninja_form.php:419
7674
+ #: includes/widgets/htmega_ninja_form.php:458
7675
+ #: includes/widgets/htmega_ninja_form.php:566
7676
+ #: includes/widgets/htmega_ninja_form.php:787
7677
+ #: includes/widgets/htmega_ninja_form.php:989
7678
+ #: includes/widgets/htmega_notify.php:402
7679
+ #: includes/widgets/htmega_notify.php:545
7680
+ #: includes/widgets/htmega_notify.php:801
7681
+ #: includes/widgets/htmega_panel_slider.php:529
7682
+ #: includes/widgets/htmega_panel_slider.php:710
7683
+ #: includes/widgets/htmega_panel_slider.php:766
7684
+ #: includes/widgets/htmega_panel_slider.php:1171
7685
+ #: includes/widgets/htmega_popover.php:305
7686
+ #: includes/widgets/htmega_popover.php:424
7687
+ #: includes/widgets/htmega_postgrid.php:248
7688
+ #: includes/widgets/htmega_postgrid.php:487
7689
+ #: includes/widgets/htmega_postgrid.php:602
7690
+ #: includes/widgets/htmega_postgrid.php:689
7691
+ #: includes/widgets/htmega_post_grid_tab.php:297
7692
+ #: includes/widgets/htmega_post_grid_tab.php:373
7693
+ #: includes/widgets/htmega_post_grid_tab.php:467
7694
+ #: includes/widgets/htmega_post_grid_tab.php:554
7695
+ #: includes/widgets/htmega_post_grid_tab.php:652
7696
+ #: includes/widgets/htmega_post_grid_tab.php:777
7697
+ #: includes/widgets/htmega_post_grid_tab.php:872
7698
+ #: includes/widgets/htmega_post_grid_tab.php:1130
7699
+ #: includes/widgets/htmega_post_slider.php:729
7700
+ #: includes/widgets/htmega_post_slider.php:744
7701
+ #: includes/widgets/htmega_post_slider.php:902
7702
+ #: includes/widgets/htmega_post_slider.php:989
7703
+ #: includes/widgets/htmega_post_slider.php:1086
7704
+ #: includes/widgets/htmega_post_slider.php:1205
7705
+ #: includes/widgets/htmega_post_slider.php:1299
7706
+ #: includes/widgets/htmega_post_slider.php:1826
7707
+ #: includes/widgets/htmega_post_slider.php:1937
7708
+ #: includes/widgets/htmega_pricing_list_view.php:1252
7709
+ #: includes/widgets/htmega_pricing_list_view.php:1612
7710
+ #: includes/widgets/htmega_pricing_list_view.php:1685
7711
+ #: includes/widgets/htmega_pricing_list_view.php:1770
7712
+ #: includes/widgets/htmega_pricing_list_view.php:1847
7713
+ #: includes/widgets/htmega_progress_bar.php:691
7714
+ #: includes/widgets/htmega_quforms.php:183
7715
+ #: includes/widgets/htmega_quforms.php:294
7716
+ #: includes/widgets/htmega_quforms.php:427
7717
+ #: includes/widgets/htmega_quforms.php:646
7718
+ #: includes/widgets/htmega_quforms.php:873
7719
+ #: includes/widgets/htmega_scroll_image.php:203
7720
+ #: includes/widgets/htmega_scroll_image.php:363
7721
+ #: includes/widgets/htmega_scroll_navigation.php:351
7722
+ #: includes/widgets/htmega_search.php:183
7723
+ #: includes/widgets/htmega_search.php:284
7724
+ #: includes/widgets/htmega_search.php:503
7725
+ #: includes/widgets/htmega_section_title.php:387
7726
+ #: includes/widgets/htmega_section_title.php:587
7727
+ #: includes/widgets/htmega_section_title.php:819
7728
+ #: includes/widgets/htmega_service.php:183
7729
+ #: includes/widgets/htmega_service.php:395
7730
+ #: includes/widgets/htmega_service.php:500
7731
+ #: includes/widgets/htmega_service.php:658
7732
+ #: includes/widgets/htmega_service.php:921
7733
+ #: includes/widgets/htmega_service.php:1049
7734
+ #: includes/widgets/htmega_singlepost.php:182
7735
+ #: includes/widgets/htmega_singlepost.php:269
7736
+ #: includes/widgets/htmega_singlepost.php:383
7737
+ #: includes/widgets/htmega_singlepost.php:480
7738
+ #: includes/widgets/htmega_slider_thumb_gallery.php:705
7739
+ #: includes/widgets/htmega_slider_thumb_gallery.php:777
7740
+ #: includes/widgets/htmega_socialshere.php:419
7741
+ #: includes/widgets/htmega_special_day_banner.php:290
7742
+ #: includes/widgets/htmega_special_day_banner.php:367
7743
+ #: includes/widgets/htmega_special_day_banner.php:426
7744
+ #: includes/widgets/htmega_special_day_banner.php:485
7745
+ #: includes/widgets/htmega_special_day_banner.php:544
7746
+ #: includes/widgets/htmega_special_day_banner.php:603
7747
+ #: includes/widgets/htmega_special_day_banner.php:714
7748
+ #: includes/widgets/htmega_switcher.php:246
7749
+ #: includes/widgets/htmega_switcher.php:385
7750
+ #: includes/widgets/htmega_switcher.php:576
7751
+ #: includes/widgets/htmega_tabs.php:349 includes/widgets/htmega_tabs.php:581
7752
+ #: includes/widgets/htmega_tabs.php:924
7753
+ #: includes/widgets/htmega_teammember.php:330
7754
+ #: includes/widgets/htmega_teammember.php:715
7755
+ #: includes/widgets/htmega_teammember.php:805
7756
+ #: includes/widgets/htmega_teammember.php:896
7757
+ #: includes/widgets/htmega_teammember.php:963
7758
+ #: includes/widgets/htmega_testimonial_grid.php:271
7759
+ #: includes/widgets/htmega_testimonial_grid.php:449
7760
+ #: includes/widgets/htmega_testimonial_grid.php:509
7761
+ #: includes/widgets/htmega_testimonial_grid.php:601
7762
+ #: includes/widgets/htmega_toggle.php:156
7763
+ #: includes/widgets/htmega_toggle.php:284
7764
+ #: includes/widgets/htmega_tooltip.php:281
7765
+ #: includes/widgets/htmega_tooltip.php:401
7766
+ #: includes/widgets/htmega_twitter_feed.php:570
7767
+ #: includes/widgets/htmega_twitter_feed.php:659
7768
+ #: includes/widgets/htmega_twitter_feed.php:728
7769
+ #: includes/widgets/htmega_twitter_feed.php:792
7770
+ #: includes/widgets/htmega_twitter_feed.php:928
7771
+ #: includes/widgets/htmega_twitter_feed.php:989
7772
+ #: includes/widgets/htmega_twitter_feed.php:1398
7773
+ #: includes/widgets/htmega_user_login_form.php:532
7774
+ #: includes/widgets/htmega_user_login_form.php:609
7775
+ #: includes/widgets/htmega_user_login_form.php:706
7776
+ #: includes/widgets/htmega_user_login_form.php:758
7777
+ #: includes/widgets/htmega_user_login_form.php:861
7778
+ #: includes/widgets/htmega_user_login_form.php:1041
7779
+ #: includes/widgets/htmega_user_login_form.php:1501
7780
+ #: includes/widgets/htmega_verticle_time_line.php:166
7781
+ #: includes/widgets/htmega_videoplayer.php:394
7782
+ #: includes/widgets/htmega_wc_categories.php:331
7783
+ #: includes/widgets/htmega_wc_categories.php:475
7784
+ #: includes/widgets/htmega_wc_element_pages.php:1756
7785
+ #: includes/widgets/htmega_working_process.php:209
7786
+ #: includes/widgets/htmega_working_process.php:405
7787
+ #: includes/widgets/htmega_working_process.php:663
7788
+ #: includes/widgets/htmega_working_process.php:742
7789
+ #: includes/widgets/htmega_working_process.php:842
7790
+ #: includes/widgets/htmega_wpforms.php:145
7791
+ #: includes/widgets/htmega_wpforms.php:247
7792
+ #: includes/widgets/htmega_wpforms.php:401
7793
+ #: includes/widgets/htmega_wpforms.php:440
7794
+ #: includes/widgets/htmega_wpforms.php:569
7795
+ #: includes/widgets/htmega_wpforms.php:790
7796
+ #: includes/widgets/htmega_wpforms.php:1016
7797
+ #: extensions/ht-builder/widgets/bl_page_title.php:121
7798
+ #: extensions/ht-builder/widgets/bl_post_archive.php:253
7799
+ #: extensions/ht-builder/widgets/bl_post_archive.php:367
7800
+ #: extensions/ht-builder/widgets/bl_post_archive.php:474
7801
+ #: extensions/ht-builder/widgets/bl_post_archive.php:580
7802
+ #: extensions/ht-builder/widgets/bl_post_archive.php:774
7803
+ #: extensions/ht-builder/widgets/bl_post_archive.php:898
7804
+ #: extensions/ht-builder/widgets/bl_post_archive_title.php:123
7805
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:194
7806
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:244
7807
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:284
7808
+ #: extensions/ht-builder/widgets/bl_post_title.php:85
7809
+ #: extensions/ht-builder/widgets/bl_site_logo.php:143
7810
+ #: extensions/ht-builder/widgets/bl_site_title.php:123
7811
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:107
7812
+ #: extensions/ht-menu/widgets/verticle-mega-menu.php:108
7813
+ msgid "Margin"
7814
+ msgstr ""
7815
+
7816
+ #: includes/widgets/htmega_googlemap.php:244
7817
+ #: includes/widgets/htmega_imagemarker.php:44
7818
+ #: includes/widgets/htmega_imagemarker.php:490
7819
+ msgid "Marker"
7820
+ msgstr ""
7821
+
7822
+ #: includes/widgets/htmega_imagemarker.php:173
7823
+ #: includes/widgets/htmega_imagemarker.php:468
7824
+ msgid "Marker #1"
7825
+ msgstr ""
7826
+
7827
+ #: includes/widgets/htmega_imagemarker.php:190
7828
+ msgid "Marker Content"
7829
+ msgstr ""
7830
+
7831
+ #: includes/widgets/htmega_imagemarker.php:199
7832
+ #: includes/widgets/htmega_imagemarker.php:287
7833
+ msgid "Marker Content Position"
7834
+ msgstr ""
7835
+
7836
+ #: includes/widgets/htmega_imagemarker.php:300
7837
+ msgid "Marker Content Postion(X)"
7838
+ msgstr ""
7839
+
7840
+ #: includes/widgets/htmega_imagemarker.php:323
7841
+ msgid "Marker Content Postion(Y)"
7842
+ msgstr ""
7843
+
7844
+ #: includes/widgets/htmega_imagemarker.php:228
7845
+ msgid "Marker Icon Position"
7846
+ msgstr ""
7847
+
7848
+ #: includes/widgets/htmega_imagemarker.php:149
7849
+ msgid "Marker Indicator Icon"
7850
+ msgstr ""
7851
+
7852
+ #: includes/widgets/htmega_imagemarker.php:498
7853
+ msgid "Marker Indicator Style"
7854
+ msgstr ""
7855
+
7856
+ #: includes/widgets/htmega_googlemap.php:150
7857
+ msgid "Marker Info Box "
7858
+ msgstr ""
7859
+
7860
+ #: includes/widgets/htmega_imagemarker.php:112
7861
+ msgid "Marker Item"
7862
+ msgstr ""
7863
+
7864
+ #: includes/widgets/htmega_imagemarker.php:180
7865
+ msgid "Marker Placeholder Text"
7866
+ msgstr ""
7867
+
7868
+ #: includes/widgets/htmega_imagemarker.php:171
7869
+ msgid "Marker Title"
7870
+ msgstr ""
7871
+
7872
+ #: includes/widgets/htmega_buddy_press.php:77
7873
+ msgid "Max Item"
7874
+ msgstr ""
7875
+
7876
+ #: includes/widgets/htmega_contact_form_seven.php:87
7877
+ msgid "Max Width"
7878
+ msgstr ""
7879
+
7880
+ #: includes/widgets/htmega_newsticker.php:101
7881
+ msgid "Maxium Row"
7882
+ msgstr ""
7883
+
7884
+ #: includes/widgets/htmega_booked_calender.php:113
7885
+ msgid "May"
7886
+ msgstr ""
7887
+
7888
+ #: includes/widgets/htmega_pricing_list_view.php:237
7889
+ msgid "Media"
7890
+ msgstr ""
7891
+
7892
+ #: includes/widgets/htmega_button.php:94
7893
+ #: includes/widgets/htmega_double_button.php:47
7894
+ #: includes/widgets/htmega_instragram_feed.php:73
7895
+ msgid "Medium"
7896
+ msgstr ""
7897
+
7898
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:326
7899
+ #: extensions/ht-menu/widgets/verticle-mega-menu.php:284
7900
+ msgid "Mega Menu"
7901
+ msgstr ""
7902
+
7903
+ #: extensions/ht-menu/admin/setting.php:119
7904
+ msgid "Mega Menu Background Color"
7905
+ msgstr ""
7906
+
7907
+ #: extensions/ht-menu/classes/class.mega-menu.php:92
7908
+ msgid "Mega Menu Settings"
7909
+ msgstr ""
7910
+
7911
+ #: extensions/ht-menu/admin/setting.php:108
7912
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:333
7913
+ #: extensions/ht-menu/widgets/verticle-mega-menu.php:291
7914
+ msgid "Mega Menu Width"
7915
+ msgstr ""
7916
+
7917
+ #: includes/widgets/htmega_buddy_press.php:52
7918
+ msgid "Member"
7919
+ msgstr ""
7920
+
7921
+ #: includes/widgets/htmega_teammember.php:133
7922
+ msgid "Member image"
7923
+ msgstr ""
7924
+
7925
+ #: includes/widgets/htmega_booked_calender.php:175
7926
+ msgid "Members Only"
7927
+ msgstr ""
7928
+
7929
+ #: includes/widgets/htmega_inlinemenu.php:75
7930
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:69
7931
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:30
7932
+ #: extensions/ht-menu/widgets/verticle-mega-menu.php:31
7933
+ msgid "Menu"
7934
+ msgstr ""
7935
+
7936
+ #: extensions/ht-menu/menu/templates.php:128
7937
+ msgid "Menu Badge"
7938
+ msgstr ""
7939
+
7940
+ #: admin/include/admin-setting.php:820
7941
+ msgid "Menu Builder"
7942
+ msgstr ""
7943
+
7944
+ #: extensions/ht-menu/admin/setting.php:62
7945
+ msgid "Menu Items Color"
7946
+ msgstr ""
7947
+
7948
+ #: extensions/ht-menu/admin/setting.php:69
7949
+ msgid "Menu Items Hover Color"
7950
+ msgstr ""
7951
+
7952
+ #: includes/widgets/htmega_wc_element_pages.php:1693
7953
+ msgid "Menu Style"
7954
+ msgstr ""
7955
+
7956
+ #: extensions/ht-menu/menu/templates.php:78
7957
+ msgid "Menu Template"
7958
+ msgstr ""
7959
+
7960
+ #: extensions/ht-menu/menu/templates.php:63
7961
+ msgid "Menu Width"
7962
+ msgstr ""
7963
+
7964
+ #: includes/widgets/htmega_post_grid_tab.php:223
7965
+ #: includes/widgets/htmega_post_grid_tab.php:723
7966
+ #: includes/widgets/htmega_post_slider.php:1157
7967
+ #: includes/widgets/htmega_singlepost.php:330
7968
+ msgid "Meta"
7969
+ msgstr ""
7970
+
7971
+ #: includes/widgets/htmega_twitter_feed.php:957
7972
+ msgid "Meta Button"
7973
+ msgstr ""
7974
+
7975
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:39
7976
+ msgid "Meta Data"
7977
+ msgstr ""
7978
+
7979
+ #: includes/widgets/htmega_post_grid_tab.php:746
7980
+ #: includes/widgets/htmega_singlepost.php:448
7981
+ msgid "Meta Hover Color"
7982
+ msgstr ""
7983
+
7984
+ #: includes/widgets/htmega_buddy_press.php:384
7985
+ #: extensions/ht-builder/widgets/bl_post_archive.php:432
7986
+ msgid "Meta Info"
7987
+ msgstr ""
7988
+
7989
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:67
7990
+ msgid "Meta Name"
7991
+ msgstr ""
7992
+
7993
+ #: includes/widgets/htmega_download_monitor.php:230
7994
+ msgid "Meta Style"
7995
+ msgstr ""
7996
+
7997
+ #: includes/widgets/htmega_pricing_list_view.php:1167
7998
+ msgid "Middle"
7999
+ msgstr ""
8000
+
8001
+ #: includes/widgets/htmega_double_button.php:58
8002
+ #: includes/widgets/htmega_double_button.php:66
8003
+ #: includes/widgets/htmega_double_button.php:809
8004
+ msgid "Middle Text"
8005
+ msgstr ""
8006
+
8007
+ #: includes/widgets/htmega_search.php:336
8008
+ msgid "Min Width"
8009
+ msgstr ""
8010
+
8011
+ #: includes/widgets/htmega_scroll_image.php:92
8012
+ msgid "Minimum Height"
8013
+ msgstr ""
8014
+
8015
+ #: includes/widgets/htmega_instagram.php:111
8016
+ msgid "Minute"
8017
+ msgstr ""
8018
+
8019
+ #: includes/widgets/htmega_countdown.php:152
8020
+ #: includes/widgets/htmega_countdown.php:230
8021
+ #: includes/widgets/htmega_countdown.php:232
8022
+ msgid "Minutes"
8023
+ msgstr ""
8024
+
8025
+ #: includes/widgets/htmega_scroll_navigation.php:182
8026
+ msgid "Mobile Device"
8027
+ msgstr ""
8028
+
8029
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:473
8030
+ msgid "Mobile Menu"
8031
+ msgstr ""
8032
+
8033
+ #: includes/widgets/htmega_carousel.php:363
8034
+ #: includes/widgets/htmega_instagram.php:558
8035
+ #: includes/widgets/htmega_panel_slider.php:463
8036
+ #: includes/widgets/htmega_post_slider.php:543
8037
+ #: includes/widgets/htmega_slider_thumb_gallery.php:341
8038
+ #: includes/widgets/htmega_twitter_feed.php:485
8039
+ msgid "Mobile Phone"
8040
+ msgstr ""
8041
+
8042
+ #: includes/widgets/htmega_carousel.php:405
8043
+ #: includes/widgets/htmega_instagram.php:600
8044
+ #: includes/widgets/htmega_panel_slider.php:505
8045
+ #: includes/widgets/htmega_post_slider.php:585
8046
+ #: includes/widgets/htmega_slider_thumb_gallery.php:377
8047
+ #: includes/widgets/htmega_twitter_feed.php:527
8048
+ msgid "Mobile Resolution"
8049
+ msgstr ""
8050
+
8051
+ #: admin/include/templates/library/templates.php:38
8052
+ #: admin/include/templates/library/templates.php:39
8053
+ msgid "Mobile view"
8054
+ msgstr ""
8055
+
8056
+ #: admin/include/admin-setting.php:327 includes/widgets/htmega_modal.php:13
8057
+ #: includes/widgets/htmega_modal.php:35
8058
+ msgid "Modal"
8059
+ msgstr ""
8060
+
8061
+ #: includes/widgets/htmega_modal.php:480
8062
+ msgid "Modal Box Style"
8063
+ msgstr ""
8064
+
8065
+ #: includes/widgets/htmega_modal.php:916
8066
+ msgid "Modal Content"
8067
+ msgstr ""
8068
+
8069
+ #: includes/widgets/htmega_modal.php:112
8070
+ msgid "Modal Design"
8071
+ msgstr ""
8072
+
8073
+ #: includes/widgets/htmega_modal.php:93
8074
+ msgid "Modal Footer Content"
8075
+ msgstr ""
8076
+
8077
+ #: includes/widgets/htmega_modal.php:44
8078
+ msgid "Modal Header Content"
8079
+ msgstr ""
8080
+
8081
+ #: includes/widgets/htmega_modal.php:488
8082
+ msgid "Modal Top Space"
8083
+ msgstr ""
8084
+
8085
+ #: includes/widgets/htmega_modal.php:1032
8086
+ msgid "Modal Width"
8087
+ msgstr ""
8088
+
8089
+ #: includes/widgets/htmega_socialshere.php:70
8090
+ msgid "Moimir"
8091
+ msgstr ""
8092
+
8093
+ #: includes/widgets/htmega_business_hours.php:174
8094
+ msgid "Monday"
8095
+ msgstr ""
8096
+
8097
+ #: includes/widgets/htmega_booked_calender.php:105
8098
+ #: includes/widgets/htmega_instagram.php:115
8099
+ msgid "Month"
8100
+ msgstr ""
8101
+
8102
+ #: includes/recommended-plugins/class.recommended-plugins.php:292
8103
+ msgid "More Details"
8104
+ msgstr ""
8105
+
8106
+ #: includes/widgets/htmega_scroll_navigation.php:283
8107
+ msgid "Mouse Wheel"
8108
+ msgstr ""
8109
+
8110
+ #: includes/recommended-plugins/recommended-plugins.php:34
8111
+ msgid "Move Addons for Elementor"
8112
+ msgstr ""
8113
+
8114
+ #: includes/widgets/htmega_accordion.php:380
8115
+ msgid "Multiple Item Open"
8116
+ msgstr ""
8117
+
8118
+ #: includes/widgets/htmega_wc_element_pages.php:62
8119
+ msgid "My Account"
8120
+ msgstr ""
8121
+
8122
+ #: includes/widgets/htmega_data_table.php:277
8123
+ #: includes/widgets/htmega_easy_digital_download.php:198
8124
+ #: includes/widgets/htmega_newsticker.php:259
8125
+ #: includes/widgets/htmega_postgrid.php:150
8126
+ #: includes/widgets/htmega_post_grid_tab.php:157
8127
+ #: includes/widgets/htmega_post_slider.php:161
8128
+ #: includes/widgets/htmega_pricing_list_view.php:80
8129
+ #: includes/widgets/htmega_pricing_list_view.php:451
8130
+ #: includes/widgets/htmega_teammember.php:153
8131
+ #: includes/widgets/htmega_teammember.php:685
8132
+ #: includes/widgets/htmega_testimonial_grid.php:166
8133
+ #: includes/widgets/htmega_testimonial_grid.php:419
8134
+ #: includes/widgets/htmega_wc_categories.php:129
8135
+ #: extensions/ht-builder/widgets/bl_post_archive.php:201
8136
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:216
8137
+ msgid "Name"
8138
+ msgstr ""
8139
+
8140
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:57
8141
+ msgid "Name HTML Tag"
8142
+ msgstr ""
8143
+
8144
+ #: admin/include/admin-setting.php:962 admin/include/admin-setting.php:963
8145
+ msgid "Nav Menu"
8146
+ msgstr ""
8147
+
8148
+ #: includes/widgets/htmega_newsticker.php:723
8149
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:61
8150
+ msgid "Navigation"
8151
+ msgstr ""
8152
+
8153
+ #: includes/widgets/htmega_booked_calender.php:709
8154
+ #: includes/widgets/htmega_newsticker.php:302
8155
+ msgid "Navigation Button"
8156
+ msgstr ""
8157
+
8158
+ #: includes/widgets/htmega_buddy_press.php:66
8159
+ msgid "Newest"
8160
+ msgstr ""
8161
+
8162
+ #: includes/widgets/htmega_newsticker.php:352
8163
+ msgid "News Box Style"
8164
+ msgstr ""
8165
+
8166
+ #: includes/widgets/htmega_newsticker.php:232
8167
+ msgid "News Limit"
8168
+ msgstr ""
8169
+
8170
+ #: admin/include/admin-setting.php:335
8171
+ #: includes/widgets/htmega_newsticker.php:14
8172
+ #: includes/widgets/htmega_newsticker.php:49
8173
+ msgid "News Ticker"
8174
+ msgstr ""
8175
+
8176
+ #: includes/widgets/htmega_newsticker.php:334
8177
+ msgid "Next Icon"
8178
+ msgstr ""
8179
+
8180
+ #: includes/widgets/htmega_carousel.php:181
8181
+ #: includes/widgets/htmega_instagram.php:376
8182
+ #: includes/widgets/htmega_panel_slider.php:281
8183
+ #: includes/widgets/htmega_post_slider.php:345
8184
+ #: includes/widgets/htmega_slider_thumb_gallery.php:183
8185
+ #: includes/widgets/htmega_twitter_feed.php:303
8186
+ msgid "Next icon"
8187
+ msgstr ""
8188
+
8189
+ #: admin/include/admin-setting.php:1178
8190
+ #: includes/widgets/htmega_ninja_form.php:13
8191
+ #: includes/widgets/htmega_ninja_form.php:59
8192
+ msgid "Ninja Form"
8193
+ msgstr ""
8194
+
8195
+ #: includes/widgets/htmega_carousel.php:211
8196
+ #: includes/widgets/htmega_data_table.php:216
8197
+ #: includes/widgets/htmega_data_table.php:273
8198
+ #: includes/widgets/htmega_gravity_forms.php:104
8199
+ #: includes/widgets/htmega_instagram.php:406
8200
+ #: includes/widgets/htmega_panel_slider.php:159
8201
+ #: includes/widgets/htmega_panel_slider.php:170
8202
+ #: includes/widgets/htmega_panel_slider.php:311
8203
+ #: includes/widgets/htmega_post_slider.php:391
8204
+ #: includes/widgets/htmega_pricing_list_view.php:205
8205
+ #: includes/widgets/htmega_pricing_list_view.php:447
8206
+ #: includes/widgets/htmega_slider_thumb_gallery.php:210
8207
+ #: includes/widgets/htmega_slider_thumb_gallery.php:475
8208
+ #: includes/widgets/htmega_twitter_feed.php:333
8209
+ #: includes/widgets/htmega_user_login_form.php:120
8210
+ #: includes/widgets/htmega_user_login_form.php:263
8211
+ #: includes/widgets/htmega_videoplayer.php:125
8212
+ #: includes/widgets/htmega_videoplayer.php:165
8213
+ #: includes/widgets/htmega_videoplayer.php:177
8214
+ #: includes/widgets/htmega_videoplayer.php:189
8215
+ #: includes/widgets/htmega_videoplayer.php:201
8216
+ #: includes/widgets/htmega_videoplayer.php:213
8217
+ msgid "No"
8218
+ msgstr ""
8219
+
8220
+ #: includes/widgets/htmega_googlemap.php:249
8221
+ #: includes/widgets/htmega_instragram_feed.php:85
8222
+ #: includes/widgets/htmega_instragram_feed.php:96
8223
+ msgid "no"
8224
+ msgstr ""
8225
+
8226
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:213
8227
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:216
8228
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:579
8229
+ msgid "No Comments"
8230
+ msgstr ""
8231
+
8232
+ #: includes/helper-function.php:278
8233
+ msgid "No contact form found"
8234
+ msgstr ""
8235
+
8236
+ #: includes/widgets/htmega_singlepost.php:583
8237
+ msgid "No selected post"
8238
+ msgstr ""
8239
+
8240
+ #: includes/widgets/htmega_template_selector.php:67
8241
+ msgid "No selected template"
8242
+ msgstr ""
8243
+
8244
+ #: includes/helper-function.php:138
8245
+ msgid "No sidebars were found"
8246
+ msgstr ""
8247
+
8248
+ #: includes/widgets/htmega_revolution_slider.php:43
8249
+ msgid "No Slider Found."
8250
+ msgstr ""
8251
+
8252
+ #: admin/include/class.diagnostic-data.php:464
8253
+ msgid "No Thanks"
8254
+ msgstr ""
8255
+
8256
+ #: includes/helper-function.php:295 includes/widgets/htmega_blockquote.php:406
8257
+ #: includes/widgets/htmega_button.php:422
8258
+ #: includes/widgets/htmega_button.php:485
8259
+ #: includes/widgets/htmega_counter.php:95
8260
+ #: includes/widgets/htmega_imagemarker.php:230
8261
+ #: includes/widgets/htmega_imagemarker.php:289
8262
+ #: includes/widgets/htmega_imagemarker.php:500
8263
+ #: includes/widgets/htmega_imagemarker.php:786
8264
+ #: includes/widgets/htmega_job_manager.php:129
8265
+ #: includes/widgets/htmega_newsticker.php:256
8266
+ #: includes/widgets/htmega_notify.php:147
8267
+ #: includes/widgets/htmega_notify.php:182
8268
+ #: includes/widgets/htmega_postgrid.php:147
8269
+ #: includes/widgets/htmega_post_grid_tab.php:154
8270
+ #: includes/widgets/htmega_post_slider.php:158
8271
+ #: includes/widgets/htmega_pricing_list_view.php:252
8272
+ #: includes/widgets/htmega_scroll_image.php:254
8273
+ #: includes/widgets/htmega_socialshere.php:466
8274
+ #: includes/widgets/htmega_teammember.php:104
8275
+ #: includes/widgets/htmega_testimonial_grid.php:58
8276
+ #: extensions/ht-builder/widgets/bl_post_archive.php:198
8277
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:97
8278
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:296
8279
+ msgid "None"
8280
+ msgstr ""
8281
+
8282
+ #: includes/widgets/htmega_accordion.php:556
8283
+ #: includes/widgets/htmega_accordion.php:1081
8284
+ #: includes/widgets/htmega_add_banner.php:156
8285
+ #: includes/widgets/htmega_add_banner.php:245
8286
+ #: includes/widgets/htmega_add_banner.php:620
8287
+ #: includes/widgets/htmega_booked_calender.php:574
8288
+ #: includes/widgets/htmega_booked_calender.php:720
8289
+ #: includes/widgets/htmega_brand.php:170
8290
+ #: includes/widgets/htmega_buddy_press.php:316
8291
+ #: includes/widgets/htmega_button.php:201
8292
+ #: includes/widgets/htmega_button.php:526
8293
+ #: includes/widgets/htmega_caldera_form.php:195
8294
+ #: includes/widgets/htmega_caldera_form.php:447
8295
+ #: includes/widgets/htmega_call_to_action.php:690
8296
+ #: includes/widgets/htmega_call_to_action.php:896
8297
+ #: includes/widgets/htmega_carousel.php:550
8298
+ #: includes/widgets/htmega_carousel.php:827
8299
+ #: includes/widgets/htmega_carousel.php:1095
8300
+ #: includes/widgets/htmega_carousel.php:1303
8301
+ #: includes/widgets/htmega_contact_form_seven.php:188
8302
+ #: includes/widgets/htmega_contact_form_seven.php:466
8303
+ #: includes/widgets/htmega_contact_form_seven.php:777
8304
+ #: includes/widgets/htmega_countdown.php:1028
8305
+ #: includes/widgets/htmega_custom_event.php:136
8306
+ #: includes/widgets/htmega_custom_event.php:391
8307
+ #: includes/widgets/htmega_double_button.php:400
8308
+ #: includes/widgets/htmega_double_button.php:475
8309
+ #: includes/widgets/htmega_double_button.php:648
8310
+ #: includes/widgets/htmega_download_monitor.php:146
8311
+ #: includes/widgets/htmega_easy_digital_download.php:352
8312
+ #: includes/widgets/htmega_easy_digital_download.php:533
8313
+ #: includes/widgets/htmega_errorcontent.php:552
8314
+ #: includes/widgets/htmega_errorcontent.php:703
8315
+ #: includes/widgets/htmega_gravity_forms.php:398
8316
+ #: includes/widgets/htmega_gravity_forms.php:640
8317
+ #: includes/widgets/htmega_image_grid.php:461
8318
+ #: includes/widgets/htmega_image_masonry.php:449
8319
+ #: includes/widgets/htmega_inlinemenu.php:146
8320
+ #: includes/widgets/htmega_instagram.php:927
8321
+ #: includes/widgets/htmega_instagram.php:1145
8322
+ #: includes/widgets/htmega_mailchimp_wp.php:301
8323
+ #: includes/widgets/htmega_modal.php:211
8324
+ #: includes/widgets/htmega_newsticker.php:736
8325
+ #: includes/widgets/htmega_ninja_form.php:484
8326
+ #: includes/widgets/htmega_ninja_form.php:705
8327
+ #: includes/widgets/htmega_ninja_form.php:923
8328
+ #: includes/widgets/htmega_notify.php:322
8329
+ #: includes/widgets/htmega_offcanvas.php:414
8330
+ #: includes/widgets/htmega_panel_slider.php:808
8331
+ #: includes/widgets/htmega_panel_slider.php:1100
8332
+ #: includes/widgets/htmega_popover.php:331
8333
+ #: includes/widgets/htmega_post_grid_tab.php:623
8334
+ #: includes/widgets/htmega_post_grid_tab.php:843
8335
+ #: includes/widgets/htmega_post_grid_tab.php:993
8336
+ #: includes/widgets/htmega_post_slider.php:1058
8337
+ #: includes/widgets/htmega_post_slider.php:1271
8338
+ #: includes/widgets/htmega_post_slider.php:1535
8339
+ #: includes/widgets/htmega_post_slider.php:1755
8340
+ #: includes/widgets/htmega_post_slider.php:1920
8341
+ #: includes/widgets/htmega_progress_bar.php:76
8342
+ #: includes/widgets/htmega_quforms.php:321
8343
+ #: includes/widgets/htmega_quforms.php:541
8344
+ #: includes/widgets/htmega_quforms.php:759
8345
+ #: includes/widgets/htmega_scroll_navigation.php:392
8346
+ #: includes/widgets/htmega_search.php:223
8347
+ #: includes/widgets/htmega_search.php:435
8348
+ #: includes/widgets/htmega_search.php:673
8349
+ #: includes/widgets/htmega_service.php:176
8350
+ #: includes/widgets/htmega_service.php:617
8351
+ #: includes/widgets/htmega_service.php:1022
8352
+ #: includes/widgets/htmega_singlepost.php:344
8353
+ #: includes/widgets/htmega_slider_thumb_gallery.php:816
8354
+ #: includes/widgets/htmega_slider_thumb_gallery.php:1074
8355
+ #: includes/widgets/htmega_slider_thumb_gallery.php:1223
8356
+ #: includes/widgets/htmega_socialshere.php:681
8357
+ #: includes/widgets/htmega_special_day_banner.php:643
8358
+ #: includes/widgets/htmega_switcher.php:351
8359
+ #: includes/widgets/htmega_tabs.php:502 includes/widgets/htmega_tabs.php:680
8360
+ #: includes/widgets/htmega_testimonial_grid.php:264
8361
+ #: includes/widgets/htmega_toggle.php:225
8362
+ #: includes/widgets/htmega_tooltip.php:307
8363
+ #: includes/widgets/htmega_twitter_feed.php:701
8364
+ #: includes/widgets/htmega_twitter_feed.php:970
8365
+ #: includes/widgets/htmega_twitter_feed.php:1068
8366
+ #: includes/widgets/htmega_twitter_feed.php:1306
8367
+ #: includes/widgets/htmega_user_login_form.php:1097
8368
+ #: includes/widgets/htmega_user_login_form.php:1295
8369
+ #: includes/widgets/htmega_verticle_time_line.php:191
8370
+ #: includes/widgets/htmega_videoplayer.php:336
8371
+ #: includes/widgets/htmega_wc_categories.php:175
8372
+ #: includes/widgets/htmega_wc_categories.php:292
8373
+ #: includes/widgets/htmega_wc_categories.php:468
8374
+ #: includes/widgets/htmega_wc_element_pages.php:205
8375
+ #: includes/widgets/htmega_wc_element_pages.php:385
8376
+ #: includes/widgets/htmega_wc_element_pages.php:548
8377
+ #: includes/widgets/htmega_wc_element_pages.php:705
8378
+ #: includes/widgets/htmega_wc_element_pages.php:934
8379
+ #: includes/widgets/htmega_wc_element_pages.php:1349
8380
+ #: includes/widgets/htmega_wc_element_pages.php:1523
8381
+ #: includes/widgets/htmega_wc_element_pages.php:1706
8382
+ #: includes/widgets/htmega_working_process.php:351
8383
+ #: includes/widgets/htmega_working_process.php:935
8384
+ #: includes/widgets/htmega_wpforms.php:485
8385
+ #: includes/widgets/htmega_wpforms.php:709
8386
+ #: includes/widgets/htmega_wpforms.php:926
8387
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:142
8388
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:374
8389
+ #: extensions/ht-builder/widgets/bl_post_archive.php:340
8390
+ #: extensions/ht-builder/widgets/bl_post_archive.php:446
8391
+ #: extensions/ht-builder/widgets/bl_post_archive.php:553
8392
+ #: extensions/ht-builder/widgets/bl_post_archive.php:714
8393
+ #: extensions/ht-builder/widgets/bl_post_archive.php:849
8394
+ #: extensions/ht-builder/widgets/bl_post_comments.php:91
8395
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:394
8396
+ #: extensions/ht-builder/widgets/bl_post_search_form.php:194
8397
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:424
8398
+ #: extensions/ht-menu/widgets/verticle-mega-menu.php:382
8399
+ msgid "Normal"
8400
+ msgstr ""
8401
+
8402
+ #: includes/widgets/htmega_toggle.php:53
8403
+ msgid "Normal Icon"
8404
+ msgstr ""
8405
+
8406
+ #: includes/widgets/htmega_socialshere.php:121
8407
+ #: includes/widgets/htmega_socialshere.php:219
8408
+ msgid "Normal Style"
8409
+ msgstr ""
8410
+
8411
+ #: includes/widgets/htmega_toggle.php:43
8412
+ msgid "Normal Title"
8413
+ msgstr ""
8414
+
8415
+ #: includes/widgets/htmega_modal.php:670
8416
+ msgid "Note: Below, This CSS style to use on your header close button "
8417
+ msgstr ""
8418
+
8419
+ #: includes/class.assests.php:380
8420
+ msgid "Nothing Found"
8421
+ msgstr ""
8422
+
8423
+ #: includes/recommended-plugins/recommended-plugins.php:39
8424
+ msgid "Notification Bar for WordPress"
8425
+ msgstr ""
8426
+
8427
+ #: includes/widgets/htmega_notify.php:71
8428
+ msgid "Notification Content"
8429
+ msgstr ""
8430
+
8431
+ #: extensions/wc-sales-notification/admin/setting.php:64
8432
+ msgid "Notification Content Type"
8433
+ msgstr ""
8434
+
8435
+ #: extensions/wc-sales-notification/admin/setting.php:165
8436
+ msgid "Notification Enter Animation. <span>( Pro )</span>"
8437
+ msgstr ""
8438
+
8439
+ #: admin/include/admin-setting.php:1393 admin/include/admin-setting.php:1418
8440
+ msgid "Notification image position"
8441
+ msgstr ""
8442
+
8443
+ #: extensions/wc-sales-notification/admin/setting.php:90
8444
+ msgid "Notification Layout. <span>( Pro )</span>"
8445
+ msgstr ""
8446
+
8447
+ #: extensions/wc-sales-notification/admin/setting.php:115
8448
+ msgid "Notification Loading duration."
8449
+ msgstr ""
8450
+
8451
+ #: includes/widgets/htmega_notify.php:78
8452
+ msgid "Notification Message"
8453
+ msgstr ""
8454
+
8455
+ #: includes/widgets/htmega_notify.php:90
8456
+ msgid "Notification Option"
8457
+ msgstr ""
8458
+
8459
+ #: extensions/wc-sales-notification/admin/setting.php:177
8460
+ msgid "Notification Out Animation. <span>( Pro )</span>"
8461
+ msgstr ""
8462
+
8463
+ #: includes/widgets/htmega_notify.php:109
8464
+ msgid "Notification Position"
8465
+ msgstr ""
8466
+
8467
+ #: admin/include/admin-setting.php:1392 admin/include/admin-setting.php:1417
8468
+ msgid "Notification showing position"
8469
+ msgstr ""
8470
+
8471
+ #: includes/widgets/htmega_notify.php:128
8472
+ msgid "Notification Type"
8473
+ msgstr ""
8474
+
8475
+ #: admin/include/admin-setting.php:343 includes/widgets/htmega_notify.php:13
8476
+ msgid "Notify"
8477
+ msgstr ""
8478
+
8479
+ #: includes/widgets/htmega_notify.php:463
8480
+ msgid "Notify Content"
8481
+ msgstr ""
8482
+
8483
+ #: includes/widgets/htmega_booked_calender.php:119
8484
+ msgid "November"
8485
+ msgstr ""
8486
+
8487
+ #: includes/widgets/htmega_counter.php:413
8488
+ #: includes/widgets/htmega_job_manager.php:130
8489
+ #: includes/widgets/htmega_working_process.php:791
8490
+ msgid "Number"
8491
+ msgstr ""
8492
+
8493
+ #: includes/widgets/htmega_wc_categories.php:58
8494
+ msgid "Number of Category"
8495
+ msgstr ""
8496
+
8497
+ #: includes/widgets/htmega_instragram_feed.php:58
8498
+ msgid "Number of Column"
8499
+ msgstr ""
8500
+
8501
+ #: includes/widgets/htmega_easy_digital_download.php:67
8502
+ msgid "Number of Item"
8503
+ msgstr ""
8504
+
8505
+ #: includes/widgets/htmega_job_manager.php:66
8506
+ msgid "Number of listings to show"
8507
+ msgstr ""
8508
+
8509
+ #: includes/widgets/htmega_counter.php:173
8510
+ msgid "Number Prefix"
8511
+ msgstr ""
8512
+
8513
+ #: includes/widgets/htmega_counter.php:182
8514
+ msgid "Number Suffix"
8515
+ msgstr ""
8516
+
8517
+ #: includes/widgets/htmega_verticle_time_line.php:105
8518
+ msgid "Oct<br/>2018"
8519
+ msgstr ""
8520
+
8521
+ #: includes/widgets/htmega_booked_calender.php:118
8522
+ msgid "October"
8523
+ msgstr ""
8524
+
8525
+ #: includes/widgets/htmega_wc_element_pages.php:1235
8526
+ msgid "Odd"
8527
+ msgstr ""
8528
+
8529
+ #: includes/widgets/htmega_tablepress.php:307
8530
+ msgid "Odd Cell"
8531
+ msgstr ""
8532
+
8533
+ #: includes/widgets/htmega_socialshere.php:69
8534
+ msgid "Odnoklassniki"
8535
+ msgstr ""
8536
+
8537
+ #: includes/widgets/htmega_carousel.php:115
8538
+ #: includes/widgets/htmega_instagram.php:202
8539
+ #: includes/widgets/htmega_panel_slider.php:181
8540
+ #: includes/widgets/htmega_post_slider.php:279
8541
+ #: includes/widgets/htmega_special_day_banner.php:116
8542
+ #: includes/widgets/htmega_twitter_feed.php:220
8543
+ msgid "Off"
8544
+ msgstr ""
8545
+
8546
+ #: admin/include/admin-setting.php:351 includes/widgets/htmega_offcanvas.php:13
8547
+ #: includes/widgets/htmega_offcanvas.php:49
8548
+ #: includes/widgets/htmega_offcanvas.php:184
8549
+ msgid "Offcanvas"
8550
+ msgstr ""
8551
+
8552
+ #: includes/widgets/htmega_offcanvas.php:144
8553
+ msgid "Offcanvas Height"
8554
+ msgstr ""
8555
+
8556
+ #: includes/widgets/htmega_offcanvas.php:98
8557
+ msgid "Offcanvas Position"
8558
+ msgstr ""
8559
+
8560
+ #: includes/widgets/htmega_offcanvas.php:114
8561
+ msgid "Offcanvas Width"
8562
+ msgstr ""
8563
+
8564
+ #: includes/widgets/htmega_special_day_banner.php:105
8565
+ #: includes/widgets/htmega_special_day_banner.php:512
8566
+ msgid "Offer Amount"
8567
+ msgstr ""
8568
+
8569
+ #: includes/widgets/htmega_special_day_banner.php:114
8570
+ #: includes/widgets/htmega_special_day_banner.php:571
8571
+ msgid "Offer Tag Line"
8572
+ msgstr ""
8573
+
8574
+ #: includes/widgets/htmega_notify.php:213
8575
+ #: includes/widgets/htmega_scroll_image.php:252
8576
+ msgid "Offset"
8577
+ msgstr ""
8578
+
8579
+ #: includes/widgets/htmega_carousel.php:114
8580
+ #: includes/widgets/htmega_instagram.php:201
8581
+ #: includes/widgets/htmega_panel_slider.php:180
8582
+ #: includes/widgets/htmega_post_slider.php:278
8583
+ #: includes/widgets/htmega_twitter_feed.php:219
8584
+ msgid "On"
8585
+ msgstr ""
8586
+
8587
+ #: includes/widgets/htmega_teammember.php:669
8588
+ msgid "ON/OFF Image Hover rotation"
8589
+ msgstr ""
8590
+
8591
+ #: includes/widgets/htmega_image_grid.php:70
8592
+ #: includes/widgets/htmega_image_masonry.php:79
8593
+ #: includes/widgets/htmega_testimonial_grid.php:73
8594
+ #: includes/widgets/htmega_testimonial_grid.php:88
8595
+ #: includes/widgets/htmega_testimonial_grid.php:105
8596
+ msgid "One"
8597
+ msgstr ""
8598
+
8599
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:227
8600
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:230
8601
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:580
8602
+ msgid "One Comment"
8603
+ msgstr ""
8604
+
8605
+ #: admin/include/admin-setting.php:1365
8606
+ msgid "Online Documentation"
8607
+ msgstr ""
8608
+
8609
+ #: includes/widgets/htmega_switcher.php:560
8610
+ #: includes/widgets/htmega_switcher.php:569
8611
+ msgid "Only for custom content."
8612
+ msgstr ""
8613
+
8614
+ #: includes/widgets/htmega_easy_digital_download.php:168
8615
+ #: includes/widgets/htmega_wc_categories.php:108
8616
+ msgid "Only Top Level"
8617
+ msgstr ""
8618
+
8619
+ #: includes/widgets/htmega_section_title.php:1026
8620
+ msgid "Opacity"
8621
+ msgstr ""
8622
+
8623
+ #: includes/widgets/htmega_imagemarker.php:75
8624
+ msgid "Opacity (%)"
8625
+ msgstr ""
8626
+
8627
+ #: includes/widgets/htmega_imagemarker.php:61
8628
+ msgid "Opacity Color"
8629
+ msgstr ""
8630
+
8631
+ #: includes/widgets/htmega_lightbox.php:171
8632
+ msgid "Open"
8633
+ msgstr ""
8634
+
8635
+ #: includes/widgets/htmega_accordion.php:327
8636
+ msgid "Open Item Icon"
8637
+ msgstr ""
8638
+
8639
+ #: includes/widgets/htmega_toggle.php:71
8640
+ msgid "Opened Icon"
8641
+ msgstr ""
8642
+
8643
+ #: includes/widgets/htmega_toggle.php:61
8644
+ msgid "Opened Title"
8645
+ msgstr ""
8646
+
8647
+ #: includes/widgets/htmega_easy_digital_download.php:129
8648
+ #: includes/widgets/htmega_ninja_form.php:77
8649
+ #: includes/widgets/htmega_tablepress.php:68
8650
+ #: includes/widgets/htmega_wc_categories.php:70
8651
+ msgid "Options"
8652
+ msgstr ""
8653
+
8654
+ #: includes/widgets/htmega_data_table.php:120
8655
+ msgid "Options for number of Rows"
8656
+ msgstr ""
8657
+
8658
+ #: includes/widgets/htmega_double_button.php:68
8659
+ msgid "Or"
8660
+ msgstr ""
8661
+
8662
+ #: includes/widgets/htmega_easy_digital_download.php:209
8663
+ #: includes/widgets/htmega_job_manager.php:79
8664
+ #: includes/widgets/htmega_postgrid.php:127
8665
+ #: includes/widgets/htmega_post_grid_tab.php:134
8666
+ #: includes/widgets/htmega_post_slider.php:138
8667
+ #: includes/widgets/htmega_wc_categories.php:140
8668
+ msgid "Order"
8669
+ msgstr ""
8670
+
8671
+ #: includes/widgets/htmega_newsticker.php:273
8672
+ #: extensions/ht-builder/widgets/bl_post_archive.php:215
8673
+ msgid "order"
8674
+ msgstr ""
8675
+
8676
+ #: includes/widgets/htmega_job_manager.php:95
8677
+ msgid "Order By"
8678
+ msgstr ""
8679
+
8680
+ #: includes/widgets/htmega_easy_digital_download.php:194
8681
+ #: includes/widgets/htmega_wc_categories.php:125
8682
+ msgid "Order by"
8683
+ msgstr ""
8684
+
8685
+ #: extensions/wc-sales-notification/admin/setting.php:102
8686
+ msgid "Order Limit for notification."
8687
+ msgstr ""
8688
+
8689
+ #: includes/widgets/htmega_wc_element_pages.php:1101
8690
+ msgid "Order Review"
8691
+ msgstr ""
8692
+
8693
+ #: includes/widgets/htmega_wc_element_pages.php:61
8694
+ msgid "Order Tracking Form"
8695
+ msgstr ""
8696
+
8697
+ #: extensions/wc-sales-notification/admin/setting.php:152
8698
+ msgid "Order Upto"
8699
+ msgstr ""
8700
+
8701
+ #: includes/widgets/htmega_newsticker.php:252
8702
+ #: includes/widgets/htmega_postgrid.php:143
8703
+ #: includes/widgets/htmega_post_grid_tab.php:150
8704
+ #: includes/widgets/htmega_post_slider.php:154
8705
+ #: extensions/ht-builder/widgets/bl_post_archive.php:194
8706
+ msgid "Orderby"
8707
+ msgstr ""
8708
+
8709
+ #: includes/widgets/htmega_data_table.php:176
8710
+ msgid "Ordering"
8711
+ msgstr ""
8712
+
8713
+ #: admin/include/admin-setting.php:86
8714
+ msgid "Other options"
8715
+ msgstr ""
8716
+
8717
+ #: includes/recommended-plugins/recommended-plugins.php:91
8718
+ msgid "Other Plugins"
8719
+ msgstr ""
8720
+
8721
+ #: includes/widgets/htmega_testimonial_grid.php:118
8722
+ msgid "Other' Devices Width(%)"
8723
+ msgstr ""
8724
+
8725
+ #: includes/widgets/htmega_progress_bar.php:655
8726
+ #: includes/widgets/htmega_progress_bar.php:774
8727
+ msgid "Outer"
8728
+ msgstr ""
8729
+
8730
+ #: admin/include/admin-setting.php:1397 admin/include/admin-setting.php:1422
8731
+ msgid "Outgoing animation option"
8732
+ msgstr ""
8733
+
8734
+ #: includes/widgets/htmega_lightbox.php:226
8735
+ msgid "Overlay"
8736
+ msgstr ""
8737
+
8738
+ #: includes/widgets/htmega_image_grid.php:201
8739
+ #: includes/widgets/htmega_image_masonry.php:182
8740
+ #: includes/widgets/htmega_instagram.php:734
8741
+ msgid "Overlay Color"
8742
+ msgstr ""
8743
+
8744
+ #: includes/widgets/htmega_instagram.php:745
8745
+ msgid "Overlay Padding"
8746
+ msgstr ""
8747
+
8748
+ #: includes/widgets/htmega_weather.php:43
8749
+ msgid "Override Title"
8750
+ msgstr ""
8751
+
8752
+ #: includes/helper-function.php:207
8753
+ msgid "p"
8754
+ msgstr ""
8755
+
8756
+ #: includes/widgets/htmega_accordion.php:598
8757
+ #: includes/widgets/htmega_accordion.php:814
8758
+ #: includes/widgets/htmega_accordion.php:949
8759
+ #: includes/widgets/htmega_accordion.php:1360
8760
+ #: includes/widgets/htmega_add_banner.php:175
8761
+ #: includes/widgets/htmega_add_banner.php:263
8762
+ #: includes/widgets/htmega_add_banner.php:317
8763
+ #: includes/widgets/htmega_add_banner.php:415
8764
+ #: includes/widgets/htmega_add_banner.php:474
8765
+ #: includes/widgets/htmega_add_banner.php:533
8766
+ #: includes/widgets/htmega_add_banner.php:592
8767
+ #: includes/widgets/htmega_add_banner.php:678
8768
+ #: includes/widgets/htmega_animated_heading.php:222
8769
+ #: includes/widgets/htmega_animated_heading.php:353
8770
+ #: includes/widgets/htmega_animated_heading.php:441
8771
+ #: includes/widgets/htmega_blockquote.php:233
8772
+ #: includes/widgets/htmega_blockquote.php:311
8773
+ #: includes/widgets/htmega_blockquote.php:367
8774
+ #: includes/widgets/htmega_blockquote.php:529
8775
+ #: includes/widgets/htmega_blockquote.php:710
8776
+ #: includes/widgets/htmega_booked_calender.php:633
8777
+ #: includes/widgets/htmega_booked_calender.php:791
8778
+ #: includes/widgets/htmega_brand.php:141 includes/widgets/htmega_brand.php:328
8779
+ #: includes/widgets/htmega_buddy_press.php:223
8780
+ #: includes/widgets/htmega_business_hours.php:255
8781
+ #: includes/widgets/htmega_business_hours.php:331
8782
+ #: includes/widgets/htmega_business_hours.php:459
8783
+ #: includes/widgets/htmega_button.php:304
8784
+ #: includes/widgets/htmega_button.php:576
8785
+ #: includes/widgets/htmega_caldera_form.php:276
8786
+ #: includes/widgets/htmega_caldera_form.php:508
8787
+ #: includes/widgets/htmega_call_to_action.php:379
8788
+ #: includes/widgets/htmega_call_to_action.php:456
8789
+ #: includes/widgets/htmega_call_to_action.php:544
8790
+ #: includes/widgets/htmega_call_to_action.php:603
8791
+ #: includes/widgets/htmega_call_to_action.php:662
8792
+ #: includes/widgets/htmega_call_to_action.php:730
8793
+ #: includes/widgets/htmega_call_to_action.php:936
8794
+ #: includes/widgets/htmega_carousel.php:468
8795
+ #: includes/widgets/htmega_carousel.php:682
8796
+ #: includes/widgets/htmega_carousel.php:1359
8797
+ #: includes/widgets/htmega_contact_form_seven.php:148
8798
+ #: includes/widgets/htmega_contact_form_seven.php:318
8799
+ #: includes/widgets/htmega_contact_form_seven.php:557
8800
+ #: includes/widgets/htmega_contact_form_seven.php:713
8801
+ #: includes/widgets/htmega_contact_form_seven.php:857
8802
+ #: includes/widgets/htmega_countdown.php:575
8803
+ #: includes/widgets/htmega_countdown.php:822
8804
+ #: includes/widgets/htmega_countdown.php:984
8805
+ #: includes/widgets/htmega_countdown.php:1108
8806
+ #: includes/widgets/htmega_counter.php:227
8807
+ #: includes/widgets/htmega_counter.php:487
8808
+ #: includes/widgets/htmega_counter.php:612
8809
+ #: includes/widgets/htmega_counter.php:878
8810
+ #: includes/widgets/htmega_counter.php:968
8811
+ #: includes/widgets/htmega_counter.php:1057
8812
+ #: includes/widgets/htmega_custom_event.php:163
8813
+ #: includes/widgets/htmega_custom_event.php:248
8814
+ #: includes/widgets/htmega_data_table.php:580
8815
+ #: includes/widgets/htmega_double_button.php:543
8816
+ #: includes/widgets/htmega_double_button.php:716
8817
+ #: includes/widgets/htmega_double_button.php:899
8818
+ #: includes/widgets/htmega_download_monitor.php:191
8819
+ #: includes/widgets/htmega_dropcaps.php:140
8820
+ #: includes/widgets/htmega_dropcaps.php:239
8821
+ #: includes/widgets/htmega_easy_digital_download.php:268
8822
+ #: includes/widgets/htmega_easy_digital_download.php:587
8823
+ #: includes/widgets/htmega_errorcontent.php:289
8824
+ #: includes/widgets/htmega_errorcontent.php:355
8825
+ #: includes/widgets/htmega_errorcontent.php:434
8826
+ #: includes/widgets/htmega_errorcontent.php:513
8827
+ #: includes/widgets/htmega_errorcontent.php:589
8828
+ #: includes/widgets/htmega_errorcontent.php:740
8829
+ #: includes/widgets/htmega_googlemap.php:336
8830
+ #: includes/widgets/htmega_googlemap.php:477
8831
+ #: includes/widgets/htmega_gravity_forms.php:319
8832
+ #: includes/widgets/htmega_gravity_forms.php:485
8833
+ #: includes/widgets/htmega_gravity_forms.php:717
8834
+ #: includes/widgets/htmega_imagemarker.php:683
8835
+ #: includes/widgets/htmega_imagemarker.php:907
8836
+ #: includes/widgets/htmega_image_comparison.php:293
8837
+ #: includes/widgets/htmega_image_comparison.php:374
8838
+ #: includes/widgets/htmega_image_grid.php:348
8839
+ #: includes/widgets/htmega_image_grid.php:435
8840
+ #: includes/widgets/htmega_image_grid.php:508
8841
+ #: includes/widgets/htmega_image_magnifier.php:142
8842
+ #: includes/widgets/htmega_image_masonry.php:194
8843
+ #: includes/widgets/htmega_image_masonry.php:336
8844
+ #: includes/widgets/htmega_image_masonry.php:423
8845
+ #: includes/widgets/htmega_image_masonry.php:495
8846
+ #: includes/widgets/htmega_inlinemenu.php:175
8847
+ #: includes/widgets/htmega_instagram.php:647
8848
+ #: includes/widgets/htmega_instagram.php:693
8849
+ #: includes/widgets/htmega_instagram.php:823
8850
+ #: includes/widgets/htmega_instagram.php:885
8851
+ #: includes/widgets/htmega_instagram.php:1057
8852
+ #: includes/widgets/htmega_instagram.php:1342
8853
+ #: includes/widgets/htmega_lightbox.php:251
8854
+ #: includes/widgets/htmega_lightbox.php:439
8855
+ #: includes/widgets/htmega_mailchimp_wp.php:89
8856
+ #: includes/widgets/htmega_mailchimp_wp.php:259
8857
+ #: includes/widgets/htmega_mailchimp_wp.php:394
8858
+ #: includes/widgets/htmega_modal.php:278 includes/widgets/htmega_modal.php:538
8859
+ #: includes/widgets/htmega_modal.php:655 includes/widgets/htmega_modal.php:710
8860
+ #: includes/widgets/htmega_modal.php:818 includes/widgets/htmega_modal.php:880
8861
+ #: includes/widgets/htmega_modal.php:988
8862
+ #: includes/widgets/htmega_newsticker.php:390
8863
+ #: includes/widgets/htmega_newsticker.php:444
8864
+ #: includes/widgets/htmega_newsticker.php:587
8865
+ #: includes/widgets/htmega_newsticker.php:832
8866
+ #: includes/widgets/htmega_newsticker.php:966
8867
+ #: includes/widgets/htmega_ninja_form.php:140
8868
+ #: includes/widgets/htmega_ninja_form.php:242
8869
+ #: includes/widgets/htmega_ninja_form.php:406
8870
+ #: includes/widgets/htmega_ninja_form.php:552
8871
+ #: includes/widgets/htmega_ninja_form.php:774
8872
+ #: includes/widgets/htmega_ninja_form.php:976
8873
+ #: includes/widgets/htmega_notify.php:389
8874
+ #: includes/widgets/htmega_notify.php:532
8875
+ #: includes/widgets/htmega_notify.php:788
8876
+ #: includes/widgets/htmega_offcanvas.php:349
8877
+ #: includes/widgets/htmega_offcanvas.php:441
8878
+ #: includes/widgets/htmega_panel_slider.php:543
8879
+ #: includes/widgets/htmega_panel_slider.php:722
8880
+ #: includes/widgets/htmega_panel_slider.php:778
8881
+ #: includes/widgets/htmega_panel_slider.php:954
8882
+ #: includes/widgets/htmega_popover.php:292
8883
+ #: includes/widgets/htmega_popover.php:437
8884
+ #: includes/widgets/htmega_popover.php:614
8885
+ #: includes/widgets/htmega_popover.php:718
8886
+ #: includes/widgets/htmega_postgrid.php:500
8887
+ #: includes/widgets/htmega_postgrid.php:614
8888
+ #: includes/widgets/htmega_postgrid.php:701
8889
+ #: includes/widgets/htmega_post_grid_tab.php:313
8890
+ #: includes/widgets/htmega_post_grid_tab.php:386
8891
+ #: includes/widgets/htmega_post_grid_tab.php:479
8892
+ #: includes/widgets/htmega_post_grid_tab.php:566
8893
+ #: includes/widgets/htmega_post_grid_tab.php:664
8894
+ #: includes/widgets/htmega_post_grid_tab.php:789
8895
+ #: includes/widgets/htmega_post_grid_tab.php:884
8896
+ #: includes/widgets/htmega_post_grid_tab.php:1038
8897
+ #: includes/widgets/htmega_post_grid_tab.php:1146
8898
+ #: includes/widgets/htmega_post_slider.php:759
8899
+ #: includes/widgets/htmega_post_slider.php:914
8900
+ #: includes/widgets/htmega_post_slider.php:1001
8901
+ #: includes/widgets/htmega_post_slider.php:1098
8902
+ #: includes/widgets/htmega_post_slider.php:1217
8903
+ #: includes/widgets/htmega_post_slider.php:1311
8904
+ #: includes/widgets/htmega_post_slider.php:1667
8905
+ #: includes/widgets/htmega_post_slider.php:1926
8906
+ #: includes/widgets/htmega_pricing_list_view.php:1240
8907
+ #: includes/widgets/htmega_pricing_list_view.php:1493
8908
+ #: includes/widgets/htmega_pricing_list_view.php:1599
8909
+ #: includes/widgets/htmega_pricing_list_view.php:1672
8910
+ #: includes/widgets/htmega_pricing_list_view.php:1757
8911
+ #: includes/widgets/htmega_pricing_list_view.php:1834
8912
+ #: includes/widgets/htmega_progress_bar.php:348
8913
+ #: includes/widgets/htmega_progress_bar.php:677
8914
+ #: includes/widgets/htmega_progress_bar.php:783
8915
+ #: includes/widgets/htmega_quforms.php:170
8916
+ #: includes/widgets/htmega_quforms.php:281
8917
+ #: includes/widgets/htmega_quforms.php:413
8918
+ #: includes/widgets/htmega_quforms.php:633
8919
+ #: includes/widgets/htmega_quforms.php:860
8920
+ #: includes/widgets/htmega_scroll_image.php:216
8921
+ #: includes/widgets/htmega_scroll_image.php:376
8922
+ #: includes/widgets/htmega_scroll_navigation.php:364
8923
+ #: includes/widgets/htmega_search.php:196
8924
+ #: includes/widgets/htmega_search.php:297
8925
+ #: includes/widgets/htmega_search.php:516
8926
+ #: includes/widgets/htmega_section_title.php:399
8927
+ #: includes/widgets/htmega_section_title.php:599
8928
+ #: includes/widgets/htmega_section_title.php:831
8929
+ #: includes/widgets/htmega_section_title.php:1002
8930
+ #: includes/widgets/htmega_service.php:196
8931
+ #: includes/widgets/htmega_service.php:408
8932
+ #: includes/widgets/htmega_service.php:513
8933
+ #: includes/widgets/htmega_service.php:672
8934
+ #: includes/widgets/htmega_service.php:934
8935
+ #: includes/widgets/htmega_service.php:1062
8936
+ #: includes/widgets/htmega_singlepost.php:194
8937
+ #: includes/widgets/htmega_singlepost.php:281
8938
+ #: includes/widgets/htmega_singlepost.php:396
8939
+ #: includes/widgets/htmega_singlepost.php:492
8940
+ #: includes/widgets/htmega_slider_thumb_gallery.php:717
8941
+ #: includes/widgets/htmega_slider_thumb_gallery.php:765
8942
+ #: includes/widgets/htmega_slider_thumb_gallery.php:973
8943
+ #: includes/widgets/htmega_socialshere.php:407
8944
+ #: includes/widgets/htmega_socialshere.php:652
8945
+ #: includes/widgets/htmega_special_day_banner.php:302
8946
+ #: includes/widgets/htmega_special_day_banner.php:379
8947
+ #: includes/widgets/htmega_special_day_banner.php:438
8948
+ #: includes/widgets/htmega_special_day_banner.php:497
8949
+ #: includes/widgets/htmega_special_day_banner.php:556
8950
+ #: includes/widgets/htmega_special_day_banner.php:615
8951
+ #: includes/widgets/htmega_special_day_banner.php:701
8952
+ #: includes/widgets/htmega_switcher.php:258
8953
+ #: includes/widgets/htmega_switcher.php:399
8954
+ #: includes/widgets/htmega_switcher.php:588
8955
+ #: includes/widgets/htmega_tablepress.php:196
8956
+ #: includes/widgets/htmega_tablepress.php:353
8957
+ #: includes/widgets/htmega_tablepress.php:422
8958
+ #: includes/widgets/htmega_tabs.php:336 includes/widgets/htmega_tabs.php:568
8959
+ #: includes/widgets/htmega_tabs.php:911
8960
+ #: includes/widgets/htmega_teammember.php:343
8961
+ #: includes/widgets/htmega_teammember.php:728
8962
+ #: includes/widgets/htmega_teammember.php:818
8963
+ #: includes/widgets/htmega_teammember.php:909
8964
+ #: includes/widgets/htmega_teammember.php:976
8965
+ #: includes/widgets/htmega_testimonial_grid.php:284
8966
+ #: includes/widgets/htmega_testimonial_grid.php:463
8967
+ #: includes/widgets/htmega_testimonial_grid.php:523
8968
+ #: includes/widgets/htmega_testimonial_grid.php:615
8969
+ #: includes/widgets/htmega_toggle.php:168
8970
+ #: includes/widgets/htmega_toggle.php:297
8971
+ #: includes/widgets/htmega_tooltip.php:268
8972
+ #: includes/widgets/htmega_tooltip.php:414
8973
+ #: includes/widgets/htmega_tooltip.php:511
8974
+ #: includes/widgets/htmega_twitter_feed.php:583
8975
+ #: includes/widgets/htmega_twitter_feed.php:672
8976
+ #: includes/widgets/htmega_twitter_feed.php:741
8977
+ #: includes/widgets/htmega_twitter_feed.php:941
8978
+ #: includes/widgets/htmega_twitter_feed.php:1002
8979
+ #: includes/widgets/htmega_twitter_feed.php:1192
8980
+ #: includes/widgets/htmega_user_login_form.php:621
8981
+ #: includes/widgets/htmega_user_login_form.php:657
8982
+ #: includes/widgets/htmega_user_login_form.php:887
8983
+ #: includes/widgets/htmega_user_login_form.php:1133
8984
+ #: includes/widgets/htmega_user_login_form.php:1344
8985
+ #: includes/widgets/htmega_user_login_form.php:1514
8986
+ #: includes/widgets/htmega_verticle_time_line.php:248
8987
+ #: includes/widgets/htmega_verticle_time_line.php:348
8988
+ #: includes/widgets/htmega_videoplayer.php:250
8989
+ #: includes/widgets/htmega_videoplayer.php:408
8990
+ #: includes/widgets/htmega_wc_categories.php:213
8991
+ #: includes/widgets/htmega_wc_categories.php:343
8992
+ #: includes/widgets/htmega_wc_element_pages.php:154
8993
+ #: includes/widgets/htmega_wc_element_pages.php:265
8994
+ #: includes/widgets/htmega_wc_element_pages.php:455
8995
+ #: includes/widgets/htmega_wc_element_pages.php:776
8996
+ #: includes/widgets/htmega_wc_element_pages.php:1007
8997
+ #: includes/widgets/htmega_wc_element_pages.php:1149
8998
+ #: includes/widgets/htmega_wc_element_pages.php:1442
8999
+ #: includes/widgets/htmega_wc_element_pages.php:1577
9000
+ #: includes/widgets/htmega_wc_element_pages.php:1744
9001
+ #: includes/widgets/htmega_weather.php:275
9002
+ #: includes/widgets/htmega_weather.php:334
9003
+ #: includes/widgets/htmega_working_process.php:222
9004
+ #: includes/widgets/htmega_working_process.php:418
9005
+ #: includes/widgets/htmega_working_process.php:676
9006
+ #: includes/widgets/htmega_working_process.php:755
9007
+ #: includes/widgets/htmega_working_process.php:855
9008
+ #: includes/widgets/htmega_wpforms.php:132
9009
+ #: includes/widgets/htmega_wpforms.php:234
9010
+ #: includes/widgets/htmega_wpforms.php:388
9011
+ #: includes/widgets/htmega_wpforms.php:555
9012
+ #: includes/widgets/htmega_wpforms.php:777
9013
+ #: includes/widgets/htmega_wpforms.php:1003
9014
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:170
9015
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:403
9016
+ #: extensions/ht-builder/widgets/bl_page_title.php:108
9017
+ #: extensions/ht-builder/widgets/bl_post_archive.php:265
9018
+ #: extensions/ht-builder/widgets/bl_post_archive.php:762
9019
+ #: extensions/ht-builder/widgets/bl_post_archive_title.php:110
9020
+ #: extensions/ht-builder/widgets/bl_post_search_form.php:168
9021
+ #: extensions/ht-builder/widgets/bl_post_search_form.php:253
9022
+ #: extensions/ht-builder/widgets/bl_site_logo.php:130
9023
+ #: extensions/ht-builder/widgets/bl_site_title.php:110
9024
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:119
9025
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:239
9026
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:369
9027
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:481
9028
+ #: extensions/ht-menu/widgets/verticle-mega-menu.php:120
9029
+ #: extensions/ht-menu/widgets/verticle-mega-menu.php:240
9030
+ #: extensions/ht-menu/widgets/verticle-mega-menu.php:327
9031
+ msgid "Padding"
9032
+ msgstr ""
9033
+
9034
+ #: includes/widgets/htmega_wc_element_pages.php:54
9035
+ #: extensions/ht-builder/widgets/bl_post_content.php:131
9036
+ msgid "Page"
9037
+ msgstr ""
9038
+
9039
+ #: admin/include/admin-setting.php:701
9040
+ msgid "Page List <span>( Pro )</span>"
9041
+ msgstr ""
9042
+
9043
+ #: admin/include/admin-setting.php:935 admin/include/admin-setting.php:936
9044
+ #: extensions/ht-builder/widgets/bl_page_title.php:39
9045
+ #: extensions/ht-builder/widgets/bl_page_title.php:58
9046
+ #: extensions/ht-builder/widgets/bl_page_title.php:168
9047
+ msgid "Page Title"
9048
+ msgstr ""
9049
+
9050
+ #: extensions/ht-builder/widgets/bl_post_content.php:127
9051
+ msgid "Pages:"
9052
+ msgstr ""
9053
+
9054
+ #: includes/widgets/htmega_carousel.php:811
9055
+ #: includes/widgets/htmega_carousel.php:1079
9056
+ #: includes/widgets/htmega_data_table.php:82
9057
+ #: includes/widgets/htmega_easy_digital_download.php:671
9058
+ #: includes/widgets/htmega_instagram.php:1130
9059
+ #: includes/widgets/htmega_panel_slider.php:1086
9060
+ #: includes/widgets/htmega_post_slider.php:1740
9061
+ #: includes/widgets/htmega_post_slider.php:1905
9062
+ #: includes/widgets/htmega_scroll_navigation.php:381
9063
+ #: includes/widgets/htmega_slider_thumb_gallery.php:1047
9064
+ #: includes/widgets/htmega_twitter_feed.php:1291
9065
+ #: extensions/ht-builder/widgets/bl_post_archive.php:835
9066
+ msgid "Pagination"
9067
+ msgstr ""
9068
+
9069
+ #: includes/widgets/htmega_carousel.php:1287
9070
+ msgid "Pagination Box"
9071
+ msgstr ""
9072
+
9073
+ #: includes/widgets/htmega_post_slider.php:1980
9074
+ msgid "Pagination Box Width"
9075
+ msgstr ""
9076
+
9077
+ #: includes/widgets/htmega_data_table.php:1052
9078
+ msgid "Pagination Footer"
9079
+ msgstr ""
9080
+
9081
+ #: includes/widgets/htmega_data_table.php:870
9082
+ msgid "Pagination Header"
9083
+ msgstr ""
9084
+
9085
+ #: includes/widgets/htmega_data_table.php:921
9086
+ msgid "Pagination Header length"
9087
+ msgstr ""
9088
+
9089
+ #: includes/widgets/htmega_tablepress.php:86
9090
+ msgid "Pagination Hide"
9091
+ msgstr ""
9092
+
9093
+ #: includes/widgets/htmega_data_table.php:1090
9094
+ msgid "Pagination Ordering"
9095
+ msgstr ""
9096
+
9097
+ #: includes/widgets/htmega_data_table.php:973
9098
+ msgid "Pagination Style"
9099
+ msgstr ""
9100
+
9101
+ #: includes/widgets/htmega_job_manager.php:125
9102
+ msgid "Pagination Type"
9103
+ msgstr ""
9104
+
9105
+ #: admin/include/admin-setting.php:359
9106
+ #: includes/widgets/htmega_panel_slider.php:15
9107
+ #: includes/widgets/htmega_panel_slider.php:53
9108
+ msgid "Panel Slider"
9109
+ msgstr ""
9110
+
9111
+ #: admin/include/admin-setting.php:843
9112
+ msgid "Parallax<span> ( Pro )</span>"
9113
+ msgstr ""
9114
+
9115
+ #: includes/widgets/htmega_easy_digital_download.php:172
9116
+ #: includes/widgets/htmega_wc_categories.php:112
9117
+ msgid "Parent"
9118
+ msgstr ""
9119
+
9120
+ #: includes/widgets/htmega_brand.php:91
9121
+ msgid "Partner Link"
9122
+ msgstr ""
9123
+
9124
+ #: includes/widgets/htmega_brand.php:71
9125
+ msgid "Partner Logo"
9126
+ msgstr ""
9127
+
9128
+ #: includes/widgets/htmega_user_login_form.php:236
9129
+ #: includes/widgets/htmega_user_login_form.php:249
9130
+ #: includes/widgets/htmega_user_login_form.php:1566
9131
+ #: includes/widgets/htmega_user_login_form.php:1567
9132
+ msgid "Password"
9133
+ msgstr ""
9134
+
9135
+ #: includes/widgets/htmega_user_login_form.php:234
9136
+ msgid "Password Label"
9137
+ msgstr ""
9138
+
9139
+ #: includes/helper-function.php:457
9140
+ msgid "Password length must be greater than 5"
9141
+ msgstr ""
9142
+
9143
+ #: includes/widgets/htmega_user_login_form.php:247
9144
+ msgid "Password Placeholder"
9145
+ msgstr ""
9146
+
9147
+ #: includes/widgets/htmega_newsticker.php:175
9148
+ msgid "Pause on hover"
9149
+ msgstr ""
9150
+
9151
+ #: includes/widgets/htmega_carousel.php:215
9152
+ #: includes/widgets/htmega_instagram.php:410
9153
+ #: includes/widgets/htmega_panel_slider.php:315
9154
+ #: includes/widgets/htmega_post_slider.php:395
9155
+ #: includes/widgets/htmega_slider_thumb_gallery.php:214
9156
+ #: includes/widgets/htmega_slider_thumb_gallery.php:479
9157
+ #: includes/widgets/htmega_twitter_feed.php:337
9158
+ msgid "Pause on Hover?"
9159
+ msgstr ""
9160
+
9161
+ #: includes/widgets/htmega_wc_element_pages.php:888
9162
+ msgid "Payment"
9163
+ msgstr ""
9164
+
9165
+ #: includes/widgets/htmega_pricing_list_view.php:1712
9166
+ msgid "Per Month Typography"
9167
+ msgstr ""
9168
+
9169
+ #: includes/widgets/htmega_testimonial_grid.php:232
9170
+ msgid "Peter Rose"
9171
+ msgstr ""
9172
+
9173
+ #: includes/widgets/htmega_progress_bar.php:219
9174
+ msgid "Photoshop"
9175
+ msgstr ""
9176
+
9177
+ #: includes/class.htmega.php:197
9178
+ msgid "PHP"
9179
+ msgstr ""
9180
+
9181
+ #: includes/widgets/htmega_socialshere.php:65
9182
+ msgid "Pinterest"
9183
+ msgstr ""
9184
+
9185
+ #: extensions/ht-builder/widgets/bl_post_search_form.php:45
9186
+ msgid "Placeholder"
9187
+ msgstr ""
9188
+
9189
+ #: admin/include/templates_list.php:17
9190
+ msgctxt "placeholder"
9191
+ msgid "Enter a Page Name"
9192
+ msgstr ""
9193
+
9194
+ #: includes/widgets/htmega_caldera_form.php:214
9195
+ #: includes/widgets/htmega_contact_form_seven.php:263
9196
+ #: includes/widgets/htmega_contact_form_seven.php:523
9197
+ #: includes/widgets/htmega_gravity_forms.php:425
9198
+ #: includes/widgets/htmega_mailchimp_wp.php:220
9199
+ #: includes/widgets/htmega_ninja_form.php:513
9200
+ #: includes/widgets/htmega_ninja_form.php:735
9201
+ #: includes/widgets/htmega_quforms.php:374
9202
+ #: includes/widgets/htmega_quforms.php:594
9203
+ #: includes/widgets/htmega_search.php:240
9204
+ #: includes/widgets/htmega_user_login_form.php:824
9205
+ #: includes/widgets/htmega_wc_element_pages.php:738
9206
+ #: includes/widgets/htmega_wc_element_pages.php:1382
9207
+ #: includes/widgets/htmega_wpforms.php:516
9208
+ #: includes/widgets/htmega_wpforms.php:738
9209
+ msgid "Placeholder Color"
9210
+ msgstr ""
9211
+
9212
+ #: includes/widgets/htmega_animated_heading.php:235
9213
+ #: includes/widgets/htmega_search.php:58
9214
+ msgid "Placeholder Text"
9215
+ msgstr ""
9216
+
9217
+ #: includes/widgets/htmega_imagemarker.php:969
9218
+ msgid "Placeholder Text Style"
9219
+ msgstr ""
9220
+
9221
+ #: includes/widgets/htmega_videoplayer.php:81
9222
+ msgid "Play Button Icon"
9223
+ msgstr ""
9224
+
9225
+ #: admin/include/admin-setting.php:771
9226
+ msgid ""
9227
+ "Please enter a OpenWeatherMaps API key. OpenWeather is a weather provider "
9228
+ "service which is capable of delivering all the necessary weather information "
9229
+ "for any location on the globe.To create API key, go to this link <a "
9230
+ "href=\"https://openweathermap.org/appid\" target=\"_blank\">OpenWeather</a>."
9231
+ msgstr ""
9232
+
9233
+ #: includes/widgets/htmega_instagram.php:1526
9234
+ msgid "Please enter your access token."
9235
+ msgstr ""
9236
+
9237
+ #: includes/widgets/htmega_weather.php:372
9238
+ msgid ""
9239
+ "Please Insert Weather Map API Key from \"HTMega Addons > Settings > Other "
9240
+ "options > Weather Map API Key\"."
9241
+ msgstr ""
9242
+
9243
+ #: includes/widgets/htmega_caldera_form.php:750
9244
+ msgid "Please select a Contact Form From Setting!"
9245
+ msgstr ""
9246
+
9247
+ #: includes/widgets/htmega_quforms.php:1064
9248
+ msgid "Please select Contact Form"
9249
+ msgstr ""
9250
+
9251
+ #: includes/widgets/htmega_contact_form_seven.php:1050
9252
+ msgid "Please Select contact form."
9253
+ msgstr ""
9254
+
9255
+ #: includes/widgets/htmega_wpforms.php:1169
9256
+ msgid "Please Select form."
9257
+ msgstr ""
9258
+
9259
+ #: includes/widgets/htmega_tablepress.php:440
9260
+ msgid "Please Select table"
9261
+ msgstr ""
9262
+
9263
+ #: includes/widgets/htmega_wc_add_to_cart.php:193
9264
+ #: includes/widgets/htmega_wc_add_to_cart.php:199
9265
+ #: includes/widgets/htmega_wc_element_pages.php:1897
9266
+ msgid "Please set a valid product"
9267
+ msgstr ""
9268
+
9269
+ #: includes/widgets/htmega_user_login_form.php:1691
9270
+ msgid "Please wait..."
9271
+ msgstr ""
9272
+
9273
+ #: admin/include/template-library.php:376
9274
+ #: includes/recommended-plugins/class.recommended-plugins.php:393
9275
+ msgid "Plugin Not Found"
9276
+ msgstr ""
9277
+
9278
+ #: admin/include/template-library.php:396
9279
+ #: includes/recommended-plugins/class.recommended-plugins.php:413
9280
+ msgid "Plugin Successfully Activated"
9281
+ msgstr ""
9282
+
9283
+ #: includes/widgets/htmega_teammember.php:472
9284
+ msgid "Plus Icon Color"
9285
+ msgstr ""
9286
+
9287
+ #: includes/widgets/htmega_socialshere.php:78
9288
+ msgid "Pocket"
9289
+ msgstr ""
9290
+
9291
+ #: includes/widgets/htmega_googlemap.php:370
9292
+ msgid "Pointer Width"
9293
+ msgstr ""
9294
+
9295
+ #: includes/widgets/htmega_videoplayer.php:53
9296
+ msgid "Pop Up"
9297
+ msgstr ""
9298
+
9299
+ #: includes/widgets/htmega_videoplayer.php:72
9300
+ msgid "Pop Up Button"
9301
+ msgstr ""
9302
+
9303
+ #: admin/include/admin-setting.php:367 includes/widgets/htmega_popover.php:14
9304
+ #: includes/widgets/htmega_popover.php:75
9305
+ #: includes/widgets/htmega_popover.php:498
9306
+ msgid "Popover"
9307
+ msgstr ""
9308
+
9309
+ #: includes/widgets/htmega_popover.php:42
9310
+ msgid "Popover Button"
9311
+ msgstr ""
9312
+
9313
+ #: includes/widgets/htmega_popover.php:169
9314
+ msgid "Popover content Here"
9315
+ msgstr ""
9316
+
9317
+ #: includes/widgets/htmega_popover.php:180
9318
+ msgid "Popover Header Here"
9319
+ msgstr ""
9320
+
9321
+ #: includes/widgets/htmega_popover.php:177
9322
+ msgid "Popover Header Text"
9323
+ msgstr ""
9324
+
9325
+ #: includes/widgets/htmega_popover.php:160
9326
+ msgid "Popover Options"
9327
+ msgstr ""
9328
+
9329
+ #: includes/widgets/htmega_popover.php:166
9330
+ msgid "Popover Text"
9331
+ msgstr ""
9332
+
9333
+ #: includes/widgets/htmega_buddy_press.php:67
9334
+ msgid "Popular"
9335
+ msgstr ""
9336
+
9337
+ #: admin/include/admin-setting.php:1026
9338
+ msgid "Popular Post"
9339
+ msgstr ""
9340
+
9341
+ #: admin/include/admin-setting.php:1025
9342
+ msgid "Popular Post <span>( Pro )</span>"
9343
+ msgstr ""
9344
+
9345
+ #: includes/widgets/htmega_search.php:910
9346
+ msgid "Popup Background"
9347
+ msgstr ""
9348
+
9349
+ #: includes/widgets/htmega_search.php:679
9350
+ #: includes/widgets/htmega_search.php:942
9351
+ msgid "Popup Button Style"
9352
+ msgstr ""
9353
+
9354
+ #: includes/widgets/htmega_gallery_justify.php:118
9355
+ msgid "Popup None"
9356
+ msgstr ""
9357
+
9358
+ #: includes/widgets/htmega_gallery_justify.php:114
9359
+ msgid "Popup options"
9360
+ msgstr ""
9361
+
9362
+ #: includes/widgets/htmega_search.php:658
9363
+ msgid "Popup style"
9364
+ msgstr ""
9365
+
9366
+ #: includes/widgets/htmega_mailchimp_wp.php:342
9367
+ #: includes/widgets/htmega_progress_bar.php:652
9368
+ #: includes/widgets/htmega_progress_bar.php:771
9369
+ #: includes/widgets/htmega_progress_bar.php:839
9370
+ #: includes/widgets/htmega_section_title.php:232
9371
+ #: includes/widgets/htmega_working_process.php:524
9372
+ #: extensions/wc-sales-notification/admin/setting.php:77
9373
+ msgid "Position"
9374
+ msgstr ""
9375
+
9376
+ #: includes/widgets/htmega_imagemarker.php:1025
9377
+ msgid "Position Left-Right (X)"
9378
+ msgstr ""
9379
+
9380
+ #: includes/widgets/htmega_imagemarker.php:998
9381
+ msgid "Position Top-Bottom (Y)"
9382
+ msgstr ""
9383
+
9384
+ #: includes/widgets/htmega_image_comparison.php:195
9385
+ msgid "Positioning Lebel"
9386
+ msgstr ""
9387
+
9388
+ #: admin/include/admin-setting.php:375
9389
+ msgid "Post carousel"
9390
+ msgstr ""
9391
+
9392
+ #: admin/include/admin-setting.php:899 admin/include/admin-setting.php:900
9393
+ #: extensions/ht-builder/widgets/bl_post_comments.php:187
9394
+ msgid "Post Comments"
9395
+ msgstr ""
9396
+
9397
+ #: admin/include/admin-setting.php:890 admin/include/admin-setting.php:891
9398
+ #: extensions/ht-builder/widgets/bl_post_content.php:40
9399
+ #: extensions/ht-builder/widgets/bl_post_content.php:103
9400
+ msgid "Post Content"
9401
+ msgstr ""
9402
+
9403
+ #: admin/include/admin-setting.php:828
9404
+ msgid "Post Duplicator"
9405
+ msgstr ""
9406
+
9407
+ #: admin/include/admin-setting.php:1045
9408
+ msgid "Post Duplicator Condition"
9409
+ msgstr ""
9410
+
9411
+ #: admin/include/admin-setting.php:881 admin/include/admin-setting.php:882
9412
+ #: extensions/ht-builder/widgets/bl_post_excerpt.php:40
9413
+ #: extensions/ht-builder/widgets/bl_post_excerpt.php:102
9414
+ msgid "Post Excerpt"
9415
+ msgstr ""
9416
+
9417
+ #: admin/include/admin-setting.php:863 admin/include/admin-setting.php:864
9418
+ #: extensions/ht-builder/widgets/bl_post_featured_image.php:40
9419
+ #: extensions/ht-builder/widgets/bl_post_featured_image.php:59
9420
+ #: extensions/ht-builder/widgets/bl_post_featured_image.php:97
9421
+ msgid "Post Featured Image"
9422
+ msgstr ""
9423
+
9424
+ #: admin/include/admin-setting.php:383 includes/widgets/htmega_postgrid.php:15
9425
+ #: includes/widgets/htmega_postgrid.php:37
9426
+ msgid "Post Grid"
9427
+ msgstr ""
9428
+
9429
+ #: admin/include/admin-setting.php:391
9430
+ #: includes/widgets/htmega_post_grid_tab.php:15
9431
+ #: includes/widgets/htmega_post_grid_tab.php:43
9432
+ msgid "Post Grid Tab"
9433
+ msgstr ""
9434
+
9435
+ #: includes/widgets/htmega_postgrid.php:211
9436
+ msgid "Post Items Box Style"
9437
+ msgstr ""
9438
+
9439
+ #: admin/include/admin-setting.php:872 admin/include/admin-setting.php:873
9440
+ msgid "Post Meta Info"
9441
+ msgstr ""
9442
+
9443
+ #: includes/widgets/htmega_singlepost.php:628
9444
+ msgid "Post Name"
9445
+ msgstr ""
9446
+
9447
+ #: admin/include/admin-setting.php:1008
9448
+ msgid "Post Navigation"
9449
+ msgstr ""
9450
+
9451
+ #: admin/include/admin-setting.php:1007
9452
+ msgid "Post Navigation <span>( Pro )</span>"
9453
+ msgstr ""
9454
+
9455
+ #: admin/include/class.htmega-elementor-template-library.php:98
9456
+ msgid "Post not found"
9457
+ msgstr ""
9458
+
9459
+ #: admin/include/class.htmega-elementor-template-library.php:69
9460
+ msgid "Post not found."
9461
+ msgstr ""
9462
+
9463
+ #: includes/widgets/htmega_postgrid.php:62
9464
+ #: includes/widgets/htmega_post_grid_tab.php:69
9465
+ #: includes/widgets/htmega_post_slider.php:73
9466
+ msgid "Post Option"
9467
+ msgstr ""
9468
+
9469
+ #: admin/include/admin-setting.php:908 admin/include/admin-setting.php:909
9470
+ msgid "Post Search Form"
9471
+ msgstr ""
9472
+
9473
+ #: admin/include/admin-setting.php:399
9474
+ #: includes/widgets/htmega_post_slider.php:14
9475
+ #: includes/widgets/htmega_post_slider.php:44
9476
+ msgid "Post Slider"
9477
+ msgstr ""
9478
+
9479
+ #: admin/include/admin-setting.php:854 admin/include/admin-setting.php:855
9480
+ #: includes/widgets/htmega_post_slider.php:376
9481
+ #: extensions/ht-builder/widgets/bl_post_title.php:38
9482
+ #: extensions/ht-builder/widgets/bl_post_title.php:57
9483
+ msgid "Post Title"
9484
+ msgstr ""
9485
+
9486
+ #: includes/widgets/htmega_easy_digital_download.php:137
9487
+ msgctxt "Posts Query Control"
9488
+ msgid "Source"
9489
+ msgstr ""
9490
+
9491
+ #: includes/widgets/htmega_counter.php:928
9492
+ msgid "Prefix"
9493
+ msgstr ""
9494
+
9495
+ #: admin/include/admin-setting.php:1448
9496
+ #: extensions/ht-builder/admin/setting.php:151
9497
+ #: extensions/ht-menu/classes/class.mega-menu.php:268
9498
+ #: extensions/wc-sales-notification/admin/setting.php:235
9499
+ msgid "premium version"
9500
+ msgstr ""
9501
+
9502
+ #: admin/include/custom-control/preset-manage.php:23
9503
+ msgid "Preset not found"
9504
+ msgstr ""
9505
+
9506
+ #: includes/class.assests.php:387
9507
+ #: includes/recommended-plugins/class.recommended-plugins.php:123
9508
+ #: admin/include/templates/library/templates.php:133
9509
+ msgid "Preview"
9510
+ msgstr ""
9511
+
9512
+ #: includes/widgets/htmega_newsticker.php:319
9513
+ msgid "Previous Icon"
9514
+ msgstr ""
9515
+
9516
+ #: includes/widgets/htmega_carousel.php:165
9517
+ #: includes/widgets/htmega_instagram.php:360
9518
+ #: includes/widgets/htmega_panel_slider.php:265
9519
+ #: includes/widgets/htmega_post_slider.php:329
9520
+ #: includes/widgets/htmega_slider_thumb_gallery.php:168
9521
+ #: includes/widgets/htmega_twitter_feed.php:287
9522
+ msgid "Previous icon"
9523
+ msgstr ""
9524
+
9525
+ #: includes/widgets/htmega_easy_digital_download.php:468
9526
+ #: includes/widgets/htmega_pricing_list_view.php:97
9527
+ #: includes/widgets/htmega_pricing_list_view.php:1628
9528
+ msgid "Price"
9529
+ msgstr ""
9530
+
9531
+ #: includes/widgets/htmega_easy_digital_download.php:479
9532
+ msgid "Price Color"
9533
+ msgstr ""
9534
+
9535
+ #: includes/widgets/htmega_easy_digital_download.php:503
9536
+ msgid "Price Margin"
9537
+ msgstr ""
9538
+
9539
+ #: admin/include/admin-setting.php:407
9540
+ #: includes/widgets/htmega_pricing_list_view.php:13
9541
+ msgid "Pricing List View"
9542
+ msgstr ""
9543
+
9544
+ #: admin/include/admin-setting.php:659
9545
+ msgid "Pricing Menu <span>( Pro )</span>"
9546
+ msgstr ""
9547
+
9548
+ #: admin/include/admin-setting.php:415
9549
+ msgid "Pricing Table"
9550
+ msgstr ""
9551
+
9552
+ #: includes/widgets/htmega_call_to_action.php:129
9553
+ #: includes/widgets/htmega_call_to_action.php:677
9554
+ msgid "Primary Button"
9555
+ msgstr ""
9556
+
9557
+ #: includes/widgets/htmega_call_to_action.php:145
9558
+ msgid "Primary Button Link"
9559
+ msgstr ""
9560
+
9561
+ #: includes/widgets/htmega_call_to_action.php:136
9562
+ msgid "Primary Button Text"
9563
+ msgstr ""
9564
+
9565
+ #: admin/include/admin-setting.php:990
9566
+ msgid "Print Page"
9567
+ msgstr ""
9568
+
9569
+ #: admin/include/admin-setting.php:989
9570
+ msgid "Print Page <span>( Pro )</span>"
9571
+ msgstr ""
9572
+
9573
+ #: includes/class.assests.php:375 admin/include/templates_list.php:54
9574
+ #: admin/include/templates/library/templates.php:119
9575
+ msgid "Pro"
9576
+ msgstr ""
9577
+
9578
+ #: includes/widgets/htmega_working_process.php:81
9579
+ #: includes/widgets/htmega_working_process.php:169
9580
+ msgid "Process #1"
9581
+ msgstr ""
9582
+
9583
+ #: includes/widgets/htmega_working_process.php:173
9584
+ msgid "Process #2"
9585
+ msgstr ""
9586
+
9587
+ #: includes/widgets/htmega_working_process.php:177
9588
+ msgid "Process #3"
9589
+ msgstr ""
9590
+
9591
+ #: includes/widgets/htmega_working_process.php:88
9592
+ msgid "Process Number"
9593
+ msgstr ""
9594
+
9595
+ #: includes/widgets/htmega_wc_add_to_cart.php:50
9596
+ #: includes/widgets/htmega_wc_add_to_cart.php:63
9597
+ msgid "Product"
9598
+ msgstr ""
9599
+
9600
+ #: admin/include/admin-setting.php:423
9601
+ #: includes/widgets/htmega_progress_bar.php:13
9602
+ #: includes/widgets/htmega_progress_bar.php:50
9603
+ #: includes/widgets/htmega_progress_bar.php:199
9604
+ #: includes/widgets/htmega_progress_bar.php:397
9605
+ msgid "Progress Bar"
9606
+ msgstr ""
9607
+
9608
+ #: includes/widgets/htmega_progress_bar.php:309
9609
+ msgid "Progress bar Background"
9610
+ msgstr ""
9611
+
9612
+ #: includes/widgets/htmega_progress_bar.php:131
9613
+ msgid "Progress bar color"
9614
+ msgstr ""
9615
+
9616
+ #: includes/widgets/htmega_progress_bar.php:286
9617
+ msgid "Progress Bar Size"
9618
+ msgstr ""
9619
+
9620
+ #: includes/widgets/htmega_progress_bar.php:317
9621
+ msgid "Progress bar track color"
9622
+ msgstr ""
9623
+
9624
+ #: includes/widgets/htmega_progress_bar.php:113
9625
+ #: includes/widgets/htmega_progress_bar.php:245
9626
+ msgid "Progress Bar Value"
9627
+ msgstr ""
9628
+
9629
+ #: includes/widgets/htmega_progress_bar.php:152
9630
+ #: includes/widgets/htmega_progress_bar.php:337
9631
+ msgid "Progress bar value background color"
9632
+ msgstr ""
9633
+
9634
+ #: includes/widgets/htmega_progress_bar.php:142
9635
+ #: includes/widgets/htmega_progress_bar.php:327
9636
+ msgid "Progress bar value color"
9637
+ msgstr ""
9638
+
9639
+ #: includes/widgets/htmega_progress_bar.php:263
9640
+ msgid "Progress Bar Width"
9641
+ msgstr ""
9642
+
9643
+ #: includes/widgets/htmega_progress_bar.php:163
9644
+ #: includes/widgets/htmega_progress_bar.php:556
9645
+ msgid "Progress Indicator"
9646
+ msgstr ""
9647
+
9648
+ #: includes/widgets/htmega_progress_bar.php:459
9649
+ msgid "Progress Position Top-Bottom"
9650
+ msgstr ""
9651
+
9652
+ #: includes/widgets/htmega_pricing_list_view.php:152
9653
+ msgid "PSD Template"
9654
+ msgstr ""
9655
+
9656
+ #: admin/include/admin-setting.php:1448
9657
+ #: extensions/ht-builder/admin/setting.php:151
9658
+ #: extensions/ht-menu/classes/class.mega-menu.php:268
9659
+ #: extensions/wc-sales-notification/admin/setting.php:235
9660
+ msgid "Purchase our"
9661
+ msgstr ""
9662
+
9663
+ #: includes/widgets/htmega_animated_heading.php:104
9664
+ msgid "Purpose,policy,Company"
9665
+ msgstr ""
9666
+
9667
+ #: includes/widgets/htmega_animated_heading.php:77
9668
+ msgid "Push"
9669
+ msgstr ""
9670
+
9671
+ #: includes/widgets/htmega_section_title.php:62
9672
+ msgid "Put the highlighted word in between the span tags!"
9673
+ msgstr ""
9674
+
9675
+ #: admin/include/admin-setting.php:1188 includes/widgets/htmega_quforms.php:13
9676
+ #: includes/widgets/htmega_quforms.php:59
9677
+ msgid "QU Form"
9678
+ msgstr ""
9679
+
9680
+ #: includes/widgets/htmega_wc_add_to_cart.php:83
9681
+ msgid "Quantity"
9682
+ msgstr ""
9683
+
9684
+ #: includes/widgets/htmega_wc_element_pages.php:535
9685
+ msgid "Quantity Input Box"
9686
+ msgstr ""
9687
+
9688
+ #: extensions/ht-builder/widgets/bl_post_archive.php:150
9689
+ msgid "Query Settings"
9690
+ msgstr ""
9691
+
9692
+ #: includes/recommended-plugins/recommended-plugins.php:73
9693
+ msgid "QuickSwish"
9694
+ msgstr ""
9695
+
9696
+ #: includes/widgets/htmega_blockquote.php:327
9697
+ msgid "Quote By"
9698
+ msgstr ""
9699
+
9700
+ #: includes/widgets/htmega_blockquote.php:494
9701
+ msgid "Quote Icon"
9702
+ msgstr ""
9703
+
9704
+ #: includes/widgets/htmega_blockquote.php:689
9705
+ msgid "Quote Image"
9706
+ msgstr ""
9707
+
9708
+ #: includes/widgets/htmega_contact_form_seven.php:406
9709
+ msgid "Radio & Checkbox Color"
9710
+ msgstr ""
9711
+
9712
+ #: includes/widgets/htmega_job_manager.php:102
9713
+ #: includes/widgets/htmega_newsticker.php:262
9714
+ #: includes/widgets/htmega_postgrid.php:153
9715
+ #: includes/widgets/htmega_post_grid_tab.php:160
9716
+ #: includes/widgets/htmega_post_slider.php:164
9717
+ #: extensions/ht-builder/widgets/bl_post_archive.php:204
9718
+ msgid "Random"
9719
+ msgstr ""
9720
+
9721
+ #: includes/widgets/htmega_testimonial_grid.php:682
9722
+ msgid "Rating"
9723
+ msgstr ""
9724
+
9725
+ #: admin/include/admin-setting.php:1322
9726
+ msgid "Rating icon"
9727
+ msgstr ""
9728
+
9729
+ #: includes/widgets/htmega_testimonial_grid.php:689
9730
+ msgid "Rating On Right"
9731
+ msgstr ""
9732
+
9733
+ #: includes/widgets/htmega_image_grid.php:150
9734
+ #: includes/widgets/htmega_image_grid.php:179
9735
+ #: includes/widgets/htmega_image_masonry.php:131
9736
+ #: includes/widgets/htmega_image_masonry.php:160
9737
+ #: includes/widgets/htmega_post_grid_tab.php:233
9738
+ #: includes/widgets/htmega_post_grid_tab.php:245
9739
+ #: includes/widgets/htmega_post_grid_tab.php:246
9740
+ #: includes/widgets/htmega_post_grid_tab.php:829
9741
+ #: includes/widgets/htmega_post_slider.php:222
9742
+ #: includes/widgets/htmega_post_slider.php:234
9743
+ #: includes/widgets/htmega_post_slider.php:235
9744
+ #: includes/widgets/htmega_post_slider.php:1257
9745
+ #: includes/widgets/htmega_service.php:140
9746
+ #: extensions/ht-builder/widgets/bl_post_archive.php:700
9747
+ msgid "Read More"
9748
+ msgstr ""
9749
+
9750
+ #: extensions/ht-builder/widgets/bl_post_archive.php:73
9751
+ #: extensions/ht-builder/widgets/bl_post_archive.php:1084
9752
+ msgid "Read more"
9753
+ msgstr ""
9754
+
9755
+ #: includes/widgets/htmega_image_grid.php:451
9756
+ #: includes/widgets/htmega_image_masonry.php:439
9757
+ msgid "Read More Button"
9758
+ msgstr ""
9759
+
9760
+ #: extensions/ht-builder/widgets/bl_post_archive.php:71
9761
+ msgid "Read More Button Text"
9762
+ msgstr ""
9763
+
9764
+ #: includes/widgets/htmega_post_grid_tab.php:243
9765
+ #: includes/widgets/htmega_post_slider.php:232
9766
+ msgid "Read More button text"
9767
+ msgstr ""
9768
+
9769
+ #: includes/widgets/htmega_service.php:318
9770
+ msgid "Read More Color"
9771
+ msgstr ""
9772
+
9773
+ #: includes/widgets/htmega_image_grid.php:157
9774
+ #: includes/widgets/htmega_image_masonry.php:138
9775
+ msgid "Read More Link"
9776
+ msgstr ""
9777
+
9778
+ #: includes/widgets/htmega_image_grid.php:148
9779
+ #: includes/widgets/htmega_image_masonry.php:129
9780
+ msgid "Read More Text"
9781
+ msgstr ""
9782
+
9783
+ #: includes/widgets/htmega_custom_event.php:95
9784
+ msgid "Read More."
9785
+ msgstr ""
9786
+
9787
+ #: extensions/wc-sales-notification/admin/setting.php:69
9788
+ msgid "Real"
9789
+ msgstr ""
9790
+
9791
+ #: includes/recommended-plugins/class.recommended-plugins.php:71
9792
+ msgid "Recommendations"
9793
+ msgstr ""
9794
+
9795
+ #: includes/recommended-plugins/recommended-plugins.php:28
9796
+ msgid "Recommended Plugins"
9797
+ msgstr ""
9798
+
9799
+ #: includes/widgets/htmega_socialshere.php:75
9800
+ msgid "Reddit"
9801
+ msgstr ""
9802
+
9803
+ #: includes/widgets/htmega_user_login_form.php:260
9804
+ msgid "Redirect page after Login"
9805
+ msgstr ""
9806
+
9807
+ #: includes/widgets/htmega_user_login_form.php:324
9808
+ #: includes/widgets/htmega_user_login_form.php:337
9809
+ #: includes/widgets/htmega_user_login_form.php:1654
9810
+ msgid "Register"
9811
+ msgstr ""
9812
+
9813
+ #: includes/widgets/htmega_user_login_form.php:1280
9814
+ msgid "Register Button"
9815
+ msgstr ""
9816
+
9817
+ #: includes/widgets/htmega_user_login_form.php:117
9818
+ msgid "Register Heading Login"
9819
+ msgstr ""
9820
+
9821
+ #: includes/widgets/htmega_user_login_form.php:335
9822
+ msgid "Register Link Text"
9823
+ msgstr ""
9824
+
9825
+ #: admin/include/admin-setting.php:1017
9826
+ msgid "Related Post"
9827
+ msgstr ""
9828
+
9829
+ #: admin/include/admin-setting.php:1016
9830
+ msgid "Related Post <span>( Pro )</span>"
9831
+ msgstr ""
9832
+
9833
+ #: includes/widgets/htmega_imagemarker.php:452
9834
+ msgid ""
9835
+ "Reload the editor right after enabling this option. Example: Enable/Disable "
9836
+ "this option > Click UPDATE > Then Reload the editor page."
9837
+ msgstr ""
9838
+
9839
+ #: includes/widgets/htmega_user_login_form.php:312
9840
+ #: includes/widgets/htmega_user_login_form.php:1634
9841
+ msgid "Remember Me"
9842
+ msgstr ""
9843
+
9844
+ #: includes/widgets/htmega_user_login_form.php:992
9845
+ msgid "Remember Me Checkbox"
9846
+ msgstr ""
9847
+
9848
+ #: admin/include/admin-setting.php:615
9849
+ msgid "Remote Template"
9850
+ msgstr ""
9851
+
9852
+ #: includes/widgets/htmega_socialshere.php:86
9853
+ msgid "Renren"
9854
+ msgstr ""
9855
+
9856
+ #: includes/widgets/htmega_videoplayer.php:186
9857
+ msgid "Repeat Video"
9858
+ msgstr ""
9859
+
9860
+ #: includes/widgets/htmega_bbpress.php:60
9861
+ msgid "Reply Form"
9862
+ msgstr ""
9863
+
9864
+ #: includes/widgets/htmega_gravity_forms.php:280
9865
+ #: includes/widgets/htmega_wc_element_pages.php:679
9866
+ msgid "Required Color"
9867
+ msgstr ""
9868
+
9869
+ #: includes/widgets/htmega_wpforms.php:453
9870
+ msgid "Required Label Style"
9871
+ msgstr ""
9872
+
9873
+ #: includes/widgets/htmega_caldera_form.php:102
9874
+ #: includes/widgets/htmega_ninja_form.php:366
9875
+ #: includes/widgets/htmega_quforms.php:131
9876
+ msgid "Required Symbol Color"
9877
+ msgstr ""
9878
+
9879
+ #: includes/widgets/htmega_scroll_navigation.php:172
9880
+ #: includes/widgets/htmega_scroll_navigation.php:202
9881
+ msgid "Resolution"
9882
+ msgstr ""
9883
+
9884
+ #: admin/include/admin-setting.php:1309
9885
+ msgid "Responsive, supports all major devices"
9886
+ msgstr ""
9887
+
9888
+ #: includes/widgets/htmega_image_comparison.php:390
9889
+ msgid "Reveal"
9890
+ msgstr ""
9891
+
9892
+ #: admin/include/admin-setting.php:1208
9893
+ #: includes/widgets/htmega_revolution_slider.php:13
9894
+ #: includes/widgets/htmega_revolution_slider.php:53
9895
+ msgid "Revolution Slider"
9896
+ msgstr ""
9897
+
9898
+ #: includes/widgets/htmega_accordion.php:575
9899
+ #: includes/widgets/htmega_accordion.php:766
9900
+ #: includes/widgets/htmega_accordion.php:924
9901
+ #: includes/widgets/htmega_accordion.php:1322
9902
+ #: includes/widgets/htmega_accordion.php:1326
9903
+ #: includes/widgets/htmega_accordion.php:1440
9904
+ #: includes/widgets/htmega_add_banner.php:376
9905
+ #: includes/widgets/htmega_blockquote.php:191
9906
+ #: includes/widgets/htmega_buddy_press.php:262
9907
+ #: includes/widgets/htmega_business_hours.php:399
9908
+ #: includes/widgets/htmega_button.php:119
9909
+ #: includes/widgets/htmega_button.php:169
9910
+ #: includes/widgets/htmega_caldera_form.php:80
9911
+ #: includes/widgets/htmega_caldera_form.php:355
9912
+ #: includes/widgets/htmega_call_to_action.php:204
9913
+ #: includes/widgets/htmega_call_to_action.php:298
9914
+ #: includes/widgets/htmega_call_to_action.php:338
9915
+ #: includes/widgets/htmega_carousel.php:846
9916
+ #: includes/widgets/htmega_contact_form_seven.php:125
9917
+ #: includes/widgets/htmega_countdown.php:619
9918
+ #: includes/widgets/htmega_countdown.php:651
9919
+ #: includes/widgets/htmega_counter.php:296
9920
+ #: includes/widgets/htmega_counter.php:329
9921
+ #: includes/widgets/htmega_counter.php:435
9922
+ #: includes/widgets/htmega_counter.php:561
9923
+ #: includes/widgets/htmega_data_table.php:718
9924
+ #: includes/widgets/htmega_data_table.php:837
9925
+ #: includes/widgets/htmega_double_button.php:161
9926
+ #: includes/widgets/htmega_double_button.php:248
9927
+ #: includes/widgets/htmega_double_button.php:333
9928
+ #: includes/widgets/htmega_dropcaps.php:92
9929
+ #: includes/widgets/htmega_dropcaps.php:96
9930
+ #: includes/widgets/htmega_easy_digital_download.php:326
9931
+ #: includes/widgets/htmega_easy_digital_download.php:694
9932
+ #: includes/widgets/htmega_errorcontent.php:257
9933
+ #: includes/widgets/htmega_gravity_forms.php:157
9934
+ #: includes/widgets/htmega_gravity_forms.php:213
9935
+ #: includes/widgets/htmega_gravity_forms.php:247
9936
+ #: includes/widgets/htmega_gravity_forms.php:552
9937
+ #: includes/widgets/htmega_gravity_forms.php:783
9938
+ #: includes/widgets/htmega_imagemarker.php:207
9939
+ #: includes/widgets/htmega_imagemarker.php:718
9940
+ #: includes/widgets/htmega_image_grid.php:299
9941
+ #: includes/widgets/htmega_image_grid.php:396
9942
+ #: includes/widgets/htmega_image_masonry.php:275
9943
+ #: includes/widgets/htmega_image_masonry.php:372
9944
+ #: includes/widgets/htmega_inlinemenu.php:129
9945
+ #: includes/widgets/htmega_instagram.php:1492
9946
+ #: includes/widgets/htmega_job_manager.php:160
9947
+ #: includes/widgets/htmega_lightbox.php:204
9948
+ #: includes/widgets/htmega_lightbox.php:317
9949
+ #: includes/widgets/htmega_mailchimp_wp.php:137
9950
+ #: includes/widgets/htmega_modal.php:182 includes/widgets/htmega_modal.php:358
9951
+ #: includes/widgets/htmega_modal.php:1013
9952
+ #: includes/widgets/htmega_newsticker.php:468
9953
+ #: includes/widgets/htmega_ninja_form.php:196
9954
+ #: includes/widgets/htmega_ninja_form.php:298
9955
+ #: includes/widgets/htmega_ninja_form.php:332
9956
+ #: includes/widgets/htmega_ninja_form.php:619
9957
+ #: includes/widgets/htmega_ninja_form.php:830
9958
+ #: includes/widgets/htmega_ninja_form.php:1042
9959
+ #: includes/widgets/htmega_notify.php:290
9960
+ #: includes/widgets/htmega_notify.php:570
9961
+ #: includes/widgets/htmega_notify.php:836
9962
+ #: includes/widgets/htmega_offcanvas.php:104
9963
+ #: includes/widgets/htmega_offcanvas.php:208
9964
+ #: includes/widgets/htmega_offcanvas.php:291
9965
+ #: includes/widgets/htmega_offcanvas.php:383
9966
+ #: includes/widgets/htmega_panel_slider.php:611
9967
+ #: includes/widgets/htmega_popover.php:194
9968
+ #: includes/widgets/htmega_popover.php:273
9969
+ #: includes/widgets/htmega_popover.php:669
9970
+ #: includes/widgets/htmega_popover.php:773
9971
+ #: includes/widgets/htmega_postgrid.php:301
9972
+ #: includes/widgets/htmega_postgrid.php:525
9973
+ #: includes/widgets/htmega_postgrid.php:638
9974
+ #: includes/widgets/htmega_post_grid_tab.php:409
9975
+ #: includes/widgets/htmega_post_grid_tab.php:503
9976
+ #: includes/widgets/htmega_post_grid_tab.php:590
9977
+ #: includes/widgets/htmega_post_grid_tab.php:813
9978
+ #: includes/widgets/htmega_post_slider.php:844
9979
+ #: includes/widgets/htmega_post_slider.php:938
9980
+ #: includes/widgets/htmega_post_slider.php:1025
9981
+ #: includes/widgets/htmega_post_slider.php:1241
9982
+ #: includes/widgets/htmega_pricing_list_view.php:481
9983
+ #: includes/widgets/htmega_pricing_list_view.php:508
9984
+ #: includes/widgets/htmega_pricing_list_view.php:1136
9985
+ #: includes/widgets/htmega_pricing_list_view.php:1193
9986
+ #: includes/widgets/htmega_quforms.php:98
9987
+ #: includes/widgets/htmega_quforms.php:218
9988
+ #: includes/widgets/htmega_quforms.php:339
9989
+ #: includes/widgets/htmega_quforms.php:559
9990
+ #: includes/widgets/htmega_quforms.php:777
9991
+ #: includes/widgets/htmega_search.php:164
9992
+ #: includes/widgets/htmega_section_title.php:423
9993
+ #: includes/widgets/htmega_service.php:249
9994
+ #: includes/widgets/htmega_service.php:433
9995
+ #: includes/widgets/htmega_service.php:538
9996
+ #: includes/widgets/htmega_service.php:727
9997
+ #: includes/widgets/htmega_service.php:989
9998
+ #: includes/widgets/htmega_singlepost.php:218
9999
+ #: includes/widgets/htmega_singlepost.php:314
10000
+ #: includes/widgets/htmega_singlepost.php:421
10001
+ #: includes/widgets/htmega_slider_thumb_gallery.php:53
10002
+ #: includes/widgets/htmega_socialshere.php:382
10003
+ #: includes/widgets/htmega_special_day_banner.php:50
10004
+ #: includes/widgets/htmega_special_day_banner.php:273
10005
+ #: includes/widgets/htmega_tablepress.php:221
10006
+ #: includes/widgets/htmega_tablepress.php:378
10007
+ #: includes/widgets/htmega_tabs.php:521
10008
+ #: includes/widgets/htmega_teammember.php:106
10009
+ #: includes/widgets/htmega_teammember.php:624
10010
+ #: includes/widgets/htmega_teammember.php:753
10011
+ #: includes/widgets/htmega_teammember.php:843
10012
+ #: includes/widgets/htmega_teammember.php:934
10013
+ #: includes/widgets/htmega_teammember.php:1001
10014
+ #: includes/widgets/htmega_testimonial_grid.php:561
10015
+ #: includes/widgets/htmega_toggle.php:204
10016
+ #: includes/widgets/htmega_tooltip.php:182
10017
+ #: includes/widgets/htmega_tooltip.php:249
10018
+ #: includes/widgets/htmega_user_login_form.php:157
10019
+ #: includes/widgets/htmega_user_login_form.php:379
10020
+ #: includes/widgets/htmega_user_login_form.php:579
10021
+ #: includes/widgets/htmega_videoplayer.php:304
10022
+ #: includes/widgets/htmega_wc_categories.php:388
10023
+ #: includes/widgets/htmega_wpforms.php:188
10024
+ #: includes/widgets/htmega_wpforms.php:290
10025
+ #: includes/widgets/htmega_wpforms.php:325
10026
+ #: includes/widgets/htmega_wpforms.php:622
10027
+ #: includes/widgets/htmega_wpforms.php:841
10028
+ #: includes/widgets/htmega_wpforms.php:1069
10029
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:123
10030
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:499
10031
+ #: extensions/ht-builder/widgets/bl_page_title.php:145
10032
+ #: extensions/ht-builder/widgets/bl_post_archive.php:310
10033
+ #: extensions/ht-builder/widgets/bl_post_archive.php:391
10034
+ #: extensions/ht-builder/widgets/bl_post_archive.php:498
10035
+ #: extensions/ht-builder/widgets/bl_post_archive.php:604
10036
+ #: extensions/ht-builder/widgets/bl_post_archive.php:684
10037
+ #: extensions/ht-builder/widgets/bl_post_archive_title.php:147
10038
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:116
10039
+ #: extensions/ht-builder/widgets/bl_post_content.php:80
10040
+ #: extensions/ht-builder/widgets/bl_post_excerpt.php:80
10041
+ #: extensions/ht-builder/widgets/bl_post_featured_image.php:79
10042
+ #: extensions/ht-builder/widgets/bl_post_title.php:110
10043
+ #: extensions/ht-builder/widgets/bl_site_logo.php:167
10044
+ #: extensions/ht-builder/widgets/bl_site_title.php:147
10045
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:174
10046
+ #: extensions/ht-menu/widgets/verticle-mega-menu.php:175
10047
+ msgid "Right"
10048
+ msgstr ""
10049
+
10050
+ #: includes/widgets/htmega_post_slider.php:1461
10051
+ msgid "Right Arrow position"
10052
+ msgstr ""
10053
+
10054
+ #: includes/widgets/htmega_post_slider.php:1509
10055
+ msgid "Right Arrow position vertical"
10056
+ msgstr ""
10057
+
10058
+ #: includes/widgets/htmega_blockquote.php:161
10059
+ msgid "Right Bottom"
10060
+ msgstr ""
10061
+
10062
+ #: includes/widgets/htmega_blockquote.php:160
10063
+ msgid "Right Center"
10064
+ msgstr ""
10065
+
10066
+ #: includes/widgets/htmega_blockquote.php:159
10067
+ msgid "Right Top"
10068
+ msgstr ""
10069
+
10070
+ #: includes/widgets/htmega_section_title.php:337
10071
+ msgid "Rotate"
10072
+ msgstr ""
10073
+
10074
+ #: includes/widgets/htmega_animated_heading.php:78
10075
+ msgid "Rotate Style One"
10076
+ msgstr ""
10077
+
10078
+ #: includes/widgets/htmega_animated_heading.php:80
10079
+ msgid "Rotate Style Three"
10080
+ msgstr ""
10081
+
10082
+ #: includes/widgets/htmega_animated_heading.php:79
10083
+ msgid "Rotate Style Two"
10084
+ msgstr ""
10085
+
10086
+ #: includes/widgets/htmega_data_table.php:312
10087
+ #: includes/widgets/htmega_pricing_list_view.php:549
10088
+ #: includes/widgets/htmega_user_login_form.php:400
10089
+ msgid "Row"
10090
+ msgstr ""
10091
+
10092
+ #: includes/widgets/htmega_data_table.php:522
10093
+ #: includes/widgets/htmega_pricing_list_view.php:1088
10094
+ msgid "row"
10095
+ msgstr ""
10096
+
10097
+ #: includes/widgets/htmega_booked_calender.php:950
10098
+ msgid "Row Border Color"
10099
+ msgstr ""
10100
+
10101
+ #: includes/widgets/htmega_booked_calender.php:961
10102
+ msgid "Row Border Width"
10103
+ msgstr ""
10104
+
10105
+ #: includes/widgets/htmega_gallery_justify.php:66
10106
+ #: includes/widgets/htmega_newsticker.php:92
10107
+ msgid "Row Height"
10108
+ msgstr ""
10109
+
10110
+ #: includes/widgets/htmega_user_login_form.php:408
10111
+ msgid "Row Reverse"
10112
+ msgstr ""
10113
+
10114
+ #: includes/widgets/htmega_pricing_list_view.php:1072
10115
+ msgid "Row Starts"
10116
+ msgstr ""
10117
+
10118
+ #: extensions/wc-sales-notification/admin/setting.php:78
10119
+ msgid ""
10120
+ "Sale Notification Position on frontend.( Top Left, Top Right, Bottom Right "
10121
+ "option are pro features ) <span>( Pro )</span>"
10122
+ msgstr ""
10123
+
10124
+ #: extensions/wc-sales-notification/admin/setting.php:48
10125
+ msgid "Sale Notification Settings"
10126
+ msgstr ""
10127
+
10128
+ #: admin/include/admin-setting.php:812
10129
+ #: extensions/wc-sales-notification/admin/setting.php:33
10130
+ #: extensions/wc-sales-notification/admin/setting.php:34
10131
+ msgid "Sales Notification"
10132
+ msgstr ""
10133
+
10134
+ #: admin/include/admin-setting.php:1395 admin/include/admin-setting.php:1420
10135
+ msgid "Sales upto date option"
10136
+ msgstr ""
10137
+
10138
+ #: includes/widgets/htmega_teammember.php:156
10139
+ msgid "Sams Roy"
10140
+ msgstr ""
10141
+
10142
+ #: includes/widgets/htmega_business_hours.php:85
10143
+ #: includes/widgets/htmega_business_hours.php:163
10144
+ msgid "Saturday"
10145
+ msgstr ""
10146
+
10147
+ #: extensions/ht-menu/classes/class.mega-menu.php:124
10148
+ #: extensions/ht-menu/classes/class.mega-menu.php:244
10149
+ msgid "Save"
10150
+ msgstr ""
10151
+
10152
+ #: includes/widgets/htmega_pricing_list_view.php:1554
10153
+ msgid "Save Typography"
10154
+ msgstr ""
10155
+
10156
+ #: extensions/ht-menu/classes/class.mega-menu.php:245
10157
+ msgid "Saving…"
10158
+ msgstr ""
10159
+
10160
+ #: includes/widgets/htmega_animated_heading.php:76
10161
+ #: includes/widgets/htmega_carousel.php:481
10162
+ msgid "Scale"
10163
+ msgstr ""
10164
+
10165
+ #: admin/include/admin-setting.php:431
10166
+ #: includes/widgets/htmega_scroll_image.php:13
10167
+ #: includes/widgets/htmega_scroll_image.php:43
10168
+ msgid "Scroll Image"
10169
+ msgstr ""
10170
+
10171
+ #: includes/widgets/htmega_scroll_image.php:165
10172
+ msgid "Scroll Image Style"
10173
+ msgstr ""
10174
+
10175
+ #: admin/include/admin-setting.php:439
10176
+ #: includes/widgets/htmega_scroll_navigation.php:13
10177
+ #: includes/widgets/htmega_scroll_navigation.php:51
10178
+ msgid "Scroll Navigation"
10179
+ msgstr ""
10180
+
10181
+ #: admin/include/admin-setting.php:447 includes/widgets/htmega_search.php:14
10182
+ #: includes/widgets/htmega_search.php:35 includes/widgets/htmega_search.php:60
10183
+ #: includes/widgets/htmega_search.php:61 includes/widgets/htmega_search.php:92
10184
+ #: includes/widgets/htmega_search.php:93
10185
+ #: includes/widgets/htmega_search.php:1024
10186
+ #: extensions/ht-builder/widgets/bl_post_search_form.php:105
10187
+ #: extensions/ht-builder/widgets/bl_post_search_form.php:321
10188
+ #: admin/include/templates/library/templates.php:95
10189
+ msgid "Search"
10190
+ msgstr ""
10191
+
10192
+ #: extensions/ht-builder/widgets/bl_post_search_form.php:47
10193
+ msgid "Search ..."
10194
+ msgstr ""
10195
+
10196
+ #: includes/widgets/htmega_search.php:145
10197
+ msgid "Search Box Style"
10198
+ msgstr ""
10199
+
10200
+ #: includes/widgets/htmega_search.php:90
10201
+ msgid "Search Button Text"
10202
+ msgstr ""
10203
+
10204
+ #: extensions/ht-builder/widgets/bl_post_search_form.php:38
10205
+ msgid "Search Form"
10206
+ msgstr ""
10207
+
10208
+ #: includes/widgets/htmega_tablepress.php:97
10209
+ msgid "Search Hide"
10210
+ msgstr ""
10211
+
10212
+ #: extensions/ht-builder/admin/setting.php:100
10213
+ msgid "Search Page Template."
10214
+ msgstr ""
10215
+
10216
+ #: admin/include/templates/library/templates.php:94
10217
+ msgid "Search Templates:"
10218
+ msgstr ""
10219
+
10220
+ #: admin/include/templates_list.php:47
10221
+ msgid "Search.."
10222
+ msgstr ""
10223
+
10224
+ #: includes/widgets/htmega_data_table.php:163
10225
+ msgid "Searching"
10226
+ msgstr ""
10227
+
10228
+ #: includes/widgets/htmega_button.php:267
10229
+ #: includes/widgets/htmega_button.php:382
10230
+ msgid "Second Background"
10231
+ msgstr ""
10232
+
10233
+ #: includes/widgets/htmega_call_to_action.php:223
10234
+ #: includes/widgets/htmega_call_to_action.php:883
10235
+ msgid "Secondary Button"
10236
+ msgstr ""
10237
+
10238
+ #: includes/widgets/htmega_call_to_action.php:230
10239
+ msgid "Secondary Button Text"
10240
+ msgstr ""
10241
+
10242
+ #: includes/widgets/htmega_countdown.php:162
10243
+ #: includes/widgets/htmega_countdown.php:244
10244
+ #: includes/widgets/htmega_countdown.php:246
10245
+ msgid "Seconds"
10246
+ msgstr ""
10247
+
10248
+ #: includes/widgets/htmega_section_title.php:369
10249
+ msgid "Section style"
10250
+ msgstr ""
10251
+
10252
+ #: admin/include/admin-setting.php:455
10253
+ #: includes/widgets/htmega_section_title.php:13
10254
+ #: includes/widgets/htmega_section_title.php:34
10255
+ msgid "Section Title"
10256
+ msgstr ""
10257
+
10258
+ #: includes/helper-function.php:733
10259
+ #: includes/widgets/htmega_wc_element_pages.php:57
10260
+ msgid "Select"
10261
+ msgstr ""
10262
+
10263
+ #: admin/include/admin-setting.php:779
10264
+ msgid "Select 404 Page."
10265
+ msgstr ""
10266
+
10267
+ #: includes/widgets/htmega_wc_categories.php:77
10268
+ msgid "Select Category Type"
10269
+ msgstr ""
10270
+
10271
+ #: includes/widgets/htmega_accordion.php:77
10272
+ #: includes/widgets/htmega_accordion.php:217
10273
+ #: includes/widgets/htmega_blockquote.php:41
10274
+ #: includes/widgets/htmega_modal.php:51
10275
+ #: includes/widgets/htmega_switcher.php:102
10276
+ #: includes/widgets/htmega_switcher.php:194 includes/widgets/htmega_tabs.php:86
10277
+ #: includes/widgets/htmega_toggle.php:79
10278
+ msgid "Select Content Source"
10279
+ msgstr ""
10280
+
10281
+ #: extensions/wc-sales-notification/admin/setting.php:65
10282
+ msgid "Select Content Type <span>( Pro )</span>"
10283
+ msgstr ""
10284
+
10285
+ #: includes/widgets/htmega_download_monitor.php:40
10286
+ msgid "Select Download File"
10287
+ msgstr ""
10288
+
10289
+ #: includes/widgets/htmega_countdown.php:46
10290
+ msgid "Select Event"
10291
+ msgstr ""
10292
+
10293
+ #: includes/widgets/htmega_instragram_feed.php:41
10294
+ msgid "Select Feed"
10295
+ msgstr ""
10296
+
10297
+ #: includes/widgets/htmega_download_monitor.php:61
10298
+ msgid "Select File"
10299
+ msgstr ""
10300
+
10301
+ #: includes/helper-function.php:346 includes/widgets/htmega_caldera_form.php:48
10302
+ #: includes/widgets/htmega_gravity_forms.php:41
10303
+ #: includes/widgets/htmega_gravity_forms.php:66
10304
+ #: includes/widgets/htmega_ninja_form.php:43
10305
+ #: includes/widgets/htmega_ninja_form.php:66
10306
+ #: includes/widgets/htmega_quforms.php:42
10307
+ #: includes/widgets/htmega_quforms.php:66
10308
+ #: includes/widgets/htmega_wpforms.php:63
10309
+ msgid "Select Form"
10310
+ msgstr ""
10311
+
10312
+ #: includes/widgets/htmega_job_manager.php:193
10313
+ #: includes/widgets/htmega_job_manager.php:200
10314
+ msgid "Select Job"
10315
+ msgstr ""
10316
+
10317
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:37
10318
+ #: extensions/ht-menu/widgets/verticle-mega-menu.php:38
10319
+ msgid "Select Menu"
10320
+ msgstr ""
10321
+
10322
+ #: includes/widgets/htmega_wc_add_to_cart.php:55
10323
+ msgid "Select Post"
10324
+ msgstr ""
10325
+
10326
+ #: includes/widgets/htmega_singlepost.php:614
10327
+ msgid "Select Post Type"
10328
+ msgstr ""
10329
+
10330
+ #: includes/helper-function.php:140 includes/widgets/htmega_offcanvas.php:84
10331
+ msgid "Select Sidebar"
10332
+ msgstr ""
10333
+
10334
+ #: includes/widgets/htmega_layer_slider.php:63
10335
+ #: includes/widgets/htmega_revolution_slider.php:34
10336
+ #: includes/widgets/htmega_revolution_slider.php:60
10337
+ msgid "Select Slider"
10338
+ msgstr ""
10339
+
10340
+ #: includes/widgets/htmega_offcanvas.php:56
10341
+ msgid "Select Source"
10342
+ msgstr ""
10343
+
10344
+ #: includes/widgets/htmega_tablepress.php:32
10345
+ #: includes/widgets/htmega_tablepress.php:55
10346
+ msgid "Select Table"
10347
+ msgstr ""
10348
+
10349
+ #: includes/helper-function.php:91 includes/widgets/htmega_offcanvas.php:70
10350
+ #: extensions/ht-menu/menu/helper_function.php:19
10351
+ msgid "Select Template"
10352
+ msgstr ""
10353
+
10354
+ #: includes/widgets/htmega_template_selector.php:49
10355
+ msgid "Select Your template"
10356
+ msgstr ""
10357
+
10358
+ #: includes/widgets/htmega_notify.php:101
10359
+ #: includes/widgets/htmega_videoplayer.php:52
10360
+ msgid "Self"
10361
+ msgstr ""
10362
+
10363
+ #: includes/widgets/htmega_verticle_time_line.php:73
10364
+ #: includes/widgets/htmega_verticle_time_line.php:101
10365
+ msgid "Sep<br/>2018"
10366
+ msgstr ""
10367
+
10368
+ #: includes/widgets/htmega_tabs.php:373
10369
+ msgid "Separator"
10370
+ msgstr ""
10371
+
10372
+ #: includes/widgets/htmega_tabs.php:361
10373
+ msgid "Separator Area"
10374
+ msgstr ""
10375
+
10376
+ #: includes/widgets/htmega_blockquote.php:415
10377
+ #: includes/widgets/htmega_tabs.php:387
10378
+ msgid "Separator Color"
10379
+ msgstr ""
10380
+
10381
+ #: includes/widgets/htmega_blockquote.php:460
10382
+ #: includes/widgets/htmega_tabs.php:403
10383
+ msgid "Separator Height"
10384
+ msgstr ""
10385
+
10386
+ #: includes/widgets/htmega_blockquote.php:400
10387
+ #: includes/widgets/htmega_countdown.php:716
10388
+ #: includes/widgets/htmega_tabs.php:462
10389
+ msgid "Separator Position"
10390
+ msgstr ""
10391
+
10392
+ #: includes/widgets/htmega_section_title.php:480
10393
+ msgid "Separator Specing"
10394
+ msgstr ""
10395
+
10396
+ #: includes/widgets/htmega_blockquote.php:430
10397
+ #: includes/widgets/htmega_countdown.php:882
10398
+ #: includes/widgets/htmega_tabs.php:434
10399
+ msgid "Separator Width"
10400
+ msgstr ""
10401
+
10402
+ #: includes/widgets/htmega_working_process.php:474
10403
+ msgid "Seperator Height"
10404
+ msgstr ""
10405
+
10406
+ #: includes/widgets/htmega_working_process.php:499
10407
+ msgid "Seperator Width"
10408
+ msgstr ""
10409
+
10410
+ #: includes/widgets/htmega_booked_calender.php:117
10411
+ msgid "September"
10412
+ msgstr ""
10413
+
10414
+ #: admin/include/class.diagnostic-data.php:459
10415
+ #, php-format
10416
+ msgid ""
10417
+ "Server information (Web server, PHP version, MySQL version), WordPress "
10418
+ "information, site name, site URL, number of plugins, number of users, your "
10419
+ "name, and email address. You can rest assured that no sensitive data will be "
10420
+ "collected or tracked. %1$sLearn more%2$s."
10421
+ msgstr ""
10422
+
10423
+ #: admin/include/admin-setting.php:463 includes/widgets/htmega_service.php:15
10424
+ #: includes/widgets/htmega_service.php:36
10425
+ msgid "Service"
10426
+ msgstr ""
10427
+
10428
+ #: includes/widgets/htmega_service.php:138
10429
+ msgid "Service Button text"
10430
+ msgstr ""
10431
+
10432
+ #: includes/widgets/htmega_service.php:129
10433
+ msgid "Service description"
10434
+ msgstr ""
10435
+
10436
+ #: includes/widgets/htmega_service.php:69
10437
+ msgid "Service Icon Type"
10438
+ msgstr ""
10439
+
10440
+ #: includes/widgets/htmega_service.php:147
10441
+ msgid "Service Link"
10442
+ msgstr ""
10443
+
10444
+ #: includes/widgets/htmega_service.php:60
10445
+ msgid "Service Title"
10446
+ msgstr ""
10447
+
10448
+ #: includes/widgets/htmega_service.php:62
10449
+ msgid "Services Title"
10450
+ msgstr ""
10451
+
10452
+ #: includes/class.htmega.php:209 admin/include/admin-setting.php:47
10453
+ #: admin/include/admin-setting.php:48
10454
+ #: extensions/ht-builder/widgets/bl_post_archive.php:36
10455
+ #: extensions/ht-menu/menu/templates.php:40
10456
+ msgid "Settings"
10457
+ msgstr ""
10458
+
10459
+ #: includes/widgets/htmega_button.php:486
10460
+ msgid "Shadow 1"
10461
+ msgstr ""
10462
+
10463
+ #: includes/widgets/htmega_button.php:487
10464
+ msgid "Shadow 2"
10465
+ msgstr ""
10466
+
10467
+ #: includes/widgets/htmega_newsticker.php:528
10468
+ msgid "Shape Color"
10469
+ msgstr ""
10470
+
10471
+ #: includes/widgets/htmega_buddy_press.php:115
10472
+ #: includes/widgets/htmega_buddy_press.php:128
10473
+ #: includes/widgets/htmega_buddy_press.php:143
10474
+ #: includes/widgets/htmega_buddy_press.php:158
10475
+ #: includes/widgets/htmega_data_table.php:60
10476
+ #: includes/widgets/htmega_data_table.php:84
10477
+ #: includes/widgets/htmega_data_table.php:108
10478
+ #: includes/widgets/htmega_data_table.php:136
10479
+ #: includes/widgets/htmega_data_table.php:165
10480
+ #: includes/widgets/htmega_data_table.php:178
10481
+ #: includes/widgets/htmega_data_table.php:190
10482
+ #: includes/widgets/htmega_double_button.php:80
10483
+ #: includes/widgets/htmega_gravity_forms.php:79
10484
+ #: includes/widgets/htmega_gravity_forms.php:91
10485
+ #: includes/widgets/htmega_instagram.php:177
10486
+ #: includes/widgets/htmega_instagram.php:189
10487
+ #: includes/widgets/htmega_instagram.php:279
10488
+ #: includes/widgets/htmega_newsticker.php:309
10489
+ #: includes/widgets/htmega_popover.php:129
10490
+ #: includes/widgets/htmega_popover.php:206
10491
+ #: includes/widgets/htmega_scroll_image.php:122
10492
+ #: includes/widgets/htmega_socialshere.php:358
10493
+ #: includes/widgets/htmega_tooltip.php:129
10494
+ #: includes/widgets/htmega_twitter_feed.php:146
10495
+ #: includes/widgets/htmega_twitter_feed.php:158
10496
+ #: includes/widgets/htmega_twitter_feed.php:170
10497
+ #: includes/widgets/htmega_twitter_feed.php:182
10498
+ #: includes/widgets/htmega_twitter_feed.php:194
10499
+ #: includes/widgets/htmega_twitter_feed.php:208
10500
+ #: includes/widgets/htmega_user_login_form.php:79
10501
+ #: includes/widgets/htmega_user_login_form.php:187
10502
+ #: includes/widgets/htmega_user_login_form.php:198
10503
+ #: includes/widgets/htmega_user_login_form.php:289
10504
+ #: includes/widgets/htmega_user_login_form.php:316
10505
+ #: includes/widgets/htmega_user_login_form.php:328
10506
+ #: includes/widgets/htmega_wc_add_to_cart.php:76
10507
+ #: includes/widgets/htmega_wpforms.php:77
10508
+ #: includes/widgets/htmega_wpforms.php:89
10509
+ #: extensions/ht-builder/widgets/bl_post_archive.php:101
10510
+ #: extensions/ht-builder/widgets/bl_post_archive.php:113
10511
+ #: extensions/ht-builder/widgets/bl_post_archive.php:125
10512
+ #: extensions/ht-builder/widgets/bl_post_archive.php:137
10513
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:47
10514
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:72
10515
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:84
10516
+ msgid "Show"
10517
+ msgstr ""
10518
+
10519
+ #: includes/widgets/htmega_buddy_press.php:126
10520
+ msgid "Show Active Time"
10521
+ msgstr ""
10522
+
10523
+ #: includes/widgets/htmega_easy_digital_download.php:140
10524
+ #: includes/widgets/htmega_toggle.php:45 includes/widgets/htmega_toggle.php:46
10525
+ #: includes/widgets/htmega_wc_categories.php:80
10526
+ msgid "Show All"
10527
+ msgstr ""
10528
+
10529
+ #: includes/widgets/htmega_notify.php:143
10530
+ msgid "Show Animation"
10531
+ msgstr ""
10532
+
10533
+ #: includes/widgets/htmega_twitter_feed.php:156
10534
+ msgid "Show Author Image"
10535
+ msgstr ""
10536
+
10537
+ #: includes/widgets/htmega_twitter_feed.php:168
10538
+ msgid "Show Author Name"
10539
+ msgstr ""
10540
+
10541
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:70
10542
+ msgid "Show Avatar Image"
10543
+ msgstr ""
10544
+
10545
+ #: includes/widgets/htmega_scroll_image.php:120
10546
+ msgid "Show Badge"
10547
+ msgstr ""
10548
+
10549
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:82
10550
+ msgid "Show Biography"
10551
+ msgstr ""
10552
+
10553
+ #: includes/widgets/htmega_easy_digital_download.php:106
10554
+ msgid "Show Buy Button"
10555
+ msgstr ""
10556
+
10557
+ #: includes/widgets/htmega_instagram.php:175
10558
+ msgid "Show Caption"
10559
+ msgstr ""
10560
+
10561
+ #: extensions/ht-builder/widgets/bl_post_archive.php:111
10562
+ msgid "Show Category"
10563
+ msgstr ""
10564
+
10565
+ #: includes/widgets/htmega_easy_digital_download.php:86
10566
+ msgid "Show Content"
10567
+ msgstr ""
10568
+
10569
+ #: includes/widgets/htmega_videoplayer.php:198
10570
+ msgid "Show Controller Button"
10571
+ msgstr ""
10572
+
10573
+ #: includes/widgets/htmega_gravity_forms.php:88
10574
+ msgid "Show Description"
10575
+ msgstr ""
10576
+
10577
+ #: includes/widgets/htmega_download_monitor.php:96
10578
+ msgid "Show Download Count"
10579
+ msgstr ""
10580
+
10581
+ #: includes/widgets/htmega_download_monitor.php:84
10582
+ msgid "Show File Size"
10583
+ msgstr ""
10584
+
10585
+ #: includes/widgets/htmega_download_monitor.php:72
10586
+ msgid "Show File Type"
10587
+ msgstr ""
10588
+
10589
+ #: includes/widgets/htmega_instagram.php:277
10590
+ msgid "Show Follow Button"
10591
+ msgstr ""
10592
+
10593
+ #: includes/widgets/htmega_instragram_feed.php:93
10594
+ msgid "Show Follow Text"
10595
+ msgstr ""
10596
+
10597
+ #: includes/widgets/htmega_buddy_press.php:156
10598
+ msgid "Show Friend Count"
10599
+ msgstr ""
10600
+
10601
+ #: includes/widgets/htmega_gallery_justify.php:127
10602
+ msgid "Show Gallery Title"
10603
+ msgstr ""
10604
+
10605
+ #: includes/widgets/htmega_instragram_feed.php:82
10606
+ msgid "Show Header"
10607
+ msgstr ""
10608
+
10609
+ #: includes/widgets/htmega_user_login_form.php:77
10610
+ msgid "Show Heading And Content"
10611
+ msgstr ""
10612
+
10613
+ #: includes/widgets/htmega_gallery_justify.php:139
10614
+ msgid "Show Image Counter"
10615
+ msgstr ""
10616
+
10617
+ #: includes/widgets/htmega_notify.php:60
10618
+ msgid "Show Info"
10619
+ msgstr ""
10620
+
10621
+ #: includes/widgets/htmega_instagram.php:187
10622
+ msgid "Show Light Box"
10623
+ msgstr ""
10624
+
10625
+ #: includes/widgets/htmega_popover.php:127
10626
+ #: includes/widgets/htmega_tooltip.php:127
10627
+ msgid "Show Link"
10628
+ msgstr ""
10629
+
10630
+ #: includes/widgets/htmega_panel_slider.php:167
10631
+ msgid "Show link on Image"
10632
+ msgstr ""
10633
+
10634
+ #: includes/widgets/htmega_panel_slider.php:156
10635
+ msgid "Show link on Title"
10636
+ msgstr ""
10637
+
10638
+ #: includes/widgets/htmega_buddy_press.php:113
10639
+ msgid "Show Meta Info"
10640
+ msgstr ""
10641
+
10642
+ #: includes/widgets/htmega_easy_digital_download.php:116
10643
+ msgid "Show Pagination"
10644
+ msgstr ""
10645
+
10646
+ #: extensions/ht-builder/widgets/bl_post_archive.php:123
10647
+ msgid "Show Post Meta"
10648
+ msgstr ""
10649
+
10650
+ #: includes/widgets/htmega_easy_digital_download.php:96
10651
+ msgid "Show Price"
10652
+ msgstr ""
10653
+
10654
+ #: includes/widgets/htmega_wc_add_to_cart.php:73
10655
+ msgid "Show Quantity"
10656
+ msgstr ""
10657
+
10658
+ #: extensions/ht-builder/widgets/bl_post_archive.php:135
10659
+ msgid "Show Read More Button"
10660
+ msgstr ""
10661
+
10662
+ #: includes/widgets/htmega_buddy_press.php:141
10663
+ msgid "Show Register Time"
10664
+ msgstr ""
10665
+
10666
+ #: includes/widgets/htmega_twitter_feed.php:192
10667
+ msgid "Show Relative Time"
10668
+ msgstr ""
10669
+
10670
+ #: includes/widgets/htmega_data_table.php:58
10671
+ msgid "Show Sorting Options"
10672
+ msgstr ""
10673
+
10674
+ #: includes/widgets/htmega_easy_digital_download.php:76
10675
+ msgid "Show Thumbnail"
10676
+ msgstr ""
10677
+
10678
+ #: includes/widgets/htmega_twitter_feed.php:180
10679
+ msgid "Show Time"
10680
+ msgstr ""
10681
+
10682
+ #: includes/widgets/htmega_twitter_feed.php:206
10683
+ msgid "Show Time Icon"
10684
+ msgstr ""
10685
+
10686
+ #: includes/widgets/htmega_gravity_forms.php:76
10687
+ #: extensions/ht-builder/widgets/bl_post_archive.php:99
10688
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:45
10689
+ msgid "Show Title"
10690
+ msgstr ""
10691
+
10692
+ #: includes/widgets/htmega_twitter_feed.php:144
10693
+ msgid "Show Twitter Meta"
10694
+ msgstr ""
10695
+
10696
+ #: includes/widgets/htmega_videoplayer.php:210
10697
+ msgid "Show video source Logo"
10698
+ msgstr ""
10699
+
10700
+ #: includes/widgets/htmega_offcanvas.php:61
10701
+ msgid "Sidebar"
10702
+ msgstr ""
10703
+
10704
+ #: includes/widgets/htmega_user_login_form.php:133
10705
+ #: includes/widgets/htmega_user_login_form.php:134
10706
+ msgid "Sign Up"
10707
+ msgstr ""
10708
+
10709
+ #: includes/widgets/htmega_scroll_navigation.php:292
10710
+ msgid "Simulate Touch"
10711
+ msgstr ""
10712
+
10713
+ #: extensions/ht-builder/admin/setting.php:64
10714
+ msgid "Single Blog Template."
10715
+ msgstr ""
10716
+
10717
+ #: includes/widgets/htmega_bbpress.php:56
10718
+ msgid "Single Forum"
10719
+ msgstr ""
10720
+
10721
+ #: includes/widgets/htmega_easy_digital_download.php:225
10722
+ #: includes/widgets/htmega_twitter_feed.php:543
10723
+ msgid "Single Item"
10724
+ msgstr ""
10725
+
10726
+ #: admin/include/admin-setting.php:471
10727
+ #: includes/widgets/htmega_singlepost.php:15
10728
+ #: includes/widgets/htmega_singlepost.php:36
10729
+ msgid "Single Post"
10730
+ msgstr ""
10731
+
10732
+ #: includes/widgets/htmega_wc_element_pages.php:59
10733
+ msgid "Single Product Page"
10734
+ msgstr ""
10735
+
10736
+ #: includes/widgets/htmega_bbpress.php:61
10737
+ msgid "Single Reply"
10738
+ msgstr ""
10739
+
10740
+ #: includes/widgets/htmega_bbpress.php:63
10741
+ msgid "Single Tag"
10742
+ msgstr ""
10743
+
10744
+ #: includes/widgets/htmega_bbpress.php:59
10745
+ msgid "Single Topic"
10746
+ msgstr ""
10747
+
10748
+ #: includes/widgets/htmega_bbpress.php:64
10749
+ msgid "Single View"
10750
+ msgstr ""
10751
+
10752
+ #: includes/widgets/htmega_user_login_form.php:131
10753
+ msgid "SingUp Text"
10754
+ msgstr ""
10755
+
10756
+ #: admin/include/admin-setting.php:953 admin/include/admin-setting.php:954
10757
+ #: extensions/ht-builder/widgets/bl_site_logo.php:69
10758
+ msgid "Site Logo"
10759
+ msgstr ""
10760
+
10761
+ #: admin/include/admin-setting.php:944 admin/include/admin-setting.php:945
10762
+ #: extensions/ht-builder/widgets/bl_site_logo.php:41
10763
+ #: extensions/ht-builder/widgets/bl_site_title.php:39
10764
+ #: extensions/ht-builder/widgets/bl_site_title.php:60
10765
+ #: extensions/ht-builder/widgets/bl_site_title.php:170
10766
+ msgid "Site Title"
10767
+ msgstr ""
10768
+
10769
+ #: includes/widgets/htmega_image_grid.php:75
10770
+ #: includes/widgets/htmega_image_masonry.php:84
10771
+ #: includes/widgets/htmega_testimonial_grid.php:78
10772
+ msgid "Six"
10773
+ msgstr ""
10774
+
10775
+ #: includes/widgets/htmega_counter.php:837
10776
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:187
10777
+ msgid "Size"
10778
+ msgstr ""
10779
+
10780
+ #: includes/widgets/htmega_double_button.php:78
10781
+ msgid "Skew Background"
10782
+ msgstr ""
10783
+
10784
+ #: includes/widgets/htmega_socialshere.php:88
10785
+ msgid "Skype"
10786
+ msgstr ""
10787
+
10788
+ #: includes/widgets/htmega_animated_heading.php:73
10789
+ msgid "Slide"
10790
+ msgstr ""
10791
+
10792
+ #: includes/widgets/htmega_carousel.php:112
10793
+ #: includes/widgets/htmega_instagram.php:199
10794
+ #: includes/widgets/htmega_panel_slider.php:178
10795
+ #: includes/widgets/htmega_post_slider.php:276
10796
+ #: includes/widgets/htmega_twitter_feed.php:217
10797
+ msgid "Slider"
10798
+ msgstr ""
10799
+
10800
+ #: includes/widgets/htmega_carousel.php:152
10801
+ #: includes/widgets/htmega_instagram.php:347
10802
+ #: includes/widgets/htmega_panel_slider.php:252
10803
+ #: includes/widgets/htmega_post_slider.php:316
10804
+ #: includes/widgets/htmega_slider_thumb_gallery.php:157
10805
+ #: includes/widgets/htmega_twitter_feed.php:274
10806
+ msgid "Slider Arrow"
10807
+ msgstr ""
10808
+
10809
+ #: includes/widgets/htmega_instagram.php:449
10810
+ #: includes/widgets/htmega_panel_slider.php:354
10811
+ #: includes/widgets/htmega_post_slider.php:434
10812
+ #: includes/widgets/htmega_slider_thumb_gallery.php:248
10813
+ #: includes/widgets/htmega_twitter_feed.php:376
10814
+ msgid "Slider auto play"
10815
+ msgstr ""
10816
+
10817
+ #: includes/widgets/htmega_carousel.php:254
10818
+ msgid "Slider autoplay"
10819
+ msgstr ""
10820
+
10821
+ #: includes/widgets/htmega_scroll_navigation.php:126
10822
+ msgid "Slider Direction"
10823
+ msgstr ""
10824
+
10825
+ #: includes/widgets/htmega_carousel.php:197
10826
+ #: includes/widgets/htmega_instagram.php:392
10827
+ #: includes/widgets/htmega_panel_slider.php:297
10828
+ #: includes/widgets/htmega_post_slider.php:361
10829
+ #: includes/widgets/htmega_slider_thumb_gallery.php:198
10830
+ #: includes/widgets/htmega_twitter_feed.php:319
10831
+ msgid "Slider dots"
10832
+ msgstr ""
10833
+
10834
+ #: includes/widgets/htmega_post_slider.php:614
10835
+ msgid "Slider Image Max Height"
10836
+ msgstr ""
10837
+
10838
+ #: includes/widgets/htmega_post_slider.php:600
10839
+ msgid "Slider Image Style"
10840
+ msgstr ""
10841
+
10842
+ #: includes/widgets/htmega_carousel.php:293
10843
+ #: includes/widgets/htmega_carousel.php:335
10844
+ #: includes/widgets/htmega_carousel.php:390
10845
+ #: includes/widgets/htmega_instagram.php:488
10846
+ #: includes/widgets/htmega_instagram.php:530
10847
+ #: includes/widgets/htmega_instagram.php:585
10848
+ #: includes/widgets/htmega_panel_slider.php:393
10849
+ #: includes/widgets/htmega_panel_slider.php:435
10850
+ #: includes/widgets/htmega_panel_slider.php:490
10851
+ #: includes/widgets/htmega_post_slider.php:473
10852
+ #: includes/widgets/htmega_post_slider.php:515
10853
+ #: includes/widgets/htmega_post_slider.php:570
10854
+ #: includes/widgets/htmega_slider_thumb_gallery.php:281
10855
+ #: includes/widgets/htmega_slider_thumb_gallery.php:317
10856
+ #: includes/widgets/htmega_slider_thumb_gallery.php:364
10857
+ #: includes/widgets/htmega_twitter_feed.php:415
10858
+ #: includes/widgets/htmega_twitter_feed.php:457
10859
+ #: includes/widgets/htmega_twitter_feed.php:512
10860
+ msgid "Slider item to scroll"
10861
+ msgstr ""
10862
+
10863
+ #: includes/widgets/htmega_carousel.php:137
10864
+ #: includes/widgets/htmega_carousel.php:320
10865
+ #: includes/widgets/htmega_carousel.php:375
10866
+ #: includes/widgets/htmega_instagram.php:332
10867
+ #: includes/widgets/htmega_instagram.php:515
10868
+ #: includes/widgets/htmega_instagram.php:570
10869
+ #: includes/widgets/htmega_panel_slider.php:203
10870
+ #: includes/widgets/htmega_panel_slider.php:420
10871
+ #: includes/widgets/htmega_panel_slider.php:475
10872
+ #: includes/widgets/htmega_post_slider.php:301
10873
+ #: includes/widgets/htmega_post_slider.php:500
10874
+ #: includes/widgets/htmega_post_slider.php:555
10875
+ #: includes/widgets/htmega_slider_thumb_gallery.php:144
10876
+ #: includes/widgets/htmega_slider_thumb_gallery.php:304
10877
+ #: includes/widgets/htmega_slider_thumb_gallery.php:351
10878
+ #: includes/widgets/htmega_twitter_feed.php:242
10879
+ #: includes/widgets/htmega_twitter_feed.php:442
10880
+ #: includes/widgets/htmega_twitter_feed.php:497
10881
+ msgid "Slider Items"
10882
+ msgstr ""
10883
+
10884
+ #: includes/widgets/htmega_scroll_navigation.php:301
10885
+ msgid "Slider Navigation"
10886
+ msgstr ""
10887
+
10888
+ #: includes/widgets/htmega_carousel.php:127
10889
+ #: includes/widgets/htmega_instagram.php:322
10890
+ #: includes/widgets/htmega_panel_slider.php:193
10891
+ #: includes/widgets/htmega_post_slider.php:291
10892
+ #: includes/widgets/htmega_slider_thumb_gallery.php:137
10893
+ #: includes/widgets/htmega_twitter_feed.php:232
10894
+ msgid "Slider Option"
10895
+ msgstr ""
10896
+
10897
+ #: includes/widgets/htmega_scroll_navigation.php:119
10898
+ msgid "Slider Options"
10899
+ msgstr ""
10900
+
10901
+ #: includes/widgets/htmega_scroll_navigation.php:311
10902
+ msgid "Slider Pagination"
10903
+ msgstr ""
10904
+
10905
+ #: includes/widgets/htmega_panel_slider.php:86
10906
+ msgid "Slider Sub Title"
10907
+ msgstr ""
10908
+
10909
+ #: includes/widgets/htmega_slider_thumb_gallery.php:43
10910
+ msgid "Slider Thumbnail"
10911
+ msgstr ""
10912
+
10913
+ #: admin/include/admin-setting.php:479
10914
+ #: includes/widgets/htmega_slider_thumb_gallery.php:14
10915
+ msgid "Slider Thumbnail Gallery"
10916
+ msgstr ""
10917
+
10918
+ #: includes/widgets/htmega_panel_slider.php:77
10919
+ msgid "Slider Title"
10920
+ msgstr ""
10921
+
10922
+ #: includes/widgets/htmega_scroll_navigation.php:265
10923
+ msgid "Slider Visible Item"
10924
+ msgstr ""
10925
+
10926
+ #: includes/widgets/htmega_easy_digital_download.php:199
10927
+ #: includes/widgets/htmega_wc_categories.php:130
10928
+ msgid "Slug"
10929
+ msgstr ""
10930
+
10931
+ #: includes/widgets/htmega_booked_calender.php:167
10932
+ #: includes/widgets/htmega_button.php:93
10933
+ #: includes/widgets/htmega_double_button.php:46
10934
+ msgid "Small"
10935
+ msgstr ""
10936
+
10937
+ #: includes/widgets/htmega_socialshere.php:58
10938
+ #: includes/widgets/htmega_teammember.php:205
10939
+ #: includes/widgets/htmega_teammember.php:955
10940
+ msgid "Social Media"
10941
+ msgstr ""
10942
+
10943
+ #: admin/include/admin-setting.php:673
10944
+ msgid "Social Network Icons <span>( Pro )</span>"
10945
+ msgstr ""
10946
+
10947
+ #: admin/include/admin-setting.php:487
10948
+ #: includes/widgets/htmega_socialshere.php:13
10949
+ #: includes/widgets/htmega_socialshere.php:49
10950
+ msgid "Social Share"
10951
+ msgstr ""
10952
+
10953
+ #: admin/include/admin-setting.php:981
10954
+ msgid "Social share"
10955
+ msgstr ""
10956
+
10957
+ #: admin/include/admin-setting.php:980
10958
+ msgid "Social Share <span>( Pro )</span>"
10959
+ msgstr ""
10960
+
10961
+ #: includes/helper-function.php:425
10962
+ msgid "Something is wrong please check again!"
10963
+ msgstr ""
10964
+
10965
+ #: includes/helper-function.php:447
10966
+ msgid "Sorry, that username already exists!"
10967
+ msgstr ""
10968
+
10969
+ #: includes/helper-function.php:451
10970
+ msgid "Sorry, the username you entered is not valid"
10971
+ msgstr ""
10972
+
10973
+ #: admin/include/template-library.php:411
10974
+ msgid "Sorry, you are not allowed to install themes on this site."
10975
+ msgstr ""
10976
+
10977
+ #: includes/widgets/htmega_data_table.php:73
10978
+ msgid "Sorting Options"
10979
+ msgstr ""
10980
+
10981
+ #: includes/widgets/htmega_data_table.php:1134
10982
+ msgid "Sorting Ordering After Color"
10983
+ msgstr ""
10984
+
10985
+ #: includes/widgets/htmega_data_table.php:1118
10986
+ msgid "Sorting Ordering Before Color"
10987
+ msgstr ""
10988
+
10989
+ #: includes/widgets/htmega_data_table.php:1102
10990
+ msgid "Sorting Ordering Color"
10991
+ msgstr ""
10992
+
10993
+ #: includes/widgets/htmega_data_table.php:859
10994
+ msgid "Sorting Style"
10995
+ msgstr ""
10996
+
10997
+ #: includes/widgets/htmega_videoplayer.php:174
10998
+ msgid "Sound Mute"
10999
+ msgstr ""
11000
+
11001
+ #: includes/widgets/htmega_gallery_justify.php:75
11002
+ msgid "Space"
11003
+ msgstr ""
11004
+
11005
+ #: includes/widgets/htmega_user_login_form.php:433
11006
+ msgid "Space Around"
11007
+ msgstr ""
11008
+
11009
+ #: includes/widgets/htmega_user_login_form.php:432
11010
+ msgid "Space Between"
11011
+ msgstr ""
11012
+
11013
+ #: includes/widgets/htmega_user_login_form.php:434
11014
+ msgid "Space Evenly"
11015
+ msgstr ""
11016
+
11017
+ #: includes/widgets/htmega_popover.php:216
11018
+ #: includes/widgets/htmega_tooltip.php:192
11019
+ msgid "Space With Button"
11020
+ msgstr ""
11021
+
11022
+ #: includes/widgets/htmega_caldera_form.php:120
11023
+ #: includes/widgets/htmega_caldera_form.php:164
11024
+ msgid "Space(px)"
11025
+ msgstr ""
11026
+
11027
+ #: includes/helper-function.php:209
11028
+ msgid "span"
11029
+ msgstr ""
11030
+
11031
+ #: admin/include/admin-setting.php:143
11032
+ #: includes/widgets/htmega_special_day_banner.php:14
11033
+ msgid "Special Day Offer"
11034
+ msgstr ""
11035
+
11036
+ #: includes/widgets/htmega_scroll_image.php:149
11037
+ #: includes/widgets/htmega_scroll_navigation.php:256
11038
+ msgid "Speed"
11039
+ msgstr ""
11040
+
11041
+ #: includes/widgets/htmega_accordion.php:1109
11042
+ #: includes/widgets/htmega_counter.php:70
11043
+ #: includes/widgets/htmega_user_login_form.php:429
11044
+ msgid "Start"
11045
+ msgstr ""
11046
+
11047
+ #: includes/widgets/htmega_bbpress.php:65
11048
+ msgid "Stats"
11049
+ msgstr ""
11050
+
11051
+ #: includes/widgets/htmega_progress_bar.php:75
11052
+ msgid "Striped"
11053
+ msgstr ""
11054
+
11055
+ #: includes/widgets/htmega_progress_bar.php:87
11056
+ msgid "Striped Animated"
11057
+ msgstr ""
11058
+
11059
+ #: includes/widgets/htmega_section_title.php:656
11060
+ #: includes/widgets/htmega_section_title.php:1045
11061
+ msgid "Stroke"
11062
+ msgstr ""
11063
+
11064
+ #: includes/widgets/htmega_section_title.php:666
11065
+ #: includes/widgets/htmega_section_title.php:1055
11066
+ msgid "Stroke Color"
11067
+ msgstr ""
11068
+
11069
+ #: includes/widgets/htmega_section_title.php:680
11070
+ #: includes/widgets/htmega_section_title.php:1069
11071
+ msgid "Stroke Fill Width"
11072
+ msgstr ""
11073
+
11074
+ #: includes/widgets/htmega_socialshere.php:77
11075
+ msgid "Stumbleupon"
11076
+ msgstr ""
11077
+
11078
+ #: includes/widgets/htmega_accordion.php:51
11079
+ #: includes/widgets/htmega_add_banner.php:41
11080
+ #: includes/widgets/htmega_blockquote.php:172
11081
+ #: includes/widgets/htmega_booked_calender.php:50
11082
+ #: includes/widgets/htmega_brand.php:42 includes/widgets/htmega_brand.php:120
11083
+ #: includes/widgets/htmega_call_to_action.php:39
11084
+ #: includes/widgets/htmega_carousel.php:50
11085
+ #: includes/widgets/htmega_contact_form_seven.php:51
11086
+ #: includes/widgets/htmega_countdown.php:94
11087
+ #: includes/widgets/htmega_counter.php:49
11088
+ #: includes/widgets/htmega_dropcaps.php:42
11089
+ #: includes/widgets/htmega_errorcontent.php:50
11090
+ #: includes/widgets/htmega_errorcontent.php:238
11091
+ #: includes/widgets/htmega_imagemarker.php:121
11092
+ #: includes/widgets/htmega_image_grid.php:50
11093
+ #: includes/widgets/htmega_image_magnifier.php:102
11094
+ #: includes/widgets/htmega_image_masonry.php:59
11095
+ #: includes/widgets/htmega_inlinemenu.php:53
11096
+ #: includes/widgets/htmega_instagram.php:51
11097
+ #: includes/widgets/htmega_instagram.php:616
11098
+ #: includes/widgets/htmega_instragram_feed.php:121
11099
+ #: includes/widgets/htmega_mailchimp_wp.php:50
11100
+ #: includes/widgets/htmega_mailchimp_wp.php:81
11101
+ #: includes/widgets/htmega_newsticker.php:56
11102
+ #: includes/widgets/htmega_notify.php:270
11103
+ #: includes/widgets/htmega_offcanvas.php:308
11104
+ #: includes/widgets/htmega_panel_slider.php:60
11105
+ #: includes/widgets/htmega_popover.php:253
11106
+ #: includes/widgets/htmega_post_slider.php:1422
11107
+ #: includes/widgets/htmega_pricing_list_view.php:307
11108
+ #: includes/widgets/htmega_pricing_list_view.php:681
11109
+ #: includes/widgets/htmega_progress_bar.php:57
11110
+ #: includes/widgets/htmega_progress_bar.php:71
11111
+ #: includes/widgets/htmega_search.php:42 includes/widgets/htmega_service.php:42
11112
+ #: includes/widgets/htmega_singlepost.php:42
11113
+ #: includes/widgets/htmega_socialshere.php:399
11114
+ #: includes/widgets/htmega_switcher.php:41
11115
+ #: includes/widgets/htmega_switcher.php:238 includes/widgets/htmega_tabs.php:41
11116
+ #: includes/widgets/htmega_tabs.php:128
11117
+ #: includes/widgets/htmega_teammember.php:50
11118
+ #: includes/widgets/htmega_testimonial_grid.php:41
11119
+ #: includes/widgets/htmega_twitter_feed.php:55
11120
+ #: includes/widgets/htmega_user_login_form.php:50
11121
+ #: includes/widgets/htmega_user_login_form.php:549
11122
+ #: includes/widgets/htmega_weather.php:65
11123
+ #: includes/widgets/htmega_working_process.php:42
11124
+ #: extensions/ht-builder/widgets/bl_site_logo.php:99
11125
+ msgid "Style"
11126
+ msgstr ""
11127
+
11128
+ #: includes/widgets/htmega_inlinemenu.php:64
11129
+ #: includes/widgets/htmega_teammember.php:61
11130
+ msgid "Style Eight"
11131
+ msgstr ""
11132
+
11133
+ #: includes/widgets/htmega_accordion.php:59
11134
+ #: includes/widgets/htmega_add_banner.php:49
11135
+ #: includes/widgets/htmega_animated_heading.php:57
11136
+ #: includes/widgets/htmega_brand.php:50
11137
+ #: includes/widgets/htmega_call_to_action.php:47
11138
+ #: includes/widgets/htmega_carousel.php:58
11139
+ #: includes/widgets/htmega_contact_form_seven.php:59
11140
+ #: includes/widgets/htmega_counter.php:57
11141
+ #: includes/widgets/htmega_dropcaps.php:50
11142
+ #: includes/widgets/htmega_imagemarker.php:129
11143
+ #: includes/widgets/htmega_image_grid.php:58
11144
+ #: includes/widgets/htmega_image_masonry.php:67
11145
+ #: includes/widgets/htmega_inlinemenu.php:61
11146
+ #: includes/widgets/htmega_mailchimp_wp.php:58
11147
+ #: includes/widgets/htmega_newsticker.php:64
11148
+ #: includes/widgets/htmega_search.php:50
11149
+ #: includes/widgets/htmega_section_title.php:49
11150
+ #: includes/widgets/htmega_service.php:50 includes/widgets/htmega_tabs.php:49
11151
+ #: includes/widgets/htmega_teammember.php:58
11152
+ #: includes/widgets/htmega_testimonial_grid.php:49
11153
+ #: includes/widgets/htmega_twitter_feed.php:63
11154
+ #: includes/widgets/htmega_user_login_form.php:58
11155
+ #: includes/widgets/htmega_working_process.php:50
11156
+ msgid "Style Five"
11157
+ msgstr ""
11158
+
11159
+ #: includes/widgets/htmega_accordion.php:58
11160
+ #: includes/widgets/htmega_add_banner.php:48
11161
+ #: includes/widgets/htmega_animated_heading.php:56
11162
+ #: includes/widgets/htmega_brand.php:49 includes/widgets/htmega_button.php:53
11163
+ #: includes/widgets/htmega_call_to_action.php:46
11164
+ #: includes/widgets/htmega_carousel.php:57
11165
+ #: includes/widgets/htmega_contact_form_seven.php:58
11166
+ #: includes/widgets/htmega_counter.php:56
11167
+ #: includes/widgets/htmega_dropcaps.php:49
11168
+ #: includes/widgets/htmega_errorcontent.php:57
11169
+ #: includes/widgets/htmega_imagemarker.php:128
11170
+ #: includes/widgets/htmega_image_grid.php:57
11171
+ #: includes/widgets/htmega_image_masonry.php:66
11172
+ #: includes/widgets/htmega_inlinemenu.php:60
11173
+ #: includes/widgets/htmega_instagram.php:58
11174
+ #: includes/widgets/htmega_mailchimp_wp.php:57
11175
+ #: includes/widgets/htmega_newsticker.php:63
11176
+ #: includes/widgets/htmega_panel_slider.php:67
11177
+ #: includes/widgets/htmega_search.php:49
11178
+ #: includes/widgets/htmega_section_title.php:48
11179
+ #: includes/widgets/htmega_service.php:49
11180
+ #: includes/widgets/htmega_singlepost.php:49
11181
+ #: includes/widgets/htmega_tabs.php:48
11182
+ #: includes/widgets/htmega_teammember.php:57
11183
+ #: includes/widgets/htmega_testimonial_grid.php:48
11184
+ #: includes/widgets/htmega_twitter_feed.php:62
11185
+ #: includes/widgets/htmega_user_login_form.php:57
11186
+ #: includes/widgets/htmega_weather.php:72
11187
+ #: includes/widgets/htmega_working_process.php:49
11188
+ msgid "Style Four"
11189
+ msgstr ""
11190
+
11191
+ #: includes/widgets/htmega_countdown.php:101
11192
+ msgid "Style Four (Flip)"
11193
+ msgstr ""
11194
+
11195
+ #: includes/widgets/htmega_inlinemenu.php:65
11196
+ msgid "Style Nine"
11197
+ msgstr ""
11198
+
11199
+ #: includes/widgets/htmega_accordion.php:55
11200
+ #: includes/widgets/htmega_add_banner.php:45
11201
+ #: includes/widgets/htmega_animated_heading.php:53
11202
+ #: includes/widgets/htmega_brand.php:46 includes/widgets/htmega_button.php:50
11203
+ #: includes/widgets/htmega_call_to_action.php:43
11204
+ #: includes/widgets/htmega_carousel.php:54
11205
+ #: includes/widgets/htmega_carousel.php:433
11206
+ #: includes/widgets/htmega_contact_form_seven.php:55
11207
+ #: includes/widgets/htmega_counter.php:53
11208
+ #: includes/widgets/htmega_dropcaps.php:46
11209
+ #: includes/widgets/htmega_errorcontent.php:54
11210
+ #: includes/widgets/htmega_imagemarker.php:125
11211
+ #: includes/widgets/htmega_image_grid.php:54
11212
+ #: includes/widgets/htmega_image_masonry.php:63
11213
+ #: includes/widgets/htmega_inlinemenu.php:57
11214
+ #: includes/widgets/htmega_instagram.php:55
11215
+ #: includes/widgets/htmega_mailchimp_wp.php:54
11216
+ #: includes/widgets/htmega_newsticker.php:60
11217
+ #: includes/widgets/htmega_panel_slider.php:64
11218
+ #: includes/widgets/htmega_post_slider.php:1426
11219
+ #: includes/widgets/htmega_search.php:46
11220
+ #: includes/widgets/htmega_section_title.php:45
11221
+ #: includes/widgets/htmega_service.php:46
11222
+ #: includes/widgets/htmega_singlepost.php:46
11223
+ #: includes/widgets/htmega_tabs.php:45
11224
+ #: includes/widgets/htmega_teammember.php:54
11225
+ #: includes/widgets/htmega_teammember.php:72
11226
+ #: includes/widgets/htmega_teammember.php:87
11227
+ #: includes/widgets/htmega_testimonial_grid.php:45
11228
+ #: includes/widgets/htmega_twitter_feed.php:59
11229
+ #: includes/widgets/htmega_user_login_form.php:54
11230
+ #: includes/widgets/htmega_weather.php:69
11231
+ #: includes/widgets/htmega_working_process.php:46
11232
+ msgid "Style One"
11233
+ msgstr ""
11234
+
11235
+ #: includes/widgets/htmega_countdown.php:98
11236
+ msgid "Style one"
11237
+ msgstr ""
11238
+
11239
+ #: includes/widgets/htmega_animated_heading.php:59
11240
+ #: includes/widgets/htmega_brand.php:52
11241
+ #: includes/widgets/htmega_call_to_action.php:49
11242
+ #: includes/widgets/htmega_carousel.php:60
11243
+ #: includes/widgets/htmega_inlinemenu.php:63
11244
+ #: includes/widgets/htmega_newsticker.php:66
11245
+ #: includes/widgets/htmega_service.php:52
11246
+ #: includes/widgets/htmega_teammember.php:60
11247
+ #: includes/widgets/htmega_user_login_form.php:60
11248
+ msgid "Style Seven"
11249
+ msgstr ""
11250
+
11251
+ #: includes/widgets/htmega_add_banner.php:50
11252
+ #: includes/widgets/htmega_animated_heading.php:58
11253
+ #: includes/widgets/htmega_brand.php:51
11254
+ #: includes/widgets/htmega_call_to_action.php:48
11255
+ #: includes/widgets/htmega_carousel.php:59
11256
+ #: includes/widgets/htmega_contact_form_seven.php:60
11257
+ #: includes/widgets/htmega_counter.php:58
11258
+ #: includes/widgets/htmega_imagemarker.php:130
11259
+ #: includes/widgets/htmega_inlinemenu.php:62
11260
+ #: includes/widgets/htmega_newsticker.php:65
11261
+ #: includes/widgets/htmega_service.php:51
11262
+ #: includes/widgets/htmega_teammember.php:59
11263
+ #: includes/widgets/htmega_user_login_form.php:59
11264
+ msgid "Style Six"
11265
+ msgstr ""
11266
+
11267
+ #: includes/widgets/htmega_inlinemenu.php:66
11268
+ msgid "Style Ten"
11269
+ msgstr ""
11270
+
11271
+ #: includes/widgets/htmega_accordion.php:57
11272
+ #: includes/widgets/htmega_add_banner.php:47
11273
+ #: includes/widgets/htmega_animated_heading.php:55
11274
+ #: includes/widgets/htmega_brand.php:48 includes/widgets/htmega_button.php:52
11275
+ #: includes/widgets/htmega_call_to_action.php:45
11276
+ #: includes/widgets/htmega_carousel.php:56
11277
+ #: includes/widgets/htmega_contact_form_seven.php:57
11278
+ #: includes/widgets/htmega_countdown.php:100
11279
+ #: includes/widgets/htmega_counter.php:55
11280
+ #: includes/widgets/htmega_dropcaps.php:48
11281
+ #: includes/widgets/htmega_errorcontent.php:56
11282
+ #: includes/widgets/htmega_imagemarker.php:127
11283
+ #: includes/widgets/htmega_image_grid.php:56
11284
+ #: includes/widgets/htmega_image_masonry.php:65
11285
+ #: includes/widgets/htmega_inlinemenu.php:59
11286
+ #: includes/widgets/htmega_instagram.php:57
11287
+ #: includes/widgets/htmega_mailchimp_wp.php:56
11288
+ #: includes/widgets/htmega_newsticker.php:62
11289
+ #: includes/widgets/htmega_panel_slider.php:66
11290
+ #: includes/widgets/htmega_search.php:48
11291
+ #: includes/widgets/htmega_section_title.php:47
11292
+ #: includes/widgets/htmega_service.php:48
11293
+ #: includes/widgets/htmega_singlepost.php:48
11294
+ #: includes/widgets/htmega_tabs.php:47
11295
+ #: includes/widgets/htmega_teammember.php:56
11296
+ #: includes/widgets/htmega_teammember.php:89
11297
+ #: includes/widgets/htmega_testimonial_grid.php:47
11298
+ #: includes/widgets/htmega_twitter_feed.php:61
11299
+ #: includes/widgets/htmega_user_login_form.php:56
11300
+ #: includes/widgets/htmega_weather.php:71
11301
+ #: includes/widgets/htmega_working_process.php:48
11302
+ msgid "Style Three"
11303
+ msgstr ""
11304
+
11305
+ #: includes/widgets/htmega_accordion.php:56
11306
+ #: includes/widgets/htmega_add_banner.php:46
11307
+ #: includes/widgets/htmega_animated_heading.php:54
11308
+ #: includes/widgets/htmega_brand.php:47 includes/widgets/htmega_button.php:51
11309
+ #: includes/widgets/htmega_call_to_action.php:44
11310
+ #: includes/widgets/htmega_carousel.php:55
11311
+ #: includes/widgets/htmega_carousel.php:434
11312
+ #: includes/widgets/htmega_contact_form_seven.php:56
11313
+ #: includes/widgets/htmega_countdown.php:99
11314
+ #: includes/widgets/htmega_counter.php:54
11315
+ #: includes/widgets/htmega_dropcaps.php:47
11316
+ #: includes/widgets/htmega_errorcontent.php:55
11317
+ #: includes/widgets/htmega_imagemarker.php:126
11318
+ #: includes/widgets/htmega_image_grid.php:55
11319
+ #: includes/widgets/htmega_image_masonry.php:64
11320
+ #: includes/widgets/htmega_inlinemenu.php:58
11321
+ #: includes/widgets/htmega_instagram.php:56
11322
+ #: includes/widgets/htmega_mailchimp_wp.php:55
11323
+ #: includes/widgets/htmega_newsticker.php:61
11324
+ #: includes/widgets/htmega_panel_slider.php:65
11325
+ #: includes/widgets/htmega_post_slider.php:1427
11326
+ #: includes/widgets/htmega_search.php:47
11327
+ #: includes/widgets/htmega_section_title.php:46
11328
+ #: includes/widgets/htmega_service.php:47
11329
+ #: includes/widgets/htmega_singlepost.php:47
11330
+ #: includes/widgets/htmega_tabs.php:46
11331
+ #: includes/widgets/htmega_teammember.php:55
11332
+ #: includes/widgets/htmega_teammember.php:73
11333
+ #: includes/widgets/htmega_teammember.php:88
11334
+ #: includes/widgets/htmega_testimonial_grid.php:46
11335
+ #: includes/widgets/htmega_twitter_feed.php:60
11336
+ #: includes/widgets/htmega_user_login_form.php:55
11337
+ #: includes/widgets/htmega_weather.php:70
11338
+ #: includes/widgets/htmega_working_process.php:47
11339
+ msgid "Style Two"
11340
+ msgstr ""
11341
+
11342
+ #: includes/widgets/htmega_quforms.php:199
11343
+ msgid "Sub Label"
11344
+ msgstr ""
11345
+
11346
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:336
11347
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:195
11348
+ #: extensions/ht-menu/widgets/verticle-mega-menu.php:196
11349
+ msgid "Sub Menu"
11350
+ msgstr ""
11351
+
11352
+ #: extensions/ht-menu/admin/setting.php:87
11353
+ msgid "Sub Menu Background Color"
11354
+ msgstr ""
11355
+
11356
+ #: extensions/ht-menu/admin/setting.php:94
11357
+ msgid "Sub Menu Items Color"
11358
+ msgstr ""
11359
+
11360
+ #: extensions/ht-menu/admin/setting.php:101
11361
+ msgid "Sub Menu Items Hover Color"
11362
+ msgstr ""
11363
+
11364
+ #: extensions/ht-menu/admin/setting.php:76
11365
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:203
11366
+ #: extensions/ht-menu/widgets/verticle-mega-menu.php:204
11367
+ msgid "Sub Menu Width"
11368
+ msgstr ""
11369
+
11370
+ #: includes/widgets/htmega_add_banner.php:101
11371
+ #: includes/widgets/htmega_add_banner.php:489
11372
+ #: includes/widgets/htmega_call_to_action.php:57
11373
+ #: includes/widgets/htmega_call_to_action.php:500
11374
+ #: includes/widgets/htmega_errorcontent.php:100
11375
+ #: includes/widgets/htmega_errorcontent.php:384
11376
+ #: includes/widgets/htmega_panel_slider.php:737
11377
+ #: includes/widgets/htmega_section_title.php:69
11378
+ #: includes/widgets/htmega_slider_thumb_gallery.php:74
11379
+ #: includes/widgets/htmega_special_day_banner.php:87
11380
+ #: includes/widgets/htmega_special_day_banner.php:394
11381
+ msgid "Sub Title"
11382
+ msgstr ""
11383
+
11384
+ #: includes/widgets/htmega_section_title.php:222
11385
+ msgid "Sub Title Setting"
11386
+ msgstr ""
11387
+
11388
+ #: includes/widgets/htmega_slider_thumb_gallery.php:730
11389
+ msgid "Sub Title Style"
11390
+ msgstr ""
11391
+
11392
+ #: includes/widgets/htmega_section_title.php:768
11393
+ msgid "Sub Title style"
11394
+ msgstr ""
11395
+
11396
+ #: includes/widgets/htmega_call_to_action.php:69
11397
+ msgid "Sub Title Tag"
11398
+ msgstr ""
11399
+
11400
+ #: extensions/ht-menu/menu/templates.php:68
11401
+ msgid "SubMenu Position"
11402
+ msgstr ""
11403
+
11404
+ #: includes/widgets/htmega_caldera_form.php:436
11405
+ #: includes/widgets/htmega_search.php:420
11406
+ #: includes/widgets/htmega_user_login_form.php:1085
11407
+ #: extensions/ht-builder/widgets/bl_post_comments.php:80
11408
+ msgid "Submit Button"
11409
+ msgstr ""
11410
+
11411
+ #: includes/widgets/htmega_notify.php:134
11412
+ msgid "Success"
11413
+ msgstr ""
11414
+
11415
+ #: includes/widgets/htmega_ninja_form.php:1157
11416
+ msgid "Success Style"
11417
+ msgstr ""
11418
+
11419
+ #: extensions/ht-menu/classes/class.mega-menu.php:156
11420
+ msgid "Successfully data saved"
11421
+ msgstr ""
11422
+
11423
+ #: includes/helper-function.php:427
11424
+ msgid "Successfully Register"
11425
+ msgstr ""
11426
+
11427
+ #: admin/include/admin-setting.php:1277
11428
+ #: extensions/ht-builder/admin/setting.php:196
11429
+ #: extensions/ht-menu/admin/setting.php:148
11430
+ #: extensions/wc-sales-notification/admin/setting.php:280
11431
+ msgid "Successfully Settings Saved."
11432
+ msgstr ""
11433
+
11434
+ #: includes/widgets/htmega_counter.php:1016
11435
+ msgid "Suffix"
11436
+ msgstr ""
11437
+
11438
+ #: includes/widgets/htmega_business_hours.php:168
11439
+ msgid "Sunday"
11440
+ msgstr ""
11441
+
11442
+ #: includes/widgets/htmega_socialshere.php:79
11443
+ msgid "Surfingbird"
11444
+ msgstr ""
11445
+
11446
+ #: includes/widgets/htmega_offcanvas.php:248
11447
+ msgid "SVG Icon Size"
11448
+ msgstr ""
11449
+
11450
+ #: includes/widgets/htmega_switcher.php:64
11451
+ msgid "Switch One"
11452
+ msgstr ""
11453
+
11454
+ #: includes/widgets/htmega_switcher.php:155
11455
+ msgid "Switch Two"
11456
+ msgstr ""
11457
+
11458
+ #: admin/include/admin-setting.php:495 includes/widgets/htmega_switcher.php:13
11459
+ msgid "Switcher"
11460
+ msgstr ""
11461
+
11462
+ #: includes/widgets/htmega_switcher.php:275
11463
+ msgid "Switcher Button"
11464
+ msgstr ""
11465
+
11466
+ #: includes/widgets/htmega_switcher.php:136
11467
+ msgid "Switcher Content One"
11468
+ msgstr ""
11469
+
11470
+ #: includes/widgets/htmega_switcher.php:228
11471
+ msgid "Switcher Content Two"
11472
+ msgstr ""
11473
+
11474
+ #: includes/widgets/htmega_switcher.php:34
11475
+ msgid "Switcher Layout"
11476
+ msgstr ""
11477
+
11478
+ #: includes/widgets/htmega_switcher.php:56
11479
+ msgid "Switcher One"
11480
+ msgstr ""
11481
+
11482
+ #: includes/widgets/htmega_switcher.php:65
11483
+ #: includes/widgets/htmega_switcher.php:156
11484
+ msgid "Switcher Title"
11485
+ msgstr ""
11486
+
11487
+ #: includes/widgets/htmega_switcher.php:75
11488
+ #: includes/widgets/htmega_switcher.php:166
11489
+ msgid "Switcher Title Icon"
11490
+ msgstr ""
11491
+
11492
+ #: includes/widgets/htmega_switcher.php:147
11493
+ msgid "Switcher Two"
11494
+ msgstr ""
11495
+
11496
+ #: includes/widgets/htmega_tabs.php:71
11497
+ msgid "Tab #1"
11498
+ msgstr ""
11499
+
11500
+ #: includes/widgets/htmega_tabs.php:248
11501
+ msgid "Tab Area Style"
11502
+ msgstr ""
11503
+
11504
+ #: includes/widgets/htmega_tabs.php:281
11505
+ msgid "Tab Content Width (%)"
11506
+ msgstr ""
11507
+
11508
+ #: includes/widgets/htmega_tabs.php:669
11509
+ msgid "Tab Icon Box Style"
11510
+ msgstr ""
11511
+
11512
+ #: includes/widgets/htmega_tabs.php:491
11513
+ msgid "Tab Manu Style"
11514
+ msgstr ""
11515
+
11516
+ #: includes/widgets/htmega_tabs.php:240
11517
+ msgid "Tab Menu"
11518
+ msgstr ""
11519
+
11520
+ #: includes/widgets/htmega_tabs.php:256
11521
+ msgid "Tab Menu Width (%)"
11522
+ msgstr ""
11523
+
11524
+ #: admin/include/templates/library/templates.php:34
11525
+ #: admin/include/templates/library/templates.php:35
11526
+ msgid "Tab view"
11527
+ msgstr ""
11528
+
11529
+ #: includes/widgets/htmega_data_table.php:561
11530
+ #: includes/widgets/htmega_pricing_list_view.php:1217
11531
+ #: includes/widgets/htmega_tablepress.php:123
11532
+ msgid "Table"
11533
+ msgstr ""
11534
+
11535
+ #: includes/widgets/htmega_data_table.php:740
11536
+ #: includes/widgets/htmega_pricing_list_view.php:1366
11537
+ #: includes/widgets/htmega_wc_element_pages.php:121
11538
+ msgid "Table Body"
11539
+ msgstr ""
11540
+
11541
+ #: includes/widgets/htmega_pricing_list_view.php:1422
11542
+ msgid "Table Body Padding"
11543
+ msgstr ""
11544
+
11545
+ #: includes/widgets/htmega_wc_element_pages.php:1193
11546
+ msgid "Table Body Row"
11547
+ msgstr ""
11548
+
11549
+ #: includes/widgets/htmega_pricing_list_view.php:692
11550
+ msgid "Table Body Typography"
11551
+ msgstr ""
11552
+
11553
+ #: includes/widgets/htmega_data_table.php:793
11554
+ msgid "Table Cell Padding"
11555
+ msgstr ""
11556
+
11557
+ #: includes/widgets/htmega_data_table.php:299
11558
+ #: includes/widgets/htmega_pricing_list_view.php:532
11559
+ msgid "Table Content"
11560
+ msgstr ""
11561
+
11562
+ #: includes/widgets/htmega_wc_element_pages.php:1268
11563
+ msgid "Table Footer"
11564
+ msgstr ""
11565
+
11566
+ #: includes/widgets/htmega_wc_element_pages.php:1161
11567
+ msgid "Table Head"
11568
+ msgstr ""
11569
+
11570
+ #: includes/widgets/htmega_data_table.php:205
11571
+ #: includes/widgets/htmega_data_table.php:635
11572
+ #: includes/widgets/htmega_pricing_list_view.php:180
11573
+ #: includes/widgets/htmega_pricing_list_view.php:1287
11574
+ msgid "Table Header"
11575
+ msgstr ""
11576
+
11577
+ #: includes/widgets/htmega_data_table.php:674
11578
+ #: includes/widgets/htmega_pricing_list_view.php:1331
11579
+ msgid "Table Header Padding"
11580
+ msgstr ""
11581
+
11582
+ #: includes/widgets/htmega_wc_element_pages.php:87
11583
+ msgid "Table Heading"
11584
+ msgstr ""
11585
+
11586
+ #: includes/widgets/htmega_data_table.php:37
11587
+ msgid "Table Layout"
11588
+ msgstr ""
11589
+
11590
+ #: admin/include/admin-setting.php:1218
11591
+ #: includes/widgets/htmega_tablepress.php:13
11592
+ #: includes/widgets/htmega_tablepress.php:48
11593
+ msgid "TablePress"
11594
+ msgstr ""
11595
+
11596
+ #: includes/widgets/htmega_carousel.php:308
11597
+ #: includes/widgets/htmega_instagram.php:503
11598
+ #: includes/widgets/htmega_panel_slider.php:408
11599
+ #: includes/widgets/htmega_post_slider.php:488
11600
+ #: includes/widgets/htmega_slider_thumb_gallery.php:294
11601
+ #: includes/widgets/htmega_testimonial_grid.php:85
11602
+ #: includes/widgets/htmega_twitter_feed.php:430
11603
+ msgid "Tablet"
11604
+ msgstr ""
11605
+
11606
+ #: includes/widgets/htmega_scroll_navigation.php:151
11607
+ msgid "Tablet Device"
11608
+ msgstr ""
11609
+
11610
+ #: includes/widgets/htmega_carousel.php:350
11611
+ #: includes/widgets/htmega_instagram.php:545
11612
+ #: includes/widgets/htmega_panel_slider.php:450
11613
+ #: includes/widgets/htmega_post_slider.php:530
11614
+ #: includes/widgets/htmega_slider_thumb_gallery.php:330
11615
+ #: includes/widgets/htmega_twitter_feed.php:472
11616
+ msgid "Tablet Resolution"
11617
+ msgstr ""
11618
+
11619
+ #: admin/include/admin-setting.php:503 includes/widgets/htmega_tabs.php:13
11620
+ #: includes/widgets/htmega_tabs.php:34
11621
+ msgid "Tabs"
11622
+ msgstr ""
11623
+
11624
+ #: includes/widgets/htmega_counter.php:164
11625
+ msgid "Target Number"
11626
+ msgstr ""
11627
+
11628
+ #: includes/widgets/htmega_panel_slider.php:79
11629
+ #: includes/widgets/htmega_panel_slider.php:133
11630
+ #: includes/widgets/htmega_panel_slider.php:137
11631
+ #: includes/widgets/htmega_panel_slider.php:141
11632
+ #: includes/widgets/htmega_panel_slider.php:145
11633
+ msgid "Tattoo Boy From New York"
11634
+ msgstr ""
11635
+
11636
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:162
11637
+ msgid "Taxonomy"
11638
+ msgstr ""
11639
+
11640
+ #: admin/include/admin-setting.php:680
11641
+ msgid "Taxonomy Terms <span>( Pro )</span>"
11642
+ msgstr ""
11643
+
11644
+ #: includes/widgets/htmega_teammember.php:322
11645
+ msgid "Team Box Style"
11646
+ msgstr ""
11647
+
11648
+ #: admin/include/admin-setting.php:715
11649
+ msgid "Team Carousel <span>( Pro )</span>"
11650
+ msgstr ""
11651
+
11652
+ #: admin/include/admin-setting.php:519
11653
+ #: includes/widgets/htmega_teammember.php:14
11654
+ #: includes/widgets/htmega_teammember.php:43
11655
+ msgid "Team Member"
11656
+ msgstr ""
11657
+
11658
+ #: includes/widgets/htmega_socialshere.php:89
11659
+ msgid "Telegram"
11660
+ msgstr ""
11661
+
11662
+ #: includes/widgets/htmega_template_selector.php:42
11663
+ msgid "Template"
11664
+ msgstr ""
11665
+
11666
+ #: admin/include/class.library-source.php:129
11667
+ msgid "Template does not have any content"
11668
+ msgstr ""
11669
+
11670
+ #: admin/include/class.htmega-elementor-template-library.php:105
11671
+ msgid "Template id missing"
11672
+ msgstr ""
11673
+
11674
+ #: includes/widgets/htmega_template_selector.php:13
11675
+ msgid "Template Selector"
11676
+ msgstr ""
11677
+
11678
+ #: admin/include/admin-setting.php:1041 admin/include/templates_list.php:33
11679
+ msgid "Templates"
11680
+ msgstr ""
11681
+
11682
+ #: admin/include/template-library.php:73 admin/include/template-library.php:74
11683
+ msgid "Templates Library"
11684
+ msgstr ""
11685
+
11686
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:75
11687
+ msgid "Terms"
11688
+ msgstr ""
11689
+
11690
+ #: admin/include/admin-setting.php:527
11691
+ msgid "Testimonial"
11692
+ msgstr ""
11693
+
11694
+ #: admin/include/admin-setting.php:535
11695
+ #: includes/widgets/htmega_testimonial_grid.php:14
11696
+ #: includes/widgets/htmega_testimonial_grid.php:35
11697
+ msgid "Testimonial Grid"
11698
+ msgstr ""
11699
+
11700
+ #: includes/widgets/htmega_button.php:62
11701
+ #: includes/widgets/htmega_countdown.php:271
11702
+ #: includes/widgets/htmega_data_table.php:325
11703
+ #: includes/widgets/htmega_double_button.php:99
11704
+ #: includes/widgets/htmega_double_button.php:186
11705
+ #: includes/widgets/htmega_download_monitor.php:117
11706
+ #: includes/widgets/htmega_modal.php:110 includes/widgets/htmega_popover.php:57
11707
+ #: includes/widgets/htmega_pricing_list_view.php:578
11708
+ #: includes/widgets/htmega_search.php:72 includes/widgets/htmega_tooltip.php:57
11709
+ #: includes/widgets/htmega_tooltip.php:72
11710
+ #: extensions/ht-builder/widgets/bl_post_search_form.php:58
11711
+ msgid "Text"
11712
+ msgstr ""
11713
+
11714
+ #: includes/widgets/htmega_data_table.php:1000
11715
+ msgid "Text Active Color"
11716
+ msgstr ""
11717
+
11718
+ #: includes/widgets/htmega_booked_calender.php:437
11719
+ #: includes/widgets/htmega_booked_calender.php:541
11720
+ #: includes/widgets/htmega_booked_calender.php:581
11721
+ #: includes/widgets/htmega_booked_calender.php:664
11722
+ #: includes/widgets/htmega_booked_calender.php:727
11723
+ #: includes/widgets/htmega_booked_calender.php:825
11724
+ #: includes/widgets/htmega_button.php:207
11725
+ #: includes/widgets/htmega_button.php:340
11726
+ #: includes/widgets/htmega_button.php:533
11727
+ #: includes/widgets/htmega_button.php:617
11728
+ #: includes/widgets/htmega_caldera_form.php:201
11729
+ #: includes/widgets/htmega_caldera_form.php:375
11730
+ #: includes/widgets/htmega_caldera_form.php:454
11731
+ #: includes/widgets/htmega_caldera_form.php:563
11732
+ #: includes/widgets/htmega_call_to_action.php:706
11733
+ #: includes/widgets/htmega_call_to_action.php:912
11734
+ #: includes/widgets/htmega_contact_form_seven.php:246
11735
+ #: includes/widgets/htmega_contact_form_seven.php:390
11736
+ #: includes/widgets/htmega_contact_form_seven.php:512
11737
+ #: includes/widgets/htmega_contact_form_seven.php:610
11738
+ #: includes/widgets/htmega_contact_form_seven.php:673
11739
+ #: includes/widgets/htmega_contact_form_seven.php:835
11740
+ #: includes/widgets/htmega_contact_form_seven.php:923
11741
+ #: includes/widgets/htmega_data_table.php:643
11742
+ #: includes/widgets/htmega_data_table.php:772
11743
+ #: includes/widgets/htmega_data_table.php:882
11744
+ #: includes/widgets/htmega_data_table.php:933
11745
+ #: includes/widgets/htmega_data_table.php:985
11746
+ #: includes/widgets/htmega_data_table.php:1064
11747
+ #: includes/widgets/htmega_mailchimp_wp.php:208
11748
+ #: includes/widgets/htmega_mailchimp_wp.php:372
11749
+ #: includes/widgets/htmega_mailchimp_wp.php:460
11750
+ #: includes/widgets/htmega_offcanvas.php:316
11751
+ #: includes/widgets/htmega_pricing_list_view.php:722
11752
+ #: includes/widgets/htmega_pricing_list_view.php:1310
11753
+ #: includes/widgets/htmega_pricing_list_view.php:1401
11754
+ #: includes/widgets/htmega_pricing_list_view.php:1519
11755
+ #: includes/widgets/htmega_pricing_list_view.php:1562
11756
+ #: includes/widgets/htmega_pricing_list_view.php:1639
11757
+ #: includes/widgets/htmega_pricing_list_view.php:1720
11758
+ #: includes/widgets/htmega_quforms.php:977
11759
+ #: includes/widgets/htmega_search.php:229
11760
+ #: includes/widgets/htmega_tablepress.php:282
11761
+ #: includes/widgets/htmega_tablepress.php:326
11762
+ #: includes/widgets/htmega_user_login_form.php:813
11763
+ #: includes/widgets/htmega_user_login_form.php:1008
11764
+ #: includes/widgets/htmega_wc_element_pages.php:97
11765
+ #: includes/widgets/htmega_wc_element_pages.php:132
11766
+ #: includes/widgets/htmega_wc_element_pages.php:212
11767
+ #: includes/widgets/htmega_wc_element_pages.php:298
11768
+ #: includes/widgets/htmega_wc_element_pages.php:392
11769
+ #: includes/widgets/htmega_wc_element_pages.php:478
11770
+ #: includes/widgets/htmega_wc_element_pages.php:555
11771
+ #: includes/widgets/htmega_wc_element_pages.php:712
11772
+ #: includes/widgets/htmega_wc_element_pages.php:899
11773
+ #: includes/widgets/htmega_wc_element_pages.php:952
11774
+ #: includes/widgets/htmega_wc_element_pages.php:1029
11775
+ #: includes/widgets/htmega_wc_element_pages.php:1170
11776
+ #: includes/widgets/htmega_wc_element_pages.php:1211
11777
+ #: includes/widgets/htmega_wc_element_pages.php:1242
11778
+ #: includes/widgets/htmega_wc_element_pages.php:1277
11779
+ #: includes/widgets/htmega_wc_element_pages.php:1356
11780
+ #: includes/widgets/htmega_wc_element_pages.php:1530
11781
+ #: includes/widgets/htmega_wc_element_pages.php:1619
11782
+ #: includes/widgets/htmega_weather.php:232
11783
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:292
11784
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:431
11785
+ #: extensions/ht-menu/widgets/inline-mega-menu.php:503
11786
+ #: extensions/ht-menu/widgets/verticle-mega-menu.php:389
11787
+ #: extensions/ht-menu/widgets/verticle-mega-menu.php:449
11788
+ msgid "Text Color"
11789
+ msgstr ""
11790
+
11791
+ #: includes/widgets/htmega_pricing_list_view.php:894
11792
+ msgid "Text Hover Color"
11793
+ msgstr ""
11794
+
11795
+ #: includes/widgets/htmega_countdown.php:771
11796
+ #: includes/widgets/htmega_countdown.php:944
11797
+ #: includes/widgets/htmega_inlinemenu.php:233
11798
+ #: includes/widgets/htmega_section_title.php:963
11799
+ #: extensions/ht-builder/widgets/bl_nav_menu.php:215
11800
+ msgid "Text Shadow"
11801
+ msgstr ""
11802
+
11803
+ #: includes/widgets/htmega_contact_form_seven.php:455
11804
+ #: includes/widgets/htmega_ninja_form.php:694
11805
+ #: includes/widgets/htmega_quforms.php:530
11806
+ #: includes/widgets/htmega_wpforms.php:698
11807
+ msgid "Textarea"
11808
+ msgstr ""
11809
+
11810
+ #: includes/widgets/htmega_caldera_form.php:258
11811
+ #: includes/widgets/htmega_gravity_forms.php:466
11812
+ #: includes/widgets/htmega_wc_element_pages.php:754
11813
+ msgid "Textarea Height"
11814
+ msgstr ""
11815
+
11816
+ #: includes/widgets/htmega_pricing_list_view.php:226
11817
+ msgid "TH Width (Table Header Column Width %)"
11818
+ msgstr ""
11819
+
11820
+ #: admin/include/class.diagnostic-data.php:484
11821
+ #, php-format
11822
+ msgid "Thank you very much for supporting %2$s%1$s%3$s."
11823
+ msgstr ""
11824
+
11825
+ #. Description of the plugin
11826
+ msgid ""
11827
+ "The HTMega is a elementor addons package for Elementor page builder plugin "
11828
+ "for WordPress."
11829
+ msgstr ""
11830
+
11831
+ #: includes/widgets/htmega_scroll_navigation.php:203
11832
+ msgid "The resolution to mobile device."
11833
+ msgstr ""
11834
+
11835
+ #: includes/widgets/htmega_carousel.php:406
11836
+ #: includes/widgets/htmega_instagram.php:601
11837
+ #: includes/widgets/htmega_panel_slider.php:506
11838
+ #: includes/widgets/htmega_post_slider.php:586
11839
+ #: includes/widgets/htmega_slider_thumb_gallery.php:378
11840
+ #: includes/widgets/htmega_slider_thumb_gallery.php:657
11841
+ #: includes/widgets/htmega_twitter_feed.php:528
11842
+ msgid "The resolution to mobile."
11843
+ msgstr ""
11844
+
11845
+ #: includes/widgets/htmega_scroll_navigation.php:173
11846
+ msgid "The resolution to tablet device."
11847
+ msgstr ""
11848
+
11849
+ #: includes/widgets/htmega_carousel.php:351
11850
+ #: includes/widgets/htmega_instagram.php:546
11851
+ #: includes/widgets/htmega_panel_slider.php:451
11852
+ #: includes/widgets/htmega_post_slider.php:531
11853
+ #: includes/widgets/htmega_slider_thumb_gallery.php:331
11854
+ #: includes/widgets/htmega_slider_thumb_gallery.php:596
11855
+ #: includes/widgets/htmega_twitter_feed.php:473
11856
+ msgid "The resolution to tablet."
11857
+ msgstr ""
11858
+
11859
+ #: admin/include/template-library.php:422
11860
+ msgid "Theme Activated"
11861
+ msgstr ""
11862
+
11863
+ #: admin/include/admin-setting.php:100 admin/include/admin-setting.php:804
11864
+ #: extensions/ht-builder/admin/setting.php:48
11865
+ msgid "Theme Builder"
11866
+ msgstr ""
11867
+
11868
+ #: includes/widgets/htmega_service.php:131
11869
+ msgid ""
11870
+ "There are many variations of passages Lorem Ipsum available, but majority "
11871
+ "have ama suffered altratio. the lorem."
11872
+ msgstr ""
11873
+
11874
+ #: admin/include/admin-setting.php:81
11875
+ msgid "Third Party"
11876
+ msgstr ""
11877
+
11878
+ #: includes/helper-function.php:723
11879
+ #, php-format
11880
+ msgid "This input field supports the following HTML tags: %1$s"
11881
+ msgstr ""
11882
+
11883
+ #: includes/widgets/htmega_googlemap.php:250
11884
+ msgid "This is <span>Dhaka</span>"
11885
+ msgstr ""
11886
+
11887
+ #: includes/widgets/htmega_image_grid.php:72
11888
+ #: includes/widgets/htmega_image_masonry.php:81
11889
+ #: includes/widgets/htmega_testimonial_grid.php:75
11890
+ #: includes/widgets/htmega_testimonial_grid.php:90
11891
+ #: includes/widgets/htmega_testimonial_grid.php:107
11892
+ msgid "Three"
11893
+ msgstr ""
11894
+
11895
+ #: includes/widgets/htmega_instragram_feed.php:74
11896
+ msgid "Thumb"
11897
+ msgstr ""
11898
+
11899
+ #: includes/widgets/htmega_post_slider.php:377
11900
+ msgid "Thumbnail"
11901
+ msgstr ""
11902
+
11903
+ #: includes/widgets/htmega_image_magnifier.php:49
11904
+ msgid "Thumbnail Image"
11905
+ msgstr ""
11906
+
11907
+ #: includes/widgets/htmega_slider_thumb_gallery.php:49
11908
+ msgid "Thumbnail Position"
11909
+ msgstr ""
11910
+
11911
+ #: includes/widgets/htmega_slider_thumb_gallery.php:1212
11912
+ msgid "Thumbnail Style"
11913
+ msgstr ""
11914
+
11915
+ #: includes/widgets/htmega_slider_thumb_gallery.php:411
11916
+ msgid "Thumbnails Arrow"
11917
+ msgstr ""
11918
+
11919
+ #: includes/widgets/htmega_slider_thumb_gallery.php:513
11920
+ msgid "Thumbnails auto play"
11921
+ msgstr ""
11922
+
11923
+ #: includes/widgets/htmega_slider_thumb_gallery.php:536
11924
+ msgid "Thumbnails Autoplay animation speed"
11925
+ msgstr ""
11926
+
11927
+ #: includes/widgets/htmega_slider_thumb_gallery.php:525
11928
+ msgid "Thumbnails Autoplay speed"
11929
+ msgstr ""
11930
+
11931
+ #: includes/widgets/htmega_slider_thumb_gallery.php:487
11932
+ msgid "Thumbnails Center Mode"
11933
+ msgstr ""
11934
+
11935
+ #: includes/widgets/htmega_slider_thumb_gallery.php:498
11936
+ msgid "Thumbnails Center padding"
11937
+ msgstr ""
11938
+
11939
+ #: includes/widgets/htmega_slider_thumb_gallery.php:452
11940
+ msgid "Thumbnails dots"
11941
+ msgstr ""
11942
+
11943
+ #: includes/widgets/htmega_slider_thumb_gallery.php:391
11944
+ msgid "Thumbnails Gallery Option"
11945
+ msgstr ""
11946
+
11947
+ #: includes/widgets/htmega_slider_thumb_gallery.php:99
11948
+ msgid "Thumbnails Image Size"
11949
+ msgstr ""
11950
+
11951
+ #: includes/widgets/htmega_slider_thumb_gallery.php:582
11952
+ #: includes/widgets/htmega_slider_thumb_gallery.php:640
11953
+ msgid "Thumbnails item to scroll"
11954
+ msgstr ""
11955
+
11956
+ #: includes/widgets/htmega_slider_thumb_gallery.php:398
11957
+ #: includes/widgets/htmega_slider_thumb_gallery.php:569
11958
+ #: includes/widgets/htmega_slider_thumb_gallery.php:624
11959
+ msgid "Thumbnails Items"
11960
+ msgstr ""
11961
+
11962
+ #: includes/widgets/htmega_slider_thumb_gallery.php:606
11963
+ msgid "Thumbnails Mobile Phone"
11964
+ msgstr ""
11965
+
11966
+ #: includes/widgets/htmega_slider_thumb_gallery.php:656
11967
+ msgid "Thumbnails Mobile Resolution"
11968
+ msgstr ""
11969
+
11970
+ #: includes/widgets/htmega_slider_thumb_gallery.php:437
11971
+ msgid "Thumbnails Next icon"
11972
+ msgstr ""
11973
+
11974
+ #: includes/widgets/htmega_slider_thumb_gallery.php:422
11975
+ msgid "Thumbnails Previous icon"
11976
+ msgstr ""
11977
+
11978
+ #: includes/widgets/htmega_slider_thumb_gallery.php:546
11979
+ msgid "Thumbnails Slider item to scroll"
11980
+ msgstr ""
11981
+
11982
+ #: includes/widgets/htmega_slider_thumb_gallery.php:559
11983
+ msgid "Thumbnails Tablet"
11984
+ msgstr ""
11985
+
11986
+ #: includes/widgets/htmega_slider_thumb_gallery.php:595
11987
+ msgid "Thumbnails Tablet Resolution"
11988
+ msgstr ""
11989
+
11990
+ #: includes/widgets/htmega_business_hours.php:189
11991
+ msgid "Thursday"
11992
+ msgstr ""
11993
+
11994
+ #: includes/widgets/htmega_newsticker.php:74
11995
+ msgid "Ticker Label"
11996
+ msgstr ""
11997
+
11998
+ #: includes/widgets/htmega_booked_calender.php:508
11999
+ #: includes/widgets/htmega_business_hours.php:92
12000
+ #: includes/widgets/htmega_business_hours.php:544
12001
+ #: includes/widgets/htmega_twitter_feed.php:896
12002
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:73
12003
+ msgid "Time"
12004
+ msgstr ""
12005
+
12006
+ #: includes/widgets/htmega_custom_event.php:277
12007
+ msgid "Time / Location"
12008
+ msgstr ""
12009
+
12010
+ #: extensions/wc-sales-notification/admin/setting.php:141
12011
+ msgid "Time between notifications. <span>( Pro )</span>"
12012
+ msgstr ""
12013
+
12014
+ #: includes/widgets/htmega_business_hours.php:128
12015
+ msgid "Time Color"
12016
+ msgstr ""
12017
+
12018
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:123
12019
+ msgid "Time Format"
12020
+ msgstr ""
12021
+
12022
+ #: extensions/wc-sales-notification/admin/setting.php:140
12023
+ msgid "Time Interval"
12024
+ msgstr ""
12025
+
12026
+ #: admin/include/admin-setting.php:1394 admin/include/admin-setting.php:1419
12027
+ msgid "Time interval each notification"
12028
+ msgstr ""
12029
+
12030
+ #: includes/widgets/htmega_countdown.php:124
12031
+ msgid "Time Setting"
12032
+ msgstr ""
12033
+
12034
+ #: includes/widgets/htmega_booked_calender.php:462
12035
+ msgid "Time Slot Color"
12036
+ msgstr ""
12037
+
12038
+ #: includes/widgets/htmega_verticle_time_line.php:555
12039
+ msgid "Timeline Dot BG Color"
12040
+ msgstr ""
12041
+
12042
+ #: includes/widgets/htmega_verticle_time_line.php:540
12043
+ msgid "Timeline Dot Color"
12044
+ msgstr ""
12045
+
12046
+ #: includes/widgets/htmega_verticle_time_line.php:569
12047
+ msgid "Timeline Dot Hover BG Color"
12048
+ msgstr ""
12049
+
12050
+ #: includes/widgets/htmega_verticle_time_line.php:584
12051
+ msgid "Timeline Hover Line Color"
12052
+ msgstr ""
12053
+
12054
+ #: includes/widgets/htmega_verticle_time_line.php:523
12055
+ msgid "Timeline Line Color"
12056
+ msgstr ""
12057
+
12058
+ #: includes/widgets/htmega_verticle_time_line.php:505
12059
+ msgid "Timeline Primary Color"
12060
+ msgstr ""
12061
+
12062
+ #: includes/widgets/htmega_verticle_time_line.php:497
12063
+ msgid "Timeline Style"
12064
+ msgstr ""
12065
+
12066
+ #: includes/widgets/htmega_countdown.php:741
12067
+ msgid "Timer"
12068
+ msgstr ""
12069
+
12070
+ #: includes/widgets/htmega_countdown.php:854
12071
+ msgid "Timer separator"
12072
+ msgstr ""
12073
+
12074
+ #: includes/widgets/htmega_accordion.php:70
12075
+ #: includes/widgets/htmega_accordion.php:157
12076
+ #: includes/widgets/htmega_accordion.php:200
12077
+ #: includes/widgets/htmega_add_banner.php:92
12078
+ #: includes/widgets/htmega_add_banner.php:430
12079
+ #: includes/widgets/htmega_brand.php:62
12080
+ #: includes/widgets/htmega_buddy_press.php:306
12081
+ #: includes/widgets/htmega_business_hours.php:69
12082
+ #: includes/widgets/htmega_business_hours.php:376
12083
+ #: includes/widgets/htmega_call_to_action.php:82
12084
+ #: includes/widgets/htmega_call_to_action.php:559
12085
+ #: includes/widgets/htmega_carousel.php:70
12086
+ #: includes/widgets/htmega_counter.php:538
12087
+ #: includes/widgets/htmega_custom_event.php:42
12088
+ #: includes/widgets/htmega_custom_event.php:123
12089
+ #: includes/widgets/htmega_easy_digital_download.php:342
12090
+ #: includes/widgets/htmega_errorcontent.php:88
12091
+ #: includes/widgets/htmega_errorcontent.php:305
12092
+ #: includes/widgets/htmega_googlemap.php:161
12093
+ #: includes/widgets/htmega_gravity_forms.php:116
12094
+ #: includes/widgets/htmega_imagemarker.php:777
12095
+ #: includes/widgets/htmega_image_grid.php:113
12096
+ #: includes/widgets/htmega_image_grid.php:279
12097
+ #: includes/widgets/htmega_image_masonry.php:94
12098
+ #: includes/widgets/htmega_image_masonry.php:255
12099
+ #: includes/widgets/htmega_job_manager.php:100
12100
+ #: includes/widgets/htmega_newsticker.php:260
12101
+ #: includes/widgets/htmega_ninja_form.php:109
12102
+ #: includes/widgets/htmega_panel_slider.php:668
12103
+ #: includes/widgets/htmega_postgrid.php:151
12104
+ #: includes/widgets/htmega_postgrid.php:164
12105
+ #: includes/widgets/htmega_postgrid.php:443
12106
+ #: includes/widgets/htmega_post_grid_tab.php:158
12107
+ #: includes/widgets/htmega_post_grid_tab.php:171
12108
+ #: includes/widgets/htmega_post_grid_tab.php:426
12109
+ #: includes/widgets/htmega_post_slider.php:162
12110
+ #: includes/widgets/htmega_post_slider.php:175
12111
+ #: includes/widgets/htmega_post_slider.php:861
12112
+ #: includes/widgets/htmega_pricing_list_view.php:1508
12113
+ #: includes/widgets/htmega_progress_bar.php:104
12114
+ #: includes/widgets/htmega_progress_bar.php:236
12115
+ #: includes/widgets/htmega_section_title.php:57
12116
+ #: includes/widgets/htmega_section_title.php:509
12117
+ #: includes/widgets/htmega_service.php:353
12118
+ #: includes/widgets/htmega_singlepost.php:83
12119
+ #: includes/widgets/htmega_singlepost.php:142
12120
+ #: includes/widgets/htmega_slider_thumb_gallery.php:66
12121
+ #: includes/widgets/htmega_socialshere.php:100
12122
+ #: includes/widgets/htmega_socialshere.php:179
12123
+ #: includes/widgets/htmega_special_day_banner.php:78
12124
+ #: includes/widgets/htmega_special_day_banner.php:335
12125
+ #: includes/widgets/htmega_switcher.php:62
12126
+ #: includes/widgets/htmega_switcher.php:153 includes/widgets/htmega_tabs.php:69
12127
+ #: includes/widgets/htmega_teammember.php:214
12128
+ #: includes/widgets/htmega_verticle_time_line.php:80
12129
+ #: includes/widgets/htmega_verticle_time_line.php:124
12130
+ #: includes/widgets/htmega_wc_categories.php:282
12131
+ #: includes/widgets/htmega_weather.php:247
12132
+ #: includes/widgets/htmega_working_process.php:79
12133
+ #: includes/widgets/htmega_working_process.php:620
12134
+ #: includes/widgets/htmega_wpforms.php:74
12135
+ #: includes/widgets/htmega_wpforms.php:101
12136
+ #: extensions/ht-builder/widgets/bl_post_archive.php:202
12137
+ #: extensions/ht-builder/widgets/bl_post_archive.php:326
12138
+ msgid "Title"
12139
+ msgstr ""
12140
+
12141
+ #: includes/widgets/htmega_tabs.php:218
12142
+ msgid "Title #1"
12143
+ msgstr ""
12144
+
12145
+ #: includes/widgets/htmega_tabs.php:222
12146
+ msgid "Title #2"
12147
+ msgstr ""
12148
+
12149
+ #: includes/widgets/htmega_tabs.php:226
12150
+ msgid "Title #3"
12151
+ msgstr ""
12152
+
12153
+ #: includes/widgets/htmega_tabs.php:156
12154
+ msgid "Title Active Color"
12155
+ msgstr ""
12156
+
12157
+ #: includes/widgets/htmega_counter.php:657
12158
+ msgid "Title After Border Color"
12159
+ msgstr ""
12160
+
12161
+ #: includes/widgets/htmega_service.php:451
12162
+ msgid "Title Border Color"
12163
+ msgstr ""
12164
+
12165
+ #: includes/widgets/htmega_imagemarker.php:784
12166
+ msgid "Title Bottom Border Style"
12167
+ msgstr ""
12168
+
12169
+ #: includes/widgets/htmega_carousel.php:1310
12170
+ #: includes/widgets/htmega_carousel.php:1394
12171
+ #: includes/widgets/htmega_gallery_justify.php:151
12172
+ #: includes/widgets/htmega_switcher.php:322
12173
+ #: includes/widgets/htmega_switcher.php:358
12174
+ #: includes/widgets/htmega_tabs.php:135
12175
+ #: extensions/ht-builder/widgets/bl_post_title.php:65
12176
+ msgid "Title Color"
12177
+ msgstr ""
12178
+
12179
+ #: includes/widgets/htmega_ninja_form.php:84
12180
+ msgid "Title Hide"
12181
+ msgstr ""
12182
+
12183
+ #: includes/widgets/htmega_accordion.php:275
12184
+ #: extensions/ht-builder/widgets/bl_page_title.php:45
12185
+ #: extensions/ht-builder/widgets/bl_post_archive_title.php:46
12186
+ #: extensions/ht-builder/widgets/bl_post_title.php:44
12187
+ #: extensions/ht-builder/widgets/bl_site_title.php:46
12188
+ msgid "Title HTML Tag"
12189
+ msgstr ""
12190
+
12191
+ #: includes/widgets/htmega_newsticker.php:288
12192
+ #: includes/widgets/htmega_postgrid.php:174
12193
+ #: includes/widgets/htmega_post_grid_tab.php:180
12194
+ #: includes/widgets/htmega_post_slider.php:186
12195
+ #: includes/widgets/htmega_singlepost.php:93
12196
+ #: extensions/ht-builder/widgets/bl_post_archive.php:169
12197
+ msgid "Title Length"
12198
+ msgstr ""
12199
+
12200
+ #: includes/widgets/htmega_section_title.php:463
12201
+ msgid "Title Separator Color"
12202
+ msgstr ""
12203
+
12204
+ #: includes/widgets/htmega_section_title.php:183
12205
+ msgid "Title Setting"
12206
+ msgstr ""
12207
+
12208
+ #: includes/widgets/htmega_download_monitor.php:202
12209
+ #: includes/widgets/htmega_progress_bar.php:644
12210
+ #: includes/widgets/htmega_section_title.php:41
12211
+ #: includes/widgets/htmega_slider_thumb_gallery.php:677
12212
+ #: includes/widgets/htmega_socialshere.php:640
12213
+ msgid "Title Style"
12214
+ msgstr ""
12215
+
12216
+ #: includes/widgets/htmega_section_title.php:498
12217
+ msgid "Title style"
12218
+ msgstr ""
12219
+
12220
+ #: includes/widgets/htmega_call_to_action.php:91
12221
+ msgid "Title Tag"
12222
+ msgstr ""
12223
+
12224
+ #: includes/widgets/htmega_postgrid.php:542
12225
+ msgid "Title Two style"
12226
+ msgstr ""
12227
+
12228
+ #: includes/widgets/htmega_teammember.php:640
12229
+ #: includes/widgets/htmega_teammember.php:655
12230
+ msgid "To hide the shape, please set the color to transparent."
12231
+ msgstr ""
12232
+
12233
+ #: admin/include/admin-setting.php:1448
12234
+ #: extensions/ht-builder/admin/setting.php:151
12235
+ #: extensions/wc-sales-notification/admin/setting.php:235
12236
+ msgid "to unlock these pro elements!"
12237
+ msgstr ""
12238
+
12239
+ #: extensions/ht-menu/classes/class.mega-menu.php:268
12240
+ msgid "to unlock these pro options!"
12241
+ msgstr ""
12242
+
12243
+ #: includes/weather-resource/template/layout-1.php:40
12244
+ #: includes/weather-resource/template/layout-2.php:14
12245
+ #: includes/weather-resource/template/layout-4.php:26
12246
+ msgid "Today"
12247
+ msgstr ""
12248
+
12249
+ #: admin/include/admin-setting.php:543 includes/widgets/htmega_toggle.php:14
12250
+ #: includes/widgets/htmega_toggle.php:36
12251
+ msgid "Toggle"
12252
+ msgstr ""
12253
+
12254
+ #: admin/include/admin-setting.php:1481
12255
+ msgid "Toggle All"
12256
+ msgstr ""
12257
+
12258
+ #: includes/widgets/htmega_switcher.php:425
12259
+ #: includes/widgets/htmega_switcher.php:500
12260
+ msgid "Toggle Color"
12261
+ msgstr ""
12262
+
12263
+ #: includes/widgets/htmega_lightbox.php:128
12264
+ msgid "Toggler Image"
12265
+ msgstr ""
12266
+
12267
+ #: includes/widgets/htmega_lightbox.php:113
12268
+ msgid "Toggler Type"
12269
+ msgstr ""
12270
+
12271
+ #: admin/include/admin-setting.php:551 includes/widgets/htmega_tooltip.php:14
12272
+ #: includes/widgets/htmega_tooltip.php:42
12273
+ #: includes/widgets/htmega_tooltip.php:75
12274
+ #: includes/widgets/htmega_tooltip.php:475
12275
+ msgid "Tooltip"
12276
+ msgstr ""
12277
+
12278
+ #: includes/widgets/htmega_tooltip.php:168
12279
+ msgid "Tooltip content"
12280
+ msgstr ""
12281
+
12282
+ #: includes/widgets/htmega_tooltip.php:159
12283
+ msgid "Tooltip Options"
12284
+ msgstr ""
12285
+
12286
+ #: includes/widgets/htmega_tooltip.php:165
12287
+ msgid "Tooltip Text"
12288
+ msgstr ""
12289
+
12290
+ #: admin/include/templates_list.php:77 admin/include/templates_list.php:80
12291
+ #: includes/widgets/htmega_add_banner.php:62
12292
+ #: includes/widgets/htmega_button.php:120
12293
+ #: includes/widgets/htmega_imagemarker.php:211
12294
+ #: includes/widgets/htmega_image_comparison.php:185
12295
+ #: includes/widgets/htmega_notify.php:588
12296
+ #: includes/widgets/htmega_notify.php:761
12297
+ #: includes/widgets/htmega_offcanvas.php:105
12298
+ #: includes/widgets/htmega_popover.php:195
12299
+ #: includes/widgets/htmega_pricing_list_view.php:512
12300
+ #: includes/widgets/htmega_pricing_list_view.php:1163
12301
+ #: includes/widgets/htmega_pricing_list_view.php:1197
12302
+ #: includes/widgets/htmega_section_title.php:157
12303
+ #: includes/widgets/htmega_section_title.php:236
12304
+ #: includes/widgets/htmega_singlepost.php:61
12305
+ #: includes/widgets/htmega_slider_thumb_gallery.php:56
12306
+ #: includes/widgets/htmega_special_day_banner.php:46
12307
+ #: includes/widgets/htmega_teammember.php:107
12308
+ #: includes/widgets/htmega_tooltip.php:183
12309
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:120
12310
+ msgid "Top"
12311
+ msgstr ""
12312
+
12313
+ #: includes/widgets/htmega_notify.php:114
12314
+ msgid "Top Center"
12315
+ msgstr ""
12316
+
12317
+ #: includes/widgets/htmega_notify.php:119
12318
+ msgid "Top Fullwidth"
12319
+ msgstr ""
12320
+
12321
+ #: includes/widgets/htmega_notify.php:113
12322
+ msgid "Top Left"
12323
+ msgstr ""
12324
+
12325
+ #: includes/widgets/htmega_notify.php:115
12326
+ msgid "Top Right"
12327
+ msgstr ""
12328
+
12329
+ #: includes/widgets/htmega_scroll_image.php:291
12330
+ msgid "Top-Bottom"
12331
+ msgstr ""
12332
+
12333
+ #: includes/widgets/htmega_pricing_list_view.php:368
12334
+ #: includes/widgets/htmega_pricing_list_view.php:997
12335
+ msgid "Top-Bottom Position"
12336
+ msgstr ""
12337
+
12338
+ #: includes/widgets/htmega_bbpress.php:58
12339
+ msgid "Topic Form"
12340
+ msgstr ""
12341
+
12342
+ #: includes/widgets/htmega_bbpress.php:57
12343
+ msgid "Topic Index"
12344
+ msgstr ""
12345
+
12346
+ #: includes/widgets/htmega_bbpress.php:62
12347
+ msgid "Topic Tags"
12348
+ msgstr ""
12349
+
12350
+ #: includes/widgets/htmega_brand.php:288
12351
+ msgid "Transition Duration"
12352
+ msgstr ""
12353
+
12354
+ #: includes/widgets/htmega_business_hours.php:179
12355
+ msgid "Tues Day"
12356
+ msgstr ""
12357
+
12358
+ #: includes/widgets/htmega_socialshere.php:67
12359
+ msgid "tumblr"
12360
+ msgstr ""
12361
+
12362
+ #: includes/widgets/htmega_socialshere.php:63
12363
+ #: includes/widgets/htmega_socialshere.php:325
12364
+ msgid "Twitter"
12365
+ msgstr ""
12366
+
12367
+ #: includes/widgets/htmega_twitter_feed.php:114
12368
+ msgid "Twitter access token secret."
12369
+ msgstr ""
12370
+
12371
+ #: includes/widgets/htmega_twitter_feed.php:104
12372
+ msgid "Twitter access token."
12373
+ msgstr ""
12374
+
12375
+ #: includes/widgets/htmega_twitter_feed.php:84
12376
+ msgid "Twitter consumer key."
12377
+ msgstr ""
12378
+
12379
+ #: includes/widgets/htmega_twitter_feed.php:94
12380
+ msgid "Twitter consumer secret."
12381
+ msgstr ""
12382
+
12383
+ #: admin/include/admin-setting.php:559
12384
+ #: includes/widgets/htmega_twitter_feed.php:18
12385
+ #: includes/widgets/htmega_twitter_feed.php:48
12386
+ msgid "Twitter Feed"
12387
+ msgstr ""
12388
+
12389
+ #: includes/widgets/htmega_image_grid.php:71
12390
+ #: includes/widgets/htmega_image_masonry.php:80
12391
+ #: includes/widgets/htmega_testimonial_grid.php:74
12392
+ #: includes/widgets/htmega_testimonial_grid.php:89
12393
+ #: includes/widgets/htmega_testimonial_grid.php:106
12394
+ msgid "Two"
12395
+ msgstr ""
12396
+
12397
+ #: includes/widgets/htmega_animated_heading.php:71
12398
+ #: includes/widgets/htmega_buddy_press.php:48
12399
+ msgid "Type"
12400
+ msgstr ""
12401
+
12402
+ #: includes/widgets/htmega_errorcontent.php:114
12403
+ msgid "Type your Description here."
12404
+ msgstr ""
12405
+
12406
+ #: includes/widgets/htmega_call_to_action.php:106
12407
+ msgid "Type your description here..."
12408
+ msgstr ""
12409
+
12410
+ #: includes/widgets/htmega_errorcontent.php:102
12411
+ msgid "Type your Sub title here."
12412
+ msgstr ""
12413
+
12414
+ #: includes/widgets/htmega_call_to_action.php:59
12415
+ msgid "Type your sub title here..."
12416
+ msgstr ""
12417
+
12418
+ #: includes/widgets/htmega_counter.php:157
12419
+ msgid "Type your title here"
12420
+ msgstr ""
12421
+
12422
+ #: includes/widgets/htmega_errorcontent.php:90
12423
+ msgid "Type your title here."
12424
+ msgstr ""
12425
+
12426
+ #: includes/widgets/htmega_call_to_action.php:84
12427
+ msgid "Type your title here..."
12428
+ msgstr ""
12429
+
12430
+ #: includes/widgets/htmega_accordion.php:655
12431
+ #: includes/widgets/htmega_accordion.php:745
12432
+ #: includes/widgets/htmega_accordion.php:1011
12433
+ #: includes/widgets/htmega_accordion.php:1339
12434
+ #: includes/widgets/htmega_add_banner.php:454
12435
+ #: includes/widgets/htmega_add_banner.php:513
12436
+ #: includes/widgets/htmega_add_banner.php:572
12437
+ #: includes/widgets/htmega_add_banner.php:639
12438
+ #: includes/widgets/htmega_animated_heading.php:174
12439
+ #: includes/widgets/htmega_animated_heading.php:258
12440
+ #: includes/widgets/htmega_animated_heading.php:305
12441
+ #: includes/widgets/htmega_animated_heading.php:393
12442
+ #: includes/widgets/htmega_buddy_press.php:336
12443
+ #: includes/widgets/htmega_buddy_press.php:405
12444
+ #: includes/widgets/htmega_button.php:220
12445
+ #: includes/widgets/htmega_button.php:590
12446
+ #: includes/widgets/htmega_caldera_form.php:113
12447
+ #: includes/widgets/htmega_caldera_form.php:157
12448
+ #: includes/widgets/htmega_caldera_form.php:477
12449
+ #: includes/widgets/htmega_call_to_action.php:524
12450
+ #: includes/widgets/htmega_call_to_action.php:583
12451
+ #: includes/widgets/htmega_call_to_action.php:642
12452
+ #: includes/widgets/htmega_call_to_action.php:698
12453
+ #: includes/widgets/htmega_call_to_action.php:904
12454
+ #: includes/widgets/htmega_countdown.php:1036
12455
+ #: includes/widgets/htmega_data_table.php:666
12456
+ #: includes/widgets/htmega_data_table.php:785
12457
+ #: includes/widgets/htmega_data_table.php:898
12458
+ #: includes/widgets/htmega_data_table.php:1016
12459
+ #: includes/widgets/htmega_data_table.php:1079
12460
+ #: includes/widgets/htmega_double_button.php:495
12461
+ #: includes/widgets/htmega_double_button.php:668
12462
+ #: includes/widgets/htmega_double_button.php:851
12463
+ #: includes/widgets/htmega_download_monitor.php:223
12464
+ #: includes/widgets/htmega_download_monitor.php:290
12465
+ #: includes/widgets/htmega_easy_digital_download.php:372
12466
+ #: includes/widgets/htmega_easy_digital_download.php:457
12467
+ #: includes/widgets/htmega_easy_digital_download.php:494
12468
+ #: includes/widgets/htmega_easy_digital_download.php:731
12469
+ #: includes/widgets/htmega_errorcontent.php:327
12470
+ #: includes/widgets/htmega_errorcontent.php:406
12471
+ #: includes/widgets/htmega_errorcontent.php:485
12472
+ #: includes/widgets/htmega_errorcontent.php:581
12473
+ #: includes/widgets/htmega_errorcontent.php:732
12474
+ #: includes/widgets/htmega_googlemap.php:189
12475
+ #: includes/widgets/htmega_googlemap.php:223
12476
+ #: includes/widgets/htmega_googlemap.php:425
12477
+ #: includes/widgets/htmega_googlemap.php:512
12478
+ #: includes/widgets/htmega_image_comparison.php:253
12479
+ #: includes/widgets/htmega_image_comparison.php:334
12480
+ #: includes/widgets/htmega_image_grid.php:480
12481
+ #: includes/widgets/htmega_notify.php:341
12482
+ #: includes/widgets/htmega_panel_slider.php:702
12483
+ #: includes/widgets/htmega_panel_slider.php:758
12484
+ #: includes/widgets/htmega_postgrid.php:479
12485
+ #: includes/widgets/htmega_postgrid.php:554
12486
+ #: includes/widgets/htmega_postgrid.php:594
12487
+ #: includes/widgets/htmega_postgrid.php:681
12488
+ #: includes/widgets/htmega_post_grid_tab.php:459
12489
+ #: includes/widgets/htmega_post_grid_tab.php:546
12490
+ #: includes/widgets/htmega_post_grid_tab.php:643
12491
+ #: includes/widgets/htmega_post_grid_tab.php:769
12492
+ #: includes/widgets/htmega_post_grid_tab.php:863
12493
+ #: includes/widgets/htmega_post_slider.php:894
12494
+ #: includes/widgets/htmega_post_slider.php:981
12495
+ #: includes/widgets/htmega_post_slider.php:1078
12496
+ #: includes/widgets/htmega_post_slider.php:1197
12497
+ #: includes/widgets/htmega_post_slider.php:1291
12498
+ #: includes/widgets/htmega_pricing_list_view.php:1323
12499
+ #: includes/widgets/htmega_pricing_list_view.php:1414
12500
+ #: includes/widgets/htmega_pricing_list_view.php:1532
12501
+ #: includes/widgets/htmega_pricing_list_view.php:1664
12502
+ #: includes/widgets/htmega_progress_bar.php:751
12503
+ #: includes/widgets/htmega_progress_bar.php:830
12504
+ #: includes/widgets/htmega_scroll_image.php:401
12505
+ #: includes/widgets/htmega_singlepost.php:174
12506
+ #: includes/widgets/htmega_singlepost.php:261
12507
+ #: includes/widgets/htmega_singlepost.php:374
12508
+ #: includes/widgets/htmega_special_day_banner.php:359
12509
+ #: includes/widgets/htmega_special_day_banner.php:418
12510
+ #: includes/widgets/htmega_special_day_banner.php:477
12511
+ #: includes/widgets/htmega_special_day_banner.php:536
12512
+ #: includes/widgets/htmega_special_day_banner.php:595
12513
+ #: includes/widgets/htmega_special_day_banner.php:662
12514
+ #: includes/widgets/htmega_tabs.php:549
12515
+ #: includes/widgets/htmega_verticle_time_line.php:158
12516
+ #: includes/widgets/htmega_verticle_time_line.php:211
12517
+ #: includes/widgets/htmega_verticle_time_line.php:341
12518
+ #: includes/widgets/htmega_wc_categories.php:300
12519
+ #: includes/widgets/htmega_wc_element_pages.php:279
12520
+ #: includes/widgets/htmega_wc_element_pages.php:405
12521
+ #: includes/widgets/htmega_wc_element_pages.php:660
12522
+ #: includes/widgets/htmega_wc_element_pages.php:942
12523
+ #: includes/widgets/htmega_wc_element_pages.php:1326
12524
+ #: includes/widgets/htmega_wc_element_pages.php:1591
12525
+ #: includes/widgets/htmega_wc_element_pages.php:1725
12526
+ #: includes/widgets/htmega_wc_element_pages.php:1873
12527
+ #: includes/widgets/htmega_working_process.php:654
12528
+ #: includes/widgets/htmega_working_process.php:733
12529
+ #: includes/widgets/htmega_working_process.php:833
12530
+ #: extensions/ht-builder/widgets/bl_page_title.php:78
12531
+ #: extensions/ht-builder/widgets/bl_post_archive.php:359
12532
+ #: extensions/ht-builder/widgets/bl_post_archive.php:466
12533
+ #: extensions/ht-builder/widgets/bl_post_archive.php:572
12534
+ #: extensions/ht-builder/widgets/bl_post_archive.php:664
12535
+ #: extensions/ht-builder/widgets/bl_post_archive.php:733
12536
+ #: extensions/ht-builder/widgets/bl_post_archive.php:869
12537
+ #: extensions/ht-builder/widgets/bl_post_archive_title.php:80
12538
+ #: extensions/ht-builder/widgets/bl_post_comments.php:60
12539
+ #: extensions/ht-builder/widgets/bl_post_comments.php:121
12540
+ #: extensions/ht-builder/widgets/bl_post_content.php:60
12541
+ #: extensions/ht-builder/widgets/bl_post_excerpt.php:60
12542
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:373
12543
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:413
12544
+ #: extensions/ht-builder/widgets/bl_post_search_form.php:139
12545
+ #: extensions/ht-builder/widgets/bl_post_search_form.php:224
12546
+ #: extensions/ht-builder/widgets/bl_post_title.php:77
12547
+ #: extensions/ht-builder/widgets/bl_site_title.php:80
12548
+ msgid "Typography"
12549
+ msgstr ""
12550
+
12551
+ #: includes/widgets/htmega_weather.php:52
12552
+ msgid "Units"
12553
+ msgstr ""
12554
+
12555
+ #: includes/widgets/htmega_newsticker.php:132
12556
+ msgid "Up"
12557
+ msgstr ""
12558
+
12559
+ #: includes/widgets/htmega_section_title.php:644
12560
+ msgid "Use Backround for Text"
12561
+ msgstr ""
12562
+
12563
+ #: includes/widgets/htmega_googlemap.php:171
12564
+ msgid "Use max 32x32 px size."
12565
+ msgstr ""
12566
+
12567
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:114
12568
+ #: extensions/ht-builder/widgets/bl_post_meta_info.php:153
12569
+ #, php-format
12570
+ msgid "Use the letters: %s"
12571
+ msgstr ""
12572
+
12573
+ #: admin/include/admin-setting.php:567
12574
+ #: includes/widgets/htmega_user_login_form.php:13
12575
+ msgid "User Login Form"
12576
+ msgstr ""
12577
+
12578
+ #: includes/widgets/htmega_twitter_feed.php:833
12579
+ msgid "User Name Style"
12580
+ msgstr ""
12581
+
12582
+ #: admin/include/admin-setting.php:575
12583
+ msgid "User Register Form"
12584
+ msgstr ""
12585
+
12586
+ #: includes/widgets/htmega_twitter_feed.php:71
12587
+ msgid "UserName"
12588
+ msgstr ""
12589
+
12590
+ #: includes/widgets/htmega_user_login_form.php:1564
12591
+ #: includes/widgets/htmega_user_login_form.php:1565
12592
+ msgid "Username"
12593
+ msgstr ""
12594
+
12595
+ #: includes/widgets/htmega_user_login_form.php:208
12596
+ msgid "Username Label"
12597
+ msgstr ""
12598
+
12599
+ #: includes/widgets/htmega_user_login_form.php:210
12600
+ #: includes/widgets/htmega_user_login_form.php:223
12601
+ msgid "Username or Email"
12602
+ msgstr ""
12603
+
12604
+ #: includes/widgets/htmega_user_login_form.php:221
12605
+ msgid "Username Placeholder"
12606
+ msgstr ""
12607
+
12608
+ #: includes/helper-function.php:443
12609
+ msgid "Username too short. At least 4 characters is required"
12610
+ msgstr ""
12611
+
12612
+ #: includes/helper-function.php:438
12613
+ msgid "Username, Password and E-Mail are required"
12614
+ msgstr ""
12615
+
12616
+ #: includes/widgets/htmega_caldera_form.php:657
12617
+ #: includes/widgets/htmega_ninja_form.php:1137
12618
+ msgid "Validation Pass Style"
12619
+ msgstr ""
12620
+
12621
+ #: includes/widgets/htmega_progress_bar.php:763
12622
+ msgid "Value"
12623
+ msgstr ""
12624
+
12625
+ #: includes/widgets/htmega_progress_bar.php:174
12626
+ msgid "Value Indicator"
12627
+ msgstr ""
12628
+
12629
+ #: includes/widgets/htmega_progress_bar.php:62
12630
+ #: includes/widgets/htmega_scroll_navigation.php:143
12631
+ #: includes/widgets/htmega_scroll_navigation.php:165
12632
+ #: includes/widgets/htmega_scroll_navigation.php:195
12633
+ msgid "Vertical"
12634
+ msgstr ""
12635
+
12636
+ #: includes/widgets/htmega_pricing_list_view.php:1155
12637
+ msgid "Vertical Alignment"
12638
+ msgstr ""
12639
+
12640
+ #: includes/widgets/htmega_working_process.php:235
12641
+ msgid "Vertical Line Color"
12642
+ msgstr ""
12643
+
12644
+ #: includes/widgets/htmega_service.php:861
12645
+ msgid "Vertical line Hover Color"
12646
+ msgstr ""
12647
+
12648
+ #: extensions/ht-menu/widgets/verticle-mega-menu.php:15
12649
+ msgid "Vertical Mega Menu"
12650
+ msgstr ""
12651
+
12652
+ #: includes/widgets/htmega_carousel.php:695
12653
+ #: includes/widgets/htmega_panel_slider.php:992
12654
+ msgid "Vertical Position"
12655
+ msgstr ""
12656
+
12657
+ #: includes/widgets/htmega_special_day_banner.php:219
12658
+ msgid "Vertical Postion"
12659
+ msgstr ""
12660
+
12661
+ #: includes/widgets/htmega_slider_thumb_gallery.php:463
12662
+ msgid "Vertical Slide"
12663
+ msgstr ""
12664
+
12665
+ #: includes/widgets/htmega_twitter_feed.php:1410
12666
+ msgid "Vertical Space"
12667
+ msgstr ""
12668
+
12669
+ #: includes/widgets/htmega_verticle_time_line.php:14
12670
+ msgid "Vertical Timeline"
12671
+ msgstr ""
12672
+
12673
+ #: includes/widgets/htmega_verticle_time_line.php:36
12674
+ msgid "Vertical Timeline Layout"
12675
+ msgstr ""
12676
+
12677
+ #: admin/include/admin-setting.php:583
12678
+ msgid "Verticle Timeline"
12679
+ msgstr ""
12680
+
12681
+ #: includes/widgets/htmega_socialshere.php:90
12682
+ msgid "Viber"
12683
+ msgstr ""
12684
+
12685
+ #: includes/widgets/htmega_lightbox.php:54
12686
+ msgid "Video"
12687
+ msgstr ""
12688
+
12689
+ #: includes/widgets/htmega_videoplayer.php:233
12690
+ msgid "Video Box Style"
12691
+ msgstr ""
12692
+
12693
+ #: includes/widgets/htmega_videoplayer.php:48
12694
+ msgid "Video Container"
12695
+ msgstr ""
12696
+
12697
+ #: includes/widgets/htmega_videoplayer.php:136
12698
+ msgid "Video Image"
12699
+ msgstr ""
12700
+
12701
+ #: includes/widgets/htmega_videoplayer.php:153
12702
+ msgid "Video Options"
12703
+ msgstr ""
12704
+
12705
+ #: admin/include/admin-setting.php:591
12706
+ #: includes/widgets/htmega_videoplayer.php:12
12707
+ #: includes/widgets/htmega_videoplayer.php:41
12708
+ msgid "Video Player"
12709
+ msgstr ""
12710
+
12711
+ #: includes/widgets/htmega_videoplayer.php:221
12712
+ msgid "Video Start Time"
12713
+ msgstr ""
12714
+
12715
+ #: admin/include/admin-setting.php:1360
12716
+ msgid "Video Tutorial"
12717
+ msgstr ""
12718
+
12719
+ #: includes/widgets/htmega_lightbox.php:77
12720
+ msgid "Video URL"
12721
+ msgstr ""
12722
+
12723
+ #: includes/widgets/htmega_videoplayer.php:60
12724
+ msgid "Video Url"
12725
+ msgstr ""
12726
+
12727
+ #: includes/widgets/htmega_socialshere.php:341
12728
+ #: includes/widgets/htmega_wc_add_to_cart.php:95
12729
+ msgid "View"
12730
+ msgstr ""
12731
+
12732
+ #: admin/include/admin-setting.php:999
12733
+ msgid "View Counter"
12734
+ msgstr ""
12735
+
12736
+ #: admin/include/admin-setting.php:998
12737
+ msgid "View Counter <span>( Pro )</span>"
12738
+ msgstr ""
12739
+
12740
+ #: includes/widgets/htmega_accordion.php:430
12741
+ msgid "Visible Item"
12742
+ msgstr ""
12743
+
12744
+ #: includes/widgets/htmega_animated_heading.php:114
12745
+ msgid "Visible Item Number"
12746
+ msgstr ""
12747
+
12748
+ #: includes/widgets/htmega_socialshere.php:68
12749
+ msgid "Vkontakte"
12750
+ msgstr ""
12751
+
12752
+ #: admin/include/templates/library/templates.php:148
12753
+ msgid "Want to learn more about the HT Mega library?"
12754
+ msgstr ""
12755
+
12756
+ #: includes/widgets/htmega_notify.php:135
12757
+ msgid "Warning"
12758
+ msgstr ""
12759
+
12760
+ #: admin/include/admin-setting.php:1229
12761
+ #: includes/widgets/htmega_wc_add_to_cart.php:14
12762
+ msgid "WC : Add To cart"
12763
+ msgstr ""
12764
+
12765
+ #: admin/include/admin-setting.php:1237
12766
+ #: includes/widgets/htmega_wc_categories.php:13
12767
+ msgid "WC : Categories"
12768
+ msgstr ""
12769
+
12770
+ #: admin/include/admin-setting.php:1245
12771
+ #: includes/widgets/htmega_wc_element_pages.php:13
12772
+ msgid "WC : Pages"
12773
+ msgstr ""
12774
+
12775
+ #: extensions/wc-sales-notification/admin/setting.php:268
12776
+ msgid "WC Sales Notification Settings"
12777
+ msgstr ""
12778
+
12779
+ #: admin/include/admin-setting.php:623 includes/widgets/htmega_weather.php:13
12780
+ #: includes/widgets/htmega_weather.php:36
12781
+ msgid "Weather"
12782
+ msgstr ""
12783
+
12784
+ #: admin/include/admin-setting.php:770
12785
+ msgid "Weather Map API Key"
12786
+ msgstr ""
12787
+
12788
+ #: admin/include/admin-setting.php:772
12789
+ msgid "Weather Map API key"
12790
+ msgstr ""
12791
+
12792
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:98
12793
+ msgid "Website"
12794
+ msgstr ""
12795
+
12796
+ #: includes/helper-function.php:470
12797
+ msgid "Website is not a valid URL"
12798
+ msgstr ""
12799
+
12800
+ #: includes/widgets/htmega_business_hours.php:184
12801
+ msgid "Wednesday"
12802
+ msgstr ""
12803
+
12804
+ #: includes/widgets/htmega_instagram.php:114
12805
+ msgid "Week"
12806
+ msgstr ""
12807
+
12808
+ #: includes/widgets/htmega_socialshere.php:87
12809
+ msgid "Weibo"
12810
+ msgstr ""
12811
+
12812
+ #: includes/widgets/htmega_socialshere.php:91
12813
+ msgid "Whatsapp"
12814
+ msgstr ""
12815
+
12816
+ #: admin/include/admin-setting.php:1325
12817
+ msgid "Which will motivate us a lot."
12818
+ msgstr ""
12819
+
12820
+ #: includes/recommended-plugins/recommended-plugins.php:83
12821
+ msgid "Whols"
12822
+ msgstr ""
12823
+
12824
+ #: includes/widgets/htmega_blockquote.php:630
12825
+ #: includes/widgets/htmega_blockquote.php:755
12826
+ #: includes/widgets/htmega_caldera_form.php:521
12827
+ #: includes/widgets/htmega_carousel.php:655
12828
+ #: includes/widgets/htmega_carousel.php:920
12829
+ #: includes/widgets/htmega_carousel.php:1026
12830
+ #: includes/widgets/htmega_contact_form_seven.php:738
12831
+ #: includes/widgets/htmega_contact_form_seven.php:802
12832
+ #: includes/widgets/htmega_gravity_forms.php:662
12833
+ #: includes/widgets/htmega_imagemarker.php:808
12834
+ #: includes/widgets/htmega_image_comparison.php:463
12835
+ #: includes/widgets/htmega_instagram.php:1030
12836
+ #: includes/widgets/htmega_instagram.php:1209
12837
+ #: includes/widgets/htmega_job_manager.php:171
12838
+ #: includes/widgets/htmega_mailchimp_wp.php:327
12839
+ #: includes/widgets/htmega_modal.php:312 includes/widgets/htmega_notify.php:734
12840
+ #: includes/widgets/htmega_panel_slider.php:927
12841
+ #: includes/widgets/htmega_panel_slider.php:1134
12842
+ #: includes/widgets/htmega_popover.php:514
12843
+ #: includes/widgets/htmega_post_slider.php:1640
12844
+ #: includes/widgets/htmega_post_slider.php:1789
12845
+ #: includes/widgets/htmega_pricing_list_view.php:405
12846
+ #: includes/widgets/htmega_pricing_list_view.php:1034
12847
+ #: includes/widgets/htmega_quforms.php:805
12848
+ #: includes/widgets/htmega_scroll_navigation.php:456
12849
+ #: includes/widgets/htmega_search.php:554
12850
+ #: includes/widgets/htmega_search.php:789
12851
+ #: includes/widgets/htmega_service.php:571
12852
+ #: includes/widgets/htmega_service.php:821
12853
+ #: includes/widgets/htmega_service.php:887
12854
+ #: includes/widgets/htmega_slider_thumb_gallery.php:921
12855
+ #: includes/widgets/htmega_slider_thumb_gallery.php:1138
12856
+ #: includes/widgets/htmega_special_day_banner.php:165
12857
+ #: includes/widgets/htmega_twitter_feed.php:1169
12858
+ #: includes/widgets/htmega_twitter_feed.php:1371
12859
+ #: includes/widgets/htmega_user_login_form.php:1173
12860
+ #: includes/widgets/htmega_working_process.php:887
12861
+ #: includes/widgets/htmega_working_process.php:1012
12862
+ #: includes/widgets/htmega_wpforms.php:948
12863
+ #: extensions/ht-builder/widgets/bl_post_author_info.php:146
12864
+ msgid "Width"
12865
+ msgstr ""
12866
+
12867
+ #: includes/recommended-plugins/recommended-plugins.php:63
12868
+ msgid "WishSuite"
12869
+ msgstr ""
12870
+
12871
+ #: includes/recommended-plugins/recommended-plugins.php:51
12872
+ msgid "WooCommerce"
12873
+ msgstr ""
12874
+
12875
+ #: includes/recommended-plugins/recommended-plugins.php:58
12876
+ msgid "WooLentor – WooCommerce Elementor Addons + Builder"
12877
+ msgstr ""
12878
+
12879
+ #: includes/widgets/htmega_progress_bar.php:106
12880
+ #: includes/widgets/htmega_progress_bar.php:208
12881
+ #: includes/widgets/htmega_progress_bar.php:238
12882
+ #: includes/widgets/htmega_progress_bar.php:406
12883
+ #: includes/widgets/htmega_socialshere.php:84
12884
+ msgid "WordPress"
12885
+ msgstr ""
12886
+
12887
+ #: includes/widgets/htmega_pricing_list_view.php:82
12888
+ #: includes/widgets/htmega_pricing_list_view.php:146
12889
+ msgid "WordPress Plugin"
12890
+ msgstr ""
12891
+
12892
+ #: admin/include/admin-setting.php:599
12893
+ #: includes/widgets/htmega_working_process.php:14
12894
+ #: includes/widgets/htmega_working_process.php:35
12895
+ msgid "Working Process"
12896
+ msgstr ""
12897
+
12898
+ #: admin/include/admin-setting.php:1198 includes/widgets/htmega_wpforms.php:13
12899
+ #: includes/widgets/htmega_wpforms.php:57
12900
+ msgid "WP Form"
12901
+ msgstr ""
12902
+
12903
+ #: includes/recommended-plugins/recommended-plugins.php:96
12904
+ msgid "WP Plugin Manager"
12905
+ msgstr ""
12906
+
12907
+ #: includes/widgets/htmega_section_title.php:291
12908
+ msgid "X Offset"
12909
+ msgstr ""
12910
+
12911
+ #: includes/widgets/htmega_imagemarker.php:241
12912
+ msgid "X Postion"
12913
+ msgstr ""
12914
+
12915
+ #: includes/widgets/htmega_socialshere.php:83
12916
+ msgid "Xing"
12917
+ msgstr ""
12918
+
12919
+ #: includes/widgets/htmega_section_title.php:314
12920
+ msgid "Y Offset"
12921
+ msgstr ""
12922
+
12923
+ #: includes/widgets/htmega_imagemarker.php:262
12924
+ msgid "Y Postion"
12925
+ msgstr ""
12926
+
12927
+ #: includes/widgets/htmega_booked_calender.php:128
12928
+ #: includes/widgets/htmega_instagram.php:116
12929
+ msgid "Year"
12930
+ msgstr ""
12931
+
12932
+ #: includes/widgets/htmega_carousel.php:212
12933
+ #: includes/widgets/htmega_gravity_forms.php:103
12934
+ #: includes/widgets/htmega_instagram.php:407
12935
+ #: includes/widgets/htmega_panel_slider.php:158
12936
+ #: includes/widgets/htmega_panel_slider.php:169
12937
+ #: includes/widgets/htmega_panel_slider.php:312
12938
+ #: includes/widgets/htmega_post_slider.php:392
12939
+ #: includes/widgets/htmega_slider_thumb_gallery.php:211
12940
+ #: includes/widgets/htmega_slider_thumb_gallery.php:476
12941
+ #: includes/widgets/htmega_twitter_feed.php:334
12942
+ #: includes/widgets/htmega_user_login_form.php:121
12943
+ #: includes/widgets/htmega_user_login_form.php:264
12944
+ #: includes/widgets/htmega_videoplayer.php:124
12945
+ #: includes/widgets/htmega_videoplayer.php:164
12946
+ #: includes/widgets/htmega_videoplayer.php:176
12947
+ #: includes/widgets/htmega_videoplayer.php:188
12948
+ #: includes/widgets/htmega_videoplayer.php:200
12949
+ #: includes/widgets/htmega_videoplayer.php:212
12950
+ msgid "Yes"
12951
+ msgstr ""
12952
+
12953
+ #: includes/widgets/htmega_business_hours.php:170
12954
+ #: includes/widgets/htmega_instragram_feed.php:86
12955
+ #: includes/widgets/htmega_instragram_feed.php:97
12956
+ msgid "yes"
12957
+ msgstr ""
12958
+
12959
+ #: admin/include/class.diagnostic-data.php:461
12960
+ msgid "Yes, I Agree"
12961
+ msgstr ""
12962
+
12963
+ #: includes/widgets/htmega_twitter_feed.php:1677
12964
+ msgid "yesterday"
12965
+ msgstr ""
12966
+
12967
+ #: includes/widgets/htmega_user_login_form.php:1578
12968
+ #, php-format
12969
+ msgid "You are Logged in as %1$s (<a href=\"%2$s\">Logout</a>)"
12970
+ msgstr ""
12971
+
12972
+ #: admin/include/admin-setting.php:1046
12973
+ msgid "You can enable duplicator for individual post."
12974
+ msgstr ""
12975
+
12976
+ #: admin/include/admin-setting.php:780
12977
+ msgid "You can select 404 page from here."
12978
+ msgstr ""
12979
+
12980
+ #: extensions/ht-builder/admin/setting.php:113
12981
+ msgid "You can select 404 page from here. <span>( Pro )</span>"
12982
+ msgstr ""
12983
+
12984
+ #: extensions/ht-builder/admin/setting.php:74
12985
+ msgid "You can select blog page from here."
12986
+ msgstr ""
12987
+
12988
+ #: extensions/ht-builder/admin/setting.php:125
12989
+ msgid "You can select coming soon page from here. <span>( Pro )</span>"
12990
+ msgstr ""
12991
+
12992
+ #: extensions/ht-builder/admin/setting.php:92
12993
+ msgid "You can select footer template from here."
12994
+ msgstr ""
12995
+
12996
+ #: extensions/ht-builder/admin/setting.php:83
12997
+ msgid "You can select header template from here."
12998
+ msgstr ""
12999
+
13000
+ #: extensions/ht-builder/admin/setting.php:101
13001
+ msgid "You can select search page from here. <span>( Pro )</span>"
13002
+ msgstr ""
13003
+
13004
+ #: extensions/ht-builder/admin/setting.php:65
13005
+ msgid "You can select Single blog page from here."
13006
+ msgstr ""
13007
+
13008
+ #: includes/widgets/htmega_wc_element_pages.php:1924
13009
+ msgid "Your cart is currently empty."
13010
+ msgstr ""
13011
+
13012
+ #: includes/widgets/htmega_animated_heading.php:75
13013
+ msgid "Zoom"
13014
+ msgstr ""
13015
+
13016
+ #: includes/widgets/htmega_lightbox.php:297
13017
+ msgid "Zoom Button"
13018
+ msgstr ""
13019
+
13020
+ #: includes/widgets/htmega_lightbox.php:169
13021
+ msgid "Zoom Button Text"
13022
+ msgstr ""
13023
+
13024
+ #: includes/widgets/htmega_googlemap.php:50
13025
+ msgid "Zoom Control"
13026
+ msgstr ""
13027
+
13028
+ #: includes/widgets/htmega_instagram.php:261
13029
+ #: includes/widgets/htmega_lightbox.php:154
13030
+ msgid "Zoom Icon"
13031
+ msgstr ""
13032
+
13033
+ #: includes/widgets/htmega_instagram.php:211
13034
+ msgid "Zoom Icon Type"
13035
+ msgstr ""
13036
+
13037
+ #: includes/widgets/htmega_image_magnifier.php:79
13038
+ msgid "Zoom Label"
13039
+ msgstr ""
13040
+
13041
+ #: includes/widgets/htmega_image_magnifier.php:69
13042
+ msgid "Zoomable"
13043
+ msgstr ""
readme.txt CHANGED
@@ -3,129 +3,213 @@ Contributors: hasthemes, htplugins, devitemsllc, tarekht, zenaulislam, aslamhasi
3
  Tags: Elementor, Elementor Addons, Elementor Widgets, elementor page builder, Elementor Blocks
4
  Requires at least: 4.7
5
  Tested up to: 6.0.1
6
- Stable tag: 1.9.3
7
  License: GPLv2 or later
8
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
9
 
10
- The HTMega is a elementor addons package for Elementor page builder plugin for WordPress.
11
-
12
- == Description ==
13
- HTMega is a absolute addons for elementor includes **84+ elements** & **360 Blocks** with unlimited variations. HT Mega brings limitless possibilities. Embellish your site with the elements of HT Mega.
14
-
15
- **HT Mega Addons for Elementor one of the best free Elementor addons to supercharge your Elementor page builder and design your WordPress website more creatively with over 84+ free Elementor widgets. It has more than 90,000+ active installations! 🙂**
16
 
 
 
 
 
 
17
  ###USEFUL LINKS 👇###
18
  **[Live Demo](https://wphtmega.com)** | **[Documentation](https://wphtmega.com/docs/)** | **[Video Tutorial](https://www.youtube.com/watch?v=d7jAiAYusUg&list=PLk25BQFrj7wEEGUHn9x2zwOql990bZAo_)** | **[Upgrade Pro](https://wphtmega.com/pricing/)** | **[Need Support?](https://ticket.hasthemes.com/)**
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
 
20
- == Free Unique Advanced Features Of HT Mega Elementor Addons: 🔥 ==
21
- == ✅ Header/Footer Builder ==
22
- This feature allows for creating a header/footer layout for the full website or specific page. There is an option to select the preferred header/footer globally or for a single page/post.
23
 
24
- == Theme/Template builder: ==
25
- This feature allows for creating different template/design/layout for a single archive/tag/category/search/404/coming soon/maintenance page.
26
 
27
- == Sales Notification: ==
28
- This feature allows showing the sales notification or popup to display real/fake orders. In the dashboard, there is an option to manage the design of the notification. [Check the video](https://hasthemes.com/woocommerce-sales-notification-using-woolentor/) for more details.
29
 
30
- == Menu Builder: ==
31
- This feature allows creating menu or mega menu using the Elementor page builder.
32
 
33
- == Post Duplicator: ==
34
- HT Post Duplicate provides functionality to create a clone of pages or posts. You can duplicate pages, posts, and custom posts with a single click, and it will be saved as a draft.
35
 
36
- == Template Library: ==
37
- Choose your page layout from template list. You can easily import the template with a single click. There are 15 Templates available in the free version, while the pro version contains a whopping collection of 789 templates.
38
 
39
- == HT Mega Absolute Addons for Elementor Page Builder ==
40
- [youtube https://youtu.be/d7jAiAYusUg]
41
 
42
- == 84+ Free Elementor Widgets Are Available 🔥 ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
 
44
- 1. **[Accordion (9 Styles) ](https://wphtmega.com/widget/element-accordion/)** - The accordion widget by HT Mega comes into play to add engaging and interactive accordion content (in both vertical and horizontal orientations) to your pages, posts, and anywhere. With this amazing Elementor accordion widget, you can easily create beautiful accordions that will captivate your visitors.
45
- 2. **[Heading (7 Styles) ](https://wphtmega.com/widget/element-heading/)** - Heading Widget on your website is to show off a variety of styles. With different headings, you'll be able to make every page look unique and interesting.
46
- 3. **[Banner Box (4 Styles) ](https://wphtmega.com/widget/element-banner/)** - The Elementor Banner widget is an excellent tool for making your website's banners more engaging and attractive to the eye. Using this widget, you can easily design and modify banners that will grab the attention of your visitors.
47
- 4. **[Block Quote (5 Styles) ](https://wphtmega.com/widget/element-blockquote/)** - To display an element that has been quoted from someplace else, use the Elementor block quote widget. The blockquote widget in HT Mega is available in a number of formats.
48
- 5. **[Brand (7 Styles) ](https://wphtmega.com/widget/element-brand/)** - The HT Mega Elementor Brand widget makes it easy to add brand logos to your web pages. It comes with numerous options right out of the box.
49
- 6. **[Business Hours (5 Styles) ](https://wphtmega.com/widget/element-business-hours/)** - The Business Hour widget makes it simple and straightforward to display your business hours. There are five distinct layouts to choose from, as well as the option to change the day and time. As a result, you may let your website visitors know when your company is open or closed.
50
- 7. **[Button (5 Styles) ](https://wphtmega.com/widget/element-button/)** - Button Widget will catch the visitor's eye and make it easy to click through on any page of your website with its different styles.
51
- 8. **[Call To Action (7 Styles) ](https://wphtmega.com/widget/element-call-to-action/)** - The Elementor Call to Action Widget by HT Mega is a great tool for adding an interactive, customizable call-to action button on your WordPress website. Choose from 7 styles and adjust its size so it will fit any page!
52
- 9. **[Contact Form (7 Styles) ](https://wphtmega.com/widget/element-contact-form/)** - The HT Mega Elementor Contact Form widget is useful for adjusting the appearance and feel of contact forms and displaying them attractively on your website.
53
- 10. **[Countdown (7 Styles) ](https://wphtmega.com/widget/element-countdown/)** - Countdown Widget allows you to create an eye-catching and practical time tracker that will help your audience quickly know the remaining time of your product offer.
54
- 11. **[Counter Up (6 Styles) ](https://wphtmega.com/widget/element-counter/)** - Elementor Counter Up Widget has a lot more customization options counter. It’s good for showing facts and figures.
55
- 12. **[Custom Carousel (7 Styles) ](https://wphtmega.com/widget/element-custom-carousel/)** - With the Elementor image carousel, you can display numerous gorgeous and engaging galleries for your site in a single place. It comes in seven different styles. Rather of adding individual pictures, you can use this fantastic widget to create a carousel with many images!
56
- 13. **[Drop Caps (5 Styles) ](https://wphtmega.com/widget/element-dropcaps/)** - The HT Mega Drop Cap Widget allows you to add a number of drop cap styles to your website. The widget is simple to set up and customize, and it will look excellent regardless of the style or font you use for your page's content.
57
- 14. **[Double Button (5 Styles) ](https://wphtmega.com/widget/eelement-double-button/)** - The Elementor Double Button widget in HT Mega Addons is ideal for anybody looking to enhance the functionality to their website by adding dual buttons anywhere.
58
- 15. **[FAQ (5 Styles) ](https://wphtmega.com/widget/element-faq/)** - The FAQ widget is a useful widget in presenting frequently added questions and answers in eye-catching styles.
59
- 16. **[Flip Box (5 Styles) ](https://wphtmega.com/widget/element-flipbox/)** - The HT Mega Elementor Flip Box widget is a great tool for adding gorgeous flip box content to your WordPress web pages and making them more attention-grabbing.
60
- 17. **[Google Map (5 Styles) ](https://wphtmega.com/widget/element-google-map/)** - With the HT Mega Elementor Add-ons plugin, you can create a personalized Google map that can be shown anywhere on your website. It has 5 unique styles.
61
- 18. **[Animated Heading (7 Styles) ](https://wphtmega.com/widget/element-animated-heading/)** - You can make custom animations for your page headings with the Elementor animated heading widget by HT Mega, which will help you stand out from the crowd. This useful widget lets you create animated headings that can be used as the headings for your website.
62
- 19. **[Image Comparison (5 Styles) ](https://wphtmega.com/widget/element-image-comparison/)** - This handy widget is useful to show the difference between two images. It gives you 5 unique styles to choose from.
63
- 20. **[Image Justify (5 Styles) ](https://wphtmega.com/widget/element-image-justify/)** - With HT Mega Elementor Image Justify Widget, you can effortlessly build a stunning and aligned image gallery on your web page.
64
- 21. **[Image Magnifier (5 Styles) ](https://wphtmega.com/widget/element-image-magnifier/)** - The Image Magnifier widget is effective when you want to let your web visitors see the photos on the web page in an enlarged view.
65
- 22. **[Image Masonry (5 Styles) ](https://wphtmega.com/widget/element-image-masonry/)** - The picture Masonry Widget is ideal for building visually appealing photo galleries. Images are presented in a responsive masonry layout, so they look amazing on any device your visitors are using.
66
- 23. **[Instagram (5 Styles) ](https://wphtmega.com/widget/element-instagram/)** - The Elementor Instagram widget in HT Mega lets you add eye-catching Instagram buttons to your web pages in four different layouts.
67
- 24. **[Light Box (4 Styles) ](https://wphtmega.com/widget/element-light-box/)** - A lightbox is a picture-displaying overlay or popup window that appears above the webpage. They highlight the image while darkening the rest of the page, allowing it to be viewable around the edges. Add a lightbox content to your pages and posts with this widget.
68
- 25. **[Inline Menu (10 Styles) ](https://wphtmega.com/widget/element-inline-menu/)** - Inline Menu Widget by HT Mega is a free and easy-to-use widget that will allow you to create horizontal navigation menus on your site very easily.
69
- 26. **[User Login (5 Styles) ](https://wphtmega.com/widget/element-user-login/)** - The User Login Widget helps you to create a login page easily. This page offers your visitor to log in to your website.
70
- 27. **[User Register (5 Styles) ](https://wphtmega.com/widget/element-user-register/)** - The User Registrar widget allows you complete control over your website's user registrations. You'll get a variety of Registration Forms for your users, each with its own set of pre-defined fields.
71
- 28. **[Image Marker (5 Styles) ](https://wphtmega.com/widget/element-image-marker/)** - The Image Marker widget allows you to add an image with detailed information about the image with a marker. The customization settings allow users incredible control over what they see on screen - whether its color style choices, font size preferences, image layout options, etc.
72
- 29. **[Modals (5 Styles) ](https://wphtmega.com/widget/element-modal/)** - The Elementor Modal Pop-Ups Widget is an excellent widget for creating high-quality modal pop-ups that your visitors will like. This simple widget makes adding modal pop-ups to your website easier and faster!
73
- 30. **[Subscribe News Letter (5 Styles) ](https://wphtmega.com/widget/element-subscribe/)** - The Subscribe widget allows you to easily create buttons to subscription forms and displays on your web pages and posts.
74
- 31. **[News Ticker (7 Styles) ](https://wphtmega.com/widget/element-news-ticker/)** - The News Ticker Widget highlights the latest news headline or significant posts’ title in a scroller with incredible animation effects. Different layouts with different styles are available.
75
- 32. **[Notification (4 Styles) ](https://wphtmega.com/widget/element-notification/)** - Notification widget notifies you with a message box on your current page. It's small and contains various different text colors to convey different messages.
76
- 33. **[Off Canvas (4 Styles) ](https://wphtmega.com/widget/element-off-canvas/)** - Off canvas widget is a great way to show off your content in an easy-to-use sidebar that can be triggered by clicking on it.
77
- 34. **[Panel Slider (4 Styles) ](https://wphtmega.com/widget/element-panel-slider/)** - The panel Slider widget offers you to show off your panel sliders on the website. It has a different layout which will attract your visitor.
78
- 35. **[Popovers (4 Styles) ](https://wphtmega.com/widget/element-popover/)** - The Popover widget is a marvelous element for displaying popovers on websites. The layouts can be adjusted to show the content that you want your visitors to see.
79
- 36. **[Post Carousel (5 Styles) ](https://wphtmega.com/widget/post-carosul/)** - Post Carousel allows you to build an engaging post carousel that will appeal to your readers.
80
- 37. **[Post Grid (5 Styles) ](https://wphtmega.com/widget/element-post-grid/)** - Post Grid widget displays posts in the grid that provides multiple layouts of a page. This widget shows the post title and featured image in this format to open an enlarged article view.
81
- 38. **[Post Grid Tab (5 Styles) ](https://wphtmega.com/widget/element-post-grid-tab/)** - In a grid layout, the Elementor Post Grid Tab widget in HT Mega shows the post title and featured picture in a special tabbed format.
82
- 39. **[Post Slider (5 Styles) ](https://wphtmega.com/widget/element-post-slider/)** - The Post Slider Widget is a dynamic slider that presents your posts with images attractively with sliders.
83
- 40. **[Pricing List View (3 Styles) ](https://wphtmega.com/widget/element-pricing-list-view/)** - The HT Mega Elementor Pricing table widget offers different types of pricing table styles for your single product.
84
- 41. **[Pricing Table (7 Styles) ](https://wphtmega.com/widget/element-pricing-table/)** - The HT Mega Elementor Pricing table widget offers different types of pricing table styles for your single product.
85
- 42. **[Progress Bar (10 Styles) ](https://wphtmega.com/widget/element-progress-bar/)** - With its 10 various designs, the HT Mega progress bar widget makes displaying percentage-based progress bars on web pages a breeze!
86
- 43. **[Scroll Image (2 Styles) ](https://wphtmega.com/widget/element-scroll-image/)** - The Scroll image widget allows you to showcase your favorite images with a scroll, and you can pick whether your images should scroll from top to bottom or left to right.
87
- 44. **[Scroll Navigation (4 Styles) ](https://wphtmega.com/widget/element-scroll-navigation/)** - The Scroll navigation widget allows you to simplify the process of site navigation for your visitors, This widget allows you to flip through different sections within a single page. The HT Mega plugin provides 4 styles for this widget.
88
- 45. **[Search (5 Styles) ](https://wphtmega.com/widget/elementor-search/)** - The Search widget allows you to show a search option on your website. This unique Elementor search widget provides you with 5 styles.
89
- 46. **[Services (7 Styles) ](https://wphtmega.com/widget/element-services/)** - The Services Widget makes it easy to display services on your website. It comes with seven different styles for displaying the 'services' content on web pages.
90
- 47. **[Single Post (5 Styles) ](https://wphtmega.com/widget/element-single-post/)** - The Single Post widget will allow you to highlight a single post on your website. This widget allows for more flexibility when it comes to displaying individual posts in different ways.
91
- 48. **[Social Share (9 Styles) ](https://wphtmega.com/widget/element-social-shere/)** - Social share widget is a special widget to share any of your products in any social media. This widget will increase your sales and earn more visitors.
92
- 49. **[Switcher (9 Styles) ](https://wphtmega.com/widget/element-switcher/)** - The switcher widget is the perfect tool for content switching. It allows you to quickly and easily switch between your pricing table, info sections, services, and other layouts.
93
- 50. **[Tab (5 Styles) ](https://wphtmega.com/widget/element-tab/)** - With just a few clicks, you can quickly and effortlessly create attractive, structured tab sections with the Elementor tabs widget. Tabs are efficient for websites that need to keep their content organized and accessible.
94
- 51. **[Data Table (3 Styles) ](https://wphtmega.com/widget/element-data-table/)** - The Elementor data table widget by HT Mega is a useful tool for quickly adding tables to your content. These tables are ideal for presenting data in an engaging and intriguing manner, making it simpler for your visitors to present the information.
95
- 52. **[Team Member (8 Styles) ](https://wphtmega.com/widget/element-team-member/)** - Team member widget is a great way to show the team member whom you work with or have worked for your company. This widget includes their names, social media links, and a brief description of what they do.
96
- 53. **[Testimonial Carousel (5 Styles) ](https://wphtmega.com/widget/element-testimonial/)** - The Testimonial Carousel widget is an excellent way for visitors to your website to get an idea of what you're all about. You can customize it with a plethora of options and choose the layout that you prefer the most.
97
- 54. **[Testimonial Grid (5 Styles) ](https://wphtmega.com/widget/element-testimonial-grid/)** - You can use this widget to show client testimonials in an easy-to-read grid layout, allowing web visitors to see what others have said about your product or service.
98
- 55. **[Thumbnails Gallery (4 Styles) ](https://wphtmega.com/widget/element-thumbnails-gallery/)** - The Thumbnail Gallery Widget allows you to add multiple images to your image gallery page. You can choose from different layouts, such as the Basic Gallery layout or the Masonry Layout.
99
- 56. **[Toggle (3 Styles) ](https://wphtmega.com/widget/element-toggle/)** - The Toggle Widget is perfect for hiding content to make it accessible only after the user clicks on a specific title.
100
- 57. **[Tool Tip (4 Styles) ](https://wphtmega.com/widget/element-tooltip/)** - Tooltip Widget is a lightweight, simple widget that interactively displays your Tooltip content using icons, text, and images.
101
- 58. **[Twitter Feed (5 Styles) ](https://wphtmega.com/widget/element-twitter-feed/)** - The Twitter Feed widget is a great way to display and share your favorite tweets with the world. You can choose from different layouts like grids, columns, or even full width, which you prefer most.
102
- 59. **[Vertical Timeline (3 Styles) ](https://wphtmega.com/widget/element-vertical-timeline/)** - The Vertical Timeline widget is a great way to show your project's phases in an easy-to-follow format. You can use it for everything from Roadmaps and upcoming events through completed projects, so there'll always be clarity on what you need next.
103
- 60. **[Video Player (4 Styles) ](https://wphtmega.com/widget/elementor-video-player/)** - The Video Player Widget is a useful tool with intuitive options to showcase your YouTube, and Vimeo videos in style for WordPress using Elementor. You can add a custom thumbnail image and set an overlay that will present the videos on web pages in a more appealing and attractive way.
104
- 61. **[Weather (3 Styles) ](https://wphtmega.com/widget/element-weather/)** - The weather widget is the perfect widget for updating your location’s weather. You can also set multiple locations and have the latest weather updates.
105
- 62. **[Working Process (4 Styles) ](https://wphtmega.com/widget/element-working-process/)** - The Working Process widget can be used for displaying the working process and offers a variety of layout options. This widget displays the steps in an easy-to-follow order, with text indicators that show which step you're working on.
106
- 63. **[404 Page Content (4 Styles) ](https://wphtmega.com/widget/element-page-not-found-content/)** - Page Not Found Content widget shows a message page not found or 404 when the specific page failed to be found.
107
- 64. **[BBPress](https://wphtmega.com/widget/element-bbpress/)** - The Bbpress widget is an excellent way to include Bbpress functionality into your WordPress website. Adding forums, topics, and posts to your site is simple with the Bbpress widget.
108
- 65. **[Booked Calendar](https://wphtmega.com/widget/element-booked-calender/)** - The Booked Calendar widget comes into play for any business website as it enables you to add a calender to the pages and posts of your site having full control of the look and feel of the calender. It comes with several different styles.
109
- 66. **[BuddyPress](https://wphtmega.com/widget/element-buddypress/)** - Buddypress widget allows you to integrate Buddypress content. With the help of this widget, you can manage the content and style of your BuddyPress content with ease.
110
- 67. **[Caldera Forms](https://wphtmega.com/widget/element-caldera-forms/)** - Using the Caldera forms widget, integrating and displaying caldera forms on your web pages will be easier and faster with tons of customization options at your disposal.
111
- 68. **[Download monitor](https://wphtmega.com/widget/element-download-monitor/)** - The Download Monitor widget from HT Mega Elementor is ideal for customizing the appearance and feel of your download link content. With this useful widget, you may change the look of your download button content.
112
- 69. **[Easy digital downloads](https://wphtmega.com/widget/element-easy-digital-downloads/)** - This helpful widget displays the content of your downloads in the Easy Digital Downloads plugin. It has a lot of options for modifying the design, content, and so on, and it provides your download content a professional look.
113
- 70. **[Event Countdown](https://wphtmega.com/widget/element-event-countdown/)** - The Events Countdown widget allows you to quickly and simply create beautiful event countdown content. As a result, you can see how much time is remaining for a specific event in days, hours, minutes, and so on.
114
- 71. **[Gravity Forms](https://wphtmega.com/widget/element-gravity-forms/)** - With the help of this simple Gravity forms widget from HT Mega, you can design and decorate your gravity forms and display them on web pages in a stylish way.
115
- 72. **[Instagram](https://wphtmega.com/widget/element-instagram/)** - Instagram is the finest technique to get your site visitors' attention. HT Mega's Instagram widget lets you add eye-catching Instagram buttons to your web pages in four different layouts.
116
- 73. **[Instagram Feed](https://wphtmega.com/widget/element-instagram-feed/)** - The HT Mega Elementor Instagram feed widget enables you to display your Instagram feed on your website. This widget gives your visitors a much more visually appealing experience when displaying your Instagram gallery to the WordPress web pages.
117
- 74. **[Job Manager](https://wphtmega.com/widget/element-job-manager/)** - Job Manger is a useful widget to display the job postings on your web pages with tons of handy cusstomizable options.
118
- 75. **[Layer Slider](https://wphtmega.com/widget/element-layer-slider/)** - The HT Mega Elementor Layer Slider widget is a fantastic way to create simple responsive layer sliders quickly. It provides you with all the options you need to make everything change in order for the website to display layer sliders.
119
- 76. **[Ninja Form](https://wphtmega.com/widget/element-ninja-form/)** - Ninja Forms widget helps you personalize the style of Ninja forms on your web pages.
120
- 77. **[QU Form](https://wphtmega.com/widget/element-quform/)** - Quform is a drag-and-drop form builder for WordPress that lets you create awesome forms in no time. With the Quform widget in HT Mega, you can personalize the look and feel of Quforms contents on your web pages.
121
- 78. **[TablePress](https://wphtmega.com/widget/element-tablepress/)** - TablePress makes creating and maintaining beautiful tables a breeze. If you want to manage the content of TablePress on your web pages, this widget can help.
122
- 79. **[MailChimp for WP](https://wphtmega.com/widget/element-subscribe/)** - The HT Mega Elementor MailChimp for WP widget is helpful in managing the look and feel of your MailChimp subscribe form content.
123
- 80. **[WP Forms](https://wphtmega.com/widget/element-wp-forms/)** - The HT Mega Elementor WPForms widget makes it simple to edit WPForms content on your website. This widget can help you control the content of WPForms if you've incorporated it into your webpages.
124
- 81. **[WooCommerce add to cart](https://wphtmega.com/widget/element-woocommerce-add-to-cart/)** - The WooCommerce add to Cart widget helps you create the add-to-cart button so that customers can add their desired items to the cart right away and make purchases easily.
125
- 82. **[WooCommerce Category](https://wphtmega.com/widget/element-woocommerce-category/)** - The WooCommerce Category Widget allows you to organize and categorize products on your WooCommerce site.
126
- 83. **[WooCommerce Cart Page](https://wphtmega.com/widget/element-woocommerce-cart-page/)** - The WooCommerce cart page widget comes into play for any WooCommerce website as it allows you to modify your cart layout with options to edit titles, labels, placeholders, etc.
127
- 84. **[WooCommerce Checkout Page](https://wphtmega.com/widget/element-checkout-page/)** - The Woocommerce Checkout widget helps you fine tune your WooCommerce checkout page layout with ease. It comes with a plethora of options to embellish your WooCommerce checkout page.
128
- 85. **[Special Day Offer](https://wphtmega.com/widget/element-special-day-offer/)** - This widget is a great way to entice customers with special deals. You can easily add banners and choose from different layouts that best showcase your offer, all through the HT Mega Elementor Special Day Offer Widget!
129
 
130
  == Features: ==
131
  * Fully responsive and mobile ready.
@@ -135,14 +219,15 @@ Choose your page layout from template list. You can easily import the template w
135
  * Every element enable / disable option panel.
136
  * 877 Google Font Supported.
137
  * Cross Browser Compatible.
138
- * 15 Categories / Template Sets
139
  * 15 Page Templates
140
-
141
  == Exclusive HT Mega Pro Features: ==
142
- * 39 Categories / Template Sets
143
- * 789 Page Templates
144
  * Cross Domain Copy Paste
145
- * Blog Search Page Builder
 
146
  * 404 Error Page Builder
147
  * Coming soon Page Builder
148
  * Blog Archive Category Wise Individual layout
@@ -159,63 +244,88 @@ Choose your page layout from template list. You can easily import the template w
159
  * Content Color Option
160
  * Cross Icon Color Option
161
 
162
- == HT Mega Pro Widgets ==
163
- 1. **[Info Box (9 Styles) ](https://wphtmega.com/elementor-info-box-widget/)** - Create powerful feature boxes with the HT Mega Elementor Info Box Widget. You can add a title, description and call to action in combination with images or icons to create something truly attractive and engaging.
164
- 2. **[Lottie (8 Styles) ](https://wphtmega.com/elementor-lottie-widget/)** - Why not grab a user's attention by adding captivating Lottie animations to your website? These lightweight and high-quality animation assets can be used with HT Mega Elementor Lottie Widget.
165
- 3. **[Event Calendar (5 Styles) ](https://wphtmega.com/elementor-event-calendar-widget/)** - Creating and managing a calendar can be time consuming. HT Mega Elementor event calendar widget allows you to create your own personalized calendar manually or use your Google calendar to display your events.
166
- 4. **[Feature List (Style 6) ](https://wphtmega.com/widget/elementor-feature-list-widget/)** Use the HT Mega Elementor Feature list widget to display your service features in style with some of their featured designs or create your own and customize it to suit your needs. It's surprisingly easy to use!
167
- 5. **[Price Menu (Style 4) ](https://wphtmega.com/widget/elementor-price-menu-widget/)** HT Mega Elementor Price Menu widget will give your website a distinctive look and help online shoppers find the perfect item with ease. Your menu or catalog will be easy on the eye while still being attractive.
168
- 6. **[Social Network (Style 7) ](https://wphtmega.com/widget/elementor-social-network-widget/)** HT Mega Elementor Social Icons Widget is an efficient widget that lets you add links for all of your social media channels in just a few moments. The best part? It's as simple as adding any social media icon to any screen or page of your site.
169
- 7. **[Category List (Style 8) ](https://wphtmega.com/widget/elementor-category-list-widget/)** HT Mega Elementor Category List Widget is easy to active, user-friendly and customizable saving you countless hours of time in the process of organizing your site content and categorizing them. Create an impressive list of categories with ease with this exclusive widget.
170
- 8. **[Taxonomy Terms (Style 5) ](https://wphtmega.com/widget/elementor-taxonomy-terms-widget/)** HT Mega Elementor Taxonomy Terms Widget for Elementor is an outstanding addon that lets you create different ways of displaying tags and categories on your website based on your needs.
171
- 9. **[Background Switcher (Style 6) ](https://wphtmega.com/widget/elementor-background-switcher-widget/)** HT Mega Elementor Background Switcher Widget can help you to create a great digital experience for your customers and facilitate the process of building responsive layouts. When you hover over one of these boxes it changes the background for the whole section. Its allow you to seamlessly create a variety of layouts.
172
- 10. **[Team Carousel (Style 5) ](https://wphtmega.com/elementor-team-carousel-widget/)** With HT Mega Elementor Team Carousel Widget, you don't need to struggle to create a Team Carousel on your own. It's the easiest way to get a conversion-boosting, brand-building carousel on your website. Get all the features you need at an affordable price like slides, and custom style.
173
- 11. **[Interactive Promo (Style 15) ](https://wphtmega.com/elementor-interactive-promo-widget/)** HT Mega Elementor Interactive Promo Widget is a highly configurable widget that will let you add attractive Interactive Promo to your website. It provides you with numerous unique Interactive Promo Styles to choose from.
174
- 12. **[Icon Box (Style 7) ](https://wphtmega.com/elementor-icon-box-widget/)** HT Mega Elementor Icon Box Widget Create more engaging, persuasive, and eye-catching content. It's easy to use, and offers a variety of customization options for your project.
175
- 13. **[Page List (Style 6) ](https://wphtmega.com/elementor-page-list-widget/)** You'll finally be able to set up a page list with a horizontal or vertical layout and customize it according to your needs by using the HT Mega Elementor Page List widget.
176
- 14. **[Facebook Review (Style 3) ](https://wphtmega.com/widget/elementor-facebook-review-widget/)** HT Mega Elementor Facebook Review Widget allows you to display a stunning showcase of your Facebook page info and reviews on your website.
177
- 15. **[Breadcrumbs (Style 9) ](https://wphtmega.com/elementor-breadcrumbs-widget/)** HT Mega Elementor Breadcrumbs Widget helps you visualize your breadcrumbs in different ways with a variety of customizable options. You can easily create one to suit your needs.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
178
 
179
  **[PURCHASE HT Mega PRO FROM OUR WEBSITE]( https://wphtmega.com/pricing/ )**
180
 
181
  == Free WooCommerce Plugins ==
182
- > Are you searching for WooCommerce ELementor Addon?
183
- > Try to use our best WooCommerce ELementor Addon - WooLentor
184
  > 42 Custom Grid Layouts
185
- > 18 Elementor Widget
186
  > [WooCommerce Template Builder](https://wordpress.org/plugins/woolentor-addons/)
187
 
188
- == Free WooCommerce Themes ==
189
- [99fy - Free WooCommerce Themes](https://hasthemes.com/8tr5) is one of our best free WooCommerce Themes, free version includes 99 home pages with 24 niches. Free and pro version is available. [TRY FREE VERSION OF 99FY](https://hasthemes.com/8tr5)
190
 
191
  == Common Issues and Solutions: ==
192
  1. Elementor editor fails to load
193
- Ans. It is due to your server PHP setting. You can increase PHP memory limit from wp-config.php file or php.ini file
194
- [View Documentation](https://wphtmega.com/docs/how-to-increase-php-memory-limit-in-wordpress/)
195
-
196
  == Ask for it to your host ==
197
  > I’m interested in running the open-source [WordPress](https://wordpress.org/) web software and I was wondering if my account supported the following:
198
  > * PHP 7.3 or greater
199
  > * MySQL 5.6 or greater OR MariaDB 10.0 or greater
200
- > * PHP memory_limit = 512M
201
  > * max_execution_time = 300
202
  > Thanks!
203
-
204
  == Need Help? ==
205
- Is there any feature that you want to get in this plugins?
206
- Needs assistance to use this plugins?
207
  Feel free to [Contact us](https://hasthemes.com/contact-us/) 💌
208
-
209
  == Check out our other projects ==
210
  * [WooLentor](https://wordpress.org/plugins/woolentor-addons/) - WooCommerce page builder for Elementor Addon. Create unlimited product grid, layouts, custom product and shop pages layouts.
211
-
212
- * [WC Builder](https://wordpress.org/plugins/wc-builder/) – WooCommerce Page Builder for WPBakery. Create custom product and Shop pages easily.
213
-
214
- * [WP Plugin Manager](https://wordpress.org/plugins/wp-plugin-manager/) – Deactivate plugins per page will help to reduce page size, increase website performance and speed.
215
-
216
  Visit [HasThemes](https://hasthemes.com/) for more details about HTML, Shopify and WordPress products and services.
217
 
 
218
  == Changelog ==
 
 
 
 
 
 
219
  = Version: 1.9.3 - Date: 2022-08-16 =
220
  * Added: Custom posts select option in single post addon
221
  * Fixed: Designation alignment issue in team member addon
@@ -247,7 +357,7 @@ Visit [HasThemes](https://hasthemes.com/) for more details about HTML, Shopify a
247
  * Fixed: Conflict Accordion addon with LearnDash plugin.
248
 
249
  = Version: 1.8.7 - Date: 2022-05-14 =
250
- * Updated: Make Third party instagram feed addon compatible with latest version of instgram feed plugin.
251
  * Fixed: Odd and even row's background color not working in Datatable addon.
252
  * Added: Styles in button and accordion addon.
253
 
@@ -951,83 +1061,88 @@ Added: Info icon style options.
951
 
952
  == Installation ==
953
  This section describes how to install the HT Mega - Absolute Addons for Elementor Page Builder plugin and get it working.
954
-
955
  = 1) Install =
956
-
957
  1. Go to the WordPress Dashboard "Add New Plugin" section.
958
  2. Search For "HT Mega".
959
  3. Install, then Activate it.
960
-
961
  = OR: =
962
  1. Unzip (if it is zipped) and Upload `ht-mega-for-elementor` folder to the `/wp-content/plugins/` directory
963
  2. Activate the plugin through the 'Plugins' menu in WordPress
964
-
965
  = 2) Configure =
966
- 1. After install and activate the plugin you will get a notice to install Elementor Plugin ( If already install it then do not show notice. ).
967
  2. To install the plugin click on the "Button" Install Elementor.
968
  3. HTMega Addons Category will be appear in Elementor page Editor.
969
 
970
 
971
  == Frequently Asked Questions ==
972
 
973
- = Is HT Mega Elementor Addons compatible with any theme? =
974
-
975
  Yes, Definitely! The plugin is well-functional to be compatible with any WordPress theme.
976
-
977
- = How often do you update the HT Mega Addons? =
978
-
979
  HT Mega Addons for Elementor is updated on a regular basis. We add functionalities and improve the existing ones to ensure better user-friendliness.
980
-
981
- = Does the HT Mega Addons Require Any Coding Skills? =
982
-
983
- HT Mega Elementor Addons has a set of Elementor widgets, a ready template library, and much more. You don’t need coding skills to use it as it’s all drag and drop.
984
-
985
  = Is the HT Mega Addons Responsive for smaller devices? =
986
-
987
  Yes, the HT Mega Elementor Addons plugin is well responsive for smaller devices.
988
-
989
  = How Many Free Widgets Does HT Mega Addons Offer? =
990
-
991
  The HT Mega Add-ons plugin offers over 84+ free widgets including WooCommerce widgets, 360+ ready blocks, 15+ landing pages, etc.
992
-
 
 
 
 
993
  = Can I use HT Mega without the Elementor page builder? =
994
-
995
- No, you cannot use it without Elementor since this is an add-on for the popular browser extension.
996
-
997
  = Is it necessary to use Elementor pro to have accessibility to the HT Mega Library? =
998
-
999
  No, Elementor Pro is not mandatory to access HT Mega Addons Library. These Elementor templates or blocks can be used with the free Elementor plugin.
1000
-
1001
  = What is the solution when the Elementor editor fails to load? =
1002
-
1003
  It is due to your server PHP setting. You can increase the PHP memory limit from the wp-config.php file or php.ini file. Please contact your hosting provider and ask to increase
1004
-
1005
  PHP 7.3 or greater
1006
  MySQL 5.6 or greater OR MariaDB 10.0 or greater
1007
  PHP memory_limit = 512M
1008
  max_execution_time = 300
1009
-
1010
  Or you can follow this link [Increase Memory Limit](https://wphtmega.com/doc/how-to-increase-php-memory-limit-in-wordpress/)
1011
-
1012
  = Is there any documentation for HT Mega Addons for Elementor? =
1013
-
1014
  Yes, there is excellent documentation. [View the Documentation](https://wphtmega.com/docs/)
1015
-
1016
  = Is there any tutorial video for HT Mega Addons for Elementor? =
1017
-
1018
  Yes, there are video tutorials available that can help you customize it as per your needs and choices. [Follow the video playlist from here ](https://www.youtube.com/watch?v=d7jAiAYusUg&list=PLk25BQFrj7wEEGUHn9x2zwOql990bZAo_&index=1)
1019
-
1020
  = What are the unique advanced features in HT Mega Addons? =
1021
-
1022
  The number of advanced features in HT Mega is vast. Some remarkably advanced features in this plugin include Header/Footer Builder, Theme/Template builder, Sales Notification, Menu Builder, Post Duplicator, etc.
1023
-
1024
- = What are the pro version features available in the HT Mega Elementor Addons? =
1025
-
1026
- The pro version of HT Mega Elementor Addons gives you access to numerous incredible features that include 39 Categories / Template Sets, 789 Page Templates, Cross-Domain Copy Paste, Blog Search Page Builder, Sales Upto Date Option, and many more.
1027
-
1028
  = Why is the Post Duplicator widget used? =
 
 
1029
 
1030
- The post duplicator widget provides you with the simplest method for creating a clone of your website’s contents . With the help of Post Duplicator addon, you can replicate your website’s pages, posts, templates, and items.
1031
 
1032
  == Screenshots ==
1033
  1. HT Mega Absolute Addons for Elementor Page Builder
@@ -1039,4 +1154,4 @@ The pro version of HT Mega Elementor Addons gives you access to numerous incredi
1039
  7. Widgets Enable / Disable Option Panel
1040
  8. Settings Panel
1041
  9. Templates Library Options
1042
- 10. Page Template Library Import Options
3
  Tags: Elementor, Elementor Addons, Elementor Widgets, elementor page builder, Elementor Blocks
4
  Requires at least: 4.7
5
  Tested up to: 6.0.1
6
+ Stable tag: 1.9.4
7
  License: GPLv2 or later
8
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
9
 
10
+ The HTMega is an Elementor addons package for Elementor page builder plugin for WordPress. It is a complete package of Elementor widgets, pre-designed Elementor templates, Elementor forms, Elementor tables, and so on. It empowers you to build a professional website in WordPress using Elementor, the well-liked WordPress page builder. From Elementor blog widget, Elementor slider widget, Elementor accordion widget, or whatever Elementor widget you like, this Elementor page builder Addons plugin will deliver you all.
 
 
 
 
 
11
 
12
+ == Description of HT Mega Elementor Addons ==
13
+ HTMega is an absolute Elementor addons that includes **84+ Elementor widgets** ,**360 Elementor Blocks** and plenty of **Elementor Templates* for various pages. This excellent WordPress Elementor plugin brings limitless possibilities. With HT Mega, you can easily add accordions, post grids, sliders, carousels, mega menus, forms, tables, and more to your pages. This all-in-one solution for your Elementor page builder needs gives you everything you need to create a custom website that looks great and functions perfectly.
14
+
15
+ **HT Mega Addons for Elementor is one of the best free Elementor add-ons to supercharge your Elementor page builder and design your WordPress Elementor website more creatively with over 84+ free Elementor widgets. It has more than 90,000+ active installations! 🙂**
16
+
17
  ###USEFUL LINKS 👇###
18
  **[Live Demo](https://wphtmega.com)** | **[Documentation](https://wphtmega.com/docs/)** | **[Video Tutorial](https://www.youtube.com/watch?v=d7jAiAYusUg&list=PLk25BQFrj7wEEGUHn9x2zwOql990bZAo_)** | **[Upgrade Pro](https://wphtmega.com/pricing/)** | **[Need Support?](https://ticket.hasthemes.com/)**
19
+
20
+ == Free Unique Advanced Features of HT Mega Elementor Addons: 🔥 ==
21
+ == ✅ Header/Footer Builder ==
22
+ This feature allows creation a header/footer layout for the full website or specific page. There is an option to select the preferred header/footer globally or for a single page/post. The builder also allows you to create Elementor Transparent Header. You will additionally get tons of Elementor header templates or Elementor footer templates to choose from and customize one if you like.
23
+
24
+ == ✅ Theme / Template builder: ==
25
+ This feature allows creating different template/design/layout for a single archive/tag/category/search/404/coming soon/maintenance page.
26
+
27
+ == ✅ Sales Notification: ==
28
+ This feature allows showing the sales notification or popup to display real/fake orders. In the dashboard, there is an option to manage the design of the notification. It is the ideal Elementor add-on for showing notification popups that indicate the purchase of your items. [Check the video](https://hasthemes.com/woocommerce-sales-notification-using-woolentor/) for more details.
29
+
30
+ == ✅ Elementor Menu Builder: ==
31
+ This feature allows creating a menu or mega menu using the Elementor page builder.
32
+
33
+ == ✅ Elementor Post Duplicator: ==
34
+ This feature provides functionality to create a clone of pages or posts. You can duplicate pages, posts, and custom posts with a single click, which will be saved as a draft.
35
+
36
+ == ✅ Elementor Template Library: ==
37
+ Choose your page layout from the template list. You can easily import the Elementor template with a single click. There are 15 Templates available in the free version, while the pro version contains a whopping collection of 789 templates.
38
+
39
+ == HT Mega Absolute Addons for Elementor Page Builder ==
40
+ [youtube https://youtu.be/d7jAiAYusUg]
41
 
 
 
 
42
 
43
+ == 84+ Free Elementor Widgets Are Available 🔥 ==
 
44
 
45
+ 1. **[Elementor Accordion Widget (9 Styles) ](https://wphtmega.com/widget/element-accordion/)** - The Elementor accordion widget by HT Mega comes into play to add engaging and interactive accordion content (in both vertical and horizontal orientations) to your pages, posts, and anywhere. With this amazing Elementor accordion widget, you can easily create beautiful accordions that will captivate your visitors.
 
46
 
47
+ 2. **[Elementor Heading Widget (7 Styles) ](https://wphtmega.com/widget/element-heading/)** - The purpose of the Elementor Heading Widget on your website is to show off a variety of styles. With different headings, you'll be able to make every page look unique and interesting.
 
48
 
49
+ 3. **[Elementor Banner Box Widget (4 Styles) ](https://wphtmega.com/widget/element-banner/)** - The Elementor Banner widget is an excellent tool for including eye-catching banners on your Elementor website. Using this widget, you can easily design and modify banners that will grab the attention of your visitors.
 
50
 
51
+ 4. **[Elementor Block Quote Widget (5 Styles) ](https://wphtmega.com/widget/element-blockquote/)** - To display an element that has been quoted from someplace else, use the Elementor block quote widget. The blockquote widget in HT Mega is available in a number of formats.
 
52
 
53
+ 5. **[Elementor Brand Widget (7 Styles) ](https://wphtmega.com/widget/element-brand/)** - The HT Mega Elementor Brand widget makes it easy to add brand logos to your web pages. It comes with numerous options right out of the box.
 
54
 
55
+ 6. **[Elementor Business Hours Widget (5 Styles) ](https://wphtmega.com/widget/element-business-hours/)** - The Business Hour widget makes it simple and straightforward to display your business hours. There are five distinct layouts to choose from, as well as the option to change the day and time. As a result, you may let your website visitors know when your company is open or closed.
56
+
57
+ 7. **[Elementor Button Widget (5 Styles) ](https://wphtmega.com/widget/element-button/)** - The button Widget will catch the visitor's eye and make it easy to click through on any page of your website with its different styles.
58
+
59
+ 8. **[Elementor Call To Action Widget (7 Styles) ](https://wphtmega.com/widget/element-call-to-action/)** - The Elementor Call to Action Widget by HT Mega is a great tool for adding an interactive, customizable call-to-action button on your WordPress website. Choose from 7 styles and adjust its size so it will fit any page!
60
+
61
+ 9. **[Elementor Contact Form Widget (7 Styles) ](https://wphtmega.com/widget/element-contact-form/)** - The HT Mega Elementor Contact Forms widget is useful for adjusting the appearance and feel of contact forms and displaying them attractively on your website. You can use this fantastic Elementor Contact Forms Widget to integrate a contact form into your WordPress site adjusting the look and feel as per your choice and needs.
62
+
63
+ 10. **[Elementor Countdown Timer Widget (7 Styles) ](https://wphtmega.com/widget/element-countdown/)** - The Elementor Countdown Widget allows you to create an eye-catching and practical time tracker that will help your audience quickly know the remaining time of your product offer.
64
+
65
+ 11. **[Elementor Counter Up Widget (6 Styles) ](https://wphtmega.com/widget/element-counter/)** -The Elementor counter widget enables you to create numbered counter in an eye-catchy animation by which you can show the facts and figures on your web page. If you use Elementor Counter Up Widget, you will get many customization options.
66
+
67
+ 12. **[Elementor Custom Carousel Widget (7 Styles) ](https://wphtmega.com/widget/element-custom-carousel/)** - With the Elementor image carousel widget, you can display numerous gorgeous and engaging carousels for your site in a single place. It comes in seven different styles. Instead of adding individual pictures, you can use this fantastic widget to create a carousel with many images!
68
+
69
+ 13. **[Elementor Drop Caps Widget (5 Styles) ](https://wphtmega.com/widget/element-dropcaps/)** - The HT Mega Drop Cap Widget allows you to add a number of drop cap styles to your website. The widget is simple to set up and customize, and it will look excellent regardless of the style or font you use for your page's content.
70
+
71
+ 14. **[Elementor Double Button Widget (5 Styles) ](https://wphtmega.com/widget/elementor-double-button-widget/)** - The Elementor Double Button widget in HT Mega Addons is ideal for anybody looking to add dual buttons at any section of their website using Elementor.
72
+
73
+ 15. **[Elementor FAQ Widget (5 Styles) ](https://wphtmega.com/widget/element-faq/)** - The FAQ widget is useful in presenting frequently added questions and answers in eye-catching styles. If you want to add questions and answers to your blog posts, then this Elementor FAQ widget will just be the right tool.
74
+
75
+ 16. **[Elementor Flip Box Widget (5 Styles) ](https://wphtmega.com/widget/element-flipbox/)** - The HT Mega Elementor Flip Box widget is a great tool for adding gorgeous flip box content to your WordPress web pages and making them more attention-grabbing.
76
+
77
+ 17. **[Elementor Google Map Widget (5 Styles) ](https://wphtmega.com/widget/element-google-map/)** - Adding Google Map location of your business on your website is vital to make it easier for visitors to find your location. That’s where the Elementor Google maps widget is necessary. With the HT Mega Elementor Add-ons plugin, you can create a personalized Google map that can be shown anywhere on your website. It has 5 unique styles.
78
+
79
+ 18. **[Elementor Animated Heading Widget (7 Styles) ](https://wphtmega.com/widget/element-animated-heading/)** - You can make custom animations for your page headings with the Elementor animated heading widget by HT Mega, which will help you stand out from the crowd. This useful widget lets you create animated headings that can be used as the headings for your website.
80
+
81
+ 19. **[Elementor Image Comparison Widget (5 Styles) ](https://wphtmega.com/widget/element-image-comparison/)** - This handy widget is useful to show the difference between two images. It gives you 5 unique styles to choose from.
82
+
83
+ 20. **[Elementor Image Justify Widget (5 Styles) ](https://wphtmega.com/widget/element-image-justify/)** - With HT Mega Elementor Image Justify Widget, you can effortlessly build a stunning and aligned image gallery on your web page.
84
+
85
+ 21. **[Elementor Image Magnifier Widget (5 Styles) ](https://wphtmega.com/widget/element-image-magnifier/)** - The Image Magnifier widget is effective when you want to let your web visitors see the photos on the web page in an enlarged view.
86
+
87
+ 22. **[Elementor Image Masonry Widget (5 Styles) ](https://wphtmega.com/widget/element-image-masonry/)** - The picture Masonry Widget is ideal for building visually appealing photo galleries. Images are presented in a responsive and well-equipped masonry layout, so they look amazing on any device your visitors are using.
88
+
89
+ 23. **[Elementor Instagram Widget (5 Styles) ](https://wphtmega.com/widget/element-instagram/)** - The Elementor Instagram widget in HT Mega lets you add eye-catching Instagram buttons to your web pages in four different layouts. Show your Instagram feed in a professional and stunning way using this amazing widget.
90
+
91
+ 24. **[Elementor Light Box Widget (4 Styles) ](https://wphtmega.com/widget/element-light-box/)** - A lightbox is a picture-displaying overlay or popup window that appears above the webpage. They highlight the image while darkening the rest of the page, allowing it to be viewable around the edges. In your WordPress website powered by Elementor, if you want to add a lightbox, then this Elementor Lightbox widget will come in handy. Add a lightbox content to your pages and posts with this widget.
92
+
93
+ 25. **[Elementor Inline Menu Widget(10 Styles) ](https://wphtmega.com/widget/element-inline-menu/)** - Inline Elementor Menu Widget by HT Mega is a free and easy-to-use widget that will allow you to create horizontal navigation menus on your site very easily. This Elementor navigation menu widget is perfect for Elementor sites that have a lot of pages, or for sites that want to offer a more user-friendly navigation experience.Besides, this Elementor nav menu widget to use and you can customize it to fit your needs. You can add pages, posts, and categories to your Elementor nav menu.
94
+
95
+ 26. **[Elementor User Login Widget (5 Styles) ](https://wphtmega.com/widget/element-user-login/)** - The User Login Widget helps you to create a login page easily. This page offers your visitor to log in to your website. HT Mega comes with a modern and easy-to-use Elementor login widget at your disposal enabling the creation of user login pages effortlessly.
96
+
97
+ 27. **[Elementor User Register Widget (5 Styles) ](https://wphtmega.com/widget/element-user-register/)** - The User Registrar widget allows you complete control over your website's user registrations. You'll get a variety of Registration Forms for your users, each with its own set of pre-defined fields. With the ability to customize the look and feel of your forms, you'll be able to create a truly unique registration experience for your users using this Elementor register form widget. So, whether you're looking to create a simple contact form or a complex user registration system, the Elementor registration form widget is the perfect solution.
98
+
99
+ 28. **[Elementor Image Marker Widget (5 Styles) ](https://wphtmega.com/widget/element-image-marker/)** - The Image Marker widget allows you to add an image with detailed information about the image with a marker. The customization settings allow users incredible control over what they see on screen - whether its color style choices, font size preferences, image layout options, etc.
100
+
101
+ 29. **[Elementor Modals Widget (5 Styles) ](https://wphtmega.com/widget/element-modal/)** - The Elementor Modal Pop-Ups Widget is an excellent widget for creating high-quality modal pop-ups that your visitors will like. This simple widget makes adding modal pop-ups to your Elementor website easier and faster.
102
+
103
+ 30. **[Elementor Subscribe News Letter Widget (5 Styles) ](https://wphtmega.com/widget/element-subscribe/)** - The Subscribe widget allows you to easily create buttons to subscription forms and displays on your web pages and posts.
104
+
105
+ 31. **[Elementor News Ticker Widget (7 Styles) ](https://wphtmega.com/widget/element-news-ticker/)** - The News Ticker Widget highlights the latest news headline or significant posts’ title in a scroller with incredible animation effects. Different layouts with different styles are available.
106
+
107
+ 32. **[Elementor Notification Widget (4 Styles) ](https://wphtmega.com/widget/element-notification/)** - Notification widget notifies you with a message box on your current page. It's small and contains various different text colors to convey different messages.
108
+
109
+ 33. **[Elementor Off Canvas Widget (4 Styles) ](https://wphtmega.com/widget/element-off-canvas/)** - Off canvas widget is a great way to show off your content in an easy-to-use sidebar that can be triggered by clicking on it. This is a handy widget to add an attractive Elementor sidebar menu to your WordPress site.
110
+
111
+ 34. **[Elementor Panel Slider Widget (4 Styles) ](https://wphtmega.com/widget/element-panel-slider/)** - The panel Slider widget offers you to show off your panel sliders on the website. This Elementor slider has a different layout which will attract your visitor. If you are looking for an excellent slideshow functionality in Elementor, this widget could be helpful.
112
+
113
+ 35. **[Elementor Popovers Widget (4 Styles) ](https://wphtmega.com/widget/element-popover/)** - The Popover widget is a marvelous element for displaying popovers on websites. The layouts can be adjusted to show the content that you want your visitors to see.
114
+
115
+ 36. **[Elementor Post Carousel Widget (5 Styles) ](https://wphtmega.com/widget/post-carosul/)** - Post Carousel allows you to build an engaging post carousel that will appeal to your readers. This is an efficient Elementor carousel widget that really comes into play to show your posts more attractively. You can use this Elementor post carousel widget to showcase your latest blog posts, products, or any other type of content that you want to feature in a carousel. Also, Elementor posts carousel widget is easy to use and provides a great way to engage your readers.
116
+
117
+ 37. **[Elementor Post Grid Widget (5 Styles) ](https://wphtmega.com/widget/element-post-grid/)** - Post Grid widget displays posts in the grid that provides multiple layouts of a page. This widget shows the post title and featured image in this format to open an enlarged article view.
118
+
119
+ 38. **[Elementor Post Grid Tab Widget (5 Styles) ](https://wphtmega.com/widget/element-post-grid-tab/)** - In a grid layout, the Elementor Post Grid Tab widget in HT Mega shows the post title and featured picture in a special tabbed format.
120
+
121
+ 39. **[Elementor Post Slider Widget (5 Styles) ](https://wphtmega.com/widget/element-post-slider/)** - The Post Slider Widget is a dynamic slider that presents your posts with images attractively with sliders. This Elementor slider widget comes in handy when you want to present your sliders more appealingly to the visitors. Bring more creativity to your Elementor powered website with this amazing Elementor slideshow widget.
122
+
123
+ 40. **[Elementor Pricing List View Widget (3 Styles) ](https://wphtmega.com/widget/element-pricing-list-view/)** - The HT Mega Elementor Pricing table widget offers different types of pricing table styles for your single product.
124
+
125
+ 41. **[Elementor Pricing Table Widget (7 Styles) ](https://wphtmega.com/widget/element-pricing-table/)** - The HT Mega Elementor Pricing table widget offers different types of pricing table styles for your single product. Adjust the price tables of your products using this modern Elementor price table widget offered by HT Mega.
126
+
127
+ 42. **[Elementor Progress Bar (10 Styles) ](https://wphtmega.com/widget/element-progress-bar/)** - With its 10 various designs, the HT Mega progress bar widget makes displaying percentage-based progress bars on web pages a breeze!
128
+
129
+ 43. **[Elementor Scroll Image Widget (2 Styles) ](https://wphtmega.com/widget/element-scroll-image/)** - The Scroll image widget allows you to showcase your favorite images with a scroll, and you can pick whether your images should scroll from top to bottom or left to right.
130
+
131
+ 44. **[Elementor Scroll Navigation Widget (4 Styles) ](https://wphtmega.com/widget/element-scroll-navigation/)** - The Scroll navigation widget allows you to simplify the process of site navigation for your visitors, This widget allows you to flip through different sections within a single page. The HT Mega plugin provides 4 styles for this widget.
132
+
133
+ 45. **[Elementor Search Widget (5 Styles) ](https://wphtmega.com/widget/elementor-search/)** - The Search widget allows you to show a search option on your website. This unique Elementor search widget provides you with 5 styles.
134
+
135
+ 46. **[Elementor Services Widget (7 Styles) ](https://wphtmega.com/widget/element-services/)** - The Elementor Services Widget by HT Mega makes it easy to display services on your website. It comes with seven different styles for displaying the 'services' content on web pages.
136
+
137
+ 47. **[Elementor Single Post Widget (5 Styles) ](https://wphtmega.com/widget/element-single-post/)** - The Single Post widget will allow you to highlight a single post on your website. This widget allows for more flexibility when it comes to displaying individual posts in different ways. This Elementor posts widget makes showcasing your posts in a more professional way. Users can also choose to display the post title, excerpt, author, date, and even the number of comments in Elementor page builder using this exclusive Elementor post content widget.
138
+
139
+ 48. **[Elementor Social Share Widget (9 Styles) ](https://wphtmega.com/widget/elementor-social-share-widget/)** - Social share widget is a special widget to share any of your products in any social media. This widget will increase your sales and earn more visitors.
140
+
141
+ 49. **[Elementor Switcher Widget (9 Styles) ](https://wphtmega.com/widget/element-switcher/)** - The switcher widget is the perfect tool for content switching. It allows you to quickly and easily switch between your pricing table, info sections, services, and other layouts.
142
+
143
+ 50. **[Elementor Tab Widget (5 Styles) ](https://wphtmega.com/widget/element-tab/)** - With just a few clicks, you can quickly and effortlessly create attractive, structured tab sections with the Elementor tabs widget. Tabs are efficient for websites that need to keep their content organized and accessible.
144
+
145
+ 51. **[Elementor Data Table Widget (3 Styles) ](https://wphtmega.com/widget/element-data-table/)** - The Elementor data table widget by HT Mega is a useful tool for quickly adding Elementor tables to your content. These tables are ideal for presenting data in an engaging and intriguing manner, making it simpler for your visitors to present the information.
146
+
147
+ 52. **[Elementor Team Member Widget (8 Styles) ](https://wphtmega.com/widget/element-team-member/)** - Team member widget is a great way to show the team member whom you work with or have worked for your company. This widget includes their names, social media links, and a brief description of what they do.
148
+
149
+ 53. **[Elementor Testimonial Carousel Widget (5 Styles) ](https://wphtmega.com/widget/element-testimonial/)** - The Testimonial Carousel widget is an excellent way for visitors to your website to get an idea of what you're all about. You can customize it with a plethora of options and choose the layout that you prefer the most. Display customer reviews in a more stunning and impressive carousel using this unique Elementor reviews widget.
150
+
151
+ 54. **[Elementor Testimonial Grid Widget (5 Styles) ](https://wphtmega.com/widget/element-testimonial-grid/)** - It is Elementor review widget that comes in handy to showcase your user reviews/testimonials beautifully. You can use this widget to show client testimonials in an easy-to-read grid layout, allowing web visitors to see what others have said about your product or service.
152
+
153
+ 55. **[Elementor Thumbnails Gallery Widget (4 Styles) ](https://wphtmega.com/widget/element-thumbnails-gallery/)** - The Thumbnail Gallery Widget allows you to add multiple images to your image gallery page. You can choose from different layouts, such as the Basic Gallery layout or the Masonry Layout. It is a responsive Elementor gallery widget, so it will scale to fit any screen size. Also, this Elementor image gallery widget is compatible with all major browsers, including Chrome, Firefox, Safari, and Edge.
154
+
155
+ 56. **[Elementor Toggle Widget (3 Styles) ](https://wphtmega.com/widget/element-toggle/)** - The Toggle Widget is perfect for hiding content to make it accessible only after the user clicks on a specific title. HT Mega comes with a sophisticated Elementor content toggle widget which you can use to make the most incredible toggle with captivating boxes.
156
+
157
+ 57. **[Elementor Tool Tip Widget (4 Styles) ](https://wphtmega.com/widget/element-tooltip/)** - Tooltip Widget is a lightweight, simple widget that interactively displays your Tooltip content using icons, text, and images. You can use Elementor tooltips widget to create engaging, informative, and visually appealing tooltips for your website or blog. Elementor tooltips widget is compatible with all major browsers and devices.
158
+
159
+ 58. **[Elementor Twitter Feed Widget (5 Styles) ](https://wphtmega.com/widget/element-twitter-feed/)** - The Twitter Feed widget is a great way to display and share your favorite tweets with the world. You can choose from different layouts like grids, columns, or even full width, which you prefer most.
160
+
161
+ 59. **[Elementor Vertical Timeline Widget (3 Styles) ](https://wphtmega.com/widget/element-vertical-timeline/)** - The Vertical Timeline widget is a great way to show your project's phases in an easy-to-follow format. You can use this Elementor Timeline widget for everything from Roadmaps and upcoming events through completed projects, so there'll always be clarity on what you need next.
162
+
163
+ 60. **[Elementor Video Player Widget (4 Styles) ](https://wphtmega.com/widget/elementor-video-player/)** - The Video Player Widget is a useful tool with intuitive options to showcase your YouTube, and Vimeo videos in style for WordPress using Elementor. You can add a custom thumbnail image and set an overlay that will present the videos on web pages in a more appealing and attractive way. You can try this Elementor video widget to showcase your YouTube/Vimeo videos in a professional way.
164
+
165
+ 61. **[Elementor Weather Widget (3 Styles) ](https://wphtmega.com/widget/element-weather/)** - The weather widget is the perfect widget for updating your location’s weather. You can also set multiple locations and have the latest weather updates.
166
+
167
+ 62. **[Elementor Working Process Widget (4 Styles) ](https://wphtmega.com/widget/element-working-process/)** - The Working Process widget can be used for displaying the working process and offers a variety of layout options. This widget displays the steps in an easy-to-follow order, with text indicators that show which step you're working on.
168
+
169
+ 63. **[Elementor 404 Page Content Widget (4 Styles) ](https://wphtmega.com/widget/element-page-not-found-content/)** - Page Not Found Content widget shows a message page not found or 404 when the specific page failed to be found.
170
+
171
+ 64. **[Elementor BBPress](https://wphtmega.com/widget/element-bbpress/)** - The Bbpress widget is an excellent way to include Bbpress functionality into your WordPress Elementor website. Adding forums, topics, and posts to your site is simple with the Bbpress widget.
172
+
173
+ 65. **[Elementor Booked Calendar Widget](https://wphtmega.com/widget/element-booked-calendar/)** - The Booked Calendar widget comes into play for any business website as it enables you to add a calendar to the pages and posts of your site having full control of the look and feel of the calendar. It comes with several different styles.You can also use this Elementor event calendar widget to create custom calendars for specific events or purposes. In addition, this Elementor event calendar widget offers a variety of customization options that allow you to change the look and feel of your calendar.
174
+
175
+ 66. **[Elementor BuddyPress Widget](https://wphtmega.com/widget/element-buddypress/)** - Buddypress widget allows you to integrate Buddypress content. With the help of this widget, you can manage the content and style of your BuddyPress content with ease.
176
+
177
+ 67. **[Elementor Caldera Forms Widget](https://wphtmega.com/widget/element-caldera-forms/)** - Using the Caldera Elementor forms widget, integrating and displaying caldera forms on your web pages will be easier and faster with tons of customization options at your disposal.
178
+
179
+ 68. **[Elementor Download monitor Widget](https://wphtmega.com/widget/element-download-monitor/)** - The Download Monitor widget from HT Mega Elementor is ideal for customizing the appearance and feel of your download link content. With this useful widget, you may change the look of your download button content.
180
+
181
+ 69. **[Elementor Easy digital downloads Widget](https://wphtmega.com/widget/element-easy-digital-downloads/)** - This helpful widget displays the content of your downloads in the Easy Digital Downloads plugin. It has a lot of options for modifying the design, content, and so on, and it provides your download content a professional look.
182
+
183
+ 70. **[Elementor Event Countdown Widget](https://wphtmega.com/widget/element-event-countdown/)** - The Events Countdown widget allows you to quickly and simply create beautiful event countdown content. As a result, you can see how much time is remaining for a specific event in days, hours, minutes, and so on.
184
+
185
+ 71. **[Elementor Gravity Forms Widget](https://wphtmega.com/widget/element-gravity-forms/)** - With the help of this simple Gravity Elementor forms widget from HT Mega, you can design and decorate your gravity forms and display them on web pages in a stylish way. This Elementor gravity forms widget is easy to use and comes with a variety of features that allow you to customize the look and feel of your forms. You can select from a variety of fonts, colors, and layouts to create a form that is unique to your website.
186
+
187
+ 72. **[Elementor Instagram Feed Widget](https://wphtmega.com/widget/element-instagram-feed/)** - The HT Mega Elementor Instagram feed widget enables you to display your Instagram feed on your website. This widget gives your visitors a much more visually appealing experience when displaying your Instagram gallery to the WordPress Elementor web pages So, this Instagram feed Elementor widget is worth checking out if you want to showcase your Instagram activities to your site easily.
188
+
189
+ 73. **[Elementor Job Manager Widget](https://wphtmega.com/widget/element-job-manager/)** - Job Manger is a useful widget to display the job postings on your web pages with tons of handy customizable options.
190
+
191
+ 74. **[Elementor Layer Slider Widget](https://wphtmega.com/widget/element-layer-slider/)** - The HT Mega Elementor Layer Slider widget is a fantastic way to create simple responsive layer sliders quickly. It provides you with all the options you need to make everything change in order for the website to display layer sliders.
192
+
193
+ 75. **[Elementor Ninja Form Widget](https://wphtmega.com/widget/element-ninja-form/)** - Ninja Forms widget helps you personalize the style of Ninja forms on your web pages.
194
+
195
+ 76. **[Elementor QU Form Widget](https://wphtmega.com/widget/element-quform/)** - Quform is a drag-and-drop form builder for WordPress that lets you create awesome forms in no time. With the Quform widget in HT Mega, you can personalize the look and feel of Quforms contents on your web pages.
196
+
197
+ 77. **[Elementor TablePress Widget](https://wphtmega.com/widget/element-tablepress/)** - TablePress makes creating and maintaining beautiful tables a breeze. If you want to manage the content of TablePress on your web pages, this widget can help.
198
+
199
+ 78. **[Elementor MailChimp for WP Widget](https://wphtmega.com/widget/element-subscribe/)** - The HT Mega Elementor MailChimp for WP widget is helpful in managing the look and feel of your MailChimp subscribe form content.
200
+
201
+ 79. **[Elementor WP Forms Widget](https://wphtmega.com/widget/element-wp-forms/)** - The HT Mega Elementor WPForms widget makes it simple to edit WPForms content on your website. This widget can help you control the content of WPForms if you've incorporated it into your webpages.
202
+
203
+ 80. **[Elementor WooCommerce add to cart Widget](https://wphtmega.com/widget/element-woocommerce-add-to-cart/)** - The WooCommerce add to Cart widget helps you create the add-to-cart button so that customers can add their desired items to the cart right away and make purchases easily.
204
+
205
+ 81. **[Elementor WooCommerce Category Widget](https://wphtmega.com/widget/element-woocommerce-category/)** - The WooCommerce Category Widget allows you to organize and categorize products on your WooCommerce site.
206
+
207
+ 82. **[Elementor WooCommerce Cart Page Widget](https://wphtmega.com/widget/element-woocommerce-cart-page/)** - The WooCommerce cart page widget comes into play for any WooCommerce website as it allows you to modify your cart layout with options to edit titles, labels, placeholders, etc.
208
+
209
+ 83. **[Elementor WooCommerce Checkout Page Widget](https://wphtmega.com/widget/element-checkout-page/)** - The WooCommerce Checkout widget helps you finetune your WooCommerce checkout page layout with ease. It comes with a plethora of options to embellish your WooCommerce checkout page.
210
+
211
+ 84. **[Elementor Special Day Offer Widget ](https://wphtmega.com/widget/element-special-day-offer/)** - This widget is a great way to entice customers with special deals. You can easily add banners and choose from different layouts that best showcase your offer, all through the HT Mega Elementor Special Day Offer Widget!
212
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
213
 
214
  == Features: ==
215
  * Fully responsive and mobile ready.
219
  * Every element enable / disable option panel.
220
  * 877 Google Font Supported.
221
  * Cross Browser Compatible.
222
+ * 15 Categories / Template Sets
223
  * 15 Page Templates
224
+
225
  == Exclusive HT Mega Pro Features: ==
226
+ * 39 Categories / Template Sets
227
+ * 789 Elementor Page Templates
228
  * Cross Domain Copy Paste
229
+ * Section Parallax Module
230
+ * Elementor Blog Search Page Builder
231
  * 404 Error Page Builder
232
  * Coming soon Page Builder
233
  * Blog Archive Category Wise Individual layout
244
  * Content Color Option
245
  * Cross Icon Color Option
246
 
247
+ == HT Mega Pro Elementor Widgets ==
248
+ 1. **[Elementor Info Box Widget (9 Styles) ](https://wphtmega.com/elementor-info-box-widget/)** - With it’s stunning info box widget, HT Mega Elementor Addons plugin allows you to create powerful feature boxes with the HT Mega Elementor Info Box Widget. In this widget, you can add a title, description and call to action in combination with images or icons to create something truly attractive and engaging.
249
+
250
+ 2. **[Elementor Lottie Widget (8 Styles) ](https://wphtmega.com/elementor-lottie-widget/)** - Why not grab a user's attention by adding captivating Lottie animations to your website? These lightweight and high-quality animation assets can be used with HT Mega Elementor Lottie Widget. This impressive Elementor widget comes with tons of controls and settings to take charge of your animations.
251
+
252
+ 3. **[Elementor Event Calendar Widget (5 Styles) ](https://wphtmega.com/elementor-event-calendar-widget/)** - Creating and managing a calendar can be time consuming. HT Mega Elementor event calendar widget allows you to create your own personalized calendar manually or use your Google calendar to display your events.
253
+
254
+ 4. **[Elementor Feature List Widget (Style 6) ](https://wphtmega.com/widget/elementor-feature-list-widget/)** Use the HT Mega Elementor Feature list widget to display your service features in style with some of their featured designs or create your own and customize it to suit your needs. It's surprisingly easy to use!
255
+
256
+ 5. **[Elementor Price Menu Widget (Style 4) ](https://wphtmega.com/widget/elementor-price-menu-widget/)** HT Mega Elementor Price Menu widget will give your website a distinctive look and help online shoppers find the perfect item with ease. Your menu or catalog will be easy on the eye while still being attractive.
257
+
258
+ 6. **[Elementor Social Network Widget (Style 7) ](https://wphtmega.com/widget/elementor-social-network-widget/)** HT Mega Elementor Social Icons Widget is an efficient widget that lets you add links for all of your social media channels in just a few moments. The best part? This Elementor social media widget is as simple as adding any social media icon to any screen or page of your site.
259
+
260
+ 7. **[Elementor Category List Widget (Style 8) ](https://wphtmega.com/widget/elementor-category-list-widget/)** HT Mega Elementor Category List Widget is easy to active, user-friendly and customizable saving you countless hours of time in the process of organizing your site content and categorizing them. Create an impressive list of categories with ease with this exclusive widget.
261
+
262
+ 8. **[Elementor Taxonomy Terms Widget (Style 5) ](https://wphtmega.com/widget/elementor-taxonomy-terms-widget/)** HT Mega Elementor Taxonomy Terms Widget for Elementor is an outstanding addon that lets you create different ways of displaying tags and categories on your website based on your needs.
263
+
264
+ 9. **[Elementor Background Switcher Widget (Style 6) ](https://wphtmega.com/widget/elementor-background-switcher-widget/)** HT Mega Elementor Background Switcher Widget can help you to create a great digital experience for your customers and facilitate the process of building responsive layouts. When you hover over one of these boxes it changes the background for the whole section. The background switcher Elementor widget also allows you to seamlessly create a variety of layouts.
265
+
266
+ 10. **[Elementor Team Carousel Widget (Style 5) ](https://wphtmega.com/elementor-team-carousel-widget/)** With HT Mega Elementor Team Carousel Widget,you can easily show off your team members in style on your Elementor website.Here you will find features you need at an affordable price like slides, and custom style. Use this Elementor Team Member Carousel widget to design stunning team sections.
267
+
268
+ 11. **[Elementor Interactive Promo Widget (Style 15) ](https://wphtmega.com/elementor-interactive-promo-widget/)** HT Mega Elementor Interactive Promo Widget is a highly configurable widget that will let you add attractive Interactive Promo to your website. It provides you with numerous unique Interactive Promo Styles to choose from.
269
+
270
+ 12. **[Elementor Icon Box Widget (Style 7) ](https://wphtmega.com/elementor-icon-box-widget/)** HT Mega Elementor Icon Box Widget Create more engaging, persuasive, and eye-catching content. It's easy to use, and offers a variety of customization options for your project.
271
+
272
+ 13. **[Elementor Page List Widget (Style 6) ](https://wphtmega.com/elementor-page-list-widget/)** You'll finally be able to set up a page list with a horizontal or vertical layout and customize it according to your needs by using the HT Mega Elementor Page List widget.
273
+
274
+ 14. **[Elementor Facebook Review Widget (Style 3) ](https://wphtmega.com/widget/elementor-facebook-review-widget/)** HT Mega Elementor Facebook Review Widget allows you to display a stunning showcase of your Facebook page info and reviews on your website.
275
+
276
+ 15. **[Elementor Breadcrumbs Widget (Style 9) ](https://wphtmega.com/elementor-breadcrumbs-widget/)** HT Mega Elementor Breadcrumbs Widget helps you visualize your breadcrumbs in different ways with a variety of customizable options. You can easily create one to suit your needs.
277
+
278
+ 16. **[Elementor Event Box Widget (Style 5) ](https://wphtmega.com/elementor-event-box-widget/)** HT Mega Elementor Event Box Widget enables you to display boxes of upcoming events on your Elementor page. You can create an upcoming event with an event title, event description, date, and any other relevant information.
279
+
280
+ 17. **[Elementor Filterable Gallery Widget (Style 7) ](https://wphtmega.com/elementor-filterable-gallery-widget/)** The HT Mega Elementor Filterable Gallery widget allows you to add a gallery with filtering options. Photos, projects images can be easily displayed using this widget. Visitors can filter items easily by category. This plugin has 7 default styles for filterable galleries, which can be customized easily from the widget settings panel.
281
+
282
+ 18. **[Elementor WhatsApp Chat Widget ](https://wphtmega.com/elementor-whatsapp-chat-widget/)** With HT Mega Elementor WhatsApp Widget, you can create a button that your website visitors will be able to text you directly from your site. It is a simple but effective way of communicating with clients.
283
 
284
  **[PURCHASE HT Mega PRO FROM OUR WEBSITE]( https://wphtmega.com/pricing/ )**
285
 
286
  == Free WooCommerce Plugins ==
287
+ > Are you searching for WooCommerce Elementor Addon?
288
+ > Try to use our best WooCommerce Elementor Addon - WooLentor
289
  > 42 Custom Grid Layouts
290
+ > 105+ Elementor Widget
291
  > [WooCommerce Template Builder](https://wordpress.org/plugins/woolentor-addons/)
292
 
 
 
293
 
294
  == Common Issues and Solutions: ==
295
  1. Elementor editor fails to load
296
+ Ans. It is due to your server PHP setting. You can increase PHP memory limit from wp-config.php file or php.ini file
297
+ [View Documentation](https://wphtmega.com/docs/general-widgets/how-to-increase-php-memory-limit-in-wordpress/)
298
+
299
  == Ask for it to your host ==
300
  > I’m interested in running the open-source [WordPress](https://wordpress.org/) web software and I was wondering if my account supported the following:
301
  > * PHP 7.3 or greater
302
  > * MySQL 5.6 or greater OR MariaDB 10.0 or greater
303
+ > * PHP memory_limit = 512M
304
  > * max_execution_time = 300
305
  > Thanks!
306
+
307
  == Need Help? ==
308
+ Is there any feature that you want to get in this plugin?
309
+ Needs assistance to use this plugin?
310
  Feel free to [Contact us](https://hasthemes.com/contact-us/) 💌
311
+
312
  == Check out our other projects ==
313
  * [WooLentor](https://wordpress.org/plugins/woolentor-addons/) - WooCommerce page builder for Elementor Addon. Create unlimited product grid, layouts, custom product and shop pages layouts.
314
+
315
+ * [Whols for WooCommerce Wholesale](https://wordpress.org/plugins/whols/) – Whols is an outstanding WordPress plugin for WooCommerce that allows store owners to set wholesale prices for the products of their online stores. This plugin enables you to show special wholesale prices to the wholesaler.
316
+
317
+ * [WP Plugin Manager](https://wordpress.org/plugins/wp-plugin-manager/) – Deactivate WordPress plugins per page will help to reduce page size, increase website performance and speed.
318
+
319
  Visit [HasThemes](https://hasthemes.com/) for more details about HTML, Shopify and WordPress products and services.
320
 
321
+
322
  == Changelog ==
323
+ = Version: 1.9.4 - Date: 2022-08-30 =
324
+ * Added: Button Height option in double button addon
325
+ * Added: Number of Rows set option in data table addon
326
+ * Fixed: Images bottom space issue in gallery Justify addon
327
+ * Fixed: Content box Margin & padding issue in team member addon
328
+
329
  = Version: 1.9.3 - Date: 2022-08-16 =
330
  * Added: Custom posts select option in single post addon
331
  * Fixed: Designation alignment issue in team member addon
357
  * Fixed: Conflict Accordion addon with LearnDash plugin.
358
 
359
  = Version: 1.8.7 - Date: 2022-05-14 =
360
+ * Updated: Make Third party Instagram feed addon compatible with latest version of Instagram feed plugin.
361
  * Fixed: Odd and even row's background color not working in Datatable addon.
362
  * Added: Styles in button and accordion addon.
363
 
1061
 
1062
  == Installation ==
1063
  This section describes how to install the HT Mega - Absolute Addons for Elementor Page Builder plugin and get it working.
1064
+
1065
  = 1) Install =
1066
+
1067
  1. Go to the WordPress Dashboard "Add New Plugin" section.
1068
  2. Search For "HT Mega".
1069
  3. Install, then Activate it.
1070
+
1071
  = OR: =
1072
  1. Unzip (if it is zipped) and Upload `ht-mega-for-elementor` folder to the `/wp-content/plugins/` directory
1073
  2. Activate the plugin through the 'Plugins' menu in WordPress
1074
+
1075
  = 2) Configure =
1076
+ 1. After installing and activate the plugin you will get a notice to install Elementor Plugin in WordPress ( If already install it then do not show notice. ).
1077
  2. To install the plugin click on the "Button" Install Elementor.
1078
  3. HTMega Addons Category will be appear in Elementor page Editor.
1079
 
1080
 
1081
  == Frequently Asked Questions ==
1082
 
1083
+ = Are HT Mega Elementor Addons & widgets compatible with any theme? =
1084
+
1085
  Yes, Definitely! The plugin is well-functional to be compatible with any WordPress theme.
1086
+
1087
+ = How often do you update the HT Mega Addons?
1088
+
1089
  HT Mega Addons for Elementor is updated on a regular basis. We add functionalities and improve the existing ones to ensure better user-friendliness.
1090
+
1091
+ = Does the HT Mega Require Any Coding Skills? =
1092
+
1093
+ HT Mega Elementor Addons has a set of Elementor widgets, a ready Elementor template library, and much more. You don’t need coding skills to use it as it’s all drag and drop.
1094
+
1095
  = Is the HT Mega Addons Responsive for smaller devices? =
1096
+
1097
  Yes, the HT Mega Elementor Addons plugin is well responsive for smaller devices.
1098
+
1099
  = How Many Free Widgets Does HT Mega Addons Offer? =
1100
+
1101
  The HT Mega Add-ons plugin offers over 84+ free widgets including WooCommerce widgets, 360+ ready blocks, 15+ landing pages, etc.
1102
+
1103
+ = How many Elementor Free Templates are available in HT Mega? =
1104
+
1105
+ There are a few pre-designed Elementor free templates available in HT Mega free version. However, in the pro version, you will get more templates for various pages.
1106
+
1107
  = Can I use HT Mega without the Elementor page builder? =
1108
+
1109
+ No, you cannot use it without Elementor since HT Mega is basically an Elementor powered page builder plugin. So, to use HT Mega, you must install Elementor first.
1110
+
1111
  = Is it necessary to use Elementor pro to have accessibility to the HT Mega Library? =
1112
+
1113
  No, Elementor Pro is not mandatory to access HT Mega Addons Library. These Elementor templates or blocks can be used with the free Elementor plugin.
1114
+
1115
  = What is the solution when the Elementor editor fails to load? =
1116
+
1117
  It is due to your server PHP setting. You can increase the PHP memory limit from the wp-config.php file or php.ini file. Please contact your hosting provider and ask to increase
1118
+
1119
  PHP 7.3 or greater
1120
  MySQL 5.6 or greater OR MariaDB 10.0 or greater
1121
  PHP memory_limit = 512M
1122
  max_execution_time = 300
1123
+
1124
  Or you can follow this link [Increase Memory Limit](https://wphtmega.com/doc/how-to-increase-php-memory-limit-in-wordpress/)
1125
+
1126
  = Is there any documentation for HT Mega Addons for Elementor? =
1127
+
1128
  Yes, there is excellent documentation. [View the Documentation](https://wphtmega.com/docs/)
1129
+
1130
  = Is there any tutorial video for HT Mega Addons for Elementor? =
1131
+
1132
  Yes, there are video tutorials available that can help you customize it as per your needs and choices. [Follow the video playlist from here ](https://www.youtube.com/watch?v=d7jAiAYusUg&list=PLk25BQFrj7wEEGUHn9x2zwOql990bZAo_&index=1)
1133
+
1134
  = What are the unique advanced features in HT Mega Addons? =
1135
+
1136
  The number of advanced features in HT Mega is vast. Some remarkably advanced features in this plugin include Header/Footer Builder, Theme/Template builder, Sales Notification, Menu Builder, Post Duplicator, etc.
1137
+
1138
+ = What are the pro version features available in the HT Mega Elementor Addons plugin? =
1139
+
1140
+ The pro version of HT Mega Elementor widgets give you access to numerous incredible features that include 39 Categories / Template Sets, 789 Elementor Page Templates, Cross-Domain Copy Paste, Blog Search Page Builder, Sales Upto Date Option, Parallax and many more. Moreover, there are over 18 modern exclusive widgets that will enhance the functionalities of your WordPress website even more.
1141
+
1142
  = Why is the Post Duplicator widget used? =
1143
+
1144
+ The post duplicator widget provides you with the simplest method for creating a clone of your website’s contents. With the help of Post Duplicator addon, you can replicate your website’s pages, posts, templates, and items.
1145
 
 
1146
 
1147
  == Screenshots ==
1148
  1. HT Mega Absolute Addons for Elementor Page Builder
1154
  7. Widgets Enable / Disable Option Panel
1155
  8. Settings Panel
1156
  9. Templates Library Options
1157
+ 10. Page Template Library Import Options