Version Description
Download this release
Release Info
Developer | averta |
Plugin | Shortcodes and extra features for Phlox theme |
Version | 2.5.20 |
Comparing to | |
See all releases |
Code changes from version 2.5.19 to 2.5.20
- README.txt +1 -1
- admin/assets/js/plugins.js +1 -1
- auxin-elements.php +1 -1
- includes/classes/class-auxin-demo-importer.php +23 -0
- includes/define.php +1 -1
- includes/elementor/widgets/recent-posts-grid-carousel.php +14 -0
- includes/general-functions.php +14 -0
- languages/auxin-elements.pot +194 -190
- public/assets/js/plugins.js +1 -1
README.txt
CHANGED
@@ -7,7 +7,7 @@ Tags: phlox, gallery, elementor, siteorigin, auxin, averta, auxin-elements, fram
|
|
7 |
Requires PHP: 5.4
|
8 |
Requires at least: 4.6
|
9 |
Tested up to: 5.4.1
|
10 |
-
Stable tag: 2.5.
|
11 |
License: GPLv3
|
12 |
License URI: http://www.gnu.org/licenses/gpl.html
|
13 |
|
7 |
Requires PHP: 5.4
|
8 |
Requires at least: 4.6
|
9 |
Tested up to: 5.4.1
|
10 |
+
Stable tag: 2.5.20
|
11 |
License: GPLv3
|
12 |
License URI: http://www.gnu.org/licenses/gpl.html
|
13 |
|
admin/assets/js/plugins.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
/*! Phlox Core Plugin - v2.5.
|
2 |
* All required javascript plugins for admin
|
3 |
* http://phlox.pro/
|
4 |
* Place any jQuery/helper plugins in here, instead of separate, slower script files!
|
1 |
+
/*! Phlox Core Plugin - v2.5.20 (2020-05)
|
2 |
* All required javascript plugins for admin
|
3 |
* http://phlox.pro/
|
4 |
* Place any jQuery/helper plugins in here, instead of separate, slower script files!
|
auxin-elements.php
CHANGED
@@ -12,7 +12,7 @@
|
|
12 |
* Plugin Name: Phlox Core Elements
|
13 |
* Plugin URI: https://wordpress.org/plugins/auxin-elements/
|
14 |
* Description: Exclusive and comprehensive plugin that extends the functionality of Phlox theme by adding new Elements, widgets and options.
|
15 |
-
* Version: 2.5.
|
16 |
* Author: averta
|
17 |
* Author URI: http://averta.net
|
18 |
* Text Domain: auxin-elements
|
12 |
* Plugin Name: Phlox Core Elements
|
13 |
* Plugin URI: https://wordpress.org/plugins/auxin-elements/
|
14 |
* Description: Exclusive and comprehensive plugin that extends the functionality of Phlox theme by adding new Elements, widgets and options.
|
15 |
+
* Version: 2.5.20
|
16 |
* Author: averta
|
17 |
* Author URI: http://averta.net
|
18 |
* Text Domain: auxin-elements
|
includes/classes/class-auxin-demo-importer.php
CHANGED
@@ -1048,16 +1048,36 @@ class Auxin_Demo_Importer {
|
|
1048 |
}
|
1049 |
}
|
1050 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1051 |
update_post_meta( get_the_ID(), '_elementor_data', wp_slash( $elementor_data ) );
|
1052 |
|
1053 |
$page_header_use_legacy = get_post_meta( get_the_ID(), 'page_header_use_legacy', true );
|
1054 |
if ( $page_header_use_legacy == 'no' ) {
|
|
|
1055 |
update_post_meta( get_the_ID(), 'page_elementor_header_edit_template', auxin_get_transient( "aux-elementor-library-{$old_id}-changs-to" ) );
|
1056 |
update_post_meta( get_the_ID(), 'page_elementor_header_template', auxin_get_transient( "aux-elementor-library-{$old_id}-changs-to" ) );
|
1057 |
}
|
1058 |
|
1059 |
$page_footer_use_legacy = get_post_meta( get_the_ID(), 'page_footer_use_legacy', true );
|
1060 |
if ( $page_footer_use_legacy == 'no' ) {
|
|
|
1061 |
update_post_meta( get_the_ID(), 'page_elementor_footer_edit_template', auxin_get_transient( "aux-elementor-library-{$old_id}-changs-to" ) );
|
1062 |
update_post_meta( get_the_ID(), 'page_elementor_footer_template', auxin_get_transient( "aux-elementor-library-{$old_id}-changs-to" ) );
|
1063 |
}
|
@@ -1651,6 +1671,9 @@ class Auxin_Demo_Importer {
|
|
1651 |
}
|
1652 |
|
1653 |
//Add auxin meta flag on attachment
|
|
|
|
|
|
|
1654 |
update_post_meta( $attach_id, 'auxin_import_id', $import_id );
|
1655 |
|
1656 |
return $attach_id;
|
1048 |
}
|
1049 |
}
|
1050 |
|
1051 |
+
// change hosted video url and id
|
1052 |
+
preg_match_all( '/"hosted_url":\{.*?\}/', $elementor_data, $hosted_vidoes, PREG_SET_ORDER );
|
1053 |
+
if ( ! empty( $hosted_vidoes ) ) {
|
1054 |
+
foreach( $hosted_vidoes as $key => $video ) {
|
1055 |
+
preg_match_all( '/"id":(["|\d]*)/', $video[0], $id, PREG_SET_ORDER );
|
1056 |
+
if ( !empty( $id ) ) {
|
1057 |
+
$new_id = auxin_get_transient( 'auxin_video_import_id' );
|
1058 |
+
if ( empty( $new_id ) || empty( $id[0][1] ) ) {
|
1059 |
+
continue;
|
1060 |
+
}
|
1061 |
+
$new_url = wp_get_attachment_url( $new_id );
|
1062 |
+
$new_url = str_replace( '/', '\/', $new_url );
|
1063 |
+
$new_video = '"hosted_url":{"url":"' . $new_url . '","id":"' . $new_id . '"}';
|
1064 |
+
$elementor_data = str_replace( $video[0], $new_video, $elementor_data );
|
1065 |
+
}
|
1066 |
+
}
|
1067 |
+
}
|
1068 |
+
|
1069 |
update_post_meta( get_the_ID(), '_elementor_data', wp_slash( $elementor_data ) );
|
1070 |
|
1071 |
$page_header_use_legacy = get_post_meta( get_the_ID(), 'page_header_use_legacy', true );
|
1072 |
if ( $page_header_use_legacy == 'no' ) {
|
1073 |
+
$old_id = get_post_meta( get_the_ID(), 'page_elementor_header_template', true );
|
1074 |
update_post_meta( get_the_ID(), 'page_elementor_header_edit_template', auxin_get_transient( "aux-elementor-library-{$old_id}-changs-to" ) );
|
1075 |
update_post_meta( get_the_ID(), 'page_elementor_header_template', auxin_get_transient( "aux-elementor-library-{$old_id}-changs-to" ) );
|
1076 |
}
|
1077 |
|
1078 |
$page_footer_use_legacy = get_post_meta( get_the_ID(), 'page_footer_use_legacy', true );
|
1079 |
if ( $page_footer_use_legacy == 'no' ) {
|
1080 |
+
$old_id = get_post_meta( get_the_ID(), 'page_elementor_footer_template', true );
|
1081 |
update_post_meta( get_the_ID(), 'page_elementor_footer_edit_template', auxin_get_transient( "aux-elementor-library-{$old_id}-changs-to" ) );
|
1082 |
update_post_meta( get_the_ID(), 'page_elementor_footer_template', auxin_get_transient( "aux-elementor-library-{$old_id}-changs-to" ) );
|
1083 |
}
|
1671 |
}
|
1672 |
|
1673 |
//Add auxin meta flag on attachment
|
1674 |
+
if ( $type == 'video/mp4' ) {
|
1675 |
+
auxin_set_transient( 'auxin_video_import_id', $attach_id );
|
1676 |
+
}
|
1677 |
update_post_meta( $attach_id, 'auxin_import_id', $import_id );
|
1678 |
|
1679 |
return $attach_id;
|
includes/define.php
CHANGED
@@ -12,7 +12,7 @@ if( ! defined( 'THEME_NAME' ) ){
|
|
12 |
}
|
13 |
|
14 |
|
15 |
-
define( 'AUXELS_VERSION' , '2.5.
|
16 |
|
17 |
define( 'AUXELS_SLUG' , 'auxin-elements' );
|
18 |
|
12 |
}
|
13 |
|
14 |
|
15 |
+
define( 'AUXELS_VERSION' , '2.5.20' );
|
16 |
|
17 |
define( 'AUXELS_SLUG' , 'auxin-elements' );
|
18 |
|
includes/elementor/widgets/recent-posts-grid-carousel.php
CHANGED
@@ -345,6 +345,19 @@ class RecentPostsGridCarousel extends Widget_Base {
|
|
345 |
)
|
346 |
);
|
347 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
348 |
$this->add_control(
|
349 |
'ignore_formats',
|
350 |
array(
|
@@ -1928,6 +1941,7 @@ class RecentPostsGridCarousel extends Widget_Base {
|
|
1928 |
$args = array(
|
1929 |
// Display section
|
1930 |
'show_media' => $settings['show_media'],
|
|
|
1931 |
'ignore_formats' => $settings['ignore_formats'],
|
1932 |
'preloadable' => $settings['preloadable'],
|
1933 |
'preload_preview' => $settings['preload_preview'],
|
345 |
)
|
346 |
);
|
347 |
|
348 |
+
$this->add_control(
|
349 |
+
'post_media_size',
|
350 |
+
array(
|
351 |
+
'label' => __('Media size','auxin-elements' ),
|
352 |
+
'type' => Controls_Manager::SELECT,
|
353 |
+
'options' => auxin_get_available_image_sizes(),
|
354 |
+
'default' => 'auto',
|
355 |
+
'condition' => array(
|
356 |
+
'show_media' => 'yes'
|
357 |
+
)
|
358 |
+
)
|
359 |
+
);
|
360 |
+
|
361 |
$this->add_control(
|
362 |
'ignore_formats',
|
363 |
array(
|
1941 |
$args = array(
|
1942 |
// Display section
|
1943 |
'show_media' => $settings['show_media'],
|
1944 |
+
'size' => $settings['post_media_size'],
|
1945 |
'ignore_formats' => $settings['ignore_formats'],
|
1946 |
'preloadable' => $settings['preloadable'],
|
1947 |
'preload_preview' => $settings['preload_preview'],
|
includes/general-functions.php
CHANGED
@@ -2489,4 +2489,18 @@ function auxin_list_pages() {
|
|
2489 |
}
|
2490 |
|
2491 |
return $list;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2492 |
}
|
2489 |
}
|
2490 |
|
2491 |
return $list;
|
2492 |
+
}
|
2493 |
+
|
2494 |
+
/**
|
2495 |
+
* Get List of available image sizes
|
2496 |
+
*
|
2497 |
+
* @return array
|
2498 |
+
*/
|
2499 |
+
function auxin_get_available_image_sizes() {
|
2500 |
+
|
2501 |
+
$image_sizes = get_intermediate_image_sizes();
|
2502 |
+
$auto_size = array( 'auto' => 'auto' );
|
2503 |
+
|
2504 |
+
return array_merge( $image_sizes, $auto_size );
|
2505 |
+
|
2506 |
}
|
languages/auxin-elements.pot
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
# Averta Copyright (c) {2020}
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
-
"Project-Id-Version: Phlox Core Elements 2.5.
|
5 |
"Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
|
6 |
-
"POT-Creation-Date: 2020-05-
|
7 |
"MIME-Version: 1.0\n"
|
8 |
"Content-Type: text/plain; charset=utf-8\n"
|
9 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -141,7 +141,7 @@ msgid "Subtitle Position"
|
|
141 |
msgstr ""
|
142 |
|
143 |
#: admin/includes/admin-hooks.php:124
|
144 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
145 |
#: includes/elementor/widgets/recent-posts-masonry.php:276
|
146 |
#: includes/elementor/widgets/theme-elements/site-title.php:122
|
147 |
#: includes/elements/recent-posts-grid-carousel.php:334
|
@@ -149,7 +149,7 @@ msgid "Before Title"
|
|
149 |
msgstr ""
|
150 |
|
151 |
#: admin/includes/admin-hooks.php:125
|
152 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
153 |
#: includes/elementor/widgets/recent-posts-masonry.php:275
|
154 |
#: includes/elementor/widgets/theme-elements/site-title.php:153
|
155 |
#: includes/elements/recent-posts-grid-carousel.php:333
|
@@ -1167,8 +1167,8 @@ msgstr ""
|
|
1167 |
#: includes/elementor/widgets/modern-button.php:150
|
1168 |
#: includes/elementor/widgets/quote.php:169
|
1169 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:252
|
1170 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
1171 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
1172 |
#: includes/elementor/widgets/recent-posts-masonry.php:1159
|
1173 |
#: includes/elementor/widgets/recent-posts-timeline.php:130
|
1174 |
#: includes/elementor/widgets/staff.php:846
|
@@ -1205,8 +1205,8 @@ msgstr ""
|
|
1205 |
#: includes/elementor/widgets/modern-button.php:146
|
1206 |
#: includes/elementor/widgets/modern-button.php:523
|
1207 |
#: includes/elementor/widgets/quote.php:165
|
1208 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
1209 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
1210 |
#: includes/elementor/widgets/recent-posts-masonry.php:1155
|
1211 |
#: includes/elementor/widgets/recent-posts-timeline.php:134
|
1212 |
#: includes/elementor/widgets/staff.php:827
|
@@ -1408,14 +1408,14 @@ msgstr ""
|
|
1408 |
#: includes/elementor/widgets/modern-button.php:633
|
1409 |
#: includes/elementor/widgets/recent-comments.php:201
|
1410 |
#: includes/elementor/widgets/recent-comments.php:284
|
1411 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
1412 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
1413 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
1414 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
1415 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
1416 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
1417 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
1418 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
1419 |
#: includes/elementor/widgets/recent-posts-land-style.php:612
|
1420 |
#: includes/elementor/widgets/recent-posts-land-style.php:716
|
1421 |
#: includes/elementor/widgets/recent-posts-land-style.php:893
|
@@ -1612,7 +1612,7 @@ msgid ""
|
|
1612 |
msgstr ""
|
1613 |
|
1614 |
#: admin/includes/metaboxes/metabox-fields-page-template.php:27
|
1615 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
1616 |
#: includes/elements/recent-posts-grid-carousel.php:467
|
1617 |
msgid "Before Content"
|
1618 |
msgstr ""
|
@@ -1626,7 +1626,7 @@ msgid "Above Content, Boxed Layout"
|
|
1626 |
msgstr ""
|
1627 |
|
1628 |
#: admin/includes/metaboxes/metabox-fields-page-template.php:30
|
1629 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
1630 |
#: includes/elements/recent-posts-grid-carousel.php:466
|
1631 |
msgid "After Content"
|
1632 |
msgstr ""
|
@@ -1910,7 +1910,7 @@ msgid "Importing Media"
|
|
1910 |
msgstr ""
|
1911 |
|
1912 |
#: includes/classes/class-auxin-demo-importer.php:281
|
1913 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
1914 |
msgid "Importing Users"
|
1915 |
msgstr ""
|
1916 |
|
@@ -1940,11 +1940,11 @@ msgstr ""
|
|
1940 |
msgid "Importing Sliders"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
1944 |
msgid "Preparing Site ..."
|
1945 |
msgstr ""
|
1946 |
|
1947 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
1948 |
msgid "All steps are successful"
|
1949 |
msgstr ""
|
1950 |
|
@@ -2924,8 +2924,8 @@ msgstr ""
|
|
2924 |
#: includes/elementor/widgets/modern-button.php:154
|
2925 |
#: includes/elementor/widgets/modern-button.php:524
|
2926 |
#: includes/elementor/widgets/quote.php:173
|
2927 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
2928 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
2929 |
#: includes/elementor/widgets/recent-posts-masonry.php:1163
|
2930 |
#: includes/elementor/widgets/recent-posts-timeline.php:138
|
2931 |
#: includes/elementor/widgets/staff.php:819
|
@@ -3101,7 +3101,7 @@ msgid "Author Meta"
|
|
3101 |
msgstr ""
|
3102 |
|
3103 |
#: includes/elementor/modules/dynamic-tags/author-name.php:18
|
3104 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
3105 |
#: includes/elementor/widgets/recent-posts-land-style.php:291
|
3106 |
#: includes/elementor/widgets/recent-posts-masonry.php:386
|
3107 |
#: includes/elementor/widgets/recent-posts-timeline.php:315
|
@@ -3163,7 +3163,7 @@ msgstr ""
|
|
3163 |
#: includes/elementor/widgets/heading-modern.php:270
|
3164 |
#: includes/elementor/widgets/icon.php:154
|
3165 |
#: includes/elementor/widgets/modern-button.php:117
|
3166 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
3167 |
#: includes/elementor/widgets/text.php:321
|
3168 |
#: includes/elementor/widgets/theme-elements/logo.php:182
|
3169 |
#: includes/elementor/widgets/theme-elements/logo.php:196
|
@@ -3180,8 +3180,8 @@ msgstr ""
|
|
3180 |
#: includes/elementor/widgets/gallery.php:305
|
3181 |
#: includes/elementor/widgets/image.php:302
|
3182 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:235
|
3183 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
3184 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
3185 |
#: includes/elementor/widgets/recent-posts-land-style.php:292
|
3186 |
#: includes/elementor/widgets/recent-posts-land-style.php:494
|
3187 |
#: includes/elementor/widgets/recent-posts-masonry.php:387
|
@@ -3348,8 +3348,8 @@ msgstr ""
|
|
3348 |
#: includes/elementor/widgets/accordion.php:534
|
3349 |
#: includes/elementor/widgets/heading-modern.php:107
|
3350 |
#: includes/elementor/widgets/recent-comments.php:171
|
3351 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
3352 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
3353 |
#: includes/elementor/widgets/recent-posts-land-style.php:414
|
3354 |
#: includes/elementor/widgets/recent-posts-land-style.php:573
|
3355 |
#: includes/elementor/widgets/recent-posts-masonry.php:510
|
@@ -3431,7 +3431,7 @@ msgstr ""
|
|
3431 |
#: includes/elementor/widgets/carousel-navigation.php:105
|
3432 |
#: includes/elementor/widgets/divider.php:148
|
3433 |
#: includes/elementor/widgets/mailchimp.php:137
|
3434 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
3435 |
#: includes/elementor/widgets/theme-elements/current-time.php:109
|
3436 |
#: includes/elementor/widgets/theme-elements/menu.php:994
|
3437 |
#: includes/elements/image.php:98 includes/elements/staff.php:113
|
@@ -3630,7 +3630,7 @@ msgstr ""
|
|
3630 |
|
3631 |
#: includes/elementor/modules/dynamic-tags/user-info.php:76
|
3632 |
#: includes/elementor/widgets/gallery.php:304
|
3633 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
3634 |
#: includes/elementor/widgets/recent-posts-land-style.php:415
|
3635 |
#: includes/elementor/widgets/recent-posts-masonry.php:511
|
3636 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:406
|
@@ -3687,7 +3687,7 @@ msgstr ""
|
|
3687 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:130
|
3688 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:169
|
3689 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:225
|
3690 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
3691 |
#: includes/elementor/widgets/recent-posts-land-style.php:419
|
3692 |
#: includes/elementor/widgets/recent-posts-masonry.php:515
|
3693 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:410
|
@@ -3774,7 +3774,7 @@ msgstr ""
|
|
3774 |
|
3775 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:276
|
3776 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:345
|
3777 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
3778 |
#: includes/elementor/widgets/recent-posts-land-style.php:412
|
3779 |
#: includes/elementor/widgets/recent-posts-masonry.php:508
|
3780 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:403
|
@@ -3848,7 +3848,7 @@ msgstr ""
|
|
3848 |
|
3849 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:347
|
3850 |
#: includes/elementor/widgets/gallery.php:302
|
3851 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
3852 |
#: includes/elementor/widgets/recent-posts-land-style.php:413
|
3853 |
#: includes/elementor/widgets/recent-posts-masonry.php:509
|
3854 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:404
|
@@ -3872,7 +3872,7 @@ msgid "Menu Order"
|
|
3872 |
msgstr ""
|
3873 |
|
3874 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:348
|
3875 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
3876 |
#: includes/elementor/widgets/recent-posts-land-style.php:416
|
3877 |
#: includes/elementor/widgets/recent-posts-masonry.php:512
|
3878 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:407
|
@@ -3896,7 +3896,7 @@ msgstr ""
|
|
3896 |
|
3897 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:356
|
3898 |
#: includes/elementor/widgets/gallery.php:282
|
3899 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
3900 |
#: includes/elementor/widgets/recent-posts-land-style.php:428
|
3901 |
#: includes/elementor/widgets/recent-posts-masonry.php:524
|
3902 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:419
|
@@ -4153,7 +4153,7 @@ msgstr ""
|
|
4153 |
#: includes/elementor/widgets/modern-button.php:386
|
4154 |
#: includes/elementor/widgets/modern-button.php:617
|
4155 |
#: includes/elementor/widgets/modern-button.php:716
|
4156 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4157 |
#: includes/elementor/widgets/recent-posts-land-style.php:552
|
4158 |
#: includes/elementor/widgets/recent-posts-masonry.php:630
|
4159 |
#: includes/elementor/widgets/recent-posts-timeline.php:577
|
@@ -4206,14 +4206,14 @@ msgstr ""
|
|
4206 |
#: includes/elementor/widgets/modern-button.php:534
|
4207 |
#: includes/elementor/widgets/recent-comments.php:181
|
4208 |
#: includes/elementor/widgets/recent-comments.php:264
|
4209 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4210 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4211 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4212 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4213 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4214 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4215 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4216 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4217 |
#: includes/elementor/widgets/recent-posts-land-style.php:586
|
4218 |
#: includes/elementor/widgets/recent-posts-land-style.php:690
|
4219 |
#: includes/elementor/widgets/recent-posts-land-style.php:873
|
@@ -4341,7 +4341,7 @@ msgstr ""
|
|
4341 |
#: includes/elementor/widgets/modern-button.php:605
|
4342 |
#: includes/elementor/widgets/modern-button.php:704
|
4343 |
#: includes/elementor/widgets/quote.php:333
|
4344 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4345 |
#: includes/elementor/widgets/staff.php:778
|
4346 |
#: includes/elementor/widgets/tabs.php:210
|
4347 |
#: includes/elementor/widgets/tabs.php:467
|
@@ -4418,15 +4418,15 @@ msgstr ""
|
|
4418 |
#: includes/elementor/widgets/recent-comments.php:208
|
4419 |
#: includes/elementor/widgets/recent-comments.php:271
|
4420 |
#: includes/elementor/widgets/recent-comments.php:291
|
4421 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4422 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4423 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4424 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4425 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4426 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4427 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4428 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4429 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4430 |
#: includes/elementor/widgets/recent-posts-land-style.php:596
|
4431 |
#: includes/elementor/widgets/recent-posts-land-style.php:622
|
4432 |
#: includes/elementor/widgets/recent-posts-land-style.php:700
|
@@ -4518,7 +4518,7 @@ msgid "Audio Player"
|
|
4518 |
msgstr ""
|
4519 |
|
4520 |
#: includes/elementor/widgets/audio.php:95
|
4521 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4522 |
#: includes/elements/audio.php:15
|
4523 |
msgid "Audio"
|
4524 |
msgstr ""
|
@@ -4566,24 +4566,24 @@ msgstr ""
|
|
4566 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:282
|
4567 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:297
|
4568 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:340
|
4569 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4570 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4571 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4572 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4573 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4574 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4575 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4576 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4577 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4578 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4579 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4580 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:556
|
4581 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:569
|
4582 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4583 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4584 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4585 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4586 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
|
|
4587 |
#: includes/elementor/widgets/recent-posts-land-style.php:127
|
4588 |
#: includes/elementor/widgets/recent-posts-land-style.php:139
|
4589 |
#: includes/elementor/widgets/recent-posts-land-style.php:181
|
@@ -4712,24 +4712,24 @@ msgstr ""
|
|
4712 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:283
|
4713 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:298
|
4714 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:341
|
4715 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4716 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4717 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4718 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4719 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4720 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4721 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4722 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4723 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4724 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4725 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4726 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:557
|
4727 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:570
|
4728 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4729 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4730 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4731 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4732 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
|
|
4733 |
#: includes/elementor/widgets/recent-posts-land-style.php:128
|
4734 |
#: includes/elementor/widgets/recent-posts-land-style.php:140
|
4735 |
#: includes/elementor/widgets/recent-posts-land-style.php:182
|
@@ -4895,7 +4895,7 @@ msgid "Style"
|
|
4895 |
msgstr ""
|
4896 |
|
4897 |
#: includes/elementor/widgets/before-after.php:155
|
4898 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4899 |
#: includes/elementor/widgets/recent-posts-land-style.php:468
|
4900 |
#: includes/elementor/widgets/recent-posts-masonry.php:564
|
4901 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:459
|
@@ -4985,7 +4985,7 @@ msgstr ""
|
|
4985 |
|
4986 |
#: includes/elementor/widgets/button.php:148
|
4987 |
#: includes/elementor/widgets/heading-modern.php:1038
|
4988 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4989 |
#: includes/elementor/widgets/recent-posts-masonry.php:1073
|
4990 |
#: includes/elementor/widgets/text.php:1373
|
4991 |
msgid "Wrapper"
|
@@ -5066,8 +5066,8 @@ msgstr ""
|
|
5066 |
|
5067 |
#: includes/elementor/widgets/button.php:230
|
5068 |
#: includes/elementor/widgets/carousel-navigation.php:164
|
5069 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5070 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5071 |
#: includes/elementor/widgets/recent-posts-masonry.php:1150
|
5072 |
#: includes/elementor/widgets/theme-elements/current-time.php:131
|
5073 |
msgid "Align"
|
@@ -5082,14 +5082,14 @@ msgstr ""
|
|
5082 |
#: includes/elementor/widgets/modern-button.php:357
|
5083 |
#: includes/elementor/widgets/modern-button.php:576
|
5084 |
#: includes/elementor/widgets/modern-button.php:675
|
5085 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5086 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5087 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5088 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5089 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5090 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5091 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5092 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5093 |
#: includes/elementor/widgets/recent-posts-masonry.php:1091
|
5094 |
#: includes/elementor/widgets/recent-posts-masonry.php:1129
|
5095 |
#: includes/elementor/widgets/recent-posts-masonry.php:1226
|
@@ -5193,8 +5193,8 @@ msgstr ""
|
|
5193 |
#: includes/elementor/widgets/modern-button.php:410
|
5194 |
#: includes/elementor/widgets/quote.php:98
|
5195 |
#: includes/elementor/widgets/quote.php:148
|
5196 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5197 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5198 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:287
|
5199 |
#: includes/elementor/widgets/theme-elements/current-time.php:163
|
5200 |
#: includes/elementor/widgets/theme-elements/modern-search.php:118
|
@@ -5214,8 +5214,8 @@ msgstr ""
|
|
5214 |
#: includes/elementor/widgets/image.php:683
|
5215 |
#: includes/elementor/widgets/modern-button.php:450
|
5216 |
#: includes/elementor/widgets/modern-button.php:488
|
5217 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5218 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5219 |
#: includes/elementor/widgets/recent-posts-masonry.php:1255
|
5220 |
#: includes/elementor/widgets/recent-posts-masonry.php:1311
|
5221 |
#: includes/elementor/widgets/text.php:706
|
@@ -5260,7 +5260,7 @@ msgid "Previous Button"
|
|
5260 |
msgstr ""
|
5261 |
|
5262 |
#: includes/elementor/widgets/carousel-navigation.php:128
|
5263 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5264 |
#: includes/elementor/widgets/recent-posts-land-style.php:502
|
5265 |
#: includes/elementor/widgets/recent-posts-masonry.php:598
|
5266 |
#: includes/elementor/widgets/recent-posts-tiles.php:395
|
@@ -5986,7 +5986,7 @@ msgid "Image spacing"
|
|
5986 |
msgstr ""
|
5987 |
|
5988 |
#: includes/elementor/widgets/gallery.php:188
|
5989 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5990 |
#: includes/elementor/widgets/recent-posts-land-style.php:534
|
5991 |
#: includes/elementor/widgets/recent-posts-timeline.php:559
|
5992 |
#: includes/elementor/widgets/recent-products.php:504
|
@@ -6237,8 +6237,8 @@ msgstr ""
|
|
6237 |
#: includes/elementor/widgets/image.php:110
|
6238 |
#: includes/elementor/widgets/image.php:165
|
6239 |
#: includes/elementor/widgets/image.php:418
|
6240 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6241 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6242 |
#: includes/elementor/widgets/recent-posts-land-style.php:523
|
6243 |
#: includes/elementor/widgets/recent-posts-masonry.php:619
|
6244 |
#: includes/elementor/widgets/recent-posts-timeline.php:548
|
@@ -6342,7 +6342,7 @@ msgid "Image alignment in block."
|
|
6342 |
msgstr ""
|
6343 |
|
6344 |
#: includes/elementor/widgets/image.php:343
|
6345 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6346 |
#: includes/elementor/widgets/recent-posts-land-style.php:137
|
6347 |
#: includes/elementor/widgets/recent-posts-masonry.php:205
|
6348 |
#: includes/elementor/widgets/recent-posts-timeline.php:192
|
@@ -6353,7 +6353,7 @@ msgid "Preload image"
|
|
6353 |
msgstr ""
|
6354 |
|
6355 |
#: includes/elementor/widgets/image.php:355
|
6356 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6357 |
#: includes/elementor/widgets/recent-posts-land-style.php:152
|
6358 |
#: includes/elementor/widgets/recent-posts-masonry.php:220
|
6359 |
#: includes/elementor/widgets/recent-posts-timeline.php:207
|
@@ -6364,7 +6364,7 @@ msgid "While loading image display"
|
|
6364 |
msgstr ""
|
6365 |
|
6366 |
#: includes/elementor/widgets/image.php:370
|
6367 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6368 |
#: includes/elementor/widgets/recent-posts-land-style.php:167
|
6369 |
#: includes/elementor/widgets/recent-posts-masonry.php:235
|
6370 |
#: includes/elementor/widgets/recent-posts-timeline.php:222
|
@@ -6398,8 +6398,8 @@ msgstr ""
|
|
6398 |
|
6399 |
#: includes/elementor/widgets/image.php:662
|
6400 |
#: includes/elementor/widgets/quote.php:186
|
6401 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6402 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6403 |
#: includes/elementor/widgets/recent-posts-masonry.php:1117
|
6404 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:325
|
6405 |
#: includes/elementor/widgets/theme-elements/modern-search.php:586
|
@@ -6569,11 +6569,11 @@ msgstr ""
|
|
6569 |
|
6570 |
#: includes/elementor/widgets/recent-comments.php:232
|
6571 |
#: includes/elementor/widgets/recent-comments.php:315
|
6572 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6573 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6574 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6575 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6576 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6577 |
#: includes/elementor/widgets/recent-posts-land-style.php:652
|
6578 |
#: includes/elementor/widgets/recent-posts-land-style.php:756
|
6579 |
#: includes/elementor/widgets/recent-posts-land-style.php:838
|
@@ -6607,7 +6607,7 @@ msgid "Meta Info"
|
|
6607 |
msgstr ""
|
6608 |
|
6609 |
#: includes/elementor/widgets/recent-comments.php:331
|
6610 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6611 |
#: includes/elementor/widgets/recent-posts-land-style.php:775
|
6612 |
#: includes/elementor/widgets/recent-posts-masonry.php:903
|
6613 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:677
|
@@ -6846,10 +6846,14 @@ msgid "Display post media (image, video, etc)"
|
|
6846 |
msgstr ""
|
6847 |
|
6848 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:351
|
|
|
|
|
|
|
|
|
6849 |
msgid "Ignore post formats media"
|
6850 |
msgstr ""
|
6851 |
|
6852 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6853 |
#: includes/elementor/widgets/recent-posts-land-style.php:179
|
6854 |
#: includes/elementor/widgets/recent-posts-masonry.php:247
|
6855 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:299
|
@@ -6862,11 +6866,11 @@ msgstr ""
|
|
6862 |
msgid "Display post title"
|
6863 |
msgstr ""
|
6864 |
|
6865 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6866 |
msgid "Title Trim"
|
6867 |
msgstr ""
|
6868 |
|
6869 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6870 |
#: includes/elementor/widgets/recent-posts-land-style.php:191
|
6871 |
#: includes/elementor/widgets/recent-posts-masonry.php:259
|
6872 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:311
|
@@ -6875,17 +6879,17 @@ msgstr ""
|
|
6875 |
msgid "Display post info"
|
6876 |
msgstr ""
|
6877 |
|
6878 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6879 |
msgid "Display format icon"
|
6880 |
msgstr ""
|
6881 |
|
6882 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6883 |
#: includes/elementor/widgets/recent-posts-masonry.php:271
|
6884 |
#: includes/elements/recent-posts-grid-carousel.php:325
|
6885 |
msgid "Post info position"
|
6886 |
msgstr ""
|
6887 |
|
6888 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6889 |
#: includes/elementor/widgets/recent-posts-land-style.php:204
|
6890 |
#: includes/elementor/widgets/recent-posts-masonry.php:287
|
6891 |
#: includes/elementor/widgets/recent-products.php:278
|
@@ -6895,43 +6899,43 @@ msgstr ""
|
|
6895 |
msgid "Display Categories"
|
6896 |
msgstr ""
|
6897 |
|
6898 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6899 |
msgid "Display Category Badge"
|
6900 |
msgstr ""
|
6901 |
|
6902 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6903 |
#: includes/elementor/widgets/recent-posts-land-style.php:219
|
6904 |
#: includes/elementor/widgets/recent-posts-masonry.php:302
|
6905 |
#: includes/elements/recent-posts-grid-carousel.php:363
|
6906 |
msgid "Display Date"
|
6907 |
msgstr ""
|
6908 |
|
6909 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6910 |
#: includes/elementor/widgets/recent-posts-land-style.php:300
|
6911 |
#: includes/elementor/widgets/recent-posts-masonry.php:396
|
6912 |
#: includes/elementor/widgets/recent-posts-timeline.php:325
|
6913 |
msgid "Display Author in Header"
|
6914 |
msgstr ""
|
6915 |
|
6916 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6917 |
#: includes/elementor/widgets/recent-posts-land-style.php:301
|
6918 |
#: includes/elementor/widgets/recent-posts-masonry.php:397
|
6919 |
#: includes/elementor/widgets/recent-posts-timeline.php:326
|
6920 |
msgid "Enable it to display author name in header"
|
6921 |
msgstr ""
|
6922 |
|
6923 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6924 |
#: includes/elementor/widgets/recent-posts-masonry.php:317
|
6925 |
#: includes/elements/recent-posts-grid-carousel.php:313
|
6926 |
msgid "Display post content"
|
6927 |
msgstr ""
|
6928 |
|
6929 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6930 |
#: includes/elementor/widgets/recent-posts-land-style.php:234
|
6931 |
msgid "Display Comments Number"
|
6932 |
msgstr ""
|
6933 |
|
6934 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6935 |
#: includes/elementor/widgets/recent-posts-land-style.php:246
|
6936 |
#: includes/elementor/widgets/recent-posts-masonry.php:329
|
6937 |
#: includes/elementor/widgets/recent-posts-timeline.php:258
|
@@ -6941,7 +6945,7 @@ msgstr ""
|
|
6941 |
msgid "Display like button"
|
6942 |
msgstr ""
|
6943 |
|
6944 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6945 |
#: includes/elementor/widgets/recent-posts-land-style.php:258
|
6946 |
#: includes/elementor/widgets/recent-posts-masonry.php:353
|
6947 |
#: includes/elementor/widgets/recent-posts-timeline.php:282
|
@@ -6951,7 +6955,7 @@ msgstr ""
|
|
6951 |
msgid "Display excerpt"
|
6952 |
msgstr ""
|
6953 |
|
6954 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6955 |
#: includes/elementor/widgets/recent-posts-land-style.php:259
|
6956 |
#: includes/elementor/widgets/recent-posts-masonry.php:354
|
6957 |
#: includes/elementor/widgets/recent-posts-timeline.php:283
|
@@ -6961,7 +6965,7 @@ msgstr ""
|
|
6961 |
msgid "Enable it to display post summary instead of full content."
|
6962 |
msgstr ""
|
6963 |
|
6964 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6965 |
#: includes/elementor/widgets/recent-posts-land-style.php:271
|
6966 |
#: includes/elementor/widgets/recent-posts-masonry.php:366
|
6967 |
#: includes/elementor/widgets/recent-posts-timeline.php:295
|
@@ -6974,7 +6978,7 @@ msgstr ""
|
|
6974 |
msgid "Excerpt length"
|
6975 |
msgstr ""
|
6976 |
|
6977 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6978 |
#: includes/elementor/widgets/recent-posts-land-style.php:272
|
6979 |
#: includes/elementor/widgets/recent-posts-masonry.php:367
|
6980 |
#: includes/elementor/widgets/recent-posts-timeline.php:296
|
@@ -6985,7 +6989,7 @@ msgstr ""
|
|
6985 |
msgid "Specify summary content in character."
|
6986 |
msgstr ""
|
6987 |
|
6988 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6989 |
#: includes/elementor/widgets/recent-posts-land-style.php:284
|
6990 |
#: includes/elementor/widgets/recent-posts-masonry.php:379
|
6991 |
#: includes/elementor/widgets/recent-posts-timeline.php:308
|
@@ -6996,7 +7000,7 @@ msgstr ""
|
|
6996 |
msgid "Display author or read more"
|
6997 |
msgstr ""
|
6998 |
|
6999 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7000 |
#: includes/elementor/widgets/recent-posts-land-style.php:286
|
7001 |
#: includes/elementor/widgets/recent-posts-masonry.php:381
|
7002 |
#: includes/elementor/widgets/recent-posts-timeline.php:310
|
@@ -7007,8 +7011,8 @@ msgstr ""
|
|
7007 |
msgid "Specifies whether to show author or read more on each post."
|
7008 |
msgstr ""
|
7009 |
|
7010 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7011 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7012 |
#: includes/elementor/widgets/recent-posts-land-style.php:290
|
7013 |
#: includes/elementor/widgets/recent-posts-masonry.php:385
|
7014 |
#: includes/elementor/widgets/recent-posts-masonry.php:1208
|
@@ -7021,25 +7025,25 @@ msgstr ""
|
|
7021 |
msgid "Read More"
|
7022 |
msgstr ""
|
7023 |
|
7024 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7025 |
#: includes/elementor/widgets/recent-posts-land-style.php:316
|
7026 |
#: includes/elementor/widgets/recent-posts-masonry.php:412
|
7027 |
#: includes/elementor/widgets/recent-posts-timeline.php:341
|
7028 |
msgid "Display Author in Footer"
|
7029 |
msgstr ""
|
7030 |
|
7031 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7032 |
#: includes/elementor/widgets/recent-posts-land-style.php:317
|
7033 |
#: includes/elementor/widgets/recent-posts-masonry.php:413
|
7034 |
#: includes/elementor/widgets/recent-posts-timeline.php:342
|
7035 |
msgid "Enable it to display author name in footer"
|
7036 |
msgstr ""
|
7037 |
|
7038 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7039 |
msgid "Meta info position"
|
7040 |
msgstr ""
|
7041 |
|
7042 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7043 |
#: includes/elementor/widgets/recent-posts-land-style.php:338
|
7044 |
#: includes/elementor/widgets/recent-posts-masonry.php:434
|
7045 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:329
|
@@ -7126,11 +7130,11 @@ msgstr ""
|
|
7126 |
msgid "Query"
|
7127 |
msgstr ""
|
7128 |
|
7129 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7130 |
msgid "Use wp query"
|
7131 |
msgstr ""
|
7132 |
|
7133 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7134 |
#: includes/elementor/widgets/recent-posts-land-style.php:345
|
7135 |
#: includes/elementor/widgets/recent-posts-masonry.php:441
|
7136 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:336
|
@@ -7149,7 +7153,7 @@ msgstr ""
|
|
7149 |
msgid "Categories"
|
7150 |
msgstr ""
|
7151 |
|
7152 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7153 |
#: includes/elementor/widgets/recent-posts-land-style.php:346
|
7154 |
#: includes/elementor/widgets/recent-posts-masonry.php:442
|
7155 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:337
|
@@ -7167,7 +7171,7 @@ msgstr ""
|
|
7167 |
msgid "Specifies a category that you want to show posts from it."
|
7168 |
msgstr ""
|
7169 |
|
7170 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7171 |
#: includes/elementor/widgets/recent-posts-land-style.php:357
|
7172 |
#: includes/elementor/widgets/recent-posts-masonry.php:453
|
7173 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:348
|
@@ -7184,7 +7188,7 @@ msgstr ""
|
|
7184 |
msgid "Number of posts to show"
|
7185 |
msgstr ""
|
7186 |
|
7187 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7188 |
#: includes/elementor/widgets/recent-posts-land-style.php:369
|
7189 |
#: includes/elementor/widgets/recent-posts-masonry.php:465
|
7190 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:360
|
@@ -7201,35 +7205,35 @@ msgstr ""
|
|
7201 |
msgid "Exclude posts without media"
|
7202 |
msgstr ""
|
7203 |
|
7204 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7205 |
#: includes/elements/recent-posts-timeline.php:107
|
7206 |
msgid "Exclude all custom post formats"
|
7207 |
msgstr ""
|
7208 |
|
7209 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7210 |
msgid "Include custom post formats"
|
7211 |
msgstr ""
|
7212 |
|
7213 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7214 |
msgid "Aside"
|
7215 |
msgstr ""
|
7216 |
|
7217 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7218 |
#: includes/elements/gallery.php:15
|
7219 |
msgid "Gallery"
|
7220 |
msgstr ""
|
7221 |
|
7222 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7223 |
#: includes/elements/quote.php:15
|
7224 |
msgid "Quote"
|
7225 |
msgstr ""
|
7226 |
|
7227 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7228 |
#: includes/elementor/widgets/video.php:94 includes/elements/video.php:15
|
7229 |
msgid "Video"
|
7230 |
msgstr ""
|
7231 |
|
7232 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7233 |
#: includes/elementor/widgets/recent-posts-land-style.php:393
|
7234 |
#: includes/elementor/widgets/recent-posts-masonry.php:489
|
7235 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:384
|
@@ -7245,7 +7249,7 @@ msgstr ""
|
|
7245 |
msgid "Exclude quote and link post formats"
|
7246 |
msgstr ""
|
7247 |
|
7248 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7249 |
#: includes/elementor/widgets/recent-posts-land-style.php:408
|
7250 |
#: includes/elementor/widgets/recent-posts-masonry.php:504
|
7251 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:399
|
@@ -7267,7 +7271,7 @@ msgstr ""
|
|
7267 |
msgid "Order by"
|
7268 |
msgstr ""
|
7269 |
|
7270 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7271 |
#: includes/elementor/widgets/recent-posts-land-style.php:417
|
7272 |
#: includes/elementor/widgets/recent-posts-masonry.php:513
|
7273 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:408
|
@@ -7289,7 +7293,7 @@ msgstr ""
|
|
7289 |
msgid "Comments"
|
7290 |
msgstr ""
|
7291 |
|
7292 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7293 |
#: includes/elementor/widgets/recent-posts-land-style.php:418
|
7294 |
#: includes/elementor/widgets/recent-posts-masonry.php:514
|
7295 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:409
|
@@ -7311,7 +7315,7 @@ msgstr ""
|
|
7311 |
msgid "Date Modified"
|
7312 |
msgstr ""
|
7313 |
|
7314 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7315 |
#: includes/elementor/widgets/recent-posts-land-style.php:420
|
7316 |
#: includes/elementor/widgets/recent-posts-masonry.php:516
|
7317 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:411
|
@@ -7330,7 +7334,7 @@ msgstr ""
|
|
7330 |
msgid "Inserted Post IDs"
|
7331 |
msgstr ""
|
7332 |
|
7333 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7334 |
#: includes/elementor/widgets/recent-posts-land-style.php:432
|
7335 |
#: includes/elementor/widgets/recent-posts-masonry.php:528
|
7336 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:423
|
@@ -7352,7 +7356,7 @@ msgstr ""
|
|
7352 |
msgid "Descending"
|
7353 |
msgstr ""
|
7354 |
|
7355 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7356 |
#: includes/elementor/widgets/recent-posts-land-style.php:433
|
7357 |
#: includes/elementor/widgets/recent-posts-masonry.php:529
|
7358 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:424
|
@@ -7374,7 +7378,7 @@ msgstr ""
|
|
7374 |
msgid "Ascending"
|
7375 |
msgstr ""
|
7376 |
|
7377 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7378 |
#: includes/elementor/widgets/recent-posts-land-style.php:441
|
7379 |
#: includes/elementor/widgets/recent-posts-masonry.php:537
|
7380 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:432
|
@@ -7389,7 +7393,7 @@ msgstr ""
|
|
7389 |
msgid "Only posts"
|
7390 |
msgstr ""
|
7391 |
|
7392 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7393 |
#: includes/elementor/widgets/recent-posts-land-style.php:442
|
7394 |
#: includes/elementor/widgets/recent-posts-masonry.php:538
|
7395 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:433
|
@@ -7407,7 +7411,7 @@ msgid ""
|
|
7407 |
"53,34,87,25)."
|
7408 |
msgstr ""
|
7409 |
|
7410 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7411 |
#: includes/elementor/widgets/recent-posts-land-style.php:450
|
7412 |
#: includes/elementor/widgets/recent-posts-masonry.php:546
|
7413 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:441
|
@@ -7424,7 +7428,7 @@ msgstr ""
|
|
7424 |
msgid "Include posts"
|
7425 |
msgstr ""
|
7426 |
|
7427 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7428 |
#: includes/elementor/widgets/recent-posts-land-style.php:451
|
7429 |
#: includes/elementor/widgets/recent-posts-masonry.php:547
|
7430 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:442
|
@@ -7442,7 +7446,7 @@ msgid ""
|
|
7442 |
"53,34,87,25)"
|
7443 |
msgstr ""
|
7444 |
|
7445 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7446 |
#: includes/elementor/widgets/recent-posts-land-style.php:459
|
7447 |
#: includes/elementor/widgets/recent-posts-masonry.php:555
|
7448 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:450
|
@@ -7458,7 +7462,7 @@ msgstr ""
|
|
7458 |
msgid "Exclude posts"
|
7459 |
msgstr ""
|
7460 |
|
7461 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7462 |
#: includes/elementor/widgets/recent-posts-land-style.php:460
|
7463 |
#: includes/elementor/widgets/recent-posts-masonry.php:556
|
7464 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:451
|
@@ -7476,7 +7480,7 @@ msgid ""
|
|
7476 |
"(eg. 53,34,87,25)"
|
7477 |
msgstr ""
|
7478 |
|
7479 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7480 |
#: includes/elementor/widgets/recent-posts-land-style.php:469
|
7481 |
#: includes/elementor/widgets/recent-posts-masonry.php:565
|
7482 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:460
|
@@ -7493,7 +7497,7 @@ msgstr ""
|
|
7493 |
msgid "Number of post to displace or pass over."
|
7494 |
msgstr ""
|
7495 |
|
7496 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7497 |
#: includes/elementor/widgets/recent-posts-land-style.php:483
|
7498 |
#: includes/elementor/widgets/recent-posts-masonry.php:579
|
7499 |
#: includes/elementor/widgets/recent-posts-tiles.php:376
|
@@ -7501,7 +7505,7 @@ msgstr ""
|
|
7501 |
msgid "Paginate"
|
7502 |
msgstr ""
|
7503 |
|
7504 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7505 |
#: includes/elementor/widgets/recent-posts-land-style.php:490
|
7506 |
#: includes/elementor/widgets/recent-posts-masonry.php:586
|
7507 |
#: includes/elementor/widgets/recent-posts-tiles.php:383
|
@@ -7514,7 +7518,7 @@ msgstr ""
|
|
7514 |
msgid "Load More Type"
|
7515 |
msgstr ""
|
7516 |
|
7517 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7518 |
#: includes/elementor/widgets/recent-posts-land-style.php:498
|
7519 |
#: includes/elementor/widgets/recent-posts-masonry.php:594
|
7520 |
#: includes/elementor/widgets/recent-posts-tiles.php:391
|
@@ -7527,7 +7531,7 @@ msgstr ""
|
|
7527 |
msgid "Infinite Scroll"
|
7528 |
msgstr ""
|
7529 |
|
7530 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7531 |
#: includes/elementor/widgets/recent-posts-land-style.php:506
|
7532 |
#: includes/elementor/widgets/recent-posts-masonry.php:602
|
7533 |
#: includes/elementor/widgets/recent-posts-tiles.php:399
|
@@ -7540,7 +7544,7 @@ msgstr ""
|
|
7540 |
msgid "Next Prev"
|
7541 |
msgstr ""
|
7542 |
|
7543 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7544 |
#: includes/elementor/widgets/recent-posts-land-style.php:538
|
7545 |
#: includes/elementor/widgets/recent-posts-timeline.php:563
|
7546 |
#: includes/elementor/widgets/recent-products.php:508
|
@@ -7552,7 +7556,7 @@ msgstr ""
|
|
7552 |
msgid "Horizontal 4:3"
|
7553 |
msgstr ""
|
7554 |
|
7555 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7556 |
#: includes/elementor/widgets/recent-posts-land-style.php:539
|
7557 |
#: includes/elementor/widgets/recent-posts-timeline.php:564
|
7558 |
#: includes/elementor/widgets/recent-products.php:509
|
@@ -7564,7 +7568,7 @@ msgstr ""
|
|
7564 |
msgid "Horizontal 16:9"
|
7565 |
msgstr ""
|
7566 |
|
7567 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7568 |
#: includes/elementor/widgets/recent-posts-land-style.php:540
|
7569 |
#: includes/elementor/widgets/recent-posts-timeline.php:565
|
7570 |
#: includes/elementor/widgets/recent-products.php:510
|
@@ -7576,7 +7580,7 @@ msgstr ""
|
|
7576 |
msgid "Square 1:1"
|
7577 |
msgstr ""
|
7578 |
|
7579 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7580 |
#: includes/elementor/widgets/recent-posts-land-style.php:541
|
7581 |
#: includes/elementor/widgets/recent-posts-timeline.php:566
|
7582 |
#: includes/elementor/widgets/recent-products.php:511
|
@@ -7588,11 +7592,11 @@ msgstr ""
|
|
7588 |
msgid "Vertical 3:4"
|
7589 |
msgstr ""
|
7590 |
|
7591 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7592 |
msgid "Custom Aspect Ratio"
|
7593 |
msgstr ""
|
7594 |
|
7595 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7596 |
#: includes/elementor/widgets/recent-posts-land-style.php:677
|
7597 |
#: includes/elementor/widgets/recent-posts-masonry.php:805
|
7598 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:579
|
@@ -7601,46 +7605,46 @@ msgstr ""
|
|
7601 |
msgid "Post Info"
|
7602 |
msgstr ""
|
7603 |
|
7604 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7605 |
#: includes/elementor/widgets/recent-posts-land-style.php:801
|
7606 |
#: includes/elementor/widgets/recent-posts-masonry.php:929
|
7607 |
#: includes/elementor/widgets/recent-posts-timeline.php:826
|
7608 |
msgid "Excerpt"
|
7609 |
msgstr ""
|
7610 |
|
7611 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7612 |
msgid "Badge"
|
7613 |
msgstr ""
|
7614 |
|
7615 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7616 |
#: includes/elementor/widgets/recent-posts-land-style.php:863
|
7617 |
#: includes/elementor/widgets/recent-posts-masonry.php:991
|
7618 |
#: includes/elementor/widgets/recent-posts-timeline.php:888
|
7619 |
msgid "Meta"
|
7620 |
msgstr ""
|
7621 |
|
7622 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7623 |
msgid "Padding for meta wrapper"
|
7624 |
msgstr ""
|
7625 |
|
7626 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7627 |
#: includes/elementor/widgets/recent-posts-masonry.php:1178
|
7628 |
#: includes/elementor/widgets/staff.php:862
|
7629 |
msgid "Padding for main wrapper"
|
7630 |
msgstr ""
|
7631 |
|
7632 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7633 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7634 |
#: includes/elementor/widgets/recent-posts-masonry.php:1190
|
7635 |
#: includes/elementor/widgets/staff.php:874
|
7636 |
msgid "Padding for content wrapper"
|
7637 |
msgstr ""
|
7638 |
|
7639 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7640 |
msgid "Flip Wrapper"
|
7641 |
msgstr ""
|
7642 |
|
7643 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7644 |
#: includes/elementor/widgets/recent-posts-masonry.php:1332
|
7645 |
msgid "Button Padding"
|
7646 |
msgstr ""
|
1 |
# Averta Copyright (c) {2020}
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
+
"Project-Id-Version: Phlox Core Elements 2.5.20\n"
|
5 |
"Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
|
6 |
+
"POT-Creation-Date: 2020-05-27 07:52:17+00:00\n"
|
7 |
"MIME-Version: 1.0\n"
|
8 |
"Content-Type: text/plain; charset=utf-8\n"
|
9 |
"Content-Transfer-Encoding: 8bit\n"
|
141 |
msgstr ""
|
142 |
|
143 |
#: admin/includes/admin-hooks.php:124
|
144 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:476
|
145 |
#: includes/elementor/widgets/recent-posts-masonry.php:276
|
146 |
#: includes/elementor/widgets/theme-elements/site-title.php:122
|
147 |
#: includes/elements/recent-posts-grid-carousel.php:334
|
149 |
msgstr ""
|
150 |
|
151 |
#: admin/includes/admin-hooks.php:125
|
152 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:475
|
153 |
#: includes/elementor/widgets/recent-posts-masonry.php:275
|
154 |
#: includes/elementor/widgets/theme-elements/site-title.php:153
|
155 |
#: includes/elements/recent-posts-grid-carousel.php:333
|
1167 |
#: includes/elementor/widgets/modern-button.php:150
|
1168 |
#: includes/elementor/widgets/quote.php:169
|
1169 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:252
|
1170 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1618
|
1171 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1755
|
1172 |
#: includes/elementor/widgets/recent-posts-masonry.php:1159
|
1173 |
#: includes/elementor/widgets/recent-posts-timeline.php:130
|
1174 |
#: includes/elementor/widgets/staff.php:846
|
1205 |
#: includes/elementor/widgets/modern-button.php:146
|
1206 |
#: includes/elementor/widgets/modern-button.php:523
|
1207 |
#: includes/elementor/widgets/quote.php:165
|
1208 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1614
|
1209 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1751
|
1210 |
#: includes/elementor/widgets/recent-posts-masonry.php:1155
|
1211 |
#: includes/elementor/widgets/recent-posts-timeline.php:134
|
1212 |
#: includes/elementor/widgets/staff.php:827
|
1408 |
#: includes/elementor/widgets/modern-button.php:633
|
1409 |
#: includes/elementor/widgets/recent-comments.php:201
|
1410 |
#: includes/elementor/widgets/recent-comments.php:284
|
1411 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:997
|
1412 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1067
|
1413 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1171
|
1414 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1362
|
1415 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1467
|
1416 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1569
|
1417 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1706
|
1418 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1858
|
1419 |
#: includes/elementor/widgets/recent-posts-land-style.php:612
|
1420 |
#: includes/elementor/widgets/recent-posts-land-style.php:716
|
1421 |
#: includes/elementor/widgets/recent-posts-land-style.php:893
|
1612 |
msgstr ""
|
1613 |
|
1614 |
#: admin/includes/metaboxes/metabox-fields-page-template.php:27
|
1615 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:643
|
1616 |
#: includes/elements/recent-posts-grid-carousel.php:467
|
1617 |
msgid "Before Content"
|
1618 |
msgstr ""
|
1626 |
msgstr ""
|
1627 |
|
1628 |
#: admin/includes/metaboxes/metabox-fields-page-template.php:30
|
1629 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:642
|
1630 |
#: includes/elements/recent-posts-grid-carousel.php:466
|
1631 |
msgid "After Content"
|
1632 |
msgstr ""
|
1910 |
msgstr ""
|
1911 |
|
1912 |
#: includes/classes/class-auxin-demo-importer.php:281
|
1913 |
+
#: includes/classes/class-auxin-demo-importer.php:1140
|
1914 |
msgid "Importing Users"
|
1915 |
msgstr ""
|
1916 |
|
1940 |
msgid "Importing Sliders"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
+
#: includes/classes/class-auxin-demo-importer.php:1203
|
1944 |
msgid "Preparing Site ..."
|
1945 |
msgstr ""
|
1946 |
|
1947 |
+
#: includes/classes/class-auxin-demo-importer.php:1218
|
1948 |
msgid "All steps are successful"
|
1949 |
msgstr ""
|
1950 |
|
2924 |
#: includes/elementor/widgets/modern-button.php:154
|
2925 |
#: includes/elementor/widgets/modern-button.php:524
|
2926 |
#: includes/elementor/widgets/quote.php:173
|
2927 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1622
|
2928 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1759
|
2929 |
#: includes/elementor/widgets/recent-posts-masonry.php:1163
|
2930 |
#: includes/elementor/widgets/recent-posts-timeline.php:138
|
2931 |
#: includes/elementor/widgets/staff.php:819
|
3101 |
msgstr ""
|
3102 |
|
3103 |
#: includes/elementor/modules/dynamic-tags/author-name.php:18
|
3104 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:612
|
3105 |
#: includes/elementor/widgets/recent-posts-land-style.php:291
|
3106 |
#: includes/elementor/widgets/recent-posts-masonry.php:386
|
3107 |
#: includes/elementor/widgets/recent-posts-timeline.php:315
|
3163 |
#: includes/elementor/widgets/heading-modern.php:270
|
3164 |
#: includes/elementor/widgets/icon.php:154
|
3165 |
#: includes/elementor/widgets/modern-button.php:117
|
3166 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:743
|
3167 |
#: includes/elementor/widgets/text.php:321
|
3168 |
#: includes/elementor/widgets/theme-elements/logo.php:182
|
3169 |
#: includes/elementor/widgets/theme-elements/logo.php:196
|
3180 |
#: includes/elementor/widgets/gallery.php:305
|
3181 |
#: includes/elementor/widgets/image.php:302
|
3182 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:235
|
3183 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:613
|
3184 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:879
|
3185 |
#: includes/elementor/widgets/recent-posts-land-style.php:292
|
3186 |
#: includes/elementor/widgets/recent-posts-land-style.php:494
|
3187 |
#: includes/elementor/widgets/recent-posts-masonry.php:387
|
3348 |
#: includes/elementor/widgets/accordion.php:534
|
3349 |
#: includes/elementor/widgets/heading-modern.php:107
|
3350 |
#: includes/elementor/widgets/recent-comments.php:171
|
3351 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:781
|
3352 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1028
|
3353 |
#: includes/elementor/widgets/recent-posts-land-style.php:414
|
3354 |
#: includes/elementor/widgets/recent-posts-land-style.php:573
|
3355 |
#: includes/elementor/widgets/recent-posts-masonry.php:510
|
3431 |
#: includes/elementor/widgets/carousel-navigation.php:105
|
3432 |
#: includes/elementor/widgets/divider.php:148
|
3433 |
#: includes/elementor/widgets/mailchimp.php:137
|
3434 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:927
|
3435 |
#: includes/elementor/widgets/theme-elements/current-time.php:109
|
3436 |
#: includes/elementor/widgets/theme-elements/menu.php:994
|
3437 |
#: includes/elements/image.php:98 includes/elements/staff.php:113
|
3630 |
|
3631 |
#: includes/elementor/modules/dynamic-tags/user-info.php:76
|
3632 |
#: includes/elementor/widgets/gallery.php:304
|
3633 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:782
|
3634 |
#: includes/elementor/widgets/recent-posts-land-style.php:415
|
3635 |
#: includes/elementor/widgets/recent-posts-masonry.php:511
|
3636 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:406
|
3687 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:130
|
3688 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:169
|
3689 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:225
|
3690 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:786
|
3691 |
#: includes/elementor/widgets/recent-posts-land-style.php:419
|
3692 |
#: includes/elementor/widgets/recent-posts-masonry.php:515
|
3693 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:410
|
3774 |
|
3775 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:276
|
3776 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:345
|
3777 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:779
|
3778 |
#: includes/elementor/widgets/recent-posts-land-style.php:412
|
3779 |
#: includes/elementor/widgets/recent-posts-masonry.php:508
|
3780 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:403
|
3848 |
|
3849 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:347
|
3850 |
#: includes/elementor/widgets/gallery.php:302
|
3851 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:780
|
3852 |
#: includes/elementor/widgets/recent-posts-land-style.php:413
|
3853 |
#: includes/elementor/widgets/recent-posts-masonry.php:509
|
3854 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:404
|
3872 |
msgstr ""
|
3873 |
|
3874 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:348
|
3875 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:783
|
3876 |
#: includes/elementor/widgets/recent-posts-land-style.php:416
|
3877 |
#: includes/elementor/widgets/recent-posts-masonry.php:512
|
3878 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:407
|
3896 |
|
3897 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:356
|
3898 |
#: includes/elementor/widgets/gallery.php:282
|
3899 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:798
|
3900 |
#: includes/elementor/widgets/recent-posts-land-style.php:428
|
3901 |
#: includes/elementor/widgets/recent-posts-masonry.php:524
|
3902 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:419
|
4153 |
#: includes/elementor/widgets/modern-button.php:386
|
4154 |
#: includes/elementor/widgets/modern-button.php:617
|
4155 |
#: includes/elementor/widgets/modern-button.php:716
|
4156 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:957
|
4157 |
#: includes/elementor/widgets/recent-posts-land-style.php:552
|
4158 |
#: includes/elementor/widgets/recent-posts-masonry.php:630
|
4159 |
#: includes/elementor/widgets/recent-posts-timeline.php:577
|
4206 |
#: includes/elementor/widgets/modern-button.php:534
|
4207 |
#: includes/elementor/widgets/recent-comments.php:181
|
4208 |
#: includes/elementor/widgets/recent-comments.php:264
|
4209 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:974
|
4210 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1041
|
4211 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1145
|
4212 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1332
|
4213 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1447
|
4214 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1542
|
4215 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1679
|
4216 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1802
|
4217 |
#: includes/elementor/widgets/recent-posts-land-style.php:586
|
4218 |
#: includes/elementor/widgets/recent-posts-land-style.php:690
|
4219 |
#: includes/elementor/widgets/recent-posts-land-style.php:873
|
4341 |
#: includes/elementor/widgets/modern-button.php:605
|
4342 |
#: includes/elementor/widgets/modern-button.php:704
|
4343 |
#: includes/elementor/widgets/quote.php:333
|
4344 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1403
|
4345 |
#: includes/elementor/widgets/staff.php:778
|
4346 |
#: includes/elementor/widgets/tabs.php:210
|
4347 |
#: includes/elementor/widgets/tabs.php:467
|
4418 |
#: includes/elementor/widgets/recent-comments.php:208
|
4419 |
#: includes/elementor/widgets/recent-comments.php:271
|
4420 |
#: includes/elementor/widgets/recent-comments.php:291
|
4421 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1051
|
4422 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1077
|
4423 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1155
|
4424 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1181
|
4425 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1267
|
4426 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1454
|
4427 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1474
|
4428 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1827
|
4429 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1883
|
4430 |
#: includes/elementor/widgets/recent-posts-land-style.php:596
|
4431 |
#: includes/elementor/widgets/recent-posts-land-style.php:622
|
4432 |
#: includes/elementor/widgets/recent-posts-land-style.php:700
|
4518 |
msgstr ""
|
4519 |
|
4520 |
#: includes/elementor/widgets/audio.php:95
|
4521 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:746
|
4522 |
#: includes/elements/audio.php:15
|
4523 |
msgid "Audio"
|
4524 |
msgstr ""
|
4566 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:282
|
4567 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:297
|
4568 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:340
|
4569 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:367
|
4570 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:383
|
4571 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:425
|
4572 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:449
|
4573 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:461
|
4574 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:490
|
4575 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:505
|
4576 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:517
|
4577 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:533
|
4578 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:545
|
4579 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:557
|
|
|
4580 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:569
|
4581 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:582
|
4582 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:625
|
4583 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:669
|
4584 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:708
|
4585 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:723
|
4586 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:760
|
4587 |
#: includes/elementor/widgets/recent-posts-land-style.php:127
|
4588 |
#: includes/elementor/widgets/recent-posts-land-style.php:139
|
4589 |
#: includes/elementor/widgets/recent-posts-land-style.php:181
|
4712 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:283
|
4713 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:298
|
4714 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:341
|
4715 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:368
|
4716 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:384
|
4717 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:426
|
4718 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:450
|
4719 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:462
|
4720 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:491
|
4721 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:506
|
4722 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:518
|
4723 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:534
|
4724 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:546
|
4725 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:558
|
|
|
4726 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:570
|
4727 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:583
|
4728 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:626
|
4729 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:670
|
4730 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:709
|
4731 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:724
|
4732 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:761
|
4733 |
#: includes/elementor/widgets/recent-posts-land-style.php:128
|
4734 |
#: includes/elementor/widgets/recent-posts-land-style.php:140
|
4735 |
#: includes/elementor/widgets/recent-posts-land-style.php:182
|
4895 |
msgstr ""
|
4896 |
|
4897 |
#: includes/elementor/widgets/before-after.php:155
|
4898 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:850
|
4899 |
#: includes/elementor/widgets/recent-posts-land-style.php:468
|
4900 |
#: includes/elementor/widgets/recent-posts-masonry.php:564
|
4901 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:459
|
4985 |
|
4986 |
#: includes/elementor/widgets/button.php:148
|
4987 |
#: includes/elementor/widgets/heading-modern.php:1038
|
4988 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1532
|
4989 |
#: includes/elementor/widgets/recent-posts-masonry.php:1073
|
4990 |
#: includes/elementor/widgets/text.php:1373
|
4991 |
msgid "Wrapper"
|
5066 |
|
5067 |
#: includes/elementor/widgets/button.php:230
|
5068 |
#: includes/elementor/widgets/carousel-navigation.php:164
|
5069 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1609
|
5070 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1746
|
5071 |
#: includes/elementor/widgets/recent-posts-masonry.php:1150
|
5072 |
#: includes/elementor/widgets/theme-elements/current-time.php:131
|
5073 |
msgid "Align"
|
5082 |
#: includes/elementor/widgets/modern-button.php:357
|
5083 |
#: includes/elementor/widgets/modern-button.php:576
|
5084 |
#: includes/elementor/widgets/modern-button.php:675
|
5085 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1340
|
5086 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1370
|
5087 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1550
|
5088 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1588
|
5089 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1687
|
5090 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1725
|
5091 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1810
|
5092 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1866
|
5093 |
#: includes/elementor/widgets/recent-posts-masonry.php:1091
|
5094 |
#: includes/elementor/widgets/recent-posts-masonry.php:1129
|
5095 |
#: includes/elementor/widgets/recent-posts-masonry.php:1226
|
5193 |
#: includes/elementor/widgets/modern-button.php:410
|
5194 |
#: includes/elementor/widgets/quote.php:98
|
5195 |
#: includes/elementor/widgets/quote.php:148
|
5196 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1349
|
5197 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1379
|
5198 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:287
|
5199 |
#: includes/elementor/widgets/theme-elements/current-time.php:163
|
5200 |
#: includes/elementor/widgets/theme-elements/modern-search.php:118
|
5214 |
#: includes/elementor/widgets/image.php:683
|
5215 |
#: includes/elementor/widgets/modern-button.php:450
|
5216 |
#: includes/elementor/widgets/modern-button.php:488
|
5217 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1839
|
5218 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1895
|
5219 |
#: includes/elementor/widgets/recent-posts-masonry.php:1255
|
5220 |
#: includes/elementor/widgets/recent-posts-masonry.php:1311
|
5221 |
#: includes/elementor/widgets/text.php:706
|
5260 |
msgstr ""
|
5261 |
|
5262 |
#: includes/elementor/widgets/carousel-navigation.php:128
|
5263 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:887
|
5264 |
#: includes/elementor/widgets/recent-posts-land-style.php:502
|
5265 |
#: includes/elementor/widgets/recent-posts-masonry.php:598
|
5266 |
#: includes/elementor/widgets/recent-posts-tiles.php:395
|
5986 |
msgstr ""
|
5987 |
|
5988 |
#: includes/elementor/widgets/gallery.php:188
|
5989 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:919
|
5990 |
#: includes/elementor/widgets/recent-posts-land-style.php:534
|
5991 |
#: includes/elementor/widgets/recent-posts-timeline.php:559
|
5992 |
#: includes/elementor/widgets/recent-products.php:504
|
6237 |
#: includes/elementor/widgets/image.php:110
|
6238 |
#: includes/elementor/widgets/image.php:165
|
6239 |
#: includes/elementor/widgets/image.php:418
|
6240 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:742
|
6241 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:908
|
6242 |
#: includes/elementor/widgets/recent-posts-land-style.php:523
|
6243 |
#: includes/elementor/widgets/recent-posts-masonry.php:619
|
6244 |
#: includes/elementor/widgets/recent-posts-timeline.php:548
|
6342 |
msgstr ""
|
6343 |
|
6344 |
#: includes/elementor/widgets/image.php:343
|
6345 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:381
|
6346 |
#: includes/elementor/widgets/recent-posts-land-style.php:137
|
6347 |
#: includes/elementor/widgets/recent-posts-masonry.php:205
|
6348 |
#: includes/elementor/widgets/recent-posts-timeline.php:192
|
6353 |
msgstr ""
|
6354 |
|
6355 |
#: includes/elementor/widgets/image.php:355
|
6356 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:396
|
6357 |
#: includes/elementor/widgets/recent-posts-land-style.php:152
|
6358 |
#: includes/elementor/widgets/recent-posts-masonry.php:220
|
6359 |
#: includes/elementor/widgets/recent-posts-timeline.php:207
|
6364 |
msgstr ""
|
6365 |
|
6366 |
#: includes/elementor/widgets/image.php:370
|
6367 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:411
|
6368 |
#: includes/elementor/widgets/recent-posts-land-style.php:167
|
6369 |
#: includes/elementor/widgets/recent-posts-masonry.php:235
|
6370 |
#: includes/elementor/widgets/recent-posts-timeline.php:222
|
6398 |
|
6399 |
#: includes/elementor/widgets/image.php:662
|
6400 |
#: includes/elementor/widgets/quote.php:186
|
6401 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1576
|
6402 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1713
|
6403 |
#: includes/elementor/widgets/recent-posts-masonry.php:1117
|
6404 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:325
|
6405 |
#: includes/elementor/widgets/theme-elements/modern-search.php:586
|
6569 |
|
6570 |
#: includes/elementor/widgets/recent-comments.php:232
|
6571 |
#: includes/elementor/widgets/recent-comments.php:315
|
6572 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1107
|
6573 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1211
|
6574 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1293
|
6575 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1415
|
6576 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1510
|
6577 |
#: includes/elementor/widgets/recent-posts-land-style.php:652
|
6578 |
#: includes/elementor/widgets/recent-posts-land-style.php:756
|
6579 |
#: includes/elementor/widgets/recent-posts-land-style.php:838
|
6607 |
msgstr ""
|
6608 |
|
6609 |
#: includes/elementor/widgets/recent-comments.php:331
|
6610 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1230
|
6611 |
#: includes/elementor/widgets/recent-posts-land-style.php:775
|
6612 |
#: includes/elementor/widgets/recent-posts-masonry.php:903
|
6613 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:677
|
6846 |
msgstr ""
|
6847 |
|
6848 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:351
|
6849 |
+
msgid "Media size"
|
6850 |
+
msgstr ""
|
6851 |
+
|
6852 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:364
|
6853 |
msgid "Ignore post formats media"
|
6854 |
msgstr ""
|
6855 |
|
6856 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:423
|
6857 |
#: includes/elementor/widgets/recent-posts-land-style.php:179
|
6858 |
#: includes/elementor/widgets/recent-posts-masonry.php:247
|
6859 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:299
|
6866 |
msgid "Display post title"
|
6867 |
msgstr ""
|
6868 |
|
6869 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:435
|
6870 |
msgid "Title Trim"
|
6871 |
msgstr ""
|
6872 |
|
6873 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:447
|
6874 |
#: includes/elementor/widgets/recent-posts-land-style.php:191
|
6875 |
#: includes/elementor/widgets/recent-posts-masonry.php:259
|
6876 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:311
|
6879 |
msgid "Display post info"
|
6880 |
msgstr ""
|
6881 |
|
6882 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:459
|
6883 |
msgid "Display format icon"
|
6884 |
msgstr ""
|
6885 |
|
6886 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:471
|
6887 |
#: includes/elementor/widgets/recent-posts-masonry.php:271
|
6888 |
#: includes/elements/recent-posts-grid-carousel.php:325
|
6889 |
msgid "Post info position"
|
6890 |
msgstr ""
|
6891 |
|
6892 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:488
|
6893 |
#: includes/elementor/widgets/recent-posts-land-style.php:204
|
6894 |
#: includes/elementor/widgets/recent-posts-masonry.php:287
|
6895 |
#: includes/elementor/widgets/recent-products.php:278
|
6899 |
msgid "Display Categories"
|
6900 |
msgstr ""
|
6901 |
|
6902 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:503
|
6903 |
msgid "Display Category Badge"
|
6904 |
msgstr ""
|
6905 |
|
6906 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:515
|
6907 |
#: includes/elementor/widgets/recent-posts-land-style.php:219
|
6908 |
#: includes/elementor/widgets/recent-posts-masonry.php:302
|
6909 |
#: includes/elements/recent-posts-grid-carousel.php:363
|
6910 |
msgid "Display Date"
|
6911 |
msgstr ""
|
6912 |
|
6913 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:530
|
6914 |
#: includes/elementor/widgets/recent-posts-land-style.php:300
|
6915 |
#: includes/elementor/widgets/recent-posts-masonry.php:396
|
6916 |
#: includes/elementor/widgets/recent-posts-timeline.php:325
|
6917 |
msgid "Display Author in Header"
|
6918 |
msgstr ""
|
6919 |
|
6920 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:531
|
6921 |
#: includes/elementor/widgets/recent-posts-land-style.php:301
|
6922 |
#: includes/elementor/widgets/recent-posts-masonry.php:397
|
6923 |
#: includes/elementor/widgets/recent-posts-timeline.php:326
|
6924 |
msgid "Enable it to display author name in header"
|
6925 |
msgstr ""
|
6926 |
|
6927 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:543
|
6928 |
#: includes/elementor/widgets/recent-posts-masonry.php:317
|
6929 |
#: includes/elements/recent-posts-grid-carousel.php:313
|
6930 |
msgid "Display post content"
|
6931 |
msgstr ""
|
6932 |
|
6933 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:555
|
6934 |
#: includes/elementor/widgets/recent-posts-land-style.php:234
|
6935 |
msgid "Display Comments Number"
|
6936 |
msgstr ""
|
6937 |
|
6938 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:567
|
6939 |
#: includes/elementor/widgets/recent-posts-land-style.php:246
|
6940 |
#: includes/elementor/widgets/recent-posts-masonry.php:329
|
6941 |
#: includes/elementor/widgets/recent-posts-timeline.php:258
|
6945 |
msgid "Display like button"
|
6946 |
msgstr ""
|
6947 |
|
6948 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:579
|
6949 |
#: includes/elementor/widgets/recent-posts-land-style.php:258
|
6950 |
#: includes/elementor/widgets/recent-posts-masonry.php:353
|
6951 |
#: includes/elementor/widgets/recent-posts-timeline.php:282
|
6955 |
msgid "Display excerpt"
|
6956 |
msgstr ""
|
6957 |
|
6958 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:580
|
6959 |
#: includes/elementor/widgets/recent-posts-land-style.php:259
|
6960 |
#: includes/elementor/widgets/recent-posts-masonry.php:354
|
6961 |
#: includes/elementor/widgets/recent-posts-timeline.php:283
|
6965 |
msgid "Enable it to display post summary instead of full content."
|
6966 |
msgstr ""
|
6967 |
|
6968 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:592
|
6969 |
#: includes/elementor/widgets/recent-posts-land-style.php:271
|
6970 |
#: includes/elementor/widgets/recent-posts-masonry.php:366
|
6971 |
#: includes/elementor/widgets/recent-posts-timeline.php:295
|
6978 |
msgid "Excerpt length"
|
6979 |
msgstr ""
|
6980 |
|
6981 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:593
|
6982 |
#: includes/elementor/widgets/recent-posts-land-style.php:272
|
6983 |
#: includes/elementor/widgets/recent-posts-masonry.php:367
|
6984 |
#: includes/elementor/widgets/recent-posts-timeline.php:296
|
6989 |
msgid "Specify summary content in character."
|
6990 |
msgstr ""
|
6991 |
|
6992 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:605
|
6993 |
#: includes/elementor/widgets/recent-posts-land-style.php:284
|
6994 |
#: includes/elementor/widgets/recent-posts-masonry.php:379
|
6995 |
#: includes/elementor/widgets/recent-posts-timeline.php:308
|
7000 |
msgid "Display author or read more"
|
7001 |
msgstr ""
|
7002 |
|
7003 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:607
|
7004 |
#: includes/elementor/widgets/recent-posts-land-style.php:286
|
7005 |
#: includes/elementor/widgets/recent-posts-masonry.php:381
|
7006 |
#: includes/elementor/widgets/recent-posts-timeline.php:310
|
7011 |
msgid "Specifies whether to show author or read more on each post."
|
7012 |
msgstr ""
|
7013 |
|
7014 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:611
|
7015 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1792
|
7016 |
#: includes/elementor/widgets/recent-posts-land-style.php:290
|
7017 |
#: includes/elementor/widgets/recent-posts-masonry.php:385
|
7018 |
#: includes/elementor/widgets/recent-posts-masonry.php:1208
|
7025 |
msgid "Read More"
|
7026 |
msgstr ""
|
7027 |
|
7028 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:622
|
7029 |
#: includes/elementor/widgets/recent-posts-land-style.php:316
|
7030 |
#: includes/elementor/widgets/recent-posts-masonry.php:412
|
7031 |
#: includes/elementor/widgets/recent-posts-timeline.php:341
|
7032 |
msgid "Display Author in Footer"
|
7033 |
msgstr ""
|
7034 |
|
7035 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:623
|
7036 |
#: includes/elementor/widgets/recent-posts-land-style.php:317
|
7037 |
#: includes/elementor/widgets/recent-posts-masonry.php:413
|
7038 |
#: includes/elementor/widgets/recent-posts-timeline.php:342
|
7039 |
msgid "Enable it to display author name in footer"
|
7040 |
msgstr ""
|
7041 |
|
7042 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:638
|
7043 |
msgid "Meta info position"
|
7044 |
msgstr ""
|
7045 |
|
7046 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:660
|
7047 |
#: includes/elementor/widgets/recent-posts-land-style.php:338
|
7048 |
#: includes/elementor/widgets/recent-posts-masonry.php:434
|
7049 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:329
|
7130 |
msgid "Query"
|
7131 |
msgstr ""
|
7132 |
|
7133 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:667
|
7134 |
msgid "Use wp query"
|
7135 |
msgstr ""
|
7136 |
|
7137 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:679
|
7138 |
#: includes/elementor/widgets/recent-posts-land-style.php:345
|
7139 |
#: includes/elementor/widgets/recent-posts-masonry.php:441
|
7140 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:336
|
7153 |
msgid "Categories"
|
7154 |
msgstr ""
|
7155 |
|
7156 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:680
|
7157 |
#: includes/elementor/widgets/recent-posts-land-style.php:346
|
7158 |
#: includes/elementor/widgets/recent-posts-masonry.php:442
|
7159 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:337
|
7171 |
msgid "Specifies a category that you want to show posts from it."
|
7172 |
msgstr ""
|
7173 |
|
7174 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:694
|
7175 |
#: includes/elementor/widgets/recent-posts-land-style.php:357
|
7176 |
#: includes/elementor/widgets/recent-posts-masonry.php:453
|
7177 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:348
|
7188 |
msgid "Number of posts to show"
|
7189 |
msgstr ""
|
7190 |
|
7191 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:706
|
7192 |
#: includes/elementor/widgets/recent-posts-land-style.php:369
|
7193 |
#: includes/elementor/widgets/recent-posts-masonry.php:465
|
7194 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:360
|
7205 |
msgid "Exclude posts without media"
|
7206 |
msgstr ""
|
7207 |
|
7208 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:721
|
7209 |
#: includes/elements/recent-posts-timeline.php:107
|
7210 |
msgid "Exclude all custom post formats"
|
7211 |
msgstr ""
|
7212 |
|
7213 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:736
|
7214 |
msgid "Include custom post formats"
|
7215 |
msgstr ""
|
7216 |
|
7217 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:740
|
7218 |
msgid "Aside"
|
7219 |
msgstr ""
|
7220 |
|
7221 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:741
|
7222 |
#: includes/elements/gallery.php:15
|
7223 |
msgid "Gallery"
|
7224 |
msgstr ""
|
7225 |
|
7226 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:744
|
7227 |
#: includes/elements/quote.php:15
|
7228 |
msgid "Quote"
|
7229 |
msgstr ""
|
7230 |
|
7231 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:745
|
7232 |
#: includes/elementor/widgets/video.php:94 includes/elements/video.php:15
|
7233 |
msgid "Video"
|
7234 |
msgstr ""
|
7235 |
|
7236 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:758
|
7237 |
#: includes/elementor/widgets/recent-posts-land-style.php:393
|
7238 |
#: includes/elementor/widgets/recent-posts-masonry.php:489
|
7239 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:384
|
7249 |
msgid "Exclude quote and link post formats"
|
7250 |
msgstr ""
|
7251 |
|
7252 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:775
|
7253 |
#: includes/elementor/widgets/recent-posts-land-style.php:408
|
7254 |
#: includes/elementor/widgets/recent-posts-masonry.php:504
|
7255 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:399
|
7271 |
msgid "Order by"
|
7272 |
msgstr ""
|
7273 |
|
7274 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:784
|
7275 |
#: includes/elementor/widgets/recent-posts-land-style.php:417
|
7276 |
#: includes/elementor/widgets/recent-posts-masonry.php:513
|
7277 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:408
|
7293 |
msgid "Comments"
|
7294 |
msgstr ""
|
7295 |
|
7296 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:785
|
7297 |
#: includes/elementor/widgets/recent-posts-land-style.php:418
|
7298 |
#: includes/elementor/widgets/recent-posts-masonry.php:514
|
7299 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:409
|
7315 |
msgid "Date Modified"
|
7316 |
msgstr ""
|
7317 |
|
7318 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:787
|
7319 |
#: includes/elementor/widgets/recent-posts-land-style.php:420
|
7320 |
#: includes/elementor/widgets/recent-posts-masonry.php:516
|
7321 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:411
|
7334 |
msgid "Inserted Post IDs"
|
7335 |
msgstr ""
|
7336 |
|
7337 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:802
|
7338 |
#: includes/elementor/widgets/recent-posts-land-style.php:432
|
7339 |
#: includes/elementor/widgets/recent-posts-masonry.php:528
|
7340 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:423
|
7356 |
msgid "Descending"
|
7357 |
msgstr ""
|
7358 |
|
7359 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:803
|
7360 |
#: includes/elementor/widgets/recent-posts-land-style.php:433
|
7361 |
#: includes/elementor/widgets/recent-posts-masonry.php:529
|
7362 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:424
|
7378 |
msgid "Ascending"
|
7379 |
msgstr ""
|
7380 |
|
7381 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:814
|
7382 |
#: includes/elementor/widgets/recent-posts-land-style.php:441
|
7383 |
#: includes/elementor/widgets/recent-posts-masonry.php:537
|
7384 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:432
|
7393 |
msgid "Only posts"
|
7394 |
msgstr ""
|
7395 |
|
7396 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:815
|
7397 |
#: includes/elementor/widgets/recent-posts-land-style.php:442
|
7398 |
#: includes/elementor/widgets/recent-posts-masonry.php:538
|
7399 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:433
|
7411 |
"53,34,87,25)."
|
7412 |
msgstr ""
|
7413 |
|
7414 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:826
|
7415 |
#: includes/elementor/widgets/recent-posts-land-style.php:450
|
7416 |
#: includes/elementor/widgets/recent-posts-masonry.php:546
|
7417 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:441
|
7428 |
msgid "Include posts"
|
7429 |
msgstr ""
|
7430 |
|
7431 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:827
|
7432 |
#: includes/elementor/widgets/recent-posts-land-style.php:451
|
7433 |
#: includes/elementor/widgets/recent-posts-masonry.php:547
|
7434 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:442
|
7446 |
"53,34,87,25)"
|
7447 |
msgstr ""
|
7448 |
|
7449 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:838
|
7450 |
#: includes/elementor/widgets/recent-posts-land-style.php:459
|
7451 |
#: includes/elementor/widgets/recent-posts-masonry.php:555
|
7452 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:450
|
7462 |
msgid "Exclude posts"
|
7463 |
msgstr ""
|
7464 |
|
7465 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:839
|
7466 |
#: includes/elementor/widgets/recent-posts-land-style.php:460
|
7467 |
#: includes/elementor/widgets/recent-posts-masonry.php:556
|
7468 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:451
|
7480 |
"(eg. 53,34,87,25)"
|
7481 |
msgstr ""
|
7482 |
|
7483 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:851
|
7484 |
#: includes/elementor/widgets/recent-posts-land-style.php:469
|
7485 |
#: includes/elementor/widgets/recent-posts-masonry.php:565
|
7486 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:460
|
7497 |
msgid "Number of post to displace or pass over."
|
7498 |
msgstr ""
|
7499 |
|
7500 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:868
|
7501 |
#: includes/elementor/widgets/recent-posts-land-style.php:483
|
7502 |
#: includes/elementor/widgets/recent-posts-masonry.php:579
|
7503 |
#: includes/elementor/widgets/recent-posts-tiles.php:376
|
7505 |
msgid "Paginate"
|
7506 |
msgstr ""
|
7507 |
|
7508 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:875
|
7509 |
#: includes/elementor/widgets/recent-posts-land-style.php:490
|
7510 |
#: includes/elementor/widgets/recent-posts-masonry.php:586
|
7511 |
#: includes/elementor/widgets/recent-posts-tiles.php:383
|
7518 |
msgid "Load More Type"
|
7519 |
msgstr ""
|
7520 |
|
7521 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:883
|
7522 |
#: includes/elementor/widgets/recent-posts-land-style.php:498
|
7523 |
#: includes/elementor/widgets/recent-posts-masonry.php:594
|
7524 |
#: includes/elementor/widgets/recent-posts-tiles.php:391
|
7531 |
msgid "Infinite Scroll"
|
7532 |
msgstr ""
|
7533 |
|
7534 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:891
|
7535 |
#: includes/elementor/widgets/recent-posts-land-style.php:506
|
7536 |
#: includes/elementor/widgets/recent-posts-masonry.php:602
|
7537 |
#: includes/elementor/widgets/recent-posts-tiles.php:399
|
7544 |
msgid "Next Prev"
|
7545 |
msgstr ""
|
7546 |
|
7547 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:923
|
7548 |
#: includes/elementor/widgets/recent-posts-land-style.php:538
|
7549 |
#: includes/elementor/widgets/recent-posts-timeline.php:563
|
7550 |
#: includes/elementor/widgets/recent-products.php:508
|
7556 |
msgid "Horizontal 4:3"
|
7557 |
msgstr ""
|
7558 |
|
7559 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:924
|
7560 |
#: includes/elementor/widgets/recent-posts-land-style.php:539
|
7561 |
#: includes/elementor/widgets/recent-posts-timeline.php:564
|
7562 |
#: includes/elementor/widgets/recent-products.php:509
|
7568 |
msgid "Horizontal 16:9"
|
7569 |
msgstr ""
|
7570 |
|
7571 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:925
|
7572 |
#: includes/elementor/widgets/recent-posts-land-style.php:540
|
7573 |
#: includes/elementor/widgets/recent-posts-timeline.php:565
|
7574 |
#: includes/elementor/widgets/recent-products.php:510
|
7580 |
msgid "Square 1:1"
|
7581 |
msgstr ""
|
7582 |
|
7583 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:926
|
7584 |
#: includes/elementor/widgets/recent-posts-land-style.php:541
|
7585 |
#: includes/elementor/widgets/recent-posts-timeline.php:566
|
7586 |
#: includes/elementor/widgets/recent-products.php:511
|
7592 |
msgid "Vertical 3:4"
|
7593 |
msgstr ""
|
7594 |
|
7595 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:939
|
7596 |
msgid "Custom Aspect Ratio"
|
7597 |
msgstr ""
|
7598 |
|
7599 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1132
|
7600 |
#: includes/elementor/widgets/recent-posts-land-style.php:677
|
7601 |
#: includes/elementor/widgets/recent-posts-masonry.php:805
|
7602 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:579
|
7605 |
msgid "Post Info"
|
7606 |
msgstr ""
|
7607 |
|
7608 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1256
|
7609 |
#: includes/elementor/widgets/recent-posts-land-style.php:801
|
7610 |
#: includes/elementor/widgets/recent-posts-masonry.php:929
|
7611 |
#: includes/elementor/widgets/recent-posts-timeline.php:826
|
7612 |
msgid "Excerpt"
|
7613 |
msgstr ""
|
7614 |
|
7615 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1319
|
7616 |
msgid "Badge"
|
7617 |
msgstr ""
|
7618 |
|
7619 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1437
|
7620 |
#: includes/elementor/widgets/recent-posts-land-style.php:863
|
7621 |
#: includes/elementor/widgets/recent-posts-masonry.php:991
|
7622 |
#: includes/elementor/widgets/recent-posts-timeline.php:888
|
7623 |
msgid "Meta"
|
7624 |
msgstr ""
|
7625 |
|
7626 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1498
|
7627 |
msgid "Padding for meta wrapper"
|
7628 |
msgstr ""
|
7629 |
|
7630 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1637
|
7631 |
#: includes/elementor/widgets/recent-posts-masonry.php:1178
|
7632 |
#: includes/elementor/widgets/staff.php:862
|
7633 |
msgid "Padding for main wrapper"
|
7634 |
msgstr ""
|
7635 |
|
7636 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1649
|
7637 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1774
|
7638 |
#: includes/elementor/widgets/recent-posts-masonry.php:1190
|
7639 |
#: includes/elementor/widgets/staff.php:874
|
7640 |
msgid "Padding for content wrapper"
|
7641 |
msgstr ""
|
7642 |
|
7643 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1666
|
7644 |
msgid "Flip Wrapper"
|
7645 |
msgstr ""
|
7646 |
|
7647 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1916
|
7648 |
#: includes/elementor/widgets/recent-posts-masonry.php:1332
|
7649 |
msgid "Button Padding"
|
7650 |
msgstr ""
|
public/assets/js/plugins.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
/*! Phlox Core Plugin - v2.5.
|
2 |
* All required plugins
|
3 |
* http://phlox.pro/
|
4 |
*/
|
1 |
+
/*! Phlox Core Plugin - v2.5.20 (2020-05)
|
2 |
* All required plugins
|
3 |
* http://phlox.pro/
|
4 |
*/
|