Version Description
Download this release
Release Info
Developer | averta |
Plugin | Shortcodes and extra features for Phlox theme |
Version | 2.6.17 |
Comparing to | |
See all releases |
Code changes from version 2.6.16 to 2.6.17
- README.txt +1 -1
- admin/assets/js/plugins.js +1 -1
- auxin-elements.php +1 -1
- includes/define.php +1 -1
- includes/elementor/widgets/responsive-table.php +112 -12
- languages/auxin-elements-fa_IR.po +19 -7
- languages/auxin-elements.pot +19 -7
- 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.5.0
|
10 |
-
Stable tag: 2.6.
|
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.5.0
|
10 |
+
Stable tag: 2.6.17
|
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.6.
|
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.6.17 (2020-09)
|
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.6.
|
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.6.17
|
16 |
* Author: averta
|
17 |
* Author URI: http://averta.net
|
18 |
* Text Domain: auxin-elements
|
includes/define.php
CHANGED
@@ -12,7 +12,7 @@ if( ! defined( 'THEME_NAME' ) ){
|
|
12 |
}
|
13 |
|
14 |
|
15 |
-
define( 'AUXELS_VERSION' , '2.6.
|
16 |
|
17 |
define( 'AUXELS_SLUG' , 'auxin-elements' );
|
18 |
|
12 |
}
|
13 |
|
14 |
|
15 |
+
define( 'AUXELS_VERSION' , '2.6.17' );
|
16 |
|
17 |
define( 'AUXELS_SLUG' , 'auxin-elements' );
|
18 |
|
includes/elementor/widgets/responsive-table.php
CHANGED
@@ -120,18 +120,46 @@ class ResponsiveTable extends Widget_Base {
|
|
120 |
/*-----------------------------------------------------------------------------------*/
|
121 |
|
122 |
$this->start_controls_section(
|
123 |
-
'
|
124 |
array(
|
125 |
-
'label' => __( 'Table
|
126 |
'tab' => Controls_Manager::TAB_STYLE
|
127 |
)
|
128 |
);
|
129 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
$this->add_group_control(
|
131 |
Group_Control_Background::get_type(),
|
132 |
array(
|
133 |
-
'name' => '
|
134 |
-
'selector' => '{{WRAPPER}}
|
135 |
'separator' => 'none'
|
136 |
)
|
137 |
);
|
@@ -139,27 +167,66 @@ class ResponsiveTable extends Widget_Base {
|
|
139 |
$this->add_group_control(
|
140 |
Group_Control_Typography::get_type(),
|
141 |
array(
|
142 |
-
'name' => '
|
143 |
'scheme' => Scheme_Typography::TYPOGRAPHY_1,
|
144 |
-
'selector' => '{{WRAPPER}}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
145 |
)
|
146 |
);
|
147 |
|
148 |
$this->end_controls_section();
|
149 |
|
150 |
$this->start_controls_section(
|
151 |
-
'
|
152 |
array(
|
153 |
-
'label' => __( 'Table
|
154 |
'tab' => Controls_Manager::TAB_STYLE
|
155 |
)
|
156 |
);
|
157 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
$this->add_group_control(
|
159 |
Group_Control_Background::get_type(),
|
160 |
array(
|
161 |
-
'name' => '
|
162 |
-
'selector' => '{{WRAPPER}}
|
163 |
'separator' => 'none'
|
164 |
)
|
165 |
);
|
@@ -167,9 +234,20 @@ class ResponsiveTable extends Widget_Base {
|
|
167 |
$this->add_group_control(
|
168 |
Group_Control_Typography::get_type(),
|
169 |
array(
|
170 |
-
'name' => '
|
171 |
'scheme' => Scheme_Typography::TYPOGRAPHY_1,
|
172 |
-
'selector' => '{{WRAPPER}}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
173 |
)
|
174 |
);
|
175 |
|
@@ -192,6 +270,17 @@ class ResponsiveTable extends Widget_Base {
|
|
192 |
)
|
193 |
);
|
194 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
195 |
$this->end_controls_section();
|
196 |
|
197 |
$this->start_controls_section(
|
@@ -211,6 +300,17 @@ class ResponsiveTable extends Widget_Base {
|
|
211 |
)
|
212 |
);
|
213 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
214 |
$this->end_controls_section();
|
215 |
}
|
216 |
|
120 |
/*-----------------------------------------------------------------------------------*/
|
121 |
|
122 |
$this->start_controls_section(
|
123 |
+
'table_body_section',
|
124 |
array(
|
125 |
+
'label' => __( 'Table Body', 'auxin-elements' ),
|
126 |
'tab' => Controls_Manager::TAB_STYLE
|
127 |
)
|
128 |
);
|
129 |
|
130 |
+
$this->add_responsive_control(
|
131 |
+
'table_body_alignment',
|
132 |
+
array(
|
133 |
+
'label' => __('Alignment','auxin-elements' ),
|
134 |
+
'type' => Controls_Manager::CHOOSE,
|
135 |
+
'options' => array(
|
136 |
+
'left' => array(
|
137 |
+
'title' => __( 'Left', 'auxin-elements' ),
|
138 |
+
'icon' => 'fa fa-align-left',
|
139 |
+
),
|
140 |
+
'center' => array(
|
141 |
+
'title' => __( 'Center', 'auxin-elements' ),
|
142 |
+
'icon' => 'fa fa-align-center',
|
143 |
+
),
|
144 |
+
'right' => array(
|
145 |
+
'title' => __( 'Right', 'auxin-elements' ),
|
146 |
+
'icon' => 'fa fa-align-right',
|
147 |
+
)
|
148 |
+
),
|
149 |
+
'default' => '',
|
150 |
+
'toggle' => true,
|
151 |
+
'selectors' => array(
|
152 |
+
'{{WRAPPER}} td' => 'text-align:{{VALUE}};',
|
153 |
+
),
|
154 |
+
'separator' => 'after'
|
155 |
+
)
|
156 |
+
);
|
157 |
+
|
158 |
$this->add_group_control(
|
159 |
Group_Control_Background::get_type(),
|
160 |
array(
|
161 |
+
'name' => 'table_body_background_normal',
|
162 |
+
'selector' => '{{WRAPPER}} td',
|
163 |
'separator' => 'none'
|
164 |
)
|
165 |
);
|
167 |
$this->add_group_control(
|
168 |
Group_Control_Typography::get_type(),
|
169 |
array(
|
170 |
+
'name' => 'table_body_typography',
|
171 |
'scheme' => Scheme_Typography::TYPOGRAPHY_1,
|
172 |
+
'selector' => '{{WRAPPER}} td'
|
173 |
+
)
|
174 |
+
);
|
175 |
+
|
176 |
+
$this->add_control(
|
177 |
+
'table_body_color',
|
178 |
+
array(
|
179 |
+
'label' => __( 'Color', 'auxin-elements' ),
|
180 |
+
'type' => Controls_Manager::COLOR,
|
181 |
+
'selectors' => array(
|
182 |
+
'{{WRAPPER}} td' => 'color:{{VALUE}};'
|
183 |
+
)
|
184 |
)
|
185 |
);
|
186 |
|
187 |
$this->end_controls_section();
|
188 |
|
189 |
$this->start_controls_section(
|
190 |
+
'table_head_section',
|
191 |
array(
|
192 |
+
'label' => __( 'Table Heading', 'auxin-elements' ),
|
193 |
'tab' => Controls_Manager::TAB_STYLE
|
194 |
)
|
195 |
);
|
196 |
|
197 |
+
$this->add_responsive_control(
|
198 |
+
'table_head_alignment',
|
199 |
+
array(
|
200 |
+
'label' => __('Alignment','auxin-elements' ),
|
201 |
+
'type' => Controls_Manager::CHOOSE,
|
202 |
+
'options' => array(
|
203 |
+
'left' => array(
|
204 |
+
'title' => __( 'Left', 'auxin-elements' ),
|
205 |
+
'icon' => 'fa fa-align-left',
|
206 |
+
),
|
207 |
+
'center' => array(
|
208 |
+
'title' => __( 'Center', 'auxin-elements' ),
|
209 |
+
'icon' => 'fa fa-align-center',
|
210 |
+
),
|
211 |
+
'right' => array(
|
212 |
+
'title' => __( 'Right', 'auxin-elements' ),
|
213 |
+
'icon' => 'fa fa-align-right',
|
214 |
+
)
|
215 |
+
),
|
216 |
+
'default' => '',
|
217 |
+
'toggle' => true,
|
218 |
+
'selectors' => array(
|
219 |
+
'{{WRAPPER}} th' => 'text-align:{{VALUE}};',
|
220 |
+
),
|
221 |
+
'separator' => 'after'
|
222 |
+
)
|
223 |
+
);
|
224 |
+
|
225 |
$this->add_group_control(
|
226 |
Group_Control_Background::get_type(),
|
227 |
array(
|
228 |
+
'name' => 'table_head_background_normal',
|
229 |
+
'selector' => '{{WRAPPER}} th',
|
230 |
'separator' => 'none'
|
231 |
)
|
232 |
);
|
234 |
$this->add_group_control(
|
235 |
Group_Control_Typography::get_type(),
|
236 |
array(
|
237 |
+
'name' => 'table_head_typography',
|
238 |
'scheme' => Scheme_Typography::TYPOGRAPHY_1,
|
239 |
+
'selector' => '{{WRAPPER}} th'
|
240 |
+
)
|
241 |
+
);
|
242 |
+
|
243 |
+
$this->add_control(
|
244 |
+
'table_head_color',
|
245 |
+
array(
|
246 |
+
'label' => __( 'Color', 'auxin-elements' ),
|
247 |
+
'type' => Controls_Manager::COLOR,
|
248 |
+
'selectors' => array(
|
249 |
+
'{{WRAPPER}} th' => 'color:{{VALUE}};'
|
250 |
+
)
|
251 |
)
|
252 |
);
|
253 |
|
270 |
)
|
271 |
);
|
272 |
|
273 |
+
$this->add_control(
|
274 |
+
'table_odd_row_color',
|
275 |
+
array(
|
276 |
+
'label' => __( 'Color', 'auxin-elements' ),
|
277 |
+
'type' => Controls_Manager::COLOR,
|
278 |
+
'selectors' => array(
|
279 |
+
'{{WRAPPER}} {{WRAPPER}} tr:nth-child(2n+1)' => 'color:{{VALUE}};'
|
280 |
+
)
|
281 |
+
)
|
282 |
+
);
|
283 |
+
|
284 |
$this->end_controls_section();
|
285 |
|
286 |
$this->start_controls_section(
|
300 |
)
|
301 |
);
|
302 |
|
303 |
+
$this->add_control(
|
304 |
+
'table_even_row_color',
|
305 |
+
array(
|
306 |
+
'label' => __( 'Color', 'auxin-elements' ),
|
307 |
+
'type' => Controls_Manager::COLOR,
|
308 |
+
'selectors' => array(
|
309 |
+
'{{WRAPPER}} {{WRAPPER}} tr:nth-child(2n)' => 'color:{{VALUE}};'
|
310 |
+
)
|
311 |
+
)
|
312 |
+
);
|
313 |
+
|
314 |
$this->end_controls_section();
|
315 |
}
|
316 |
|
languages/auxin-elements-fa_IR.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Auxin Essential Elements\n"
|
4 |
"Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
|
5 |
-
"POT-Creation-Date: 2020-09-
|
6 |
"PO-Revision-Date: 2016-11-09 12:50+0330\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
@@ -1293,6 +1293,8 @@ msgstr ""
|
|
1293 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1773
|
1294 |
#: includes/elementor/widgets/recent-posts-masonry.php:1159
|
1295 |
#: includes/elementor/widgets/recent-posts-timeline.php:130
|
|
|
|
|
1296 |
#: includes/elementor/widgets/staff.php:846
|
1297 |
#: includes/elementor/widgets/svg.php:288
|
1298 |
#: includes/elementor/widgets/testimonial.php:813
|
@@ -1331,6 +1333,8 @@ msgstr "وسط"
|
|
1331 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1769
|
1332 |
#: includes/elementor/widgets/recent-posts-masonry.php:1155
|
1333 |
#: includes/elementor/widgets/recent-posts-timeline.php:134
|
|
|
|
|
1334 |
#: includes/elementor/widgets/staff.php:827
|
1335 |
#: includes/elementor/widgets/staff.php:842
|
1336 |
#: includes/elementor/widgets/svg.php:284
|
@@ -3154,6 +3158,8 @@ msgstr "بالا"
|
|
3154 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1777
|
3155 |
#: includes/elementor/widgets/recent-posts-masonry.php:1163
|
3156 |
#: includes/elementor/widgets/recent-posts-timeline.php:138
|
|
|
|
|
3157 |
#: includes/elementor/widgets/staff.php:819
|
3158 |
#: includes/elementor/widgets/staff.php:850
|
3159 |
#: includes/elementor/widgets/svg.php:292
|
@@ -4820,6 +4826,10 @@ msgstr "تیتر گذاری"
|
|
4820 |
#: includes/elementor/widgets/recent-products.php:554
|
4821 |
#: includes/elementor/widgets/recent-products.php:628
|
4822 |
#: includes/elementor/widgets/recent-products.php:654
|
|
|
|
|
|
|
|
|
4823 |
#: includes/elementor/widgets/staff.php:443
|
4824 |
#: includes/elementor/widgets/staff.php:469
|
4825 |
#: includes/elementor/widgets/staff.php:554
|
@@ -6251,6 +6261,8 @@ msgstr "تصویر دلخواه"
|
|
6251 |
#: includes/elementor/widgets/image.php:314
|
6252 |
#: includes/elementor/widgets/modern-button.php:180
|
6253 |
#: includes/elementor/widgets/modern-button.php:800
|
|
|
|
|
6254 |
#: includes/elementor/widgets/svg.php:279
|
6255 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:427
|
6256 |
#: includes/elementor/widgets/theme-elements/copyright.php:138
|
@@ -8375,19 +8387,19 @@ msgid "Table Markup"
|
|
8375 |
msgstr ""
|
8376 |
|
8377 |
#: includes/elementor/widgets/responsive-table.php:125
|
|
|
|
|
|
|
|
|
8378 |
#, fuzzy
|
8379 |
msgid "Table Heading"
|
8380 |
msgstr "تیتر گذاری"
|
8381 |
|
8382 |
-
#: includes/elementor/widgets/responsive-table.php:
|
8383 |
-
msgid "Table Body"
|
8384 |
-
msgstr ""
|
8385 |
-
|
8386 |
-
#: includes/elementor/widgets/responsive-table.php:181
|
8387 |
msgid "Table Odd Rows"
|
8388 |
msgstr ""
|
8389 |
|
8390 |
-
#: includes/elementor/widgets/responsive-table.php:
|
8391 |
msgid "Table Even Rows"
|
8392 |
msgstr ""
|
8393 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Auxin Essential Elements\n"
|
4 |
"Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
|
5 |
+
"POT-Creation-Date: 2020-09-19 11:02:11+00:00\n"
|
6 |
"PO-Revision-Date: 2016-11-09 12:50+0330\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
1293 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1773
|
1294 |
#: includes/elementor/widgets/recent-posts-masonry.php:1159
|
1295 |
#: includes/elementor/widgets/recent-posts-timeline.php:130
|
1296 |
+
#: includes/elementor/widgets/responsive-table.php:141
|
1297 |
+
#: includes/elementor/widgets/responsive-table.php:208
|
1298 |
#: includes/elementor/widgets/staff.php:846
|
1299 |
#: includes/elementor/widgets/svg.php:288
|
1300 |
#: includes/elementor/widgets/testimonial.php:813
|
1333 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1769
|
1334 |
#: includes/elementor/widgets/recent-posts-masonry.php:1155
|
1335 |
#: includes/elementor/widgets/recent-posts-timeline.php:134
|
1336 |
+
#: includes/elementor/widgets/responsive-table.php:137
|
1337 |
+
#: includes/elementor/widgets/responsive-table.php:204
|
1338 |
#: includes/elementor/widgets/staff.php:827
|
1339 |
#: includes/elementor/widgets/staff.php:842
|
1340 |
#: includes/elementor/widgets/svg.php:284
|
3158 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1777
|
3159 |
#: includes/elementor/widgets/recent-posts-masonry.php:1163
|
3160 |
#: includes/elementor/widgets/recent-posts-timeline.php:138
|
3161 |
+
#: includes/elementor/widgets/responsive-table.php:145
|
3162 |
+
#: includes/elementor/widgets/responsive-table.php:212
|
3163 |
#: includes/elementor/widgets/staff.php:819
|
3164 |
#: includes/elementor/widgets/staff.php:850
|
3165 |
#: includes/elementor/widgets/svg.php:292
|
4826 |
#: includes/elementor/widgets/recent-products.php:554
|
4827 |
#: includes/elementor/widgets/recent-products.php:628
|
4828 |
#: includes/elementor/widgets/recent-products.php:654
|
4829 |
+
#: includes/elementor/widgets/responsive-table.php:179
|
4830 |
+
#: includes/elementor/widgets/responsive-table.php:246
|
4831 |
+
#: includes/elementor/widgets/responsive-table.php:276
|
4832 |
+
#: includes/elementor/widgets/responsive-table.php:306
|
4833 |
#: includes/elementor/widgets/staff.php:443
|
4834 |
#: includes/elementor/widgets/staff.php:469
|
4835 |
#: includes/elementor/widgets/staff.php:554
|
6261 |
#: includes/elementor/widgets/image.php:314
|
6262 |
#: includes/elementor/widgets/modern-button.php:180
|
6263 |
#: includes/elementor/widgets/modern-button.php:800
|
6264 |
+
#: includes/elementor/widgets/responsive-table.php:133
|
6265 |
+
#: includes/elementor/widgets/responsive-table.php:200
|
6266 |
#: includes/elementor/widgets/svg.php:279
|
6267 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:427
|
6268 |
#: includes/elementor/widgets/theme-elements/copyright.php:138
|
8387 |
msgstr ""
|
8388 |
|
8389 |
#: includes/elementor/widgets/responsive-table.php:125
|
8390 |
+
msgid "Table Body"
|
8391 |
+
msgstr ""
|
8392 |
+
|
8393 |
+
#: includes/elementor/widgets/responsive-table.php:192
|
8394 |
#, fuzzy
|
8395 |
msgid "Table Heading"
|
8396 |
msgstr "تیتر گذاری"
|
8397 |
|
8398 |
+
#: includes/elementor/widgets/responsive-table.php:259
|
|
|
|
|
|
|
|
|
8399 |
msgid "Table Odd Rows"
|
8400 |
msgstr ""
|
8401 |
|
8402 |
+
#: includes/elementor/widgets/responsive-table.php:289
|
8403 |
msgid "Table Even Rows"
|
8404 |
msgstr ""
|
8405 |
|
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.6.
|
5 |
"Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
|
6 |
-
"POT-Creation-Date: 2020-09-
|
7 |
"MIME-Version: 1.0\n"
|
8 |
"Content-Type: text/plain; charset=utf-8\n"
|
9 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -1200,6 +1200,8 @@ msgstr ""
|
|
1200 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1773
|
1201 |
#: includes/elementor/widgets/recent-posts-masonry.php:1159
|
1202 |
#: includes/elementor/widgets/recent-posts-timeline.php:130
|
|
|
|
|
1203 |
#: includes/elementor/widgets/staff.php:846
|
1204 |
#: includes/elementor/widgets/svg.php:288
|
1205 |
#: includes/elementor/widgets/testimonial.php:813
|
@@ -1238,6 +1240,8 @@ msgstr ""
|
|
1238 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1769
|
1239 |
#: includes/elementor/widgets/recent-posts-masonry.php:1155
|
1240 |
#: includes/elementor/widgets/recent-posts-timeline.php:134
|
|
|
|
|
1241 |
#: includes/elementor/widgets/staff.php:827
|
1242 |
#: includes/elementor/widgets/staff.php:842
|
1243 |
#: includes/elementor/widgets/svg.php:284
|
@@ -2956,6 +2960,8 @@ msgstr ""
|
|
2956 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1777
|
2957 |
#: includes/elementor/widgets/recent-posts-masonry.php:1163
|
2958 |
#: includes/elementor/widgets/recent-posts-timeline.php:138
|
|
|
|
|
2959 |
#: includes/elementor/widgets/staff.php:819
|
2960 |
#: includes/elementor/widgets/staff.php:850
|
2961 |
#: includes/elementor/widgets/svg.php:292
|
@@ -4525,6 +4531,10 @@ msgstr ""
|
|
4525 |
#: includes/elementor/widgets/recent-products.php:554
|
4526 |
#: includes/elementor/widgets/recent-products.php:628
|
4527 |
#: includes/elementor/widgets/recent-products.php:654
|
|
|
|
|
|
|
|
|
4528 |
#: includes/elementor/widgets/staff.php:443
|
4529 |
#: includes/elementor/widgets/staff.php:469
|
4530 |
#: includes/elementor/widgets/staff.php:554
|
@@ -5902,6 +5912,8 @@ msgstr ""
|
|
5902 |
#: includes/elementor/widgets/image.php:314
|
5903 |
#: includes/elementor/widgets/modern-button.php:180
|
5904 |
#: includes/elementor/widgets/modern-button.php:800
|
|
|
|
|
5905 |
#: includes/elementor/widgets/svg.php:279
|
5906 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:427
|
5907 |
#: includes/elementor/widgets/theme-elements/copyright.php:138
|
@@ -7902,18 +7914,18 @@ msgid "Table Markup"
|
|
7902 |
msgstr ""
|
7903 |
|
7904 |
#: includes/elementor/widgets/responsive-table.php:125
|
7905 |
-
msgid "Table
|
7906 |
msgstr ""
|
7907 |
|
7908 |
-
#: includes/elementor/widgets/responsive-table.php:
|
7909 |
-
msgid "Table
|
7910 |
msgstr ""
|
7911 |
|
7912 |
-
#: includes/elementor/widgets/responsive-table.php:
|
7913 |
msgid "Table Odd Rows"
|
7914 |
msgstr ""
|
7915 |
|
7916 |
-
#: includes/elementor/widgets/responsive-table.php:
|
7917 |
msgid "Table Even Rows"
|
7918 |
msgstr ""
|
7919 |
|
1 |
# Averta Copyright (c) {2020}
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
+
"Project-Id-Version: Phlox Core Elements 2.6.17\n"
|
5 |
"Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
|
6 |
+
"POT-Creation-Date: 2020-09-19 11:02:11+00:00\n"
|
7 |
"MIME-Version: 1.0\n"
|
8 |
"Content-Type: text/plain; charset=utf-8\n"
|
9 |
"Content-Transfer-Encoding: 8bit\n"
|
1200 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1773
|
1201 |
#: includes/elementor/widgets/recent-posts-masonry.php:1159
|
1202 |
#: includes/elementor/widgets/recent-posts-timeline.php:130
|
1203 |
+
#: includes/elementor/widgets/responsive-table.php:141
|
1204 |
+
#: includes/elementor/widgets/responsive-table.php:208
|
1205 |
#: includes/elementor/widgets/staff.php:846
|
1206 |
#: includes/elementor/widgets/svg.php:288
|
1207 |
#: includes/elementor/widgets/testimonial.php:813
|
1240 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1769
|
1241 |
#: includes/elementor/widgets/recent-posts-masonry.php:1155
|
1242 |
#: includes/elementor/widgets/recent-posts-timeline.php:134
|
1243 |
+
#: includes/elementor/widgets/responsive-table.php:137
|
1244 |
+
#: includes/elementor/widgets/responsive-table.php:204
|
1245 |
#: includes/elementor/widgets/staff.php:827
|
1246 |
#: includes/elementor/widgets/staff.php:842
|
1247 |
#: includes/elementor/widgets/svg.php:284
|
2960 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1777
|
2961 |
#: includes/elementor/widgets/recent-posts-masonry.php:1163
|
2962 |
#: includes/elementor/widgets/recent-posts-timeline.php:138
|
2963 |
+
#: includes/elementor/widgets/responsive-table.php:145
|
2964 |
+
#: includes/elementor/widgets/responsive-table.php:212
|
2965 |
#: includes/elementor/widgets/staff.php:819
|
2966 |
#: includes/elementor/widgets/staff.php:850
|
2967 |
#: includes/elementor/widgets/svg.php:292
|
4531 |
#: includes/elementor/widgets/recent-products.php:554
|
4532 |
#: includes/elementor/widgets/recent-products.php:628
|
4533 |
#: includes/elementor/widgets/recent-products.php:654
|
4534 |
+
#: includes/elementor/widgets/responsive-table.php:179
|
4535 |
+
#: includes/elementor/widgets/responsive-table.php:246
|
4536 |
+
#: includes/elementor/widgets/responsive-table.php:276
|
4537 |
+
#: includes/elementor/widgets/responsive-table.php:306
|
4538 |
#: includes/elementor/widgets/staff.php:443
|
4539 |
#: includes/elementor/widgets/staff.php:469
|
4540 |
#: includes/elementor/widgets/staff.php:554
|
5912 |
#: includes/elementor/widgets/image.php:314
|
5913 |
#: includes/elementor/widgets/modern-button.php:180
|
5914 |
#: includes/elementor/widgets/modern-button.php:800
|
5915 |
+
#: includes/elementor/widgets/responsive-table.php:133
|
5916 |
+
#: includes/elementor/widgets/responsive-table.php:200
|
5917 |
#: includes/elementor/widgets/svg.php:279
|
5918 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:427
|
5919 |
#: includes/elementor/widgets/theme-elements/copyright.php:138
|
7914 |
msgstr ""
|
7915 |
|
7916 |
#: includes/elementor/widgets/responsive-table.php:125
|
7917 |
+
msgid "Table Body"
|
7918 |
msgstr ""
|
7919 |
|
7920 |
+
#: includes/elementor/widgets/responsive-table.php:192
|
7921 |
+
msgid "Table Heading"
|
7922 |
msgstr ""
|
7923 |
|
7924 |
+
#: includes/elementor/widgets/responsive-table.php:259
|
7925 |
msgid "Table Odd Rows"
|
7926 |
msgstr ""
|
7927 |
|
7928 |
+
#: includes/elementor/widgets/responsive-table.php:289
|
7929 |
msgid "Table Even Rows"
|
7930 |
msgstr ""
|
7931 |
|
public/assets/js/plugins.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
/*! Phlox Core Plugin - v2.6.
|
2 |
* All required plugins
|
3 |
* http://phlox.pro/
|
4 |
*/
|
1 |
+
/*! Phlox Core Plugin - v2.6.17 (2020-09)
|
2 |
* All required plugins
|
3 |
* http://phlox.pro/
|
4 |
*/
|