Version Description
05/05/2021 =
Improved: AJAX requests for Security Enhancement
Few minor bug fix and improvements
Download this release
Release Info
Developer | re_enter_rupok |
Plugin | Elementor Essential Addons |
Version | 4.6.5 |
Comparing to | |
See all releases |
Code changes from version 4.6.4 to 4.6.5
- essential_adons_elementor.php +3 -3
- includes/Classes/WPDeveloper_Plugin_Installer.php +13 -2
- includes/Classes/WPDeveloper_Setup_Wizard.php +8 -0
- includes/Elements/Login_Register.php +9 -2
- includes/Traits/Admin.php +4 -0
- includes/Traits/Helper.php +5 -0
- includes/Traits/Library.php +4 -0
- includes/Traits/Login_Registration.php +7 -1
- languages/essential-addons-for-elementor-lite.pot +68 -64
- readme.txt +6 -1
essential_adons_elementor.php
CHANGED
@@ -4,13 +4,13 @@
|
|
4 |
* Description: The Essential plugin you install after Elementor! Packed with 40+ stunning free elements including Advanced Data Table, Event Calendar, Filterable Gallery, WooCommerce, and many more.
|
5 |
* Plugin URI: https://essential-addons.com/elementor/
|
6 |
* Author: WPDeveloper
|
7 |
-
* Version: 4.6.
|
8 |
* Author URI: https://wpdeveloper.net/
|
9 |
* Text Domain: essential-addons-for-elementor-lite
|
10 |
* Domain Path: /languages
|
11 |
*
|
12 |
* WC tested up to: 5.2.2
|
13 |
-
* Elementor tested up to: 3.2.
|
14 |
* Elementor Pro tested up to: 3.2.1
|
15 |
*/
|
16 |
|
@@ -27,7 +27,7 @@ define('EAEL_PLUGIN_FILE', __FILE__);
|
|
27 |
define('EAEL_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
28 |
define('EAEL_PLUGIN_PATH', trailingslashit(plugin_dir_path(__FILE__)));
|
29 |
define('EAEL_PLUGIN_URL', trailingslashit(plugins_url('/', __FILE__)));
|
30 |
-
define('EAEL_PLUGIN_VERSION', '4.6.
|
31 |
define('EAEL_ASSET_PATH', wp_upload_dir()['basedir'] . '/essential-addons-elementor');
|
32 |
define('EAEL_ASSET_URL', wp_upload_dir()['baseurl'] . '/essential-addons-elementor');
|
33 |
/**
|
4 |
* Description: The Essential plugin you install after Elementor! Packed with 40+ stunning free elements including Advanced Data Table, Event Calendar, Filterable Gallery, WooCommerce, and many more.
|
5 |
* Plugin URI: https://essential-addons.com/elementor/
|
6 |
* Author: WPDeveloper
|
7 |
+
* Version: 4.6.5
|
8 |
* Author URI: https://wpdeveloper.net/
|
9 |
* Text Domain: essential-addons-for-elementor-lite
|
10 |
* Domain Path: /languages
|
11 |
*
|
12 |
* WC tested up to: 5.2.2
|
13 |
+
* Elementor tested up to: 3.2.3
|
14 |
* Elementor Pro tested up to: 3.2.1
|
15 |
*/
|
16 |
|
27 |
define('EAEL_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
28 |
define('EAEL_PLUGIN_PATH', trailingslashit(plugin_dir_path(__FILE__)));
|
29 |
define('EAEL_PLUGIN_URL', trailingslashit(plugins_url('/', __FILE__)));
|
30 |
+
define('EAEL_PLUGIN_VERSION', '4.6.5');
|
31 |
define('EAEL_ASSET_PATH', wp_upload_dir()['basedir'] . '/essential-addons-elementor');
|
32 |
define('EAEL_ASSET_URL', wp_upload_dir()['baseurl'] . '/essential-addons-elementor');
|
33 |
/**
|
includes/Classes/WPDeveloper_Plugin_Installer.php
CHANGED
@@ -147,6 +147,10 @@ class WPDeveloper_Plugin_Installer
|
|
147 |
{
|
148 |
check_ajax_referer('essential-addons-elementor', 'security');
|
149 |
|
|
|
|
|
|
|
|
|
150 |
$slug = isset($_POST['slug']) ? $_POST['slug'] : '';
|
151 |
$result = $this->install_plugin($slug);
|
152 |
|
@@ -160,7 +164,10 @@ class WPDeveloper_Plugin_Installer
|
|
160 |
public function ajax_upgrade_plugin()
|
161 |
{
|
162 |
check_ajax_referer('essential-addons-elementor', 'security');
|
163 |
-
|
|
|
|
|
|
|
164 |
$basename = isset($_POST['basename']) ? $_POST['basename'] : '';
|
165 |
$result = $this->upgrade_plugin($basename);
|
166 |
|
@@ -175,6 +182,11 @@ class WPDeveloper_Plugin_Installer
|
|
175 |
{
|
176 |
check_ajax_referer('essential-addons-elementor', 'security');
|
177 |
|
|
|
|
|
|
|
|
|
|
|
178 |
$basename = isset($_POST['basename']) ? $_POST['basename'] : '';
|
179 |
$result = activate_plugin($basename, '', false, true);
|
180 |
|
@@ -185,7 +197,6 @@ class WPDeveloper_Plugin_Installer
|
|
185 |
if ($result === false) {
|
186 |
wp_send_json_error(__('Plugin couldn\'t be activated.', 'essential-addons-for-elementor-lite'));
|
187 |
}
|
188 |
-
|
189 |
wp_send_json_success(__('Plugin is activated successfully!', 'essential-addons-for-elementor-lite'));
|
190 |
}
|
191 |
}
|
147 |
{
|
148 |
check_ajax_referer('essential-addons-elementor', 'security');
|
149 |
|
150 |
+
if(!current_user_can( 'install_plugins' )) {
|
151 |
+
wp_send_json_error(__('you are not allowed to do this action', 'essential-addons-for-elementor-lite'));
|
152 |
+
}
|
153 |
+
|
154 |
$slug = isset($_POST['slug']) ? $_POST['slug'] : '';
|
155 |
$result = $this->install_plugin($slug);
|
156 |
|
164 |
public function ajax_upgrade_plugin()
|
165 |
{
|
166 |
check_ajax_referer('essential-addons-elementor', 'security');
|
167 |
+
//check user capabilities
|
168 |
+
if(!current_user_can( 'update_plugins' )) {
|
169 |
+
wp_send_json_error(__('you are not allowed to do this action', 'essential-addons-for-elementor-lite'));
|
170 |
+
}
|
171 |
$basename = isset($_POST['basename']) ? $_POST['basename'] : '';
|
172 |
$result = $this->upgrade_plugin($basename);
|
173 |
|
182 |
{
|
183 |
check_ajax_referer('essential-addons-elementor', 'security');
|
184 |
|
185 |
+
//check user capabilities
|
186 |
+
if(!current_user_can( 'activate_plugins' )) {
|
187 |
+
wp_send_json_error(__('you are not allowed to do this action', 'essential-addons-for-elementor-lite'));
|
188 |
+
}
|
189 |
+
|
190 |
$basename = isset($_POST['basename']) ? $_POST['basename'] : '';
|
191 |
$result = activate_plugin($basename, '', false, true);
|
192 |
|
197 |
if ($result === false) {
|
198 |
wp_send_json_error(__('Plugin couldn\'t be activated.', 'essential-addons-for-elementor-lite'));
|
199 |
}
|
|
|
200 |
wp_send_json_success(__('Plugin is activated successfully!', 'essential-addons-for-elementor-lite'));
|
201 |
}
|
202 |
}
|
includes/Classes/WPDeveloper_Setup_Wizard.php
CHANGED
@@ -477,6 +477,10 @@ c2.2,0,4.2-1.1,5.4-2.8L49.1,9.5C50.5,7.5,50.2,4.8,48.5,3.1z"/>
|
|
477 |
|
478 |
check_ajax_referer( 'essential-addons-elementor', 'security' );
|
479 |
|
|
|
|
|
|
|
|
|
480 |
if ( !isset( $_POST[ 'fields' ] ) ) {
|
481 |
return;
|
482 |
}
|
@@ -499,6 +503,10 @@ c2.2,0,4.2-1.1,5.4-2.8L49.1,9.5C50.5,7.5,50.2,4.8,48.5,3.1z"/>
|
|
499 |
public function save_eael_elements_data() {
|
500 |
check_ajax_referer( 'essential-addons-elementor', 'security' );
|
501 |
|
|
|
|
|
|
|
|
|
502 |
if ( !isset( $_POST[ 'fields' ] ) ) {
|
503 |
return;
|
504 |
}
|
477 |
|
478 |
check_ajax_referer( 'essential-addons-elementor', 'security' );
|
479 |
|
480 |
+
if(!current_user_can('manage_options')){
|
481 |
+
wp_send_json_error(__('you are not allowed to do this action', 'essential-addons-for-elementor-lite'));
|
482 |
+
}
|
483 |
+
|
484 |
if ( !isset( $_POST[ 'fields' ] ) ) {
|
485 |
return;
|
486 |
}
|
503 |
public function save_eael_elements_data() {
|
504 |
check_ajax_referer( 'essential-addons-elementor', 'security' );
|
505 |
|
506 |
+
if(!current_user_can('manage_options')){
|
507 |
+
wp_send_json_error(__('you are not allowed to do this action', 'essential-addons-for-elementor-lite'));
|
508 |
+
}
|
509 |
+
|
510 |
if ( !isset( $_POST[ 'fields' ] ) ) {
|
511 |
return;
|
512 |
}
|
includes/Elements/Login_Register.php
CHANGED
@@ -1155,15 +1155,22 @@ class Login_Register extends Widget_Base {
|
|
1155 |
],
|
1156 |
] );
|
1157 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1158 |
$this->add_control( 'register_user_role', [
|
1159 |
'label' => __( 'New User Role', 'essential-addons-for-elementor-lite' ),
|
1160 |
'type' => Controls_Manager::SELECT,
|
1161 |
'default' => '',
|
1162 |
-
'options' => $
|
1163 |
'separator' => 'before',
|
1164 |
] );
|
1165 |
|
1166 |
-
|
1167 |
$this->end_controls_section();
|
1168 |
}
|
1169 |
|
1155 |
],
|
1156 |
] );
|
1157 |
|
1158 |
+
if(current_user_can('create_users')){
|
1159 |
+
$user_role = $this->get_user_roles();
|
1160 |
+
}else{
|
1161 |
+
$user_role = [
|
1162 |
+
get_option( 'default_role' ) => ucfirst(get_option( 'default_role' ))
|
1163 |
+
];
|
1164 |
+
}
|
1165 |
+
|
1166 |
$this->add_control( 'register_user_role', [
|
1167 |
'label' => __( 'New User Role', 'essential-addons-for-elementor-lite' ),
|
1168 |
'type' => Controls_Manager::SELECT,
|
1169 |
'default' => '',
|
1170 |
+
'options' => $user_role,
|
1171 |
'separator' => 'before',
|
1172 |
] );
|
1173 |
|
|
|
1174 |
$this->end_controls_section();
|
1175 |
}
|
1176 |
|
includes/Traits/Admin.php
CHANGED
@@ -159,6 +159,10 @@ trait Admin {
|
|
159 |
public function save_settings() {
|
160 |
check_ajax_referer( 'essential-addons-elementor', 'security' );
|
161 |
|
|
|
|
|
|
|
|
|
162 |
if ( !isset( $_POST[ 'fields' ] ) ) {
|
163 |
return;
|
164 |
}
|
159 |
public function save_settings() {
|
160 |
check_ajax_referer( 'essential-addons-elementor', 'security' );
|
161 |
|
162 |
+
if(!current_user_can('manage_options')){
|
163 |
+
wp_send_json_error(__('you are not allowed to do this action', 'essential-addons-for-elementor-lite'));
|
164 |
+
}
|
165 |
+
|
166 |
if ( !isset( $_POST[ 'fields' ] ) ) {
|
167 |
return;
|
168 |
}
|
includes/Traits/Helper.php
CHANGED
@@ -801,6 +801,11 @@ trait Helper
|
|
801 |
|
802 |
public function templately_promo_status() {
|
803 |
check_ajax_referer( 'essential-addons-elementor', 'security' );
|
|
|
|
|
|
|
|
|
|
|
804 |
$status = update_option( 'eael_templately_promo_hide', true );
|
805 |
if ( $status ) {
|
806 |
wp_send_json_success();
|
801 |
|
802 |
public function templately_promo_status() {
|
803 |
check_ajax_referer( 'essential-addons-elementor', 'security' );
|
804 |
+
|
805 |
+
if(!current_user_can('manage_options')){
|
806 |
+
wp_send_json_error(__('you are not allowed to do this action', 'essential-addons-for-elementor-lite'));
|
807 |
+
}
|
808 |
+
|
809 |
$status = update_option( 'eael_templately_promo_hide', true );
|
810 |
if ( $status ) {
|
811 |
wp_send_json_success();
|
includes/Traits/Library.php
CHANGED
@@ -150,6 +150,10 @@ trait Library
|
|
150 |
{
|
151 |
check_ajax_referer('essential-addons-elementor', 'security');
|
152 |
|
|
|
|
|
|
|
|
|
153 |
if (isset($_REQUEST['posts'])) {
|
154 |
if (!empty($_POST['posts'])) {
|
155 |
foreach (json_decode($_POST['posts']) as $post) {
|
150 |
{
|
151 |
check_ajax_referer('essential-addons-elementor', 'security');
|
152 |
|
153 |
+
if(!current_user_can('manage_options')){
|
154 |
+
wp_send_json_error(__('you are not allowed to do this action', 'essential-addons-for-elementor-lite'));
|
155 |
+
}
|
156 |
+
|
157 |
if (isset($_REQUEST['posts'])) {
|
158 |
if (!empty($_POST['posts'])) {
|
159 |
foreach (json_decode($_POST['posts']) as $post) {
|
includes/Traits/Login_Registration.php
CHANGED
@@ -409,6 +409,12 @@ trait Login_Registration {
|
|
409 |
$user_data = apply_filters( 'eael/login-register/new-user-data', $user_data );
|
410 |
|
411 |
do_action( 'eael/login-register/before-insert-user', $user_data );
|
|
|
|
|
|
|
|
|
|
|
|
|
412 |
$user_id = wp_insert_user( $user_data );
|
413 |
do_action( 'eael/login-register/after-insert-user', $user_id, $user_data );
|
414 |
|
@@ -573,12 +579,12 @@ trait Login_Registration {
|
|
573 |
$wp_roles = get_editable_roles();
|
574 |
$roles = $wp_roles ? $wp_roles : [];
|
575 |
if ( ! empty( $roles ) && is_array( $roles ) ) {
|
|
|
576 |
foreach ( $wp_roles as $role_key => $role ) {
|
577 |
$user_roles[ $role_key ] = $role['name'];
|
578 |
}
|
579 |
}
|
580 |
}
|
581 |
-
|
582 |
return apply_filters( 'eael/login-register/new-user-roles', $user_roles );
|
583 |
}
|
584 |
|
409 |
$user_data = apply_filters( 'eael/login-register/new-user-data', $user_data );
|
410 |
|
411 |
do_action( 'eael/login-register/before-insert-user', $user_data );
|
412 |
+
$user_default_role = get_option( 'default_role' );
|
413 |
+
|
414 |
+
if(!empty($user_default_role) && empty($user_data['role'])){
|
415 |
+
$user_data['role'] = $user_default_role;
|
416 |
+
}
|
417 |
+
|
418 |
$user_id = wp_insert_user( $user_data );
|
419 |
do_action( 'eael/login-register/after-insert-user', $user_id, $user_data );
|
420 |
|
579 |
$wp_roles = get_editable_roles();
|
580 |
$roles = $wp_roles ? $wp_roles : [];
|
581 |
if ( ! empty( $roles ) && is_array( $roles ) ) {
|
582 |
+
|
583 |
foreach ( $wp_roles as $role_key => $role ) {
|
584 |
$user_roles[ $role_key ] = $role['name'];
|
585 |
}
|
586 |
}
|
587 |
}
|
|
|
588 |
return apply_filters( 'eael/login-register/new-user-roles', $user_roles );
|
589 |
}
|
590 |
|
languages/essential-addons-for-elementor-lite.pot
CHANGED
@@ -65,19 +65,23 @@ msgstr ""
|
|
65 |
msgid "Install Now!"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: ../includes/Classes/WPDeveloper_Plugin_Installer.php:
|
|
|
|
|
|
|
|
|
69 |
msgid "Plugin is installed successfully!"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: ../includes/Classes/WPDeveloper_Plugin_Installer.php:
|
73 |
msgid "Plugin is updated successfully!"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: ../includes/Classes/WPDeveloper_Plugin_Installer.php:
|
77 |
msgid "Plugin couldn't be activated."
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: ../includes/Classes/WPDeveloper_Plugin_Installer.php:
|
81 |
msgid "Plugin is activated successfully!"
|
82 |
msgstr ""
|
83 |
|
@@ -235,199 +239,199 @@ msgstr ""
|
|
235 |
msgid "Get the best out of Essential Addons & boost your Elementor design experience with Templately. Deploy in hundreds of websites with 1-click, push to cloud and collaborate with your whole team to build sites faster than ever."
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
239 |
msgid "Content Elements"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
243 |
msgid "Creative Button"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
247 |
msgid "Team Member"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
251 |
msgid "Testimonial"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
255 |
msgid "Flip Box"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
259 |
msgid "Info Box"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
263 |
msgid "Dual Color Heading"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
267 |
msgid "Tooltip"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
271 |
msgid "Advanced Accordion"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
275 |
msgid "Advanced Tabs"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
279 |
msgid "Feature List"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
283 |
msgid "Sticky Video"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
287 |
msgid "Dynamic Content Elements"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
291 |
msgid "Post Grid"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
295 |
msgid "Post Timeline"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
299 |
msgid "Data Table"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
303 |
msgid "Advanced Data Table"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
307 |
msgid "Content Ticker"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
311 |
msgid "Creative Elements"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
315 |
msgid "Countdown"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
319 |
msgid "Fancy Text"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
323 |
msgid "Filterable Gallery"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
327 |
msgid "Image Accordion"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
331 |
msgid "Progress Bar"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
335 |
msgid "Marketing & Social Feed Elements"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
339 |
msgid "Call To Action"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
343 |
msgid "Pricing Table"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
347 |
msgid "Twitter Feed"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
351 |
msgid "Facebook Feed"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
355 |
msgid "Form Styler Elements"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
359 |
msgid "Contact Form 7"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
363 |
msgid "weForms"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
367 |
msgid "Ninja Form"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
371 |
msgid "Gravity Form"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
375 |
msgid "Caldera Form"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
379 |
msgid "WPForms"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
383 |
msgid "FluentForm"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
387 |
msgid "Formstack"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
391 |
msgid "Typeform"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
395 |
msgid "Documentation Elements"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
399 |
msgid "BetterDocs Category Grid"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
403 |
msgid "BetterDocs Category Box"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
407 |
msgid "BetterDocs Search Form"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
411 |
msgid "WooCommerce Elements"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
415 |
msgid "Product Grid"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
419 |
msgid "Woo Product Carousel"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
423 |
msgid "Woo Checkout"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
427 |
msgid "Woo Product Compare"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:
|
431 |
msgid "Quick Setup Wizard- Essential Addons"
|
432 |
msgstr ""
|
433 |
|
@@ -1243,7 +1247,7 @@ msgstr ""
|
|
1243 |
msgid "Form Alignment"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: ../includes/Elements/Caldera_Forms.php:411, ../includes/Elements/Contact_Form_7.php:327, ../includes/Elements/Contact_Form_7.php:828, ../includes/Elements/Creative_Button.php:227, ../includes/Elements/Cta_Box.php:641, ../includes/Elements/Cta_Box.php:858, ../includes/Elements/Dual_Color_Header.php:81, ../includes/Elements/Flip_Box.php:872, ../includes/Elements/FluentForm.php:430, ../includes/Elements/Formstack.php:330, ../includes/Elements/GravityForms.php:343, ../includes/Elements/Login_Register.php:431, ../includes/Elements/Login_Register.php:528, ../includes/Elements/Login_Register.php:1040, ../includes/Elements/Login_Register.php:1396, ../includes/Elements/Login_Register.php:1522, ../includes/Elements/Login_Register.php:1779, ../includes/Elements/Login_Register.php:1923, ../includes/Elements/Login_Register.php:2073, ../includes/Elements/Login_Register.php:2216, ../includes/Elements/Login_Register.php:2307, ../includes/Elements/Login_Register.php:2405, ../includes/Elements/Login_Register.php:2607, ../includes/Elements/Login_Register.php:2652, ../includes/Elements/Login_Register.php:2684, ../includes/Elements/Login_Register.php:2918, ../includes/Elements/Login_Register.php:3080, ../includes/Elements/Login_Register.php:3379, ../includes/Elements/NinjaForms.php:278, ../includes/Elements/Post_Grid.php:233, ../includes/Elements/Pricing_Table.php:86, ../includes/Elements/Pricing_Table.php:468, ../includes/Elements/Product_Grid.php:268, ../includes/Elements/Team_Member.php:376, ../includes/Elements/Testimonial.php:253, ../includes/Elements/Testimonial.php:310, ../includes/Elements/TypeForm.php:196, ../includes/Elements/WeForms.php:161, ../includes/Elements/WeForms.php:631, ../includes/Elements/Woo_Checkout.php:120, ../includes/Elements/WpForms.php:267, ../includes/Traits/Controls.php:553, ../includes/Traits/Controls.php:1546, ../includes/Traits/Login_Registration.php:
|
1247 |
msgid "Default"
|
1248 |
msgstr ""
|
1249 |
|
@@ -7090,35 +7094,35 @@ msgstr ""
|
|
7090 |
msgid "Go Premium"
|
7091 |
msgstr ""
|
7092 |
|
7093 |
-
#: ../includes/Traits/Admin.php:
|
7094 |
msgid "Login | Register Settings updated"
|
7095 |
msgstr ""
|
7096 |
|
7097 |
-
#: ../includes/Traits/Admin.php:
|
7098 |
msgid "Ok, you deserve it!"
|
7099 |
msgstr ""
|
7100 |
|
7101 |
-
#: ../includes/Traits/Admin.php:
|
7102 |
msgid "I already did"
|
7103 |
msgstr ""
|
7104 |
|
7105 |
-
#: ../includes/Traits/Admin.php:
|
7106 |
msgid "Maybe Later"
|
7107 |
msgstr ""
|
7108 |
|
7109 |
-
#: ../includes/Traits/Admin.php:
|
7110 |
msgid "I need help"
|
7111 |
msgstr ""
|
7112 |
|
7113 |
-
#: ../includes/Traits/Admin.php:
|
7114 |
msgid "Never show again"
|
7115 |
msgstr ""
|
7116 |
|
7117 |
-
#: ../includes/Traits/Admin.php:
|
7118 |
msgid "We hope you're enjoying Essential Addons for Elementor! Could you please do us a BIG favor and give it a 5-star rating on WordPress to help us spread the word and boost our motivation?"
|
7119 |
msgstr ""
|
7120 |
|
7121 |
-
#: ../includes/Traits/Admin.php:
|
7122 |
msgid "You are using an incompatible version of Essential Addons PRO. Please update to v4.0.0+. If you do not see automatic update, <a href=\"https://essential-addons.com/elementor/docs/manually-update-essential-addons-pro/\" target=\"_blank\">Follow manual update guide.</a>"
|
7123 |
msgstr ""
|
7124 |
|
@@ -7594,11 +7598,11 @@ msgstr ""
|
|
7594 |
msgid "The confirmed password did not match."
|
7595 |
msgstr ""
|
7596 |
|
7597 |
-
#: ../includes/Traits/Login_Registration.php:
|
7598 |
msgid "Sorry, something went wrong. User could not be registered."
|
7599 |
msgstr ""
|
7600 |
|
7601 |
-
#: ../includes/Traits/Login_Registration.php:
|
7602 |
msgid "Your registration completed successfully."
|
7603 |
msgstr ""
|
7604 |
|
65 |
msgid "Install Now!"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: ../includes/Classes/WPDeveloper_Plugin_Installer.php:151, ../includes/Classes/WPDeveloper_Plugin_Installer.php:169, ../includes/Classes/WPDeveloper_Plugin_Installer.php:187, ../includes/Classes/WPDeveloper_Setup_Wizard.php:481, ../includes/Classes/WPDeveloper_Setup_Wizard.php:507, ../includes/Traits/Admin.php:163, ../includes/Traits/Helper.php:806, ../includes/Traits/Library.php:154
|
69 |
+
msgid "you are not allowed to do this action"
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: ../includes/Classes/WPDeveloper_Plugin_Installer.php:161
|
73 |
msgid "Plugin is installed successfully!"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: ../includes/Classes/WPDeveloper_Plugin_Installer.php:178
|
77 |
msgid "Plugin is updated successfully!"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: ../includes/Classes/WPDeveloper_Plugin_Installer.php:198
|
81 |
msgid "Plugin couldn't be activated."
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: ../includes/Classes/WPDeveloper_Plugin_Installer.php:200
|
85 |
msgid "Plugin is activated successfully!"
|
86 |
msgstr ""
|
87 |
|
239 |
msgid "Get the best out of Essential Addons & boost your Elementor design experience with Templately. Deploy in hundreds of websites with 1-click, push to cloud and collaborate with your whole team to build sites faster than ever."
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:549, ../includes/templates/admin/elements.php:5
|
243 |
msgid "Content Elements"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:553, ../includes/Elements/Creative_Button.php:32, ../includes/templates/admin/elements.php:9
|
247 |
msgid "Creative Button"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:558, ../includes/Elements/Team_Member.php:26, ../includes/templates/admin/elements.php:15
|
251 |
msgid "Team Member"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:563, ../includes/Elements/Testimonial.php:24, ../includes/templates/admin/elements.php:21
|
255 |
msgid "Testimonial"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:568, ../includes/Elements/Flip_Box.php:33, ../includes/templates/admin/elements.php:27
|
259 |
msgid "Flip Box"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:573, ../includes/Elements/Info_Box.php:30, ../includes/templates/admin/elements.php:33
|
263 |
msgid "Info Box"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:578, ../includes/Elements/Dual_Color_Header.php:28, ../includes/templates/admin/elements.php:39
|
267 |
msgid "Dual Color Heading"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:583, ../includes/Elements/Pricing_Table.php:1469, ../includes/Elements/Tooltip.php:25, ../includes/templates/admin/elements.php:45
|
271 |
msgid "Tooltip"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:588, ../includes/Elements/Adv_Accordion.php:31, ../includes/templates/admin/elements.php:51
|
275 |
msgid "Advanced Accordion"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:593, ../includes/Elements/Adv_Tabs.php:31, ../includes/templates/admin/elements.php:57
|
279 |
msgid "Advanced Tabs"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:598, ../includes/Elements/Feature_List.php:28, ../includes/Elements/Pricing_Table.php:1210, ../includes/templates/admin/elements.php:63
|
283 |
msgid "Feature List"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:604, ../includes/Elements/Sticky_Video.php:27, ../includes/templates/admin/elements.php:111
|
287 |
msgid "Sticky Video"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:615, ../includes/templates/admin/elements.php:124
|
291 |
msgid "Dynamic Content Elements"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:619, ../includes/Elements/Post_Grid.php:30, ../includes/templates/admin/elements.php:128
|
295 |
msgid "Post Grid"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:624, ../includes/Elements/Post_Timeline.php:27, ../includes/templates/admin/elements.php:134
|
299 |
msgid "Post Timeline"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:628, ../includes/Elements/Data_Table.php:32, ../includes/templates/admin/elements.php:140
|
303 |
msgid "Data Table"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:633, ../includes/Elements/Advanced_Data_Table.php:26, ../includes/templates/admin/elements.php:146
|
307 |
msgid "Advanced Data Table"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:637, ../includes/Elements/Content_Ticker.php:30, ../includes/templates/admin/elements.php:152
|
311 |
msgid "Content Ticker"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:643, ../includes/templates/admin/elements.php:201
|
315 |
msgid "Creative Elements"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:647, ../includes/Elements/Countdown.php:27, ../includes/templates/admin/elements.php:205
|
319 |
msgid "Countdown"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:652, ../includes/Elements/Fancy_Text.php:27, ../includes/Elements/Fancy_Text.php:64, ../includes/templates/admin/elements.php:211
|
323 |
msgid "Fancy Text"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:657, ../includes/Elements/Filterable_Gallery.php:32, ../includes/templates/admin/elements.php:217
|
327 |
msgid "Filterable Gallery"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:662, ../includes/Elements/Image_Accordion.php:26, ../includes/templates/admin/elements.php:223
|
331 |
msgid "Image Accordion"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:667, ../includes/Elements/Progress_Bar.php:28, ../includes/Elements/Progress_Bar.php:127, ../includes/templates/admin/elements.php:229
|
335 |
msgid "Progress Bar"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:673
|
339 |
msgid "Marketing & Social Feed Elements"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:677, ../includes/templates/admin/elements.php:324
|
343 |
msgid "Call To Action"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:682, ../includes/Elements/Pricing_Table.php:32, ../includes/templates/admin/elements.php:330
|
347 |
msgid "Pricing Table"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:687, ../includes/Elements/Twitter_Feed.php:27, ../includes/templates/admin/elements.php:420
|
351 |
msgid "Twitter Feed"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:692, ../includes/Elements/Facebook_Feed.php:28, ../includes/templates/admin/elements.php:440
|
355 |
msgid "Facebook Feed"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:699, ../includes/templates/admin/elements.php:344
|
359 |
msgid "Form Styler Elements"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:703, ../includes/Elements/Contact_Form_7.php:43, ../includes/templates/admin/elements.php:348
|
363 |
msgid "Contact Form 7"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:708, ../includes/templates/admin/elements.php:354
|
367 |
msgid "weForms"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:712, ../includes/templates/admin/elements.php:360
|
371 |
msgid "Ninja Form"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:716, ../includes/templates/admin/elements.php:366
|
375 |
msgid "Gravity Form"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:720, ../includes/Elements/Caldera_Forms.php:96, ../includes/templates/admin/elements.php:372
|
379 |
msgid "Caldera Form"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:724, ../includes/Elements/WpForms.php:27, ../includes/Elements/WpForms.php:87, ../includes/templates/admin/elements.php:378
|
383 |
msgid "WPForms"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:728, ../includes/templates/admin/elements.php:384
|
387 |
msgid "FluentForm"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:732, ../includes/Elements/Formstack.php:28, ../includes/Elements/Formstack.php:169, ../includes/templates/admin/elements.php:390
|
391 |
msgid "Formstack"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:736, ../includes/Elements/TypeForm.php:25, ../includes/Elements/TypeForm.php:126, ../includes/Elements/TypeForm.php:132, ../includes/templates/admin/elements.php:396
|
395 |
msgid "Typeform"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:746, ../includes/templates/admin/elements.php:459
|
399 |
msgid "Documentation Elements"
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:750, ../includes/Elements/Betterdocs_Category_Grid.php:30, ../includes/templates/admin/elements.php:463
|
403 |
msgid "BetterDocs Category Grid"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:754, ../includes/Elements/Betterdocs_Category_Box.php:34, ../includes/templates/admin/elements.php:469
|
407 |
msgid "BetterDocs Category Box"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:759, ../includes/Elements/Betterdocs_Search_Form.php:29, ../includes/templates/admin/elements.php:475
|
411 |
msgid "BetterDocs Search Form"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:764, ../includes/templates/admin/elements.php:482
|
415 |
msgid "WooCommerce Elements"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:768, ../includes/Elements/Product_Grid.php:62, ../includes/templates/admin/elements.php:486
|
419 |
msgid "Product Grid"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:773, ../includes/Elements/Woo_Product_Carousel.php:64, ../includes/templates/admin/elements.php:499
|
423 |
msgid "Woo Product Carousel"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:777, ../includes/Elements/Woo_Checkout.php:50, ../includes/templates/admin/elements.php:505
|
427 |
msgid "Woo Checkout"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:781, ../includes/Elements/Woo_Product_Compare.php:34, ../includes/templates/admin/elements.php:511
|
431 |
msgid "Woo Product Compare"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:797
|
435 |
msgid "Quick Setup Wizard- Essential Addons"
|
436 |
msgstr ""
|
437 |
|
1247 |
msgid "Form Alignment"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: ../includes/Elements/Caldera_Forms.php:411, ../includes/Elements/Contact_Form_7.php:327, ../includes/Elements/Contact_Form_7.php:828, ../includes/Elements/Creative_Button.php:227, ../includes/Elements/Cta_Box.php:641, ../includes/Elements/Cta_Box.php:858, ../includes/Elements/Dual_Color_Header.php:81, ../includes/Elements/Flip_Box.php:872, ../includes/Elements/FluentForm.php:430, ../includes/Elements/Formstack.php:330, ../includes/Elements/GravityForms.php:343, ../includes/Elements/Login_Register.php:431, ../includes/Elements/Login_Register.php:528, ../includes/Elements/Login_Register.php:1040, ../includes/Elements/Login_Register.php:1396, ../includes/Elements/Login_Register.php:1522, ../includes/Elements/Login_Register.php:1779, ../includes/Elements/Login_Register.php:1923, ../includes/Elements/Login_Register.php:2073, ../includes/Elements/Login_Register.php:2216, ../includes/Elements/Login_Register.php:2307, ../includes/Elements/Login_Register.php:2405, ../includes/Elements/Login_Register.php:2607, ../includes/Elements/Login_Register.php:2652, ../includes/Elements/Login_Register.php:2684, ../includes/Elements/Login_Register.php:2918, ../includes/Elements/Login_Register.php:3080, ../includes/Elements/Login_Register.php:3379, ../includes/Elements/NinjaForms.php:278, ../includes/Elements/Post_Grid.php:233, ../includes/Elements/Pricing_Table.php:86, ../includes/Elements/Pricing_Table.php:468, ../includes/Elements/Product_Grid.php:268, ../includes/Elements/Team_Member.php:376, ../includes/Elements/Testimonial.php:253, ../includes/Elements/Testimonial.php:310, ../includes/Elements/TypeForm.php:196, ../includes/Elements/WeForms.php:161, ../includes/Elements/WeForms.php:631, ../includes/Elements/Woo_Checkout.php:120, ../includes/Elements/WpForms.php:267, ../includes/Traits/Controls.php:553, ../includes/Traits/Controls.php:1546, ../includes/Traits/Login_Registration.php:577, ../includes/Traits/Woo_Product_Comparable.php:409, ../includes/Traits/Woo_Product_Comparable.php:523, ../includes/Traits/Woo_Product_Comparable.php:614, ../includes/Traits/Woo_Product_Comparable.php:683, ../includes/Template/Betterdocs-Category-Box/Layout_Default.php:4, ../includes/Template/Betterdocs-Category-Grid/Layout_Default.php:4, ../includes/Template/Content-Ticker/default.php:3, ../includes/Template/Eicon-Woocommerce/default.php:4, ../includes/Template/Post-Grid/default.php:4, ../includes/Template/Post-Timeline/default.php:3
|
1251 |
msgid "Default"
|
1252 |
msgstr ""
|
1253 |
|
7094 |
msgid "Go Premium"
|
7095 |
msgstr ""
|
7096 |
|
7097 |
+
#: ../includes/Traits/Admin.php:192
|
7098 |
msgid "Login | Register Settings updated"
|
7099 |
msgstr ""
|
7100 |
|
7101 |
+
#: ../includes/Traits/Admin.php:253
|
7102 |
msgid "Ok, you deserve it!"
|
7103 |
msgstr ""
|
7104 |
|
7105 |
+
#: ../includes/Traits/Admin.php:258
|
7106 |
msgid "I already did"
|
7107 |
msgstr ""
|
7108 |
|
7109 |
+
#: ../includes/Traits/Admin.php:266
|
7110 |
msgid "Maybe Later"
|
7111 |
msgstr ""
|
7112 |
|
7113 |
+
#: ../includes/Traits/Admin.php:274
|
7114 |
msgid "I need help"
|
7115 |
msgstr ""
|
7116 |
|
7117 |
+
#: ../includes/Traits/Admin.php:279
|
7118 |
msgid "Never show again"
|
7119 |
msgstr ""
|
7120 |
|
7121 |
+
#: ../includes/Traits/Admin.php:291
|
7122 |
msgid "We hope you're enjoying Essential Addons for Elementor! Could you please do us a BIG favor and give it a 5-star rating on WordPress to help us spread the word and boost our motivation?"
|
7123 |
msgstr ""
|
7124 |
|
7125 |
+
#: ../includes/Traits/Admin.php:305
|
7126 |
msgid "You are using an incompatible version of Essential Addons PRO. Please update to v4.0.0+. If you do not see automatic update, <a href=\"https://essential-addons.com/elementor/docs/manually-update-essential-addons-pro/\" target=\"_blank\">Follow manual update guide.</a>"
|
7127 |
msgstr ""
|
7128 |
|
7598 |
msgid "The confirmed password did not match."
|
7599 |
msgstr ""
|
7600 |
|
7601 |
+
#: ../includes/Traits/Login_Registration.php:423
|
7602 |
msgid "Sorry, something went wrong. User could not be registered."
|
7603 |
msgstr ""
|
7604 |
|
7605 |
+
#: ../includes/Traits/Login_Registration.php:466
|
7606 |
msgid "Your registration completed successfully."
|
7607 |
msgstr ""
|
7608 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: elementor, elements, addons, elementor addons, elementor widget, elementor
|
|
4 |
Requires at least: 5.0
|
5 |
Tested up to: 5.7.1
|
6 |
Requires PHP: 5.6
|
7 |
-
Stable tag: 4.6.
|
8 |
License: GPLv3
|
9 |
License URI: https://opensource.org/licenses/GPL-3.0
|
10 |
|
@@ -223,6 +223,11 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
223 |
|
224 |
== Changelog ==
|
225 |
|
|
|
|
|
|
|
|
|
|
|
226 |
= 4.6.4 - 03/05/2021 =
|
227 |
|
228 |
- Improved: Query Optimization in dynamic widgets
|
4 |
Requires at least: 5.0
|
5 |
Tested up to: 5.7.1
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 4.6.5
|
8 |
License: GPLv3
|
9 |
License URI: https://opensource.org/licenses/GPL-3.0
|
10 |
|
223 |
|
224 |
== Changelog ==
|
225 |
|
226 |
+
= 4.6.5 - 05/05/2021 =
|
227 |
+
|
228 |
+
- Improved: AJAX requests for Security Enhancement
|
229 |
+
- Few minor bug fix and improvements
|
230 |
+
|
231 |
= 4.6.4 - 03/05/2021 =
|
232 |
|
233 |
- Improved: Query Optimization in dynamic widgets
|