ElementsKit Elementor addons (Header Footer Builder, Mega Menu Builder, Free Elementor Widgets & Elementor Templates Library) - Version 2.1.6

Version Description

Wordpress 4.9+

Download this release

Release Info

Developer ataurr
Plugin Icon wp plugin ElementsKit Elementor addons (Header Footer Builder, Mega Menu Builder, Free Elementor Widgets & Elementor Templates Library)
Version 2.1.6
Comparing to
See all releases

Code changes from version 2.1.5 to 2.1.6

Files changed (72) hide show
  1. autoloader.php +58 -58
  2. compatibility/backward/module-list.php +8 -8
  3. compatibility/backward/plugin-class-backward-compatibility.php +52 -52
  4. compatibility/backward/utils-backward-compablity.php +14 -14
  5. compatibility/backward/walker-nav-menu-backward-compatiblity.php +6 -6
  6. compatibility/backward/widget-list.php +8 -8
  7. compatibility/conflicts/init.php +55 -55
  8. compatibility/conflicts/scripts.php +74 -74
  9. compatibility/data-migration/translate-file.php +88 -88
  10. compatibility/wpml/init.php +662 -662
  11. compatibility/wpml/widgets/accordion.php +87 -87
  12. compatibility/wpml/widgets/advanced-accordion.php +79 -79
  13. compatibility/wpml/widgets/advanced-tab.php +87 -87
  14. compatibility/wpml/widgets/business-hours.php +87 -87
  15. compatibility/wpml/widgets/cat-list.php +79 -79
  16. compatibility/wpml/widgets/chart.php +79 -79
  17. compatibility/wpml/widgets/faq.php +87 -87
  18. compatibility/wpml/widgets/gallery.php +79 -79
  19. compatibility/wpml/widgets/header-info.php +79 -79
  20. compatibility/wpml/widgets/hotspot.php +87 -87
  21. compatibility/wpml/widgets/image-accordion.php +87 -87
  22. compatibility/wpml/widgets/page-list.php +87 -87
  23. compatibility/wpml/widgets/post-list.php +79 -79
  24. compatibility/wpml/widgets/pricing.php +79 -79
  25. compatibility/wpml/widgets/social-share.php +79 -79
  26. compatibility/wpml/widgets/social.php +79 -79
  27. compatibility/wpml/widgets/tab.php +87 -87
  28. compatibility/wpml/widgets/table.php +79 -79
  29. compatibility/wpml/widgets/testimonial.php +95 -95
  30. compatibility/wpml/widgets/timeline.php +111 -111
  31. config/module-list.php +128 -128
  32. config/widget-list.php +451 -446
  33. core/build-inline-scripts.php +52 -52
  34. core/build-modules.php +61 -61
  35. core/build-widgets.php +100 -100
  36. core/handler-api.php +38 -38
  37. core/handler-widget.php +55 -55
  38. elementskit-lite.php +388 -387
  39. helpers/utils.php +282 -282
  40. helpers/widget-list.php +0 -442
  41. elementskit-lite.pot → languages/elementskit-lite.pot +203 -199
  42. languages/elementskit.pot +0 -10469
  43. libs/banner/banner.php +225 -225
  44. libs/framework/assets/images/ekit_icon.svg +8 -8
  45. libs/framework/assets/images/favicon.svg +13 -13
  46. libs/framework/attr.php +81 -81
  47. libs/framework/classes/ajax.php +40 -40
  48. libs/framework/classes/utils.php +81 -81
  49. libs/framework/controls/settings/color.php +13 -13
  50. libs/framework/controls/settings/hidden.php +5 -5
  51. libs/framework/controls/settings/switch.php +43 -43
  52. libs/framework/controls/settings/text.php +13 -13
  53. libs/framework/views/settings-dashboard.php +160 -160
  54. libs/framework/views/settings-elements.php +33 -33
  55. libs/framework/views/settings-init.php +116 -116
  56. libs/framework/views/settings-modules.php +37 -37
  57. libs/framework/views/settings-userdata.php +586 -586
  58. libs/framework/views/user-consent-for-banner.php +27 -27
  59. libs/notice/notice.php +492 -492
  60. libs/pro-awareness/pro-awareness.php +442 -442
  61. libs/pro-label/admin-notice.php +30 -30
  62. libs/pro-label/init.php +23 -23
  63. libs/pro-label/views/modal.php +11 -11
  64. libs/rating/rating.php +515 -515
  65. libs/stories/stories.php +318 -318
  66. libs/stories/views/template.php +148 -148
  67. libs/template/loader.php +47 -47
  68. libs/template/transformer.php +41 -41
  69. libs/xs-migration/data-migration.php +419 -419
  70. libs/xs-migration/initiator.php +84 -84
  71. libs/xs-migration/migration-contract.php +10 -10
  72. libs/xs-migration/migration.php +762 -2364
autoloader.php CHANGED
@@ -1,58 +1,58 @@
1
- <?php
2
- namespace ElementsKit_Lite;
3
-
4
- defined( 'ABSPATH' ) || exit;
5
-
6
- /**
7
- * ElementsKit_Lite autoloader.
8
- * Handles dynamically loading classes only when needed.
9
- *
10
- * @since 1.0.0
11
- */
12
- class Autoloader {
13
-
14
- /**
15
- * Run autoloader.
16
- * Register a function as `__autoload()` implementation.
17
- *
18
- * @since 1.0.0
19
- * @access public
20
- */
21
- public static function run() {
22
- spl_autoload_register( [ __CLASS__, 'autoload' ] );
23
- }
24
-
25
- /**
26
- * Autoload.
27
- * For a given class, check if it exist and load it.
28
- *
29
- * @since 1.0.0
30
- * @access private
31
- * @param string $class Class name.
32
- */
33
- private static function autoload( $class_name ) {
34
-
35
- // If the class being requested does not start with our prefix
36
- // we know it's not one in our project.
37
- if ( 0 !== strpos( $class_name, __NAMESPACE__ ) ) {
38
- return;
39
- }
40
-
41
- $file_name = strtolower(
42
- preg_replace(
43
- [ '/\b'.__NAMESPACE__.'\\\/', '/([a-z])([A-Z])/', '/_/', '/\\\/' ],
44
- [ '', '$1-$2', '-', DIRECTORY_SEPARATOR],
45
- $class_name
46
- )
47
- );
48
-
49
- // Compile our path from the corosponding location.
50
- $file = \ElementsKit_Lite::plugin_dir() . $file_name . '.php';
51
-
52
- // If a file is found.
53
- if ( file_exists( $file ) ) {
54
- // Then load it up!
55
- require_once( $file );
56
- }
57
- }
58
- }
1
+ <?php
2
+ namespace ElementsKit_Lite;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+ /**
7
+ * ElementsKit_Lite autoloader.
8
+ * Handles dynamically loading classes only when needed.
9
+ *
10
+ * @since 1.0.0
11
+ */
12
+ class Autoloader {
13
+
14
+ /**
15
+ * Run autoloader.
16
+ * Register a function as `__autoload()` implementation.
17
+ *
18
+ * @since 1.0.0
19
+ * @access public
20
+ */
21
+ public static function run() {
22
+ spl_autoload_register( [ __CLASS__, 'autoload' ] );
23
+ }
24
+
25
+ /**
26
+ * Autoload.
27
+ * For a given class, check if it exist and load it.
28
+ *
29
+ * @since 1.0.0
30
+ * @access private
31
+ * @param string $class Class name.
32
+ */
33
+ private static function autoload( $class_name ) {
34
+
35
+ // If the class being requested does not start with our prefix
36
+ // we know it's not one in our project.
37
+ if ( 0 !== strpos( $class_name, __NAMESPACE__ ) ) {
38
+ return;
39
+ }
40
+
41
+ $file_name = strtolower(
42
+ preg_replace(
43
+ [ '/\b'.__NAMESPACE__.'\\\/', '/([a-z])([A-Z])/', '/_/', '/\\\/' ],
44
+ [ '', '$1-$2', '-', DIRECTORY_SEPARATOR],
45
+ $class_name
46
+ )
47
+ );
48
+
49
+ // Compile our path from the corosponding location.
50
+ $file = \ElementsKit_Lite::plugin_dir() . $file_name . '.php';
51
+
52
+ // If a file is found.
53
+ if ( file_exists( $file ) ) {
54
+ // Then load it up!
55
+ require_once( $file );
56
+ }
57
+ }
58
+ }
compatibility/backward/module-list.php CHANGED
@@ -1,9 +1,9 @@
1
- <?php
2
-
3
- namespace ElementsKit_Lite\Helpers;
4
-
5
- defined('ABSPATH') || exit;
6
-
7
- class Module_List extends \ElementsKit_Lite\Config\Module_List{
8
- //
9
  }
1
+ <?php
2
+
3
+ namespace ElementsKit_Lite\Helpers;
4
+
5
+ defined('ABSPATH') || exit;
6
+
7
+ class Module_List extends \ElementsKit_Lite\Config\Module_List{
8
+ //
9
  }
compatibility/backward/plugin-class-backward-compatibility.php CHANGED
@@ -1,53 +1,53 @@
1
- <?php
2
- if(!class_exists('ElementsKit')){
3
- class ElementsKit{
4
- // for backward compatibility
5
-
6
- const VERSION = '1.5.9';
7
-
8
- const PACKAGE_TYPE = 'pro';
9
-
10
- const PRODUCT_ID = '9';
11
-
12
- const MINIMUM_ELEMENTOR_VERSION = '2.4.0';
13
-
14
- const MINIMUM_PHP_VERSION = '5.6';
15
-
16
- static function api_url(){
17
- return 'https://api.wpmet.com/public/';
18
- }
19
-
20
- static function plugin_url(){
21
- return trailingslashit(plugin_dir_url( __FILE__ ));
22
- }
23
-
24
- static function plugin_dir(){
25
- return trailingslashit(plugin_dir_path( __FILE__ ));
26
- }
27
-
28
- static function widget_dir(){
29
- return self::plugin_dir() . 'widgets/';
30
- }
31
-
32
- static function widget_url(){
33
- return self::plugin_url() . 'widgets/';
34
- }
35
-
36
- static function module_dir(){
37
- return self::plugin_dir() . 'modules/';
38
- }
39
-
40
- static function module_url(){
41
- return self::plugin_url() . 'modules/';
42
- }
43
-
44
- static function lib_dir(){
45
- return self::plugin_dir() . 'libs/';
46
- }
47
-
48
- static function lib_url(){
49
- return self::plugin_url() . 'libs/';
50
- }
51
-
52
- }
53
  }
1
+ <?php
2
+ if(!class_exists('ElementsKit')){
3
+ class ElementsKit{
4
+ // for backward compatibility
5
+
6
+ const VERSION = '1.5.9';
7
+
8
+ const PACKAGE_TYPE = 'pro';
9
+
10
+ const PRODUCT_ID = '9';
11
+
12
+ const MINIMUM_ELEMENTOR_VERSION = '2.4.0';
13
+
14
+ const MINIMUM_PHP_VERSION = '5.6';
15
+
16
+ static function api_url(){
17
+ return 'https://api.wpmet.com/public/';
18
+ }
19
+
20
+ static function plugin_url(){
21
+ return trailingslashit(plugin_dir_url( __FILE__ ));
22
+ }
23
+
24
+ static function plugin_dir(){
25
+ return trailingslashit(plugin_dir_path( __FILE__ ));
26
+ }
27
+
28
+ static function widget_dir(){
29
+ return self::plugin_dir() . 'widgets/';
30
+ }
31
+
32
+ static function widget_url(){
33
+ return self::plugin_url() . 'widgets/';
34
+ }
35
+
36
+ static function module_dir(){
37
+ return self::plugin_dir() . 'modules/';
38
+ }
39
+
40
+ static function module_url(){
41
+ return self::plugin_url() . 'modules/';
42
+ }
43
+
44
+ static function lib_dir(){
45
+ return self::plugin_dir() . 'libs/';
46
+ }
47
+
48
+ static function lib_url(){
49
+ return self::plugin_url() . 'libs/';
50
+ }
51
+
52
+ }
53
  }
compatibility/backward/utils-backward-compablity.php CHANGED
@@ -1,14 +1,14 @@
1
- <?php
2
- namespace ElementsKit;
3
-
4
- defined( 'ABSPATH' ) || exit;
5
-
6
- /**
7
- * Global helper class.
8
- *
9
- * @since 1.0.0
10
- */
11
-
12
- class Utils extends \ElementsKit_Lite\Utils {
13
- //
14
- }
1
+ <?php
2
+ namespace ElementsKit;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+ /**
7
+ * Global helper class.
8
+ *
9
+ * @since 1.0.0
10
+ */
11
+
12
+ class Utils extends \ElementsKit_Lite\Utils {
13
+ //
14
+ }
compatibility/backward/walker-nav-menu-backward-compatiblity.php CHANGED
@@ -1,6 +1,6 @@
1
- <?php
2
- namespace ElementsKit;
3
-
4
- class Elementskit_Menu_Walker extends \ElementsKit_Lite\ElementsKit_Menu_Walker{
5
- //
6
- }
1
+ <?php
2
+ namespace ElementsKit;
3
+
4
+ class Elementskit_Menu_Walker extends \ElementsKit_Lite\ElementsKit_Menu_Walker{
5
+ //
6
+ }
compatibility/backward/widget-list.php CHANGED
@@ -1,9 +1,9 @@
1
- <?php
2
-
3
- namespace ElementsKit_Lite\Helpers;
4
-
5
- defined('ABSPATH') || exit;
6
-
7
- class Widget_List extends \ElementsKit_Lite\Config\Widget_List{
8
- //
9
  }
1
+ <?php
2
+
3
+ namespace ElementsKit_Lite\Helpers;
4
+
5
+ defined('ABSPATH') || exit;
6
+
7
+ class Widget_List extends \ElementsKit_Lite\Config\Widget_List{
8
+ //
9
  }
compatibility/conflicts/init.php CHANGED
@@ -1,56 +1,56 @@
1
- <?php
2
- namespace ElementsKit_Lite\Compatibility\Conflicts;
3
-
4
- defined( 'ABSPATH' ) || exit;
5
-
6
-
7
- /**
8
- * Init
9
- * Initiate all necessary classes, hooks, configs.
10
- *
11
- * @since 1.2.6
12
- */
13
- class Init {
14
-
15
- /**
16
- * Member Variable
17
- *
18
- * @var instance
19
- */
20
- private static $instance;
21
-
22
-
23
- /**
24
- * Instance.
25
- *
26
- * Ensures only one instance of the plugin class is loaded or can be loaded.
27
- *
28
- * @since 1.2.6
29
- * @access public
30
- * @static
31
- *
32
- * @return Init An instance of the class.
33
- */
34
- public static function instance() {
35
- if ( is_null( self::$instance ) ) {
36
-
37
- // Fire when ElementsKit_Lite instance.
38
- self::$instance = new self();
39
- }
40
-
41
- return self::$instance;
42
- }
43
-
44
-
45
- /**
46
- * Construct the plugin object.
47
- *
48
- * @since 1.2.6
49
- * @access public
50
- */
51
- public function __construct() {
52
- Scripts::instance();
53
- }
54
-
55
-
56
  }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\Conflicts;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+
7
+ /**
8
+ * Init
9
+ * Initiate all necessary classes, hooks, configs.
10
+ *
11
+ * @since 1.2.6
12
+ */
13
+ class Init {
14
+
15
+ /**
16
+ * Member Variable
17
+ *
18
+ * @var instance
19
+ */
20
+ private static $instance;
21
+
22
+
23
+ /**
24
+ * Instance.
25
+ *
26
+ * Ensures only one instance of the plugin class is loaded or can be loaded.
27
+ *
28
+ * @since 1.2.6
29
+ * @access public
30
+ * @static
31
+ *
32
+ * @return Init An instance of the class.
33
+ */
34
+ public static function instance() {
35
+ if ( is_null( self::$instance ) ) {
36
+
37
+ // Fire when ElementsKit_Lite instance.
38
+ self::$instance = new self();
39
+ }
40
+
41
+ return self::$instance;
42
+ }
43
+
44
+
45
+ /**
46
+ * Construct the plugin object.
47
+ *
48
+ * @since 1.2.6
49
+ * @access public
50
+ */
51
+ public function __construct() {
52
+ Scripts::instance();
53
+ }
54
+
55
+
56
  }
compatibility/conflicts/scripts.php CHANGED
@@ -1,75 +1,75 @@
1
- <?php
2
- namespace ElementsKit_Lite\Compatibility\Conflicts;
3
-
4
- defined( 'ABSPATH' ) || exit;
5
-
6
-
7
- /**
8
- * Init
9
- * Initiate all necessary classes, hooks, configs.
10
- *
11
- * @since 1.2.6
12
- */
13
- class Scripts {
14
-
15
- /**
16
- * Member Variable
17
- *
18
- * @var instance
19
- */
20
- private static $instance;
21
-
22
-
23
- /**
24
- * Instance.
25
- *
26
- * Ensures only one instance of the plugin class is loaded or can be loaded.
27
- *
28
- * @since 1.2.6
29
- * @access public
30
- * @static
31
- *
32
- * @return Init An instance of the class.
33
- */
34
- public static function instance() {
35
- if ( is_null( self::$instance ) ) {
36
-
37
- // Fire when ElementsKit_Lite instance.
38
- self::$instance = new self();
39
- }
40
-
41
- return self::$instance;
42
- }
43
-
44
-
45
- /**
46
- * Construct the plugin object.
47
- *
48
- * @since 1.2.6
49
- * @access public
50
- */
51
- public function __construct() {
52
-
53
- add_action( 'admin_enqueue_scripts', [$this, 'deregister_from_admin'] );
54
-
55
- }
56
-
57
-
58
- /**
59
- * Conflicted script deregister function
60
- *
61
- * @since 1.2.6
62
- * @access public
63
- */
64
- public function deregister_from_admin(){
65
-
66
- $screen = get_current_screen();
67
-
68
- if( in_array( $screen->id, ['edit-elementskit_template', 'toplevel_page_elementskit', 'elementskit_page_elementskit-license', 'nav-menus'] ) ){
69
- wp_deregister_script('wpsp_wp_admin_jquery2');
70
- }
71
-
72
- }
73
-
74
-
75
  }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\Conflicts;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+
7
+ /**
8
+ * Init
9
+ * Initiate all necessary classes, hooks, configs.
10
+ *
11
+ * @since 1.2.6
12
+ */
13
+ class Scripts {
14
+
15
+ /**
16
+ * Member Variable
17
+ *
18
+ * @var instance
19
+ */
20
+ private static $instance;
21
+
22
+
23
+ /**
24
+ * Instance.
25
+ *
26
+ * Ensures only one instance of the plugin class is loaded or can be loaded.
27
+ *
28
+ * @since 1.2.6
29
+ * @access public
30
+ * @static
31
+ *
32
+ * @return Init An instance of the class.
33
+ */
34
+ public static function instance() {
35
+ if ( is_null( self::$instance ) ) {
36
+
37
+ // Fire when ElementsKit_Lite instance.
38
+ self::$instance = new self();
39
+ }
40
+
41
+ return self::$instance;
42
+ }
43
+
44
+
45
+ /**
46
+ * Construct the plugin object.
47
+ *
48
+ * @since 1.2.6
49
+ * @access public
50
+ */
51
+ public function __construct() {
52
+
53
+ add_action( 'admin_enqueue_scripts', [$this, 'deregister_from_admin'] );
54
+
55
+ }
56
+
57
+
58
+ /**
59
+ * Conflicted script deregister function
60
+ *
61
+ * @since 1.2.6
62
+ * @access public
63
+ */
64
+ public function deregister_from_admin(){
65
+
66
+ $screen = get_current_screen();
67
+
68
+ if( in_array( $screen->id, ['edit-elementskit_template', 'toplevel_page_elementskit', 'elementskit_page_elementskit-license', 'nav-menus'] ) ){
69
+ wp_deregister_script('wpsp_wp_admin_jquery2');
70
+ }
71
+
72
+ }
73
+
74
+
75
  }
compatibility/data-migration/translate-file.php CHANGED
@@ -1,88 +1,88 @@
1
- <?php
2
-
3
- namespace ElementsKit_Lite\Compatibility\Data_Migration;
4
-
5
- defined('ABSPATH') || exit;
6
-
7
- class Translate_File {
8
-
9
- use \ElementsKit_Lite\Traits\Singleton;
10
-
11
- private $OK_Translate_File = 'ekit_translate_file_checked';
12
-
13
- public static function load_filesystem() {
14
-
15
- require_once ABSPATH .'wp-admin/includes/file.php';
16
-
17
- WP_Filesystem();
18
- }
19
-
20
- public function init() {
21
-
22
- $option = get_option($this->OK_Translate_File, 'no');
23
-
24
- if($option == 'no') {
25
-
26
- self::load_filesystem();
27
-
28
- global $wp_filesystem;
29
-
30
-
31
- $the_dir = WP_LANG_DIR.'/plugins/';
32
- $files = $wp_filesystem->dirlist($the_dir);
33
-
34
- $o_dom = 'elementskit-';
35
- $n_dom = 'elementskit-lite-';
36
-
37
-
38
- $file_pattern = 'elementskit-';
39
- $ln = strlen($file_pattern);
40
- $invalid_pattern = '/elementskit\-.+\-.+/';
41
-
42
- if(!empty($files)) {
43
- foreach($files as $file) {
44
-
45
- $nm = $file['name'];
46
-
47
- $dbg['cont']['pahase0'][] = 9;
48
-
49
- /**
50
- * Checking if file name is started with elementskit-
51
- */
52
- if(substr($nm, 0, $ln) == $file_pattern) {
53
-
54
- /**
55
- * Checking if file name is like this pattern elementskit-blabla-
56
- * If so we will not process it
57
- *
58
- */
59
- if(preg_match($invalid_pattern, $nm)) {
60
-
61
- continue;
62
- }
63
-
64
- /**
65
- * Preparing a new name for the file
66
- * and copying it i the same directory
67
- *
68
- */
69
- $new_name = str_replace($o_dom, $n_dom, $nm);
70
- $wp_filesystem->copy($the_dir.$nm, $the_dir.$new_name, true);
71
- }
72
- }
73
- }
74
-
75
-
76
- /**
77
- * As we have copied all the files
78
- * we do not want to run this every time
79
- * so we are updating the flag in wordpress option
80
- */
81
-
82
- update_option($this->OK_Translate_File, 'yes');
83
-
84
- }
85
-
86
- return true;
87
- }
88
- }
1
+ <?php
2
+
3
+ namespace ElementsKit_Lite\Compatibility\Data_Migration;
4
+
5
+ defined('ABSPATH') || exit;
6
+
7
+ class Translate_File {
8
+
9
+ use \ElementsKit_Lite\Traits\Singleton;
10
+
11
+ private $OK_Translate_File = 'ekit_translate_file_checked';
12
+
13
+ public static function load_filesystem() {
14
+
15
+ require_once ABSPATH .'wp-admin/includes/file.php';
16
+
17
+ WP_Filesystem();
18
+ }
19
+
20
+ public function init() {
21
+
22
+ $option = get_option($this->OK_Translate_File, 'no');
23
+
24
+ if($option == 'no') {
25
+
26
+ self::load_filesystem();
27
+
28
+ global $wp_filesystem;
29
+
30
+
31
+ $the_dir = WP_LANG_DIR.'/plugins/';
32
+ $files = $wp_filesystem->dirlist($the_dir);
33
+
34
+ $o_dom = 'elementskit-';
35
+ $n_dom = 'elementskit-lite-';
36
+
37
+
38
+ $file_pattern = 'elementskit-';
39
+ $ln = strlen($file_pattern);
40
+ $invalid_pattern = '/elementskit\-.+\-.+/';
41
+
42
+ if(!empty($files)) {
43
+ foreach($files as $file) {
44
+
45
+ $nm = $file['name'];
46
+
47
+ $dbg['cont']['pahase0'][] = 9;
48
+
49
+ /**
50
+ * Checking if file name is started with elementskit-
51
+ */
52
+ if(substr($nm, 0, $ln) == $file_pattern) {
53
+
54
+ /**
55
+ * Checking if file name is like this pattern elementskit-blabla-
56
+ * If so we will not process it
57
+ *
58
+ */
59
+ if(preg_match($invalid_pattern, $nm)) {
60
+
61
+ continue;
62
+ }
63
+
64
+ /**
65
+ * Preparing a new name for the file
66
+ * and copying it i the same directory
67
+ *
68
+ */
69
+ $new_name = str_replace($o_dom, $n_dom, $nm);
70
+ $wp_filesystem->copy($the_dir.$nm, $the_dir.$new_name, true);
71
+ }
72
+ }
73
+ }
74
+
75
+
76
+ /**
77
+ * As we have copied all the files
78
+ * we do not want to run this every time
79
+ * so we are updating the flag in wordpress option
80
+ */
81
+
82
+ update_option($this->OK_Translate_File, 'yes');
83
+
84
+ }
85
+
86
+ return true;
87
+ }
88
+ }
compatibility/wpml/init.php CHANGED
@@ -1,663 +1,663 @@
1
- <?php
2
- namespace ElementsKit_Lite\Compatibility\Wpml;
3
-
4
- defined( 'ABSPATH' ) || exit;
5
-
6
-
7
- /**
8
- * Init
9
- * Initiate all necessary classes, hooks, configs.
10
- *
11
- * @since 1.2.6
12
- */
13
- class Init {
14
-
15
- /**
16
- * Member Variable
17
- *
18
- * @var instance
19
- */
20
- private static $instance;
21
-
22
-
23
- /**
24
- * Instance.
25
- *
26
- * Ensures only one instance of the plugin class is loaded or can be loaded.
27
- *
28
- * @since 1.2.6
29
- * @access public
30
- * @static
31
- *
32
- * @return Init An instance of the class.
33
- */
34
- public static function instance() {
35
- if ( is_null( self::$instance ) ) {
36
-
37
- // Fire when ElementsKit_Lite instance.
38
- self::$instance = new self();
39
- }
40
-
41
- return self::$instance;
42
- }
43
-
44
-
45
- /**
46
- * Construct the plugin object.
47
- *
48
- * @since 1.2.6
49
- * @access public
50
- */
51
- public function __construct() {
52
- // WPML String Translation plugin exist check.
53
- if ( self::is_wpml_active() ) {
54
-
55
- $this->includes();
56
-
57
- add_filter( 'wpml_elementor_widgets_to_translate', [ $this, 'translatable_widgets' ] );
58
- }
59
- }
60
-
61
-
62
- /**
63
- * WPML String Translation plugin active check
64
- *
65
- * @since 1.2.6
66
- * @access public
67
- */
68
- public static function is_wpml_active() {
69
-
70
- include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
71
-
72
- $wpml_active = is_plugin_active( 'sitepress-multilingual-cms/sitepress.php' );
73
-
74
- $string_translation_active = is_plugin_active( 'wpml-string-translation/plugin.php' );
75
-
76
- return $wpml_active && $string_translation_active;
77
-
78
- }
79
-
80
-
81
- /**
82
- * includes
83
- *
84
- * Integrations class for complex widgets.
85
- *
86
- * @since 1.2.6
87
- * @access public
88
- */
89
- public function includes() {
90
-
91
- include_once( 'widgets/image-accordion.php' );
92
- include_once( 'widgets/accordion.php' );
93
- include_once( 'widgets/faq.php' );
94
- include_once( 'widgets/testimonial.php' );
95
- include_once( 'widgets/pricing.php' );
96
- include_once( 'widgets/social.php' );
97
- include_once( 'widgets/tab.php' );
98
- include_once( 'widgets/business-hours.php' );
99
- include_once( 'widgets/social-share.php' );
100
- include_once( 'widgets/advanced-accordion.php' );
101
- include_once( 'widgets/advanced-tab.php' );
102
- include_once( 'widgets/hotspot.php' );
103
- include_once( 'widgets/gallery.php' );
104
- include_once( 'widgets/chart.php' );
105
- include_once( 'widgets/table.php' );
106
- include_once( 'widgets/timeline.php' );
107
- include_once( 'widgets/cat-list.php' );
108
- include_once( 'widgets/page-list.php' );
109
- include_once( 'widgets/post-list.php' );
110
- include_once( 'widgets/header-info.php' );
111
-
112
- }
113
-
114
-
115
- /**
116
- * Widgets to translate
117
- *
118
- * @since 1.2.6
119
- * @param array $widgets Widget array.
120
- * @return array
121
- */
122
- function translatable_widgets( $widgets ) {
123
-
124
- $widgets['elementskit-image-accordion'] = [
125
- 'conditions' => [ 'widgetType' => 'elementskit-image-accordion' ],
126
- 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Image_Accordion',
127
- ];
128
-
129
- $widgets['elementskit-accordion'] = [
130
- 'conditions' => [ 'widgetType' => 'elementskit-accordion' ],
131
- 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Accordion',
132
- ];
133
-
134
- $widgets['elementskit-button'] = [
135
- 'conditions' => [ 'widgetType' => 'elementskit-button' ],
136
- 'fields' => [
137
- [
138
- 'field' => 'ekit_btn_text',
139
- 'type' => esc_html__( 'Label (Button)', 'elementskit-lite' ),
140
- 'editor_type' => 'LINE',
141
- ],
142
- ],
143
- ];
144
-
145
- $widgets['elementskit-heading'] = [
146
- 'conditions' => [ 'widgetType' => 'elementskit-heading' ],
147
- 'fields' => [
148
- [
149
- 'field' => 'ekit_heading_title',
150
- 'type' => esc_html__( 'Title (Heading)', 'elementskit-lite' ),
151
- 'editor_type' => 'LINE',
152
- ],
153
- [
154
- 'field' => 'ekit_heading_sub_title',
155
- 'type' => esc_html__( 'Sub Title (Heading)', 'elementskit-lite' ),
156
- 'editor_type' => 'LINE',
157
- ],
158
- [
159
- 'field' => 'ekit_heading_extra_title',
160
- 'type' => esc_html__( 'Description (Heading)', 'elementskit-lite' ),
161
- 'editor_type' => 'VISUAL',
162
- ],
163
- ],
164
- ];
165
-
166
- $widgets['elementskit-icon-box'] = [
167
- 'conditions' => [ 'widgetType' => 'elementskit-icon-box' ],
168
- 'fields' => [
169
- [
170
- 'field' => 'ekit_icon_box_title_text',
171
- 'type' => esc_html__( 'Title (Icon Box)', 'elementskit-lite' ),
172
- 'editor_type' => 'LINE',
173
- ],
174
- [
175
- 'field' => 'ekit_icon_box_description_text',
176
- 'type' => esc_html__( 'Content (Icon Box)', 'elementskit-lite' ),
177
- 'editor_type' => 'AREA',
178
- ],
179
- [
180
- 'field' => 'ekit_icon_box_btn_text',
181
- 'type' => esc_html__( 'Button Label (Icon Box)', 'elementskit-lite' ),
182
- 'editor_type' => 'LINE',
183
- ],
184
- [
185
- 'field' => 'ekit_icon_box_badge_title',
186
- 'type' => esc_html__( 'Badge Text (Icon Box)', 'elementskit-lite' ),
187
- 'editor_type' => 'LINE',
188
- ],
189
- ],
190
- ];
191
-
192
- $widgets['elementskit-image-box'] = [
193
- 'conditions' => [ 'widgetType' => 'elementskit-image-box' ],
194
- 'fields' => [
195
- [
196
- 'field' => 'ekit_image_box_title_text',
197
- 'type' => esc_html__( 'Title (Image Box)', 'elementskit-lite' ),
198
- 'editor_type' => 'LINE',
199
- ],
200
- [
201
- 'field' => 'ekit_image_box_description_text',
202
- 'type' => esc_html__( 'Description (Image Box)', 'elementskit-lite' ),
203
- 'editor_type' => 'AREA',
204
- ],
205
- [
206
- 'field' => 'ekit_image_box_btn_text',
207
- 'type' => esc_html__( 'Button Label (Image Box)', 'elementskit-lite' ),
208
- 'editor_type' => 'LINE',
209
- ],
210
- ],
211
- ];
212
-
213
- $widgets['elementskit-countdown-timer'] = [
214
- 'conditions' => [ 'widgetType' => 'elementskit-countdown-timer' ],
215
- 'fields' => [
216
- [
217
- 'field' => 'ekit_countdown_timer_weeks_label',
218
- 'type' => esc_html__( 'Weeks (Countdown Timer)', 'elementskit-lite' ),
219
- 'editor_type' => 'LINE',
220
- ],
221
- [
222
- 'field' => 'ekit_countdown_timer_days_label',
223
- 'type' => esc_html__( 'Days (Countdown Timer)', 'elementskit-lite' ),
224
- 'editor_type' => 'LINE',
225
- ],
226
- [
227
- 'field' => 'ekit_countdown_timer_hours_label',
228
- 'type' => esc_html__( 'Hours (Countdown Timer)', 'elementskit-lite' ),
229
- 'editor_type' => 'LINE',
230
- ],
231
- [
232
- 'field' => 'ekit_countdown_timer_minutes_hours_label',
233
- 'type' => esc_html__( 'Minutes (Countdown Timer)', 'elementskit-lite' ),
234
- 'editor_type' => 'LINE',
235
- ],
236
- [
237
- 'field' => 'ekit_countdown_timer_seconds_hours_label',
238
- 'type' => esc_html__( 'Seconds (Countdown Timer)', 'elementskit-lite' ),
239
- 'editor_type' => 'LINE',
240
- ],
241
- [
242
- 'field' => 'ekit_countdown_timer_title',
243
- 'type' => esc_html__( 'On Expiry Title (Countdown Timer)', 'elementskit-lite' ),
244
- 'editor_type' => 'AREA',
245
- ],
246
- [
247
- 'field' => 'ekit_countdown_timer_expiry_content',
248
- 'type' => esc_html__( 'On Expiry Content (Countdown Timer)', 'elementskit-lite' ),
249
- 'editor_type' => 'AREA',
250
- ],
251
- ],
252
- ];
253
-
254
- $widgets['elementskit-faq'] = [
255
- 'conditions' => [ 'widgetType' => 'elementskit-faq' ],
256
- 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Faq',
257
- ];
258
-
259
- $widgets['elementskit-funfact'] = [
260
- 'conditions' => [ 'widgetType' => 'elementskit-funfact' ],
261
- 'fields' => [
262
- [
263
- 'field' => 'ekit_funfact_number_suffix',
264
- 'type' => esc_html__( 'Number Suffix (Funfact)', 'elementskit-lite' ),
265
- 'editor_type' => 'LINE',
266
- ],
267
- [
268
- 'field' => 'ekit_funfact_title_text',
269
- 'type' => esc_html__( 'Title (Funfact)', 'elementskit-lite' ),
270
- 'editor_type' => 'LINE',
271
- ],
272
- [
273
- 'field' => 'ekit_funfact_super_text',
274
- 'type' => esc_html__( 'Super (Funfact)', 'elementskit-lite' ),
275
- 'editor_type' => 'LINE',
276
- ],
277
- ],
278
- ];
279
-
280
- $widgets['elementskit-image-comparison'] = [
281
- 'conditions' => [ 'widgetType' => 'elementskit-image-comparison' ],
282
- 'fields' => [
283
- [
284
- 'field' => 'ekit_img_comparison_label_before',
285
- 'type' => esc_html__( 'Before Label (Image Comparison)', 'elementskit-lite' ),
286
- 'editor_type' => 'LINE',
287
- ],
288
- [
289
- 'field' => 'ekit_img_comparison_label_after',
290
- 'type' => esc_html__( 'After Label (Image Comparison)', 'elementskit-lite' ),
291
- 'editor_type' => 'LINE',
292
- ],
293
- ],
294
- ];
295
-
296
- $widgets['elementskit-testimonial'] = [
297
- 'conditions' => [ 'widgetType' => 'elementskit-testimonial' ],
298
- 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Testimonial',
299
- ];
300
-
301
- $widgets['elementskit-pricing'] = [
302
- 'conditions' => [ 'widgetType' => 'elementskit-pricing' ],
303
- 'fields' => [
304
- [
305
- 'field' => 'ekit_pricing_table_title',
306
- 'type' => esc_html__( 'Table Title (Pricing Table)', 'elementskit-lite' ),
307
- 'editor_type' => 'LINE',
308
- ],
309
- [
310
- 'field' => 'ekit_pricing_table_subtitle',
311
- 'type' => esc_html__( 'Table Subtitle (Pricing Table)', 'elementskit-lite' ),
312
- 'editor_type' => 'AREA',
313
- ],
314
- [
315
- 'field' => 'ekit_pricing_currency_icon',
316
- 'type' => esc_html__( 'Currency (Pricing Table)', 'elementskit-lite' ),
317
- 'editor_type' => 'LINE',
318
- ],
319
- [
320
- 'field' => 'ekit_pricing_table_price', // Doesn't work for numbers
321
- 'type' => esc_html__( 'Price (Pricing Table)', 'elementskit-lite' ),
322
- 'editor_type' => 'LINE',
323
- ],
324
- [
325
- 'field' => 'ekit_pricing_table_duration',
326
- 'type' => esc_html__( 'Duration (Pricing Table)', 'elementskit-lite' ),
327
- 'editor_type' => 'LINE',
328
- ],
329
- [
330
- 'field' => 'ekit_pricing_table_content',
331
- 'type' => esc_html__( 'Table Content (Pricing Table)', 'elementskit-lite' ),
332
- 'editor_type' => 'AREA',
333
- ],
334
- [
335
- 'field' => 'ekit_pricing_btn_text',
336
- 'type' => esc_html__( 'Button Label (Pricing Table)', 'elementskit-lite' ),
337
- 'editor_type' => 'LINE',
338
- ],
339
- ],
340
- 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Pricing',
341
- ];
342
-
343
- $widgets['elementskit-team'] = [
344
- 'conditions' => [ 'widgetType' => 'elementskit-team' ],
345
- 'fields' => [
346
- [
347
- 'field' => 'ekit_team_name',
348
- 'type' => esc_html__( 'Member Name (Team)', 'elementskit-lite' ),
349
- 'editor_type' => 'LINE',
350
- ],
351
- [
352
- 'field' => 'ekit_team_position',
353
- 'type' => esc_html__( 'Member Position (Team)', 'elementskit-lite' ),
354
- 'editor_type' => 'LINE',
355
- ],
356
- [
357
- 'field' => 'ekit_team_short_description',
358
- 'type' => esc_html__( 'Short Description (Team)', 'elementskit-lite' ),
359
- 'editor_type' => 'AREA',
360
- ],
361
- [
362
- 'field' => 'ekit_team_description',
363
- 'type' => esc_html__( 'Popup Description (Team)', 'elementskit-lite' ),
364
- 'editor_type' => 'AREA',
365
- ],
366
- [
367
- 'field' => 'ekit_team_phone',
368
- 'type' => esc_html__( 'Phone (Team)', 'elementskit-lite' ),
369
- 'editor_type' => 'LINE',
370
- ],
371
- [
372
- 'field' => 'ekit_team_email',
373
- 'type' => esc_html__( 'Email (Team)', 'elementskit-lite' ),
374
- 'editor_type' => 'LINE',
375
- ],
376
- ],
377
- ];
378
-
379
- $widgets['elementskit-social-media'] = [
380
- 'conditions' => [ 'widgetType' => 'elementskit-social-media' ],
381
- 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Social',
382
- ];
383
-
384
- $widgets['elementskit-progressbar'] = [
385
- 'conditions' => [ 'widgetType' => 'elementskit-progressbar' ],
386
- 'fields' => [
387
- [
388
- 'field' => 'ekit_progressbar_title',
389
- 'type' => esc_html__( 'Title (Progress Bar)', 'elementskit-lite' ),
390
- 'editor_type' => 'LINE',
391
- ],
392
- ],
393
- ];
394
-
395
- $widgets['elementskit-mail-chimp'] = [
396
- 'conditions' => [ 'widgetType' => 'elementskit-mail-chimp' ],
397
- 'fields' => [
398
- [
399
- 'field' => 'ekit_mail_chimp_first_name_label',
400
- 'type' => esc_html__( 'First Name (Mail Chimp)', 'elementskit-lite' ),
401
- 'editor_type' => 'LINE',
402
- ],
403
- [
404
- 'field' => 'ekit_mail_chimp_first_name_placeholder',
405
- 'type' => esc_html__( 'First Name Placeholder (Mail Chimp)', 'elementskit-lite' ),
406
- 'editor_type' => 'LINE',
407
- ],
408
- [
409
- 'field' => 'ekit_mail_chimp_last_name_label',
410
- 'type' => esc_html__( 'Last Name (Mail Chimp)', 'elementskit-lite' ),
411
- 'editor_type' => 'LINE',
412
- ],
413
- [
414
- 'field' => 'ekit_mail_chimp_last_name_placeholder',
415
- 'type' => esc_html__( 'First Name Placeholder (Mail Chimp)', 'elementskit-lite' ),
416
- 'editor_type' => 'LINE',
417
- ],
418
- [
419
- 'field' => 'ekit_mail_chimp_phone_label',
420
- 'type' => esc_html__( 'Phone (Mail Chimp)', 'elementskit-lite' ),
421
- 'editor_type' => 'LINE',
422
- ],
423
- [
424
- 'field' => 'ekit_mail_chimp_phone_placeholder',
425
- 'type' => esc_html__( 'Phone Placeholder (Mail Chimp)', 'elementskit-lite' ),
426
- 'editor_type' => 'LINE',
427
- ],
428
- [
429
- 'field' => 'ekit_mail_chimp_email_address_label',
430
- 'type' => esc_html__( 'Email (Mail Chimp)', 'elementskit-lite' ),
431
- 'editor_type' => 'LINE',
432
- ],
433
- [
434
- 'field' => 'ekit_mail_chimp_email_address_placeholder',
435
- 'type' => esc_html__( 'Email Placeholder (Mail Chimp)', 'elementskit-lite' ),
436
- 'editor_type' => 'LINE',
437
- ],
438
- [
439
- 'field' => 'ekit_mail_chimp_submit',
440
- 'type' => esc_html__( 'Submit Button Text (Mail Chimp)', 'elementskit-lite' ),
441
- 'editor_type' => 'LINE',
442
- ],
443
- [
444
- 'field' => 'ekit_mail_chimp_success_message',
445
- 'type' => esc_html__( 'Success Message (Mail Chimp)', 'elementskit-lite' ),
446
- 'editor_type' => 'AREA',
447
- ],
448
- ],
449
- ];
450
-
451
- $widgets['elementskit-piechart'] = [
452
- 'conditions' => [ 'widgetType' => 'elementskit-piechart' ],
453
- 'fields' => [
454
- [
455
- 'field' => 'ekit_piechart_title',
456
- 'type' => esc_html__( 'Title (Pie Chart)', 'elementskit-lite' ),
457
- 'editor_type' => 'LINE',
458
- ],
459
- [
460
- 'field' => 'ekit_piechart_item_description',
461
- 'type' => esc_html__( 'Description (Pie Chart)', 'elementskit-lite' ),
462
- 'editor_type' => 'LINE',
463
- ],
464
- ],
465
- ];
466
-
467
- $widgets['elementskit-simple-tab'] = [
468
- 'conditions' => [ 'widgetType' => 'elementskit-simple-tab' ],
469
- 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Tab',
470
- ];
471
-
472
- $widgets['elementskit-video'] = [
473
- 'conditions' => [ 'widgetType' => 'elementskit-video' ],
474
- 'fields' => [
475
- [
476
- 'field' => 'ekit_video_popup_button_title',
477
- 'type' => esc_html__( 'Button Title (Video)', 'elementskit-lite' ),
478
- 'editor_type' => 'LINE',
479
- ],
480
- ],
481
- ];
482
-
483
- $widgets['elementskit-business-hours'] = [
484
- 'conditions' => [ 'widgetType' => 'elementskit-business-hours' ],
485
- 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Business_Hours',
486
- ];
487
-
488
- $widgets['elementskit-drop-caps'] = [
489
- 'conditions' => [ 'widgetType' => 'elementskit-drop-caps' ],
490
- 'fields' => [
491
- [
492
- 'field' => 'ekit_dropcaps_text',
493
- 'type' => esc_html__( 'Content (Drop Caps)', 'elementskit-lite' ),
494
- 'editor_type' => 'AREA',
495
- ],
496
- ],
497
- ];
498
-
499
- $widgets['elementskit-social-share'] = [
500
- 'conditions' => [ 'widgetType' => 'elementskit-social-share' ],
501
- 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Social_Share',
502
- ];
503
-
504
- $widgets['elementskit-advance-accordion'] = [
505
- 'conditions' => [ 'widgetType' => 'elementskit-advance-accordion' ],
506
- 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Advanced_Accordion',
507
- ];
508
-
509
- $widgets['elementskit-tab'] = [
510
- 'conditions' => [ 'widgetType' => 'elementskit-tab' ],
511
- 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Advanced_Tab',
512
- ];
513
-
514
- $widgets['elementskit-hotspot'] = [
515
- 'conditions' => [ 'widgetType' => 'elementskit-hotspot' ],
516
- 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Hotspot',
517
- ];
518
-
519
- $widgets['elementskit-motion-text'] = [
520
- 'conditions' => [ 'widgetType' => 'elementskit-motion-text' ],
521
- 'fields' => [
522
- [
523
- 'field' => 'ekit_motion_text_content_text',
524
- 'type' => esc_html__( 'Title (Motion Text)', 'elementskit-lite' ),
525
- 'editor_type' => 'AREA',
526
- ],
527
- ],
528
- ];
529
-
530
- $widgets['elementskit-twitter-feed'] = [
531
- 'conditions' => [ 'widgetType' => 'elementskit-twitter-feed' ],
532
- 'fields' => [
533
- [
534
- 'field' => 'ekit_twitter_follow_btn_text',
535
- 'type' => esc_html__( 'Label (Twitter)', 'elementskit-lite' ),
536
- 'editor_type' => 'LINE',
537
- ],
538
- ],
539
- ];
540
-
541
- $widgets['elementskit-instagram-feed'] = [
542
- 'conditions' => [ 'widgetType' => 'elementskit-instagram-feed' ],
543
- 'fields' => [
544
- [
545
- 'field' => 'ekit_instagram_feed_ins_follow_text',
546
- 'type' => esc_html__( 'Follow Button Text (Instagram Feed)', 'elementskit-lite' ),
547
- 'editor_type' => 'LINE',
548
- ],
549
- ],
550
- ];
551
-
552
- $widgets['elementskit-gallery'] = [
553
- 'conditions' => [ 'widgetType' => 'elementskit-gallery' ],
554
- 'fields' => [
555
- [
556
- 'field' => 'ekit_gallery_filter_all_label',
557
- 'type' => esc_html__( '"All" Filter Label (Gallery)', 'elementskit-lite' ),
558
- 'editor_type' => 'LINE',
559
- ],
560
- ],
561
- 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Gallery',
562
- ];
563
-
564
- $widgets['elementskit-chart'] = [
565
- 'conditions' => [ 'widgetType' => 'elementskit-chart' ],
566
- 'fields' => [
567
- [
568
- 'field' => 'ekit_charts_title_text',
569
- 'type' => esc_html__( 'Title (Chart)', 'elementskit-lite' ),
570
- 'editor_type' => 'LINE',
571
- ],
572
- ],
573
- 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Chart',
574
- ];
575
-
576
- $widgets['elementskit-table'] = [
577
- 'conditions' => [ 'widgetType' => 'elementskit-table' ],
578
- 'fields' => [
579
- [
580
- 'field' => 'ekit_table_navigation_prev_text',
581
- 'type' => esc_html__( 'Prev Text (Table)', 'elementskit-lite' ),
582
- 'editor_type' => 'LINE',
583
- ],
584
- [
585
- 'field' => 'ekit_table_navigation_next_text',
586
- 'type' => esc_html__( 'Next Text (Table)', 'elementskit-lite' ),
587
- 'editor_type' => 'LINE',
588
- ],
589
- ],
590
- 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Table',
591
- ];
592
-
593
- $widgets['elementskit-timeline'] = [
594
- 'conditions' => [ 'widgetType' => 'elementskit-timeline' ],
595
- 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Timeline',
596
- ];
597
-
598
- $widgets['elementskit-dual-button'] = [
599
- 'conditions' => [ 'widgetType' => 'elementskit-dual-button' ],
600
- 'fields' => [
601
- [
602
- 'field' => 'ekit_button_middle_text',
603
- 'type' => esc_html__( 'Middle Text (Dual Button)', 'elementskit-lite' ),
604
- 'editor_type' => 'LINE',
605
- ],
606
- [
607
- 'field' => 'ekit_button_one_text',
608
- 'type' => esc_html__( 'Button One Text (Dual Button)', 'elementskit-lite' ),
609
- 'editor_type' => 'LINE',
610
- ],
611
- [
612
- 'field' => 'ekit_button_two_text',
613
- 'type' => esc_html__( 'Button Two Text (Dual Button)', 'elementskit-lite' ),
614
- 'editor_type' => 'LINE',
615
- ],
616
- ],
617
- ];
618
-
619
- $widgets['elementskit-creative-button'] = [
620
- 'conditions' => [ 'widgetType' => 'elementskit-creative-button' ],
621
- 'fields' => [
622
- [
623
- 'field' => 'ekit_btn_text',
624
- 'type' => esc_html__( 'Label (Creative Button)', 'elementskit-lite' ),
625
- 'editor_type' => 'LINE',
626
- ],
627
- ],
628
- ];
629
-
630
- $widgets['elementskit-category-list'] = [
631
- 'conditions' => [ 'widgetType' => 'elementskit-category-list' ],
632
- 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Cat_List',
633
- ];
634
-
635
- $widgets['elementskit-page-list'] = [
636
- 'conditions' => [ 'widgetType' => 'elementskit-page-list' ],
637
- 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Page_List',
638
- ];
639
-
640
- $widgets['elementskit-post-list'] = [
641
- 'conditions' => [ 'widgetType' => 'elementskit-post-list' ],
642
- 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Post_List',
643
- ];
644
-
645
- $widgets['elementskit-header-info'] = [
646
- 'conditions' => [ 'widgetType' => 'elementskit-header-info' ],
647
- 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Header_Info',
648
- ];
649
-
650
- $widgets['elementskit-header-search'] = [
651
- 'conditions' => [ 'widgetType' => 'elementskit-header-search' ],
652
- 'fields' => [
653
- [
654
- 'field' => 'ekit_search_placeholder_text',
655
- 'type' => esc_html__( 'Placeholder Text (Header Search)', 'elementskit-lite' ),
656
- 'editor_type' => 'LINE',
657
- ],
658
- ],
659
- ];
660
-
661
- return $widgets;
662
- }
663
  }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\Wpml;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+
7
+ /**
8
+ * Init
9
+ * Initiate all necessary classes, hooks, configs.
10
+ *
11
+ * @since 1.2.6
12
+ */
13
+ class Init {
14
+
15
+ /**
16
+ * Member Variable
17
+ *
18
+ * @var instance
19
+ */
20
+ private static $instance;
21
+
22
+
23
+ /**
24
+ * Instance.
25
+ *
26
+ * Ensures only one instance of the plugin class is loaded or can be loaded.
27
+ *
28
+ * @since 1.2.6
29
+ * @access public
30
+ * @static
31
+ *
32
+ * @return Init An instance of the class.
33
+ */
34
+ public static function instance() {
35
+ if ( is_null( self::$instance ) ) {
36
+
37
+ // Fire when ElementsKit_Lite instance.
38
+ self::$instance = new self();
39
+ }
40
+
41
+ return self::$instance;
42
+ }
43
+
44
+
45
+ /**
46
+ * Construct the plugin object.
47
+ *
48
+ * @since 1.2.6
49
+ * @access public
50
+ */
51
+ public function __construct() {
52
+ // WPML String Translation plugin exist check.
53
+ if ( self::is_wpml_active() ) {
54
+
55
+ $this->includes();
56
+
57
+ add_filter( 'wpml_elementor_widgets_to_translate', [ $this, 'translatable_widgets' ] );
58
+ }
59
+ }
60
+
61
+
62
+ /**
63
+ * WPML String Translation plugin active check
64
+ *
65
+ * @since 1.2.6
66
+ * @access public
67
+ */
68
+ public static function is_wpml_active() {
69
+
70
+ include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
71
+
72
+ $wpml_active = is_plugin_active( 'sitepress-multilingual-cms/sitepress.php' );
73
+
74
+ $string_translation_active = is_plugin_active( 'wpml-string-translation/plugin.php' );
75
+
76
+ return $wpml_active && $string_translation_active;
77
+
78
+ }
79
+
80
+
81
+ /**
82
+ * includes
83
+ *
84
+ * Integrations class for complex widgets.
85
+ *
86
+ * @since 1.2.6
87
+ * @access public
88
+ */
89
+ public function includes() {
90
+
91
+ include_once( 'widgets/image-accordion.php' );
92
+ include_once( 'widgets/accordion.php' );
93
+ include_once( 'widgets/faq.php' );
94
+ include_once( 'widgets/testimonial.php' );
95
+ include_once( 'widgets/pricing.php' );
96
+ include_once( 'widgets/social.php' );
97
+ include_once( 'widgets/tab.php' );
98
+ include_once( 'widgets/business-hours.php' );
99
+ include_once( 'widgets/social-share.php' );
100
+ include_once( 'widgets/advanced-accordion.php' );
101
+ include_once( 'widgets/advanced-tab.php' );
102
+ include_once( 'widgets/hotspot.php' );
103
+ include_once( 'widgets/gallery.php' );
104
+ include_once( 'widgets/chart.php' );
105
+ include_once( 'widgets/table.php' );
106
+ include_once( 'widgets/timeline.php' );
107
+ include_once( 'widgets/cat-list.php' );
108
+ include_once( 'widgets/page-list.php' );
109
+ include_once( 'widgets/post-list.php' );
110
+ include_once( 'widgets/header-info.php' );
111
+
112
+ }
113
+
114
+
115
+ /**
116
+ * Widgets to translate
117
+ *
118
+ * @since 1.2.6
119
+ * @param array $widgets Widget array.
120
+ * @return array
121
+ */
122
+ function translatable_widgets( $widgets ) {
123
+
124
+ $widgets['elementskit-image-accordion'] = [
125
+ 'conditions' => [ 'widgetType' => 'elementskit-image-accordion' ],
126
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Image_Accordion',
127
+ ];
128
+
129
+ $widgets['elementskit-accordion'] = [
130
+ 'conditions' => [ 'widgetType' => 'elementskit-accordion' ],
131
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Accordion',
132
+ ];
133
+
134
+ $widgets['elementskit-button'] = [
135
+ 'conditions' => [ 'widgetType' => 'elementskit-button' ],
136
+ 'fields' => [
137
+ [
138
+ 'field' => 'ekit_btn_text',
139
+ 'type' => esc_html__( 'Label (Button)', 'elementskit-lite' ),
140
+ 'editor_type' => 'LINE',
141
+ ],
142
+ ],
143
+ ];
144
+
145
+ $widgets['elementskit-heading'] = [
146
+ 'conditions' => [ 'widgetType' => 'elementskit-heading' ],
147
+ 'fields' => [
148
+ [
149
+ 'field' => 'ekit_heading_title',
150
+ 'type' => esc_html__( 'Title (Heading)', 'elementskit-lite' ),
151
+ 'editor_type' => 'LINE',
152
+ ],
153
+ [
154
+ 'field' => 'ekit_heading_sub_title',
155
+ 'type' => esc_html__( 'Sub Title (Heading)', 'elementskit-lite' ),
156
+ 'editor_type' => 'LINE',
157
+ ],
158
+ [
159
+ 'field' => 'ekit_heading_extra_title',
160
+ 'type' => esc_html__( 'Description (Heading)', 'elementskit-lite' ),
161
+ 'editor_type' => 'VISUAL',
162
+ ],
163
+ ],
164
+ ];
165
+
166
+ $widgets['elementskit-icon-box'] = [
167
+ 'conditions' => [ 'widgetType' => 'elementskit-icon-box' ],
168
+ 'fields' => [
169
+ [
170
+ 'field' => 'ekit_icon_box_title_text',
171
+ 'type' => esc_html__( 'Title (Icon Box)', 'elementskit-lite' ),
172
+ 'editor_type' => 'LINE',
173
+ ],
174
+ [
175
+ 'field' => 'ekit_icon_box_description_text',
176
+ 'type' => esc_html__( 'Content (Icon Box)', 'elementskit-lite' ),
177
+ 'editor_type' => 'AREA',
178
+ ],
179
+ [
180
+ 'field' => 'ekit_icon_box_btn_text',
181
+ 'type' => esc_html__( 'Button Label (Icon Box)', 'elementskit-lite' ),
182
+ 'editor_type' => 'LINE',
183
+ ],
184
+ [
185
+ 'field' => 'ekit_icon_box_badge_title',
186
+ 'type' => esc_html__( 'Badge Text (Icon Box)', 'elementskit-lite' ),
187
+ 'editor_type' => 'LINE',
188
+ ],
189
+ ],
190
+ ];
191
+
192
+ $widgets['elementskit-image-box'] = [
193
+ 'conditions' => [ 'widgetType' => 'elementskit-image-box' ],
194
+ 'fields' => [
195
+ [
196
+ 'field' => 'ekit_image_box_title_text',
197
+ 'type' => esc_html__( 'Title (Image Box)', 'elementskit-lite' ),
198
+ 'editor_type' => 'LINE',
199
+ ],
200
+ [
201
+ 'field' => 'ekit_image_box_description_text',
202
+ 'type' => esc_html__( 'Description (Image Box)', 'elementskit-lite' ),
203
+ 'editor_type' => 'AREA',
204
+ ],
205
+ [
206
+ 'field' => 'ekit_image_box_btn_text',
207
+ 'type' => esc_html__( 'Button Label (Image Box)', 'elementskit-lite' ),
208
+ 'editor_type' => 'LINE',
209
+ ],
210
+ ],
211
+ ];
212
+
213
+ $widgets['elementskit-countdown-timer'] = [
214
+ 'conditions' => [ 'widgetType' => 'elementskit-countdown-timer' ],
215
+ 'fields' => [
216
+ [
217
+ 'field' => 'ekit_countdown_timer_weeks_label',
218
+ 'type' => esc_html__( 'Weeks (Countdown Timer)', 'elementskit-lite' ),
219
+ 'editor_type' => 'LINE',
220
+ ],
221
+ [
222
+ 'field' => 'ekit_countdown_timer_days_label',
223
+ 'type' => esc_html__( 'Days (Countdown Timer)', 'elementskit-lite' ),
224
+ 'editor_type' => 'LINE',
225
+ ],
226
+ [
227
+ 'field' => 'ekit_countdown_timer_hours_label',
228
+ 'type' => esc_html__( 'Hours (Countdown Timer)', 'elementskit-lite' ),
229
+ 'editor_type' => 'LINE',
230
+ ],
231
+ [
232
+ 'field' => 'ekit_countdown_timer_minutes_hours_label',
233
+ 'type' => esc_html__( 'Minutes (Countdown Timer)', 'elementskit-lite' ),
234
+ 'editor_type' => 'LINE',
235
+ ],
236
+ [
237
+ 'field' => 'ekit_countdown_timer_seconds_hours_label',
238
+ 'type' => esc_html__( 'Seconds (Countdown Timer)', 'elementskit-lite' ),
239
+ 'editor_type' => 'LINE',
240
+ ],
241
+ [
242
+ 'field' => 'ekit_countdown_timer_title',
243
+ 'type' => esc_html__( 'On Expiry Title (Countdown Timer)', 'elementskit-lite' ),
244
+ 'editor_type' => 'AREA',
245
+ ],
246
+ [
247
+ 'field' => 'ekit_countdown_timer_expiry_content',
248
+ 'type' => esc_html__( 'On Expiry Content (Countdown Timer)', 'elementskit-lite' ),
249
+ 'editor_type' => 'AREA',
250
+ ],
251
+ ],
252
+ ];
253
+
254
+ $widgets['elementskit-faq'] = [
255
+ 'conditions' => [ 'widgetType' => 'elementskit-faq' ],
256
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Faq',
257
+ ];
258
+
259
+ $widgets['elementskit-funfact'] = [
260
+ 'conditions' => [ 'widgetType' => 'elementskit-funfact' ],
261
+ 'fields' => [
262
+ [
263
+ 'field' => 'ekit_funfact_number_suffix',
264
+ 'type' => esc_html__( 'Number Suffix (Funfact)', 'elementskit-lite' ),
265
+ 'editor_type' => 'LINE',
266
+ ],
267
+ [
268
+ 'field' => 'ekit_funfact_title_text',
269
+ 'type' => esc_html__( 'Title (Funfact)', 'elementskit-lite' ),
270
+ 'editor_type' => 'LINE',
271
+ ],
272
+ [
273
+ 'field' => 'ekit_funfact_super_text',
274
+ 'type' => esc_html__( 'Super (Funfact)', 'elementskit-lite' ),
275
+ 'editor_type' => 'LINE',
276
+ ],
277
+ ],
278
+ ];
279
+
280
+ $widgets['elementskit-image-comparison'] = [
281
+ 'conditions' => [ 'widgetType' => 'elementskit-image-comparison' ],
282
+ 'fields' => [
283
+ [
284
+ 'field' => 'ekit_img_comparison_label_before',
285
+ 'type' => esc_html__( 'Before Label (Image Comparison)', 'elementskit-lite' ),
286
+ 'editor_type' => 'LINE',
287
+ ],
288
+ [
289
+ 'field' => 'ekit_img_comparison_label_after',
290
+ 'type' => esc_html__( 'After Label (Image Comparison)', 'elementskit-lite' ),
291
+ 'editor_type' => 'LINE',
292
+ ],
293
+ ],
294
+ ];
295
+
296
+ $widgets['elementskit-testimonial'] = [
297
+ 'conditions' => [ 'widgetType' => 'elementskit-testimonial' ],
298
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Testimonial',
299
+ ];
300
+
301
+ $widgets['elementskit-pricing'] = [
302
+ 'conditions' => [ 'widgetType' => 'elementskit-pricing' ],
303
+ 'fields' => [
304
+ [
305
+ 'field' => 'ekit_pricing_table_title',
306
+ 'type' => esc_html__( 'Table Title (Pricing Table)', 'elementskit-lite' ),
307
+ 'editor_type' => 'LINE',
308
+ ],
309
+ [
310
+ 'field' => 'ekit_pricing_table_subtitle',
311
+ 'type' => esc_html__( 'Table Subtitle (Pricing Table)', 'elementskit-lite' ),
312
+ 'editor_type' => 'AREA',
313
+ ],
314
+ [
315
+ 'field' => 'ekit_pricing_currency_icon',
316
+ 'type' => esc_html__( 'Currency (Pricing Table)', 'elementskit-lite' ),
317
+ 'editor_type' => 'LINE',
318
+ ],
319
+ [
320
+ 'field' => 'ekit_pricing_table_price', // Doesn't work for numbers
321
+ 'type' => esc_html__( 'Price (Pricing Table)', 'elementskit-lite' ),
322
+ 'editor_type' => 'LINE',
323
+ ],
324
+ [
325
+ 'field' => 'ekit_pricing_table_duration',
326
+ 'type' => esc_html__( 'Duration (Pricing Table)', 'elementskit-lite' ),
327
+ 'editor_type' => 'LINE',
328
+ ],
329
+ [
330
+ 'field' => 'ekit_pricing_table_content',
331
+ 'type' => esc_html__( 'Table Content (Pricing Table)', 'elementskit-lite' ),
332
+ 'editor_type' => 'AREA',
333
+ ],
334
+ [
335
+ 'field' => 'ekit_pricing_btn_text',
336
+ 'type' => esc_html__( 'Button Label (Pricing Table)', 'elementskit-lite' ),
337
+ 'editor_type' => 'LINE',
338
+ ],
339
+ ],
340
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Pricing',
341
+ ];
342
+
343
+ $widgets['elementskit-team'] = [
344
+ 'conditions' => [ 'widgetType' => 'elementskit-team' ],
345
+ 'fields' => [
346
+ [
347
+ 'field' => 'ekit_team_name',
348
+ 'type' => esc_html__( 'Member Name (Team)', 'elementskit-lite' ),
349
+ 'editor_type' => 'LINE',
350
+ ],
351
+ [
352
+ 'field' => 'ekit_team_position',
353
+ 'type' => esc_html__( 'Member Position (Team)', 'elementskit-lite' ),
354
+ 'editor_type' => 'LINE',
355
+ ],
356
+ [
357
+ 'field' => 'ekit_team_short_description',
358
+ 'type' => esc_html__( 'Short Description (Team)', 'elementskit-lite' ),
359
+ 'editor_type' => 'AREA',
360
+ ],
361
+ [
362
+ 'field' => 'ekit_team_description',
363
+ 'type' => esc_html__( 'Popup Description (Team)', 'elementskit-lite' ),
364
+ 'editor_type' => 'AREA',
365
+ ],
366
+ [
367
+ 'field' => 'ekit_team_phone',
368
+ 'type' => esc_html__( 'Phone (Team)', 'elementskit-lite' ),
369
+ 'editor_type' => 'LINE',
370
+ ],
371
+ [
372
+ 'field' => 'ekit_team_email',
373
+ 'type' => esc_html__( 'Email (Team)', 'elementskit-lite' ),
374
+ 'editor_type' => 'LINE',
375
+ ],
376
+ ],
377
+ ];
378
+
379
+ $widgets['elementskit-social-media'] = [
380
+ 'conditions' => [ 'widgetType' => 'elementskit-social-media' ],
381
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Social',
382
+ ];
383
+
384
+ $widgets['elementskit-progressbar'] = [
385
+ 'conditions' => [ 'widgetType' => 'elementskit-progressbar' ],
386
+ 'fields' => [
387
+ [
388
+ 'field' => 'ekit_progressbar_title',
389
+ 'type' => esc_html__( 'Title (Progress Bar)', 'elementskit-lite' ),
390
+ 'editor_type' => 'LINE',
391
+ ],
392
+ ],
393
+ ];
394
+
395
+ $widgets['elementskit-mail-chimp'] = [
396
+ 'conditions' => [ 'widgetType' => 'elementskit-mail-chimp' ],
397
+ 'fields' => [
398
+ [
399
+ 'field' => 'ekit_mail_chimp_first_name_label',
400
+ 'type' => esc_html__( 'First Name (Mail Chimp)', 'elementskit-lite' ),
401
+ 'editor_type' => 'LINE',
402
+ ],
403
+ [
404
+ 'field' => 'ekit_mail_chimp_first_name_placeholder',
405
+ 'type' => esc_html__( 'First Name Placeholder (Mail Chimp)', 'elementskit-lite' ),
406
+ 'editor_type' => 'LINE',
407
+ ],
408
+ [
409
+ 'field' => 'ekit_mail_chimp_last_name_label',
410
+ 'type' => esc_html__( 'Last Name (Mail Chimp)', 'elementskit-lite' ),
411
+ 'editor_type' => 'LINE',
412
+ ],
413
+ [
414
+ 'field' => 'ekit_mail_chimp_last_name_placeholder',
415
+ 'type' => esc_html__( 'First Name Placeholder (Mail Chimp)', 'elementskit-lite' ),
416
+ 'editor_type' => 'LINE',
417
+ ],
418
+ [
419
+ 'field' => 'ekit_mail_chimp_phone_label',
420
+ 'type' => esc_html__( 'Phone (Mail Chimp)', 'elementskit-lite' ),
421
+ 'editor_type' => 'LINE',
422
+ ],
423
+ [
424
+ 'field' => 'ekit_mail_chimp_phone_placeholder',
425
+ 'type' => esc_html__( 'Phone Placeholder (Mail Chimp)', 'elementskit-lite' ),
426
+ 'editor_type' => 'LINE',
427
+ ],
428
+ [
429
+ 'field' => 'ekit_mail_chimp_email_address_label',
430
+ 'type' => esc_html__( 'Email (Mail Chimp)', 'elementskit-lite' ),
431
+ 'editor_type' => 'LINE',
432
+ ],
433
+ [
434
+ 'field' => 'ekit_mail_chimp_email_address_placeholder',
435
+ 'type' => esc_html__( 'Email Placeholder (Mail Chimp)', 'elementskit-lite' ),
436
+ 'editor_type' => 'LINE',
437
+ ],
438
+ [
439
+ 'field' => 'ekit_mail_chimp_submit',
440
+ 'type' => esc_html__( 'Submit Button Text (Mail Chimp)', 'elementskit-lite' ),
441
+ 'editor_type' => 'LINE',
442
+ ],
443
+ [
444
+ 'field' => 'ekit_mail_chimp_success_message',
445
+ 'type' => esc_html__( 'Success Message (Mail Chimp)', 'elementskit-lite' ),
446
+ 'editor_type' => 'AREA',
447
+ ],
448
+ ],
449
+ ];
450
+
451
+ $widgets['elementskit-piechart'] = [
452
+ 'conditions' => [ 'widgetType' => 'elementskit-piechart' ],
453
+ 'fields' => [
454
+ [
455
+ 'field' => 'ekit_piechart_title',
456
+ 'type' => esc_html__( 'Title (Pie Chart)', 'elementskit-lite' ),
457
+ 'editor_type' => 'LINE',
458
+ ],
459
+ [
460
+ 'field' => 'ekit_piechart_item_description',
461
+ 'type' => esc_html__( 'Description (Pie Chart)', 'elementskit-lite' ),
462
+ 'editor_type' => 'LINE',
463
+ ],
464
+ ],
465
+ ];
466
+
467
+ $widgets['elementskit-simple-tab'] = [
468
+ 'conditions' => [ 'widgetType' => 'elementskit-simple-tab' ],
469
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Tab',
470
+ ];
471
+
472
+ $widgets['elementskit-video'] = [
473
+ 'conditions' => [ 'widgetType' => 'elementskit-video' ],
474
+ 'fields' => [
475
+ [
476
+ 'field' => 'ekit_video_popup_button_title',
477
+ 'type' => esc_html__( 'Button Title (Video)', 'elementskit-lite' ),
478
+ 'editor_type' => 'LINE',
479
+ ],
480
+ ],
481
+ ];
482
+
483
+ $widgets['elementskit-business-hours'] = [
484
+ 'conditions' => [ 'widgetType' => 'elementskit-business-hours' ],
485
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Business_Hours',
486
+ ];
487
+
488
+ $widgets['elementskit-drop-caps'] = [
489
+ 'conditions' => [ 'widgetType' => 'elementskit-drop-caps' ],
490
+ 'fields' => [
491
+ [
492
+ 'field' => 'ekit_dropcaps_text',
493
+ 'type' => esc_html__( 'Content (Drop Caps)', 'elementskit-lite' ),
494
+ 'editor_type' => 'AREA',
495
+ ],
496
+ ],
497
+ ];
498
+
499
+ $widgets['elementskit-social-share'] = [
500
+ 'conditions' => [ 'widgetType' => 'elementskit-social-share' ],
501
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Social_Share',
502
+ ];
503
+
504
+ $widgets['elementskit-advance-accordion'] = [
505
+ 'conditions' => [ 'widgetType' => 'elementskit-advance-accordion' ],
506
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Advanced_Accordion',
507
+ ];
508
+
509
+ $widgets['elementskit-tab'] = [
510
+ 'conditions' => [ 'widgetType' => 'elementskit-tab' ],
511
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Advanced_Tab',
512
+ ];
513
+
514
+ $widgets['elementskit-hotspot'] = [
515
+ 'conditions' => [ 'widgetType' => 'elementskit-hotspot' ],
516
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Hotspot',
517
+ ];
518
+
519
+ $widgets['elementskit-motion-text'] = [
520
+ 'conditions' => [ 'widgetType' => 'elementskit-motion-text' ],
521
+ 'fields' => [
522
+ [
523
+ 'field' => 'ekit_motion_text_content_text',
524
+ 'type' => esc_html__( 'Title (Motion Text)', 'elementskit-lite' ),
525
+ 'editor_type' => 'AREA',
526
+ ],
527
+ ],
528
+ ];
529
+
530
+ $widgets['elementskit-twitter-feed'] = [
531
+ 'conditions' => [ 'widgetType' => 'elementskit-twitter-feed' ],
532
+ 'fields' => [
533
+ [
534
+ 'field' => 'ekit_twitter_follow_btn_text',
535
+ 'type' => esc_html__( 'Label (Twitter)', 'elementskit-lite' ),
536
+ 'editor_type' => 'LINE',
537
+ ],
538
+ ],
539
+ ];
540
+
541
+ $widgets['elementskit-instagram-feed'] = [
542
+ 'conditions' => [ 'widgetType' => 'elementskit-instagram-feed' ],
543
+ 'fields' => [
544
+ [
545
+ 'field' => 'ekit_instagram_feed_ins_follow_text',
546
+ 'type' => esc_html__( 'Follow Button Text (Instagram Feed)', 'elementskit-lite' ),
547
+ 'editor_type' => 'LINE',
548
+ ],
549
+ ],
550
+ ];
551
+
552
+ $widgets['elementskit-gallery'] = [
553
+ 'conditions' => [ 'widgetType' => 'elementskit-gallery' ],
554
+ 'fields' => [
555
+ [
556
+ 'field' => 'ekit_gallery_filter_all_label',
557
+ 'type' => esc_html__( '"All" Filter Label (Gallery)', 'elementskit-lite' ),
558
+ 'editor_type' => 'LINE',
559
+ ],
560
+ ],
561
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Gallery',
562
+ ];
563
+
564
+ $widgets['elementskit-chart'] = [
565
+ 'conditions' => [ 'widgetType' => 'elementskit-chart' ],
566
+ 'fields' => [
567
+ [
568
+ 'field' => 'ekit_charts_title_text',
569
+ 'type' => esc_html__( 'Title (Chart)', 'elementskit-lite' ),
570
+ 'editor_type' => 'LINE',
571
+ ],
572
+ ],
573
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Chart',
574
+ ];
575
+
576
+ $widgets['elementskit-table'] = [
577
+ 'conditions' => [ 'widgetType' => 'elementskit-table' ],
578
+ 'fields' => [
579
+ [
580
+ 'field' => 'ekit_table_navigation_prev_text',
581
+ 'type' => esc_html__( 'Prev Text (Table)', 'elementskit-lite' ),
582
+ 'editor_type' => 'LINE',
583
+ ],
584
+ [
585
+ 'field' => 'ekit_table_navigation_next_text',
586
+ 'type' => esc_html__( 'Next Text (Table)', 'elementskit-lite' ),
587
+ 'editor_type' => 'LINE',
588
+ ],
589
+ ],
590
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Table',
591
+ ];
592
+
593
+ $widgets['elementskit-timeline'] = [
594
+ 'conditions' => [ 'widgetType' => 'elementskit-timeline' ],
595
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Timeline',
596
+ ];
597
+
598
+ $widgets['elementskit-dual-button'] = [
599
+ 'conditions' => [ 'widgetType' => 'elementskit-dual-button' ],
600
+ 'fields' => [
601
+ [
602
+ 'field' => 'ekit_button_middle_text',
603
+ 'type' => esc_html__( 'Middle Text (Dual Button)', 'elementskit-lite' ),
604
+ 'editor_type' => 'LINE',
605
+ ],
606
+ [
607
+ 'field' => 'ekit_button_one_text',
608
+ 'type' => esc_html__( 'Button One Text (Dual Button)', 'elementskit-lite' ),
609
+ 'editor_type' => 'LINE',
610
+ ],
611
+ [
612
+ 'field' => 'ekit_button_two_text',
613
+ 'type' => esc_html__( 'Button Two Text (Dual Button)', 'elementskit-lite' ),
614
+ 'editor_type' => 'LINE',
615
+ ],
616
+ ],
617
+ ];
618
+
619
+ $widgets['elementskit-creative-button'] = [
620
+ 'conditions' => [ 'widgetType' => 'elementskit-creative-button' ],
621
+ 'fields' => [
622
+ [
623
+ 'field' => 'ekit_btn_text',
624
+ 'type' => esc_html__( 'Label (Creative Button)', 'elementskit-lite' ),
625
+ 'editor_type' => 'LINE',
626
+ ],
627
+ ],
628
+ ];
629
+
630
+ $widgets['elementskit-category-list'] = [
631
+ 'conditions' => [ 'widgetType' => 'elementskit-category-list' ],
632
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Cat_List',
633
+ ];
634
+
635
+ $widgets['elementskit-page-list'] = [
636
+ 'conditions' => [ 'widgetType' => 'elementskit-page-list' ],
637
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Page_List',
638
+ ];
639
+
640
+ $widgets['elementskit-post-list'] = [
641
+ 'conditions' => [ 'widgetType' => 'elementskit-post-list' ],
642
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Post_List',
643
+ ];
644
+
645
+ $widgets['elementskit-header-info'] = [
646
+ 'conditions' => [ 'widgetType' => 'elementskit-header-info' ],
647
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Header_Info',
648
+ ];
649
+
650
+ $widgets['elementskit-header-search'] = [
651
+ 'conditions' => [ 'widgetType' => 'elementskit-header-search' ],
652
+ 'fields' => [
653
+ [
654
+ 'field' => 'ekit_search_placeholder_text',
655
+ 'type' => esc_html__( 'Placeholder Text (Header Search)', 'elementskit-lite' ),
656
+ 'editor_type' => 'LINE',
657
+ ],
658
+ ],
659
+ ];
660
+
661
+ return $widgets;
662
+ }
663
  }
compatibility/wpml/widgets/accordion.php CHANGED
@@ -1,87 +1,87 @@
1
- <?php
2
- namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Accordion extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_accordion_items';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'acc_title',
36
- 'acc_content',
37
- );
38
- }
39
-
40
- /**
41
- * Method for setting the title for each translatable field
42
- *
43
- * @since 1.2.6
44
- *
45
- * @param string $field The name of the field.
46
- * @return string
47
- */
48
- protected function get_title( $field ) {
49
-
50
- switch ( $field ) {
51
- case 'acc_title':
52
- return esc_html__( 'Title (Accordion)', 'elementskit-lite' );
53
- break;
54
-
55
- case 'acc_content':
56
- return esc_html__( 'Description (Accordion)', 'elementskit-lite' );
57
- break;
58
-
59
- default:
60
- return '';
61
- }
62
-
63
- }
64
-
65
- /**
66
- * Method for determining the editor type for each field
67
- *
68
- * @since 1.2.6
69
- *
70
- * @param string $field Name of the field.
71
- * @return string
72
- */
73
- protected function get_editor_type( $field ) {
74
-
75
- switch ( $field ) {
76
- case 'acc_title':
77
- return 'LINE';
78
-
79
- case 'acc_content':
80
- return 'VISUAL';
81
-
82
- default:
83
- return '';
84
- }
85
-
86
- }
87
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Accordion extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_accordion_items';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'acc_title',
36
+ 'acc_content',
37
+ );
38
+ }
39
+
40
+ /**
41
+ * Method for setting the title for each translatable field
42
+ *
43
+ * @since 1.2.6
44
+ *
45
+ * @param string $field The name of the field.
46
+ * @return string
47
+ */
48
+ protected function get_title( $field ) {
49
+
50
+ switch ( $field ) {
51
+ case 'acc_title':
52
+ return esc_html__( 'Title (Accordion)', 'elementskit-lite' );
53
+ break;
54
+
55
+ case 'acc_content':
56
+ return esc_html__( 'Description (Accordion)', 'elementskit-lite' );
57
+ break;
58
+
59
+ default:
60
+ return '';
61
+ }
62
+
63
+ }
64
+
65
+ /**
66
+ * Method for determining the editor type for each field
67
+ *
68
+ * @since 1.2.6
69
+ *
70
+ * @param string $field Name of the field.
71
+ * @return string
72
+ */
73
+ protected function get_editor_type( $field ) {
74
+
75
+ switch ( $field ) {
76
+ case 'acc_title':
77
+ return 'LINE';
78
+
79
+ case 'acc_content':
80
+ return 'VISUAL';
81
+
82
+ default:
83
+ return '';
84
+ }
85
+
86
+ }
87
+ }
compatibility/wpml/widgets/advanced-accordion.php CHANGED
@@ -1,79 +1,79 @@
1
- <?php
2
- namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Advanced_Accordion extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_accordion_items';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'acc_title',
36
- );
37
- }
38
-
39
- /**
40
- * Method for setting the title for each translatable field
41
- *
42
- * @since 1.2.6
43
- *
44
- * @param string $field The name of the field.
45
- * @return string
46
- */
47
- protected function get_title( $field ) {
48
-
49
- switch ( $field ) {
50
- case 'acc_title':
51
- return esc_html__( 'Title (Advanced Accordion)', 'elementskit-lite' );
52
- break;
53
-
54
- default:
55
- return '';
56
- }
57
-
58
- }
59
-
60
- /**
61
- * Method for determining the editor type for each field
62
- *
63
- * @since 1.2.6
64
- *
65
- * @param string $field Name of the field.
66
- * @return string
67
- */
68
- protected function get_editor_type( $field ) {
69
-
70
- switch ( $field ) {
71
- case 'acc_title':
72
- return 'LINE';
73
-
74
- default:
75
- return '';
76
- }
77
-
78
- }
79
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Advanced_Accordion extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_accordion_items';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'acc_title',
36
+ );
37
+ }
38
+
39
+ /**
40
+ * Method for setting the title for each translatable field
41
+ *
42
+ * @since 1.2.6
43
+ *
44
+ * @param string $field The name of the field.
45
+ * @return string
46
+ */
47
+ protected function get_title( $field ) {
48
+
49
+ switch ( $field ) {
50
+ case 'acc_title':
51
+ return esc_html__( 'Title (Advanced Accordion)', 'elementskit-lite' );
52
+ break;
53
+
54
+ default:
55
+ return '';
56
+ }
57
+
58
+ }
59
+
60
+ /**
61
+ * Method for determining the editor type for each field
62
+ *
63
+ * @since 1.2.6
64
+ *
65
+ * @param string $field Name of the field.
66
+ * @return string
67
+ */
68
+ protected function get_editor_type( $field ) {
69
+
70
+ switch ( $field ) {
71
+ case 'acc_title':
72
+ return 'LINE';
73
+
74
+ default:
75
+ return '';
76
+ }
77
+
78
+ }
79
+ }
compatibility/wpml/widgets/advanced-tab.php CHANGED
@@ -1,87 +1,87 @@
1
- <?php
2
- namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Advanced_Tab extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_tab_items';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'ekit_tab_title',
36
- 'ekit_tab_sub_title',
37
- );
38
- }
39
-
40
- /**
41
- * Method for setting the title for each translatable field
42
- *
43
- * @since 1.2.6
44
- *
45
- * @param string $field The name of the field.
46
- * @return string
47
- */
48
- protected function get_title( $field ) {
49
-
50
- switch ( $field ) {
51
- case 'ekit_tab_title':
52
- return esc_html__( 'Title (Advanced Tab)', 'elementskit-lite' );
53
- break;
54
-
55
- case 'ekit_tab_sub_title':
56
- return esc_html__( 'Sub-Title (Advanced Tab)', 'elementskit-lite' );
57
- break;
58
-
59
- default:
60
- return '';
61
- }
62
-
63
- }
64
-
65
- /**
66
- * Method for determining the editor type for each field
67
- *
68
- * @since 1.2.6
69
- *
70
- * @param string $field Name of the field.
71
- * @return string
72
- */
73
- protected function get_editor_type( $field ) {
74
-
75
- switch ( $field ) {
76
- case 'ekit_tab_title':
77
- return 'LINE';
78
-
79
- case 'ekit_tab_sub_title':
80
- return 'LINE';
81
-
82
- default:
83
- return '';
84
- }
85
-
86
- }
87
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Advanced_Tab extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_tab_items';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'ekit_tab_title',
36
+ 'ekit_tab_sub_title',
37
+ );
38
+ }
39
+
40
+ /**
41
+ * Method for setting the title for each translatable field
42
+ *
43
+ * @since 1.2.6
44
+ *
45
+ * @param string $field The name of the field.
46
+ * @return string
47
+ */
48
+ protected function get_title( $field ) {
49
+
50
+ switch ( $field ) {
51
+ case 'ekit_tab_title':
52
+ return esc_html__( 'Title (Advanced Tab)', 'elementskit-lite' );
53
+ break;
54
+
55
+ case 'ekit_tab_sub_title':
56
+ return esc_html__( 'Sub-Title (Advanced Tab)', 'elementskit-lite' );
57
+ break;
58
+
59
+ default:
60
+ return '';
61
+ }
62
+
63
+ }
64
+
65
+ /**
66
+ * Method for determining the editor type for each field
67
+ *
68
+ * @since 1.2.6
69
+ *
70
+ * @param string $field Name of the field.
71
+ * @return string
72
+ */
73
+ protected function get_editor_type( $field ) {
74
+
75
+ switch ( $field ) {
76
+ case 'ekit_tab_title':
77
+ return 'LINE';
78
+
79
+ case 'ekit_tab_sub_title':
80
+ return 'LINE';
81
+
82
+ default:
83
+ return '';
84
+ }
85
+
86
+ }
87
+ }
compatibility/wpml/widgets/business-hours.php CHANGED
@@ -1,87 +1,87 @@
1
- <?php
2
- namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Business_Hours extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_business_openday_list';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'ekit_business_day',
36
- 'ekit_business_time',
37
- );
38
- }
39
-
40
- /**
41
- * Method for setting the title for each translatable field
42
- *
43
- * @since 1.2.6
44
- *
45
- * @param string $field The name of the field.
46
- * @return string
47
- */
48
- protected function get_title( $field ) {
49
-
50
- switch ( $field ) {
51
- case 'ekit_business_day':
52
- return esc_html__( 'Day (Business Hours)', 'elementskit-lite' );
53
- break;
54
-
55
- case 'ekit_business_time':
56
- return esc_html__( 'Time (Business Hours)', 'elementskit-lite' );
57
- break;
58
-
59
- default:
60
- return '';
61
- }
62
-
63
- }
64
-
65
- /**
66
- * Method for determining the editor type for each field
67
- *
68
- * @since 1.2.6
69
- *
70
- * @param string $field Name of the field.
71
- * @return string
72
- */
73
- protected function get_editor_type( $field ) {
74
-
75
- switch ( $field ) {
76
- case 'ekit_business_day':
77
- return 'LINE';
78
-
79
- case 'ekit_business_time':
80
- return 'LINE';
81
-
82
- default:
83
- return '';
84
- }
85
-
86
- }
87
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Business_Hours extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_business_openday_list';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'ekit_business_day',
36
+ 'ekit_business_time',
37
+ );
38
+ }
39
+
40
+ /**
41
+ * Method for setting the title for each translatable field
42
+ *
43
+ * @since 1.2.6
44
+ *
45
+ * @param string $field The name of the field.
46
+ * @return string
47
+ */
48
+ protected function get_title( $field ) {
49
+
50
+ switch ( $field ) {
51
+ case 'ekit_business_day':
52
+ return esc_html__( 'Day (Business Hours)', 'elementskit-lite' );
53
+ break;
54
+
55
+ case 'ekit_business_time':
56
+ return esc_html__( 'Time (Business Hours)', 'elementskit-lite' );
57
+ break;
58
+
59
+ default:
60
+ return '';
61
+ }
62
+
63
+ }
64
+
65
+ /**
66
+ * Method for determining the editor type for each field
67
+ *
68
+ * @since 1.2.6
69
+ *
70
+ * @param string $field Name of the field.
71
+ * @return string
72
+ */
73
+ protected function get_editor_type( $field ) {
74
+
75
+ switch ( $field ) {
76
+ case 'ekit_business_day':
77
+ return 'LINE';
78
+
79
+ case 'ekit_business_time':
80
+ return 'LINE';
81
+
82
+ default:
83
+ return '';
84
+ }
85
+
86
+ }
87
+ }
compatibility/wpml/widgets/cat-list.php CHANGED
@@ -1,79 +1,79 @@
1
- <?php
2
- namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Cat_List extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'icon_list';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'text',
36
- );
37
- }
38
-
39
- /**
40
- * Method for setting the title for each translatable field
41
- *
42
- * @since 1.2.6
43
- *
44
- * @param string $field The name of the field.
45
- * @return string
46
- */
47
- protected function get_title( $field ) {
48
-
49
- switch ( $field ) {
50
- case 'text':
51
- return esc_html__( 'Test (Category List)', 'elementskit-lite' );
52
- break;
53
-
54
- default:
55
- return '';
56
- }
57
-
58
- }
59
-
60
- /**
61
- * Method for determining the editor type for each field
62
- *
63
- * @since 1.2.6
64
- *
65
- * @param string $field Name of the field.
66
- * @return string
67
- */
68
- protected function get_editor_type( $field ) {
69
-
70
- switch ( $field ) {
71
- case 'text':
72
- return 'LINE';
73
-
74
- default:
75
- return '';
76
- }
77
-
78
- }
79
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Cat_List extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'icon_list';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'text',
36
+ );
37
+ }
38
+
39
+ /**
40
+ * Method for setting the title for each translatable field
41
+ *
42
+ * @since 1.2.6
43
+ *
44
+ * @param string $field The name of the field.
45
+ * @return string
46
+ */
47
+ protected function get_title( $field ) {
48
+
49
+ switch ( $field ) {
50
+ case 'text':
51
+ return esc_html__( 'Test (Category List)', 'elementskit-lite' );
52
+ break;
53
+
54
+ default:
55
+ return '';
56
+ }
57
+
58
+ }
59
+
60
+ /**
61
+ * Method for determining the editor type for each field
62
+ *
63
+ * @since 1.2.6
64
+ *
65
+ * @param string $field Name of the field.
66
+ * @return string
67
+ */
68
+ protected function get_editor_type( $field ) {
69
+
70
+ switch ( $field ) {
71
+ case 'text':
72
+ return 'LINE';
73
+
74
+ default:
75
+ return '';
76
+ }
77
+
78
+ }
79
+ }
compatibility/wpml/widgets/chart.php CHANGED
@@ -1,79 +1,79 @@
1
- <?php
2
- namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Chart extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_charts_labels_data';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'ekit_chart_label',
36
- );
37
- }
38
-
39
- /**
40
- * Method for setting the title for each translatable field
41
- *
42
- * @since 1.2.6
43
- *
44
- * @param string $field The name of the field.
45
- * @return string
46
- */
47
- protected function get_title( $field ) {
48
-
49
- switch ( $field ) {
50
- case 'ekit_chart_label':
51
- return esc_html__( 'Name (Chart)', 'elementskit-lite' );
52
- break;
53
-
54
- default:
55
- return '';
56
- }
57
-
58
- }
59
-
60
- /**
61
- * Method for determining the editor type for each field
62
- *
63
- * @since 1.2.6
64
- *
65
- * @param string $field Name of the field.
66
- * @return string
67
- */
68
- protected function get_editor_type( $field ) {
69
-
70
- switch ( $field ) {
71
- case 'ekit_chart_label':
72
- return 'LINE';
73
-
74
- default:
75
- return '';
76
- }
77
-
78
- }
79
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Chart extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_charts_labels_data';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'ekit_chart_label',
36
+ );
37
+ }
38
+
39
+ /**
40
+ * Method for setting the title for each translatable field
41
+ *
42
+ * @since 1.2.6
43
+ *
44
+ * @param string $field The name of the field.
45
+ * @return string
46
+ */
47
+ protected function get_title( $field ) {
48
+
49
+ switch ( $field ) {
50
+ case 'ekit_chart_label':
51
+ return esc_html__( 'Name (Chart)', 'elementskit-lite' );
52
+ break;
53
+
54
+ default:
55
+ return '';
56
+ }
57
+
58
+ }
59
+
60
+ /**
61
+ * Method for determining the editor type for each field
62
+ *
63
+ * @since 1.2.6
64
+ *
65
+ * @param string $field Name of the field.
66
+ * @return string
67
+ */
68
+ protected function get_editor_type( $field ) {
69
+
70
+ switch ( $field ) {
71
+ case 'ekit_chart_label':
72
+ return 'LINE';
73
+
74
+ default:
75
+ return '';
76
+ }
77
+
78
+ }
79
+ }
compatibility/wpml/widgets/faq.php CHANGED
@@ -1,87 +1,87 @@
1
- <?php
2
- namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Faq extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_faq_content_items';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'ekit_faq_title',
36
- 'ekit_faq_content',
37
- );
38
- }
39
-
40
- /**
41
- * Method for setting the title for each translatable field
42
- *
43
- * @since 1.2.6
44
- *
45
- * @param string $field The name of the field.
46
- * @return string
47
- */
48
- protected function get_title( $field ) {
49
-
50
- switch ( $field ) {
51
- case 'ekit_faq_title':
52
- return esc_html__( 'Title (FAQ)', 'elementskit-lite' );
53
- break;
54
-
55
- case 'ekit_faq_content':
56
- return esc_html__( 'Content (FAQ)', 'elementskit-lite' );
57
- break;
58
-
59
- default:
60
- return '';
61
- }
62
-
63
- }
64
-
65
- /**
66
- * Method for determining the editor type for each field
67
- *
68
- * @since 1.2.6
69
- *
70
- * @param string $field Name of the field.
71
- * @return string
72
- */
73
- protected function get_editor_type( $field ) {
74
-
75
- switch ( $field ) {
76
- case 'ekit_faq_title':
77
- return 'LINE';
78
-
79
- case 'ekit_faq_content':
80
- return 'VISUAL';
81
-
82
- default:
83
- return '';
84
- }
85
-
86
- }
87
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Faq extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_faq_content_items';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'ekit_faq_title',
36
+ 'ekit_faq_content',
37
+ );
38
+ }
39
+
40
+ /**
41
+ * Method for setting the title for each translatable field
42
+ *
43
+ * @since 1.2.6
44
+ *
45
+ * @param string $field The name of the field.
46
+ * @return string
47
+ */
48
+ protected function get_title( $field ) {
49
+
50
+ switch ( $field ) {
51
+ case 'ekit_faq_title':
52
+ return esc_html__( 'Title (FAQ)', 'elementskit-lite' );
53
+ break;
54
+
55
+ case 'ekit_faq_content':
56
+ return esc_html__( 'Content (FAQ)', 'elementskit-lite' );
57
+ break;
58
+
59
+ default:
60
+ return '';
61
+ }
62
+
63
+ }
64
+
65
+ /**
66
+ * Method for determining the editor type for each field
67
+ *
68
+ * @since 1.2.6
69
+ *
70
+ * @param string $field Name of the field.
71
+ * @return string
72
+ */
73
+ protected function get_editor_type( $field ) {
74
+
75
+ switch ( $field ) {
76
+ case 'ekit_faq_title':
77
+ return 'LINE';
78
+
79
+ case 'ekit_faq_content':
80
+ return 'VISUAL';
81
+
82
+ default:
83
+ return '';
84
+ }
85
+
86
+ }
87
+ }
compatibility/wpml/widgets/gallery.php CHANGED
@@ -1,79 +1,79 @@
1
- <?php
2
- namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Gallery extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_gallery_items';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'ekit_gallery_filter_label',
36
- );
37
- }
38
-
39
- /**
40
- * Method for setting the title for each translatable field
41
- *
42
- * @since 1.2.6
43
- *
44
- * @param string $field The name of the field.
45
- * @return string
46
- */
47
- protected function get_title( $field ) {
48
-
49
- switch ( $field ) {
50
- case 'ekit_gallery_filter_label':
51
- return esc_html__( 'Filter Label (Gallery)', 'elementskit-lite' );
52
- break;
53
-
54
- default:
55
- return '';
56
- }
57
-
58
- }
59
-
60
- /**
61
- * Method for determining the editor type for each field
62
- *
63
- * @since 1.2.6
64
- *
65
- * @param string $field Name of the field.
66
- * @return string
67
- */
68
- protected function get_editor_type( $field ) {
69
-
70
- switch ( $field ) {
71
- case 'ekit_gallery_filter_label':
72
- return 'LINE';
73
-
74
- default:
75
- return '';
76
- }
77
-
78
- }
79
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Gallery extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_gallery_items';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'ekit_gallery_filter_label',
36
+ );
37
+ }
38
+
39
+ /**
40
+ * Method for setting the title for each translatable field
41
+ *
42
+ * @since 1.2.6
43
+ *
44
+ * @param string $field The name of the field.
45
+ * @return string
46
+ */
47
+ protected function get_title( $field ) {
48
+
49
+ switch ( $field ) {
50
+ case 'ekit_gallery_filter_label':
51
+ return esc_html__( 'Filter Label (Gallery)', 'elementskit-lite' );
52
+ break;
53
+
54
+ default:
55
+ return '';
56
+ }
57
+
58
+ }
59
+
60
+ /**
61
+ * Method for determining the editor type for each field
62
+ *
63
+ * @since 1.2.6
64
+ *
65
+ * @param string $field Name of the field.
66
+ * @return string
67
+ */
68
+ protected function get_editor_type( $field ) {
69
+
70
+ switch ( $field ) {
71
+ case 'ekit_gallery_filter_label':
72
+ return 'LINE';
73
+
74
+ default:
75
+ return '';
76
+ }
77
+
78
+ }
79
+ }
compatibility/wpml/widgets/header-info.php CHANGED
@@ -1,79 +1,79 @@
1
- <?php
2
- namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Header_Info extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_headerinfo_group';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'ekit_headerinfo_text',
36
- );
37
- }
38
-
39
- /**
40
- * Method for setting the title for each translatable field
41
- *
42
- * @since 1.2.6
43
- *
44
- * @param string $field The name of the field.
45
- * @return string
46
- */
47
- protected function get_title( $field ) {
48
-
49
- switch ( $field ) {
50
- case 'ekit_headerinfo_text':
51
- return esc_html__( 'Text (Header Info)', 'elementskit-lite' );
52
- break;
53
-
54
- default:
55
- return '';
56
- }
57
-
58
- }
59
-
60
- /**
61
- * Method for determining the editor type for each field
62
- *
63
- * @since 1.2.6
64
- *
65
- * @param string $field Name of the field.
66
- * @return string
67
- */
68
- protected function get_editor_type( $field ) {
69
-
70
- switch ( $field ) {
71
- case 'ekit_headerinfo_text':
72
- return 'LINE';
73
-
74
- default:
75
- return '';
76
- }
77
-
78
- }
79
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Header_Info extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_headerinfo_group';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'ekit_headerinfo_text',
36
+ );
37
+ }
38
+
39
+ /**
40
+ * Method for setting the title for each translatable field
41
+ *
42
+ * @since 1.2.6
43
+ *
44
+ * @param string $field The name of the field.
45
+ * @return string
46
+ */
47
+ protected function get_title( $field ) {
48
+
49
+ switch ( $field ) {
50
+ case 'ekit_headerinfo_text':
51
+ return esc_html__( 'Text (Header Info)', 'elementskit-lite' );
52
+ break;
53
+
54
+ default:
55
+ return '';
56
+ }
57
+
58
+ }
59
+
60
+ /**
61
+ * Method for determining the editor type for each field
62
+ *
63
+ * @since 1.2.6
64
+ *
65
+ * @param string $field Name of the field.
66
+ * @return string
67
+ */
68
+ protected function get_editor_type( $field ) {
69
+
70
+ switch ( $field ) {
71
+ case 'ekit_headerinfo_text':
72
+ return 'LINE';
73
+
74
+ default:
75
+ return '';
76
+ }
77
+
78
+ }
79
+ }
compatibility/wpml/widgets/hotspot.php CHANGED
@@ -1,87 +1,87 @@
1
- <?php
2
- namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Hotspot extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_location_repeater';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'ekit_hotspot_title',
36
- 'ekit_hotspot_address',
37
- );
38
- }
39
-
40
- /**
41
- * Method for setting the title for each translatable field
42
- *
43
- * @since 1.2.6
44
- *
45
- * @param string $field The name of the field.
46
- * @return string
47
- */
48
- protected function get_title( $field ) {
49
-
50
- switch ( $field ) {
51
- case 'ekit_hotspot_title':
52
- return esc_html__( 'Title (Hotspot)', 'elementskit-lite' );
53
- break;
54
-
55
- case 'ekit_hotspot_address':
56
- return esc_html__( 'Address (Hotspot)', 'elementskit-lite' );
57
- break;
58
-
59
- default:
60
- return '';
61
- }
62
-
63
- }
64
-
65
- /**
66
- * Method for determining the editor type for each field
67
- *
68
- * @since 1.2.6
69
- *
70
- * @param string $field Name of the field.
71
- * @return string
72
- */
73
- protected function get_editor_type( $field ) {
74
-
75
- switch ( $field ) {
76
- case 'ekit_hotspot_title':
77
- return 'LINE';
78
-
79
- case 'ekit_hotspot_address':
80
- return 'AREA';
81
-
82
- default:
83
- return '';
84
- }
85
-
86
- }
87
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Hotspot extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_location_repeater';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'ekit_hotspot_title',
36
+ 'ekit_hotspot_address',
37
+ );
38
+ }
39
+
40
+ /**
41
+ * Method for setting the title for each translatable field
42
+ *
43
+ * @since 1.2.6
44
+ *
45
+ * @param string $field The name of the field.
46
+ * @return string
47
+ */
48
+ protected function get_title( $field ) {
49
+
50
+ switch ( $field ) {
51
+ case 'ekit_hotspot_title':
52
+ return esc_html__( 'Title (Hotspot)', 'elementskit-lite' );
53
+ break;
54
+
55
+ case 'ekit_hotspot_address':
56
+ return esc_html__( 'Address (Hotspot)', 'elementskit-lite' );
57
+ break;
58
+
59
+ default:
60
+ return '';
61
+ }
62
+
63
+ }
64
+
65
+ /**
66
+ * Method for determining the editor type for each field
67
+ *
68
+ * @since 1.2.6
69
+ *
70
+ * @param string $field Name of the field.
71
+ * @return string
72
+ */
73
+ protected function get_editor_type( $field ) {
74
+
75
+ switch ( $field ) {
76
+ case 'ekit_hotspot_title':
77
+ return 'LINE';
78
+
79
+ case 'ekit_hotspot_address':
80
+ return 'AREA';
81
+
82
+ default:
83
+ return '';
84
+ }
85
+
86
+ }
87
+ }
compatibility/wpml/widgets/image-accordion.php CHANGED
@@ -1,87 +1,87 @@
1
- <?php
2
- namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Image_Accordion extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_img_accordion_items';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'ekit_img_accordion_title',
36
- 'ekit_img_accordion_button_label',
37
- );
38
- }
39
-
40
- /**
41
- * Method for setting the title for each translatable field
42
- *
43
- * @since 1.2.6
44
- *
45
- * @param string $field The name of the field.
46
- * @return string
47
- */
48
- protected function get_title( $field ) {
49
-
50
- switch ( $field ) {
51
- case 'ekit_img_accordion_title':
52
- return esc_html__( 'Title (Image Accordion)', 'elementskit-lite' );
53
- break;
54
-
55
- case 'ekit_img_accordion_button_label':
56
- return esc_html__( 'Button Label (Image Accordion)', 'elementskit-lite' );
57
- break;
58
-
59
- default:
60
- return '';
61
- }
62
-
63
- }
64
-
65
- /**
66
- * Method for determining the editor type for each field
67
- *
68
- * @since 1.2.6
69
- *
70
- * @param string $field Name of the field.
71
- * @return string
72
- */
73
- protected function get_editor_type( $field ) {
74
-
75
- switch ( $field ) {
76
- case 'ekit_img_accordion_title':
77
- return 'LINE';
78
-
79
- case 'ekit_img_accordion_button_label':
80
- return 'LINE';
81
-
82
- default:
83
- return '';
84
- }
85
-
86
- }
87
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Image_Accordion extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_img_accordion_items';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'ekit_img_accordion_title',
36
+ 'ekit_img_accordion_button_label',
37
+ );
38
+ }
39
+
40
+ /**
41
+ * Method for setting the title for each translatable field
42
+ *
43
+ * @since 1.2.6
44
+ *
45
+ * @param string $field The name of the field.
46
+ * @return string
47
+ */
48
+ protected function get_title( $field ) {
49
+
50
+ switch ( $field ) {
51
+ case 'ekit_img_accordion_title':
52
+ return esc_html__( 'Title (Image Accordion)', 'elementskit-lite' );
53
+ break;
54
+
55
+ case 'ekit_img_accordion_button_label':
56
+ return esc_html__( 'Button Label (Image Accordion)', 'elementskit-lite' );
57
+ break;
58
+
59
+ default:
60
+ return '';
61
+ }
62
+
63
+ }
64
+
65
+ /**
66
+ * Method for determining the editor type for each field
67
+ *
68
+ * @since 1.2.6
69
+ *
70
+ * @param string $field Name of the field.
71
+ * @return string
72
+ */
73
+ protected function get_editor_type( $field ) {
74
+
75
+ switch ( $field ) {
76
+ case 'ekit_img_accordion_title':
77
+ return 'LINE';
78
+
79
+ case 'ekit_img_accordion_button_label':
80
+ return 'LINE';
81
+
82
+ default:
83
+ return '';
84
+ }
85
+
86
+ }
87
+ }
compatibility/wpml/widgets/page-list.php CHANGED
@@ -1,87 +1,87 @@
1
- <?php
2
- namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Page_List extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'icon_list';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'text',
36
- 'ekit_menu_widget_sub_title',
37
- );
38
- }
39
-
40
- /**
41
- * Method for setting the title for each translatable field
42
- *
43
- * @since 1.2.6
44
- *
45
- * @param string $field The name of the field.
46
- * @return string
47
- */
48
- protected function get_title( $field ) {
49
-
50
- switch ( $field ) {
51
- case 'text':
52
- return esc_html__( 'Title (Page List)', 'elementskit-lite' );
53
- break;
54
-
55
- case 'ekit_menu_widget_sub_title':
56
- return esc_html__( 'Sub-Title (Page List)', 'elementskit-lite' );
57
- break;
58
-
59
- default:
60
- return '';
61
- }
62
-
63
- }
64
-
65
- /**
66
- * Method for determining the editor type for each field
67
- *
68
- * @since 1.2.6
69
- *
70
- * @param string $field Name of the field.
71
- * @return string
72
- */
73
- protected function get_editor_type( $field ) {
74
-
75
- switch ( $field ) {
76
- case 'text':
77
- return 'LINE';
78
-
79
- case 'ekit_menu_widget_sub_title':
80
- return 'LINE';
81
-
82
- default:
83
- return '';
84
- }
85
-
86
- }
87
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Page_List extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'icon_list';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'text',
36
+ 'ekit_menu_widget_sub_title',
37
+ );
38
+ }
39
+
40
+ /**
41
+ * Method for setting the title for each translatable field
42
+ *
43
+ * @since 1.2.6
44
+ *
45
+ * @param string $field The name of the field.
46
+ * @return string
47
+ */
48
+ protected function get_title( $field ) {
49
+
50
+ switch ( $field ) {
51
+ case 'text':
52
+ return esc_html__( 'Title (Page List)', 'elementskit-lite' );
53
+ break;
54
+
55
+ case 'ekit_menu_widget_sub_title':
56
+ return esc_html__( 'Sub-Title (Page List)', 'elementskit-lite' );
57
+ break;
58
+
59
+ default:
60
+ return '';
61
+ }
62
+
63
+ }
64
+
65
+ /**
66
+ * Method for determining the editor type for each field
67
+ *
68
+ * @since 1.2.6
69
+ *
70
+ * @param string $field Name of the field.
71
+ * @return string
72
+ */
73
+ protected function get_editor_type( $field ) {
74
+
75
+ switch ( $field ) {
76
+ case 'text':
77
+ return 'LINE';
78
+
79
+ case 'ekit_menu_widget_sub_title':
80
+ return 'LINE';
81
+
82
+ default:
83
+ return '';
84
+ }
85
+
86
+ }
87
+ }
compatibility/wpml/widgets/post-list.php CHANGED
@@ -1,79 +1,79 @@
1
- <?php
2
- namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Post_List extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'icon_list';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'text',
36
- );
37
- }
38
-
39
- /**
40
- * Method for setting the title for each translatable field
41
- *
42
- * @since 1.2.6
43
- *
44
- * @param string $field The name of the field.
45
- * @return string
46
- */
47
- protected function get_title( $field ) {
48
-
49
- switch ( $field ) {
50
- case 'text':
51
- return esc_html__( 'Title (Post List)', 'elementskit-lite' );
52
- break;
53
-
54
- default:
55
- return '';
56
- }
57
-
58
- }
59
-
60
- /**
61
- * Method for determining the editor type for each field
62
- *
63
- * @since 1.2.6
64
- *
65
- * @param string $field Name of the field.
66
- * @return string
67
- */
68
- protected function get_editor_type( $field ) {
69
-
70
- switch ( $field ) {
71
- case 'text':
72
- return 'LINE';
73
-
74
- default:
75
- return '';
76
- }
77
-
78
- }
79
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Post_List extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'icon_list';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'text',
36
+ );
37
+ }
38
+
39
+ /**
40
+ * Method for setting the title for each translatable field
41
+ *
42
+ * @since 1.2.6
43
+ *
44
+ * @param string $field The name of the field.
45
+ * @return string
46
+ */
47
+ protected function get_title( $field ) {
48
+
49
+ switch ( $field ) {
50
+ case 'text':
51
+ return esc_html__( 'Title (Post List)', 'elementskit-lite' );
52
+ break;
53
+
54
+ default:
55
+ return '';
56
+ }
57
+
58
+ }
59
+
60
+ /**
61
+ * Method for determining the editor type for each field
62
+ *
63
+ * @since 1.2.6
64
+ *
65
+ * @param string $field Name of the field.
66
+ * @return string
67
+ */
68
+ protected function get_editor_type( $field ) {
69
+
70
+ switch ( $field ) {
71
+ case 'text':
72
+ return 'LINE';
73
+
74
+ default:
75
+ return '';
76
+ }
77
+
78
+ }
79
+ }
compatibility/wpml/widgets/pricing.php CHANGED
@@ -1,79 +1,79 @@
1
- <?php
2
- namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Pricing extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_pricing_table_content_repeater';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'ekit_pricing_list',
36
- );
37
- }
38
-
39
- /**
40
- * Method for setting the title for each translatable field
41
- *
42
- * @since 1.2.6
43
- *
44
- * @param string $field The name of the field.
45
- * @return string
46
- */
47
- protected function get_title( $field ) {
48
-
49
- switch ( $field ) {
50
- case 'ekit_pricing_list':
51
- return esc_html__( 'List text (Pricing Table)', 'elementskit-lite' );
52
- break;
53
-
54
- default:
55
- return '';
56
- }
57
-
58
- }
59
-
60
- /**
61
- * Method for determining the editor type for each field
62
- *
63
- * @since 1.2.6
64
- *
65
- * @param string $field Name of the field.
66
- * @return string
67
- */
68
- protected function get_editor_type( $field ) {
69
-
70
- switch ( $field ) {
71
- case 'ekit_pricing_list':
72
- return 'LINE';
73
-
74
- default:
75
- return '';
76
- }
77
-
78
- }
79
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Pricing extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_pricing_table_content_repeater';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'ekit_pricing_list',
36
+ );
37
+ }
38
+
39
+ /**
40
+ * Method for setting the title for each translatable field
41
+ *
42
+ * @since 1.2.6
43
+ *
44
+ * @param string $field The name of the field.
45
+ * @return string
46
+ */
47
+ protected function get_title( $field ) {
48
+
49
+ switch ( $field ) {
50
+ case 'ekit_pricing_list':
51
+ return esc_html__( 'List text (Pricing Table)', 'elementskit-lite' );
52
+ break;
53
+
54
+ default:
55
+ return '';
56
+ }
57
+
58
+ }
59
+
60
+ /**
61
+ * Method for determining the editor type for each field
62
+ *
63
+ * @since 1.2.6
64
+ *
65
+ * @param string $field Name of the field.
66
+ * @return string
67
+ */
68
+ protected function get_editor_type( $field ) {
69
+
70
+ switch ( $field ) {
71
+ case 'ekit_pricing_list':
72
+ return 'LINE';
73
+
74
+ default:
75
+ return '';
76
+ }
77
+
78
+ }
79
+ }
compatibility/wpml/widgets/social-share.php CHANGED
@@ -1,79 +1,79 @@
1
- <?php
2
- namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Social_Share extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_socialshare_add_icons';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'ekit_socialshare_label',
36
- );
37
- }
38
-
39
- /**
40
- * Method for setting the title for each translatable field
41
- *
42
- * @since 1.2.6
43
- *
44
- * @param string $field The name of the field.
45
- * @return string
46
- */
47
- protected function get_title( $field ) {
48
-
49
- switch ( $field ) {
50
- case 'ekit_socialshare_label':
51
- return esc_html__( 'Label (Social Share)', 'elementskit-lite' );
52
- break;
53
-
54
- default:
55
- return '';
56
- }
57
-
58
- }
59
-
60
- /**
61
- * Method for determining the editor type for each field
62
- *
63
- * @since 1.2.6
64
- *
65
- * @param string $field Name of the field.
66
- * @return string
67
- */
68
- protected function get_editor_type( $field ) {
69
-
70
- switch ( $field ) {
71
- case 'ekit_socialshare_label':
72
- return 'LINE';
73
-
74
- default:
75
- return '';
76
- }
77
-
78
- }
79
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Social_Share extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_socialshare_add_icons';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'ekit_socialshare_label',
36
+ );
37
+ }
38
+
39
+ /**
40
+ * Method for setting the title for each translatable field
41
+ *
42
+ * @since 1.2.6
43
+ *
44
+ * @param string $field The name of the field.
45
+ * @return string
46
+ */
47
+ protected function get_title( $field ) {
48
+
49
+ switch ( $field ) {
50
+ case 'ekit_socialshare_label':
51
+ return esc_html__( 'Label (Social Share)', 'elementskit-lite' );
52
+ break;
53
+
54
+ default:
55
+ return '';
56
+ }
57
+
58
+ }
59
+
60
+ /**
61
+ * Method for determining the editor type for each field
62
+ *
63
+ * @since 1.2.6
64
+ *
65
+ * @param string $field Name of the field.
66
+ * @return string
67
+ */
68
+ protected function get_editor_type( $field ) {
69
+
70
+ switch ( $field ) {
71
+ case 'ekit_socialshare_label':
72
+ return 'LINE';
73
+
74
+ default:
75
+ return '';
76
+ }
77
+
78
+ }
79
+ }
compatibility/wpml/widgets/social.php CHANGED
@@ -1,79 +1,79 @@
1
- <?php
2
- namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Social extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_socialmedia_add_icons';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'ekit_socialmedia_label',
36
- );
37
- }
38
-
39
- /**
40
- * Method for setting the title for each translatable field
41
- *
42
- * @since 1.2.6
43
- *
44
- * @param string $field The name of the field.
45
- * @return string
46
- */
47
- protected function get_title( $field ) {
48
-
49
- switch ( $field ) {
50
- case 'ekit_socialmedia_label':
51
- return esc_html__( 'Label (Social Media)', 'elementskit-lite' );
52
- break;
53
-
54
- default:
55
- return '';
56
- }
57
-
58
- }
59
-
60
- /**
61
- * Method for determining the editor type for each field
62
- *
63
- * @since 1.2.6
64
- *
65
- * @param string $field Name of the field.
66
- * @return string
67
- */
68
- protected function get_editor_type( $field ) {
69
-
70
- switch ( $field ) {
71
- case 'ekit_socialmedia_label':
72
- return 'LINE';
73
-
74
- default:
75
- return '';
76
- }
77
-
78
- }
79
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Social extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_socialmedia_add_icons';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'ekit_socialmedia_label',
36
+ );
37
+ }
38
+
39
+ /**
40
+ * Method for setting the title for each translatable field
41
+ *
42
+ * @since 1.2.6
43
+ *
44
+ * @param string $field The name of the field.
45
+ * @return string
46
+ */
47
+ protected function get_title( $field ) {
48
+
49
+ switch ( $field ) {
50
+ case 'ekit_socialmedia_label':
51
+ return esc_html__( 'Label (Social Media)', 'elementskit-lite' );
52
+ break;
53
+
54
+ default:
55
+ return '';
56
+ }
57
+
58
+ }
59
+
60
+ /**
61
+ * Method for determining the editor type for each field
62
+ *
63
+ * @since 1.2.6
64
+ *
65
+ * @param string $field Name of the field.
66
+ * @return string
67
+ */
68
+ protected function get_editor_type( $field ) {
69
+
70
+ switch ( $field ) {
71
+ case 'ekit_socialmedia_label':
72
+ return 'LINE';
73
+
74
+ default:
75
+ return '';
76
+ }
77
+
78
+ }
79
+ }
compatibility/wpml/widgets/tab.php CHANGED
@@ -1,87 +1,87 @@
1
- <?php
2
- namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Tab extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_tab_items';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'ekit_tab_title',
36
- 'ekit_tab_content',
37
- );
38
- }
39
-
40
- /**
41
- * Method for setting the title for each translatable field
42
- *
43
- * @since 1.2.6
44
- *
45
- * @param string $field The name of the field.
46
- * @return string
47
- */
48
- protected function get_title( $field ) {
49
-
50
- switch ( $field ) {
51
- case 'ekit_tab_title':
52
- return esc_html__( 'Title (Tab)', 'elementskit-lite' );
53
- break;
54
-
55
- case 'ekit_tab_content':
56
- return esc_html__( 'Content (Tab)', 'elementskit-lite' );
57
- break;
58
-
59
- default:
60
- return '';
61
- }
62
-
63
- }
64
-
65
- /**
66
- * Method for determining the editor type for each field
67
- *
68
- * @since 1.2.6
69
- *
70
- * @param string $field Name of the field.
71
- * @return string
72
- */
73
- protected function get_editor_type( $field ) {
74
-
75
- switch ( $field ) {
76
- case 'ekit_tab_title':
77
- return 'LINE';
78
-
79
- case 'ekit_tab_content':
80
- return 'VISUAL';
81
-
82
- default:
83
- return '';
84
- }
85
-
86
- }
87
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Tab extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_tab_items';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'ekit_tab_title',
36
+ 'ekit_tab_content',
37
+ );
38
+ }
39
+
40
+ /**
41
+ * Method for setting the title for each translatable field
42
+ *
43
+ * @since 1.2.6
44
+ *
45
+ * @param string $field The name of the field.
46
+ * @return string
47
+ */
48
+ protected function get_title( $field ) {
49
+
50
+ switch ( $field ) {
51
+ case 'ekit_tab_title':
52
+ return esc_html__( 'Title (Tab)', 'elementskit-lite' );
53
+ break;
54
+
55
+ case 'ekit_tab_content':
56
+ return esc_html__( 'Content (Tab)', 'elementskit-lite' );
57
+ break;
58
+
59
+ default:
60
+ return '';
61
+ }
62
+
63
+ }
64
+
65
+ /**
66
+ * Method for determining the editor type for each field
67
+ *
68
+ * @since 1.2.6
69
+ *
70
+ * @param string $field Name of the field.
71
+ * @return string
72
+ */
73
+ protected function get_editor_type( $field ) {
74
+
75
+ switch ( $field ) {
76
+ case 'ekit_tab_title':
77
+ return 'LINE';
78
+
79
+ case 'ekit_tab_content':
80
+ return 'VISUAL';
81
+
82
+ default:
83
+ return '';
84
+ }
85
+
86
+ }
87
+ }
compatibility/wpml/widgets/table.php CHANGED
@@ -1,79 +1,79 @@
1
- <?php
2
- namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Table extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_table_build_header';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'table_header_content',
36
- );
37
- }
38
-
39
- /**
40
- * Method for setting the title for each translatable field
41
- *
42
- * @since 1.2.6
43
- *
44
- * @param string $field The name of the field.
45
- * @return string
46
- */
47
- protected function get_title( $field ) {
48
-
49
- switch ( $field ) {
50
- case 'table_header_content':
51
- return esc_html__( 'Text (Table)', 'elementskit-lite' );
52
- break;
53
-
54
- default:
55
- return '';
56
- }
57
-
58
- }
59
-
60
- /**
61
- * Method for determining the editor type for each field
62
- *
63
- * @since 1.2.6
64
- *
65
- * @param string $field Name of the field.
66
- * @return string
67
- */
68
- protected function get_editor_type( $field ) {
69
-
70
- switch ( $field ) {
71
- case 'table_header_content':
72
- return 'LINE';
73
-
74
- default:
75
- return '';
76
- }
77
-
78
- }
79
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Table extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_table_build_header';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'table_header_content',
36
+ );
37
+ }
38
+
39
+ /**
40
+ * Method for setting the title for each translatable field
41
+ *
42
+ * @since 1.2.6
43
+ *
44
+ * @param string $field The name of the field.
45
+ * @return string
46
+ */
47
+ protected function get_title( $field ) {
48
+
49
+ switch ( $field ) {
50
+ case 'table_header_content':
51
+ return esc_html__( 'Text (Table)', 'elementskit-lite' );
52
+ break;
53
+
54
+ default:
55
+ return '';
56
+ }
57
+
58
+ }
59
+
60
+ /**
61
+ * Method for determining the editor type for each field
62
+ *
63
+ * @since 1.2.6
64
+ *
65
+ * @param string $field Name of the field.
66
+ * @return string
67
+ */
68
+ protected function get_editor_type( $field ) {
69
+
70
+ switch ( $field ) {
71
+ case 'table_header_content':
72
+ return 'LINE';
73
+
74
+ default:
75
+ return '';
76
+ }
77
+
78
+ }
79
+ }
compatibility/wpml/widgets/testimonial.php CHANGED
@@ -1,95 +1,95 @@
1
- <?php
2
- namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Testimonial extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_testimonial_data';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'client_name',
36
- 'designation',
37
- 'review',
38
- );
39
- }
40
-
41
- /**
42
- * Method for setting the title for each translatable field
43
- *
44
- * @since 1.2.6
45
- *
46
- * @param string $field The name of the field.
47
- * @return string
48
- */
49
- protected function get_title( $field ) {
50
-
51
- switch ( $field ) {
52
- case 'client_name':
53
- return esc_html__( 'Client Name (Testimonial)', 'elementskit-lite' );
54
- break;
55
-
56
- case 'designation':
57
- return esc_html__( 'Designation (Testimonial)', 'elementskit-lite' );
58
- break;
59
-
60
- case 'review':
61
- return esc_html__( 'Testimonial Review (Testimonial)', 'elementskit-lite' );
62
- break;
63
-
64
- default:
65
- return '';
66
- }
67
-
68
- }
69
-
70
- /**
71
- * Method for determining the editor type for each field
72
- *
73
- * @since 1.2.6
74
- *
75
- * @param string $field Name of the field.
76
- * @return string
77
- */
78
- protected function get_editor_type( $field ) {
79
-
80
- switch ( $field ) {
81
- case 'client_name':
82
- return 'LINE';
83
-
84
- case 'designation':
85
- return 'LINE';
86
-
87
- case 'review':
88
- return 'AREA';
89
-
90
- default:
91
- return '';
92
- }
93
-
94
- }
95
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Testimonial extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_testimonial_data';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'client_name',
36
+ 'designation',
37
+ 'review',
38
+ );
39
+ }
40
+
41
+ /**
42
+ * Method for setting the title for each translatable field
43
+ *
44
+ * @since 1.2.6
45
+ *
46
+ * @param string $field The name of the field.
47
+ * @return string
48
+ */
49
+ protected function get_title( $field ) {
50
+
51
+ switch ( $field ) {
52
+ case 'client_name':
53
+ return esc_html__( 'Client Name (Testimonial)', 'elementskit-lite' );
54
+ break;
55
+
56
+ case 'designation':
57
+ return esc_html__( 'Designation (Testimonial)', 'elementskit-lite' );
58
+ break;
59
+
60
+ case 'review':
61
+ return esc_html__( 'Testimonial Review (Testimonial)', 'elementskit-lite' );
62
+ break;
63
+
64
+ default:
65
+ return '';
66
+ }
67
+
68
+ }
69
+
70
+ /**
71
+ * Method for determining the editor type for each field
72
+ *
73
+ * @since 1.2.6
74
+ *
75
+ * @param string $field Name of the field.
76
+ * @return string
77
+ */
78
+ protected function get_editor_type( $field ) {
79
+
80
+ switch ( $field ) {
81
+ case 'client_name':
82
+ return 'LINE';
83
+
84
+ case 'designation':
85
+ return 'LINE';
86
+
87
+ case 'review':
88
+ return 'AREA';
89
+
90
+ default:
91
+ return '';
92
+ }
93
+
94
+ }
95
+ }
compatibility/wpml/widgets/timeline.php CHANGED
@@ -1,111 +1,111 @@
1
- <?php
2
- namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Timeline extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_timelinehr_content_repeater';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'ekit_timeline_line_subtitle',
36
- 'ekit_timeline_line_title',
37
- 'ekit_timeline_line_content',
38
- 'ekit_timeline_content_date',
39
- 'ekit_timelinehr_content_address',
40
- );
41
- }
42
-
43
- /**
44
- * Method for setting the title for each translatable field
45
- *
46
- * @since 1.2.6
47
- *
48
- * @param string $field The name of the field.
49
- * @return string
50
- */
51
- protected function get_title( $field ) {
52
-
53
- switch ( $field ) {
54
- case 'ekit_timeline_line_subtitle':
55
- return esc_html__( 'Sub Title (Timeline)', 'elementskit-lite' );
56
- break;
57
-
58
- case 'ekit_timeline_line_title':
59
- return esc_html__( 'Title (Timeline)', 'elementskit-lite' );
60
- break;
61
-
62
- case 'ekit_timeline_line_content':
63
- return esc_html__( 'Description (Timeline)', 'elementskit-lite' );
64
- break;
65
-
66
- case 'ekit_timeline_content_date':
67
- return esc_html__( 'Date (Timeline)', 'elementskit-lite' );
68
- break;
69
-
70
- case 'ekit_timelinehr_content_address':
71
- return esc_html__( 'Address (Timeline)', 'elementskit-lite' );
72
- break;
73
-
74
- default:
75
- return '';
76
- }
77
-
78
- }
79
-
80
- /**
81
- * Method for determining the editor type for each field
82
- *
83
- * @since 1.2.6
84
- *
85
- * @param string $field Name of the field.
86
- * @return string
87
- */
88
- protected function get_editor_type( $field ) {
89
-
90
- switch ( $field ) {
91
- case 'ekit_timeline_line_subtitle':
92
- return 'LINE';
93
-
94
- case 'ekit_timeline_line_title':
95
- return 'LINE';
96
-
97
- case 'ekit_timeline_line_content':
98
- return 'AREA';
99
-
100
- case 'ekit_timeline_content_date':
101
- return 'LINE';
102
-
103
- case 'ekit_timelinehr_content_address':
104
- return 'LINE';
105
-
106
- default:
107
- return '';
108
- }
109
-
110
- }
111
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Timeline extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_timelinehr_content_repeater';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'ekit_timeline_line_subtitle',
36
+ 'ekit_timeline_line_title',
37
+ 'ekit_timeline_line_content',
38
+ 'ekit_timeline_content_date',
39
+ 'ekit_timelinehr_content_address',
40
+ );
41
+ }
42
+
43
+ /**
44
+ * Method for setting the title for each translatable field
45
+ *
46
+ * @since 1.2.6
47
+ *
48
+ * @param string $field The name of the field.
49
+ * @return string
50
+ */
51
+ protected function get_title( $field ) {
52
+
53
+ switch ( $field ) {
54
+ case 'ekit_timeline_line_subtitle':
55
+ return esc_html__( 'Sub Title (Timeline)', 'elementskit-lite' );
56
+ break;
57
+
58
+ case 'ekit_timeline_line_title':
59
+ return esc_html__( 'Title (Timeline)', 'elementskit-lite' );
60
+ break;
61
+
62
+ case 'ekit_timeline_line_content':
63
+ return esc_html__( 'Description (Timeline)', 'elementskit-lite' );
64
+ break;
65
+
66
+ case 'ekit_timeline_content_date':
67
+ return esc_html__( 'Date (Timeline)', 'elementskit-lite' );
68
+ break;
69
+
70
+ case 'ekit_timelinehr_content_address':
71
+ return esc_html__( 'Address (Timeline)', 'elementskit-lite' );
72
+ break;
73
+
74
+ default:
75
+ return '';
76
+ }
77
+
78
+ }
79
+
80
+ /**
81
+ * Method for determining the editor type for each field
82
+ *
83
+ * @since 1.2.6
84
+ *
85
+ * @param string $field Name of the field.
86
+ * @return string
87
+ */
88
+ protected function get_editor_type( $field ) {
89
+
90
+ switch ( $field ) {
91
+ case 'ekit_timeline_line_subtitle':
92
+ return 'LINE';
93
+
94
+ case 'ekit_timeline_line_title':
95
+ return 'LINE';
96
+
97
+ case 'ekit_timeline_line_content':
98
+ return 'AREA';
99
+
100
+ case 'ekit_timeline_content_date':
101
+ return 'LINE';
102
+
103
+ case 'ekit_timelinehr_content_address':
104
+ return 'LINE';
105
+
106
+ default:
107
+ return '';
108
+ }
109
+
110
+ }
111
+ }
config/module-list.php CHANGED
@@ -1,129 +1,129 @@
1
- <?php
2
-
3
- namespace ElementsKit_Lite\Config;
4
-
5
- use ElementsKit_Lite\Libs\Framework\Attr;
6
-
7
- defined('ABSPATH') || exit;
8
-
9
- class Module_List{
10
- use \ElementsKit_Lite\Traits\Singleton;
11
-
12
- /*
13
- todo: format the comment appropiatly
14
- Usage:
15
- get full list >> get_list() []
16
-
17
- get full list of active modules >> get_list(true, '', 'active') // []
18
-
19
- get specific module data >> get_list(true, 'image-accordion') [] or false
20
-
21
- get specific module data (if active) >> get_list(true, 'header-footer', 'active') [] or false
22
- */
23
- public function get_list($filtered = true, $module = '', $check_mathod = 'list') {
24
- $all_list = self::$list;
25
-
26
- if($filtered == true) {
27
- $all_list = apply_filters('elementskit/modules/list', self::$list);
28
- }
29
-
30
- if($check_mathod == 'active') {
31
- $active_list = Attr::instance()->utils->get_option('module_list', array_keys($all_list));
32
- $active_list = array_merge($active_list, self::$system_modules);
33
-
34
- // checking active widgets
35
-
36
- foreach($all_list as $widget_slug => $info) {
37
- if(!in_array($widget_slug, $active_list)) {
38
- unset($all_list[$widget_slug]);
39
- }
40
- }
41
- }
42
-
43
- if($module != '') {
44
- return (!isset($all_list[$module]) ? false : $all_list[$module]);
45
- }
46
-
47
- return $all_list;
48
- }
49
-
50
-
51
- /**
52
- * Check if a module is active or not, pro-disabled package are considered inactive
53
- *
54
- * Usage : \ElementsKit_Lite\Config\Module_List::instance()->is_active('facebook-messenger')
55
- *
56
- * @param $module_slug
57
- *
58
- * @return bool
59
- */
60
- public function is_active($module_slug) {
61
-
62
- $act = Module_List::instance()->get_list(true, $module_slug, 'active');
63
-
64
- return empty($act['package']) ? false : (($act['package'] == 'free' || $act['package'] == 'pro'));
65
- }
66
-
67
- private static $system_modules = [
68
- 'dynamic-content',
69
- 'library',
70
- 'controls',
71
- ];
72
-
73
- private static $list = [
74
- 'header-footer' => [
75
- 'slug' => 'header-footer',
76
- 'title' => 'Header Footer',
77
- 'package' => 'free', // free, pro, pro-disabled
78
- //'path' => null,
79
- //'base_class_name' => null,
80
- //'live' => null
81
- ],
82
- 'megamenu' => [
83
- 'slug' => 'megamenu',
84
- 'package' => 'free',
85
- 'title' => 'Mega Menu'
86
- ],
87
- 'onepage-scroll' => [
88
- 'slug' => 'onepage-scroll',
89
- 'package' => 'free',
90
- 'title' => 'Onepage Scroll'
91
- ],
92
- 'widget-builder' => [
93
- 'slug' => 'widget-builder',
94
- 'package' => 'free',
95
- 'title' => 'Widget Builder'
96
- ],
97
- 'parallax' => [
98
- 'slug' => 'parallax',
99
- 'package' => 'pro-disabled',
100
- 'title' => 'Parallax Effects'
101
- ],
102
- 'sticky-content' => [
103
- 'slug' => 'sticky-content',
104
- 'package' => 'pro-disabled',
105
- 'title' => 'Sticky Content'
106
- ],
107
- 'facebook-messenger' => [
108
- 'slug' => 'facebook-messenger',
109
- 'package' => 'pro-disabled',
110
- 'title' => 'Facebook Messenger',
111
- ],
112
- 'conditional-content' => [
113
- 'slug' => 'conditional-content',
114
- 'package' => 'pro-disabled',
115
- 'title' => 'Conditional Content',
116
- ],
117
- 'copy-paste-cross-domain' => [
118
- 'slug' => 'copy-paste-cross-domain',
119
- 'package' => 'pro-disabled',
120
- 'title' => 'Cross-Domain Copy Paste'
121
- ],
122
- 'advanced-tooltip' => [
123
- 'slug' => 'advanced-tooltip',
124
- 'package' => 'pro-disabled',
125
- 'title' => 'Advanced Tooltip',
126
- ]
127
- ];
128
-
129
  }
1
+ <?php
2
+
3
+ namespace ElementsKit_Lite\Config;
4
+
5
+ use ElementsKit_Lite\Libs\Framework\Attr;
6
+
7
+ defined('ABSPATH') || exit;
8
+
9
+ class Module_List{
10
+ use \ElementsKit_Lite\Traits\Singleton;
11
+
12
+ /*
13
+ todo: format the comment appropiatly
14
+ Usage:
15
+ get full list >> get_list() []
16
+
17
+ get full list of active modules >> get_list(true, '', 'active') // []
18
+
19
+ get specific module data >> get_list(true, 'image-accordion') [] or false
20
+
21
+ get specific module data (if active) >> get_list(true, 'header-footer', 'active') [] or false
22
+ */
23
+ public function get_list($filtered = true, $module = '', $check_mathod = 'list') {
24
+ $all_list = self::$list;
25
+
26
+ if($filtered == true) {
27
+ $all_list = apply_filters('elementskit/modules/list', self::$list);
28
+ }
29
+
30
+ if($check_mathod == 'active') {
31
+ $active_list = Attr::instance()->utils->get_option('module_list', array_keys($all_list));
32
+ $active_list = array_merge($active_list, self::$system_modules);
33
+
34
+ // checking active widgets
35
+
36
+ foreach($all_list as $widget_slug => $info) {
37
+ if(!in_array($widget_slug, $active_list)) {
38
+ unset($all_list[$widget_slug]);
39
+ }
40
+ }
41
+ }
42
+
43
+ if($module != '') {
44
+ return (!isset($all_list[$module]) ? false : $all_list[$module]);
45
+ }
46
+
47
+ return $all_list;
48
+ }
49
+
50
+
51
+ /**
52
+ * Check if a module is active or not, pro-disabled package are considered inactive
53
+ *
54
+ * Usage : \ElementsKit_Lite\Config\Module_List::instance()->is_active('facebook-messenger')
55
+ *
56
+ * @param $module_slug
57
+ *
58
+ * @return bool
59
+ */
60
+ public function is_active($module_slug) {
61
+
62
+ $act = Module_List::instance()->get_list(true, $module_slug, 'active');
63
+
64
+ return empty($act['package']) ? false : (($act['package'] == 'free' || $act['package'] == 'pro'));
65
+ }
66
+
67
+ private static $system_modules = [
68
+ 'dynamic-content',
69
+ 'library',
70
+ 'controls',
71
+ ];
72
+
73
+ private static $list = [
74
+ 'header-footer' => [
75
+ 'slug' => 'header-footer',
76
+ 'title' => 'Header Footer',
77
+ 'package' => 'free', // free, pro, pro-disabled
78
+ //'path' => null,
79
+ //'base_class_name' => null,
80
+ //'live' => null
81
+ ],
82
+ 'megamenu' => [
83
+ 'slug' => 'megamenu',
84
+ 'package' => 'free',
85
+ 'title' => 'Mega Menu'
86
+ ],
87
+ 'onepage-scroll' => [
88
+ 'slug' => 'onepage-scroll',
89
+ 'package' => 'free',
90
+ 'title' => 'Onepage Scroll'
91
+ ],
92
+ 'widget-builder' => [
93
+ 'slug' => 'widget-builder',
94
+ 'package' => 'free',
95
+ 'title' => 'Widget Builder'
96
+ ],
97
+ 'parallax' => [
98
+ 'slug' => 'parallax',
99
+ 'package' => 'pro-disabled',
100
+ 'title' => 'Parallax Effects'
101
+ ],
102
+ 'sticky-content' => [
103
+ 'slug' => 'sticky-content',
104
+ 'package' => 'pro-disabled',
105
+ 'title' => 'Sticky Content'
106
+ ],
107
+ 'facebook-messenger' => [
108
+ 'slug' => 'facebook-messenger',
109
+ 'package' => 'pro-disabled',
110
+ 'title' => 'Facebook Messenger',
111
+ ],
112
+ 'conditional-content' => [
113
+ 'slug' => 'conditional-content',
114
+ 'package' => 'pro-disabled',
115
+ 'title' => 'Conditional Content',
116
+ ],
117
+ 'copy-paste-cross-domain' => [
118
+ 'slug' => 'copy-paste-cross-domain',
119
+ 'package' => 'pro-disabled',
120
+ 'title' => 'Cross-Domain Copy Paste'
121
+ ],
122
+ 'advanced-tooltip' => [
123
+ 'slug' => 'advanced-tooltip',
124
+ 'package' => 'pro-disabled',
125
+ 'title' => 'Advanced Tooltip',
126
+ ]
127
+ ];
128
+
129
  }
config/widget-list.php CHANGED
@@ -1,447 +1,452 @@
1
- <?php
2
-
3
- namespace ElementsKit_Lite\Config;
4
-
5
- defined('ABSPATH') || exit;
6
-
7
- class Widget_List {
8
-
9
- use \ElementsKit_Lite\Traits\Singleton;
10
-
11
-
12
- /**
13
- * todo: format the comment appropriately
14
- *
15
- * Usage :
16
- * get full list >> get_list() []
17
- * get full list of active widgets >> get_list(true, '', 'active') // []
18
- * get specific widget data >> get_list(true, 'image-accordion') [] or false
19
- * get specific widget data (if active) >> get_list(true, 'image-accordion', 'active') [] or false
20
- *
21
- * @param bool $filtered
22
- * @param string $widget
23
- * @param string $check_method - active|list
24
- *
25
- * @return array|bool|mixed
26
- */
27
- public function get_list($filtered = true, $widget = '', $check_method = 'list') {
28
- $all_list = self::$list;
29
-
30
- if($filtered == true) {
31
- $all_list = apply_filters('elementskit/widgets/list', self::$list);
32
- }
33
-
34
- if($check_method == 'active') {
35
- $active_list = \ElementsKit_Lite\Libs\Framework\Attr::instance()->utils->get_option('widget_list', array_keys($all_list));
36
-
37
- foreach($all_list as $widget_slug => $info) {
38
- if(!in_array($widget_slug, $active_list)) {
39
- unset($all_list[$widget_slug]);
40
- }
41
- }
42
- }
43
-
44
- if($widget != '') {
45
- return (isset($all_list[$widget]) ? $all_list[$widget] : false);
46
- }
47
-
48
- return $all_list;
49
- }
50
-
51
-
52
- /**
53
- * Check if a widget is active or not, free package are considered inactive
54
- *
55
- * Usage : \ElementsKit_Lite\Config\Widget_List::instance()->is_active('facebook-review')
56
- *
57
- *
58
- * @param $widget - widget slug
59
- *
60
- * @return bool
61
- */
62
- public function is_active($widget) {
63
-
64
- $act = Widget_List::instance()->get_list(true, $widget, 'active');
65
-
66
- return empty($act['package']) ? false : (($act['package'] == 'free' || $act['package'] == 'pro'));
67
- }
68
-
69
-
70
- private static $list = [
71
- 'image-accordion' => [
72
- 'slug' => 'image-accordion',
73
- 'title' => 'Image Accordion',
74
- 'package' => 'free', // free, pro, free
75
- //'path' => 'path to the widget directory',
76
- //'base_class_name' => 'main class name',
77
- //'title' => 'widget title',
78
- //'live' => 'live demo url'
79
- ],
80
- 'accordion' => [
81
- 'slug' => 'accordion',
82
- 'title' => 'Accordion',
83
- 'package' => 'free',
84
- ],
85
- 'button' => [
86
- 'slug' => 'button',
87
- 'title' => 'Button',
88
- 'package' => 'free',
89
- ],
90
- 'heading' => [
91
- 'slug' => 'heading',
92
- 'title' => 'Heading',
93
- 'package' => 'free',
94
- ],
95
- 'blog-posts' => [
96
- 'slug' => 'blog-posts',
97
- 'title' => 'Blog Posts',
98
- 'package' => 'free',
99
- ],
100
- 'icon-box' => [
101
- 'slug' => 'icon-box',
102
- 'title' => 'Icon Box',
103
- 'package' => 'free',
104
- ],
105
- 'image-box' => [
106
- 'slug' => 'image-box',
107
- 'title' => 'Image Box',
108
- 'package' => 'free',
109
- ],
110
- 'countdown-timer' => [
111
- 'slug' => 'countdown-timer',
112
- 'title' => 'Countdown Timer',
113
- 'package' => 'free',
114
- ],
115
- 'client-logo' => [
116
- 'slug' => 'client-logo',
117
- 'title' => 'Client Logo',
118
- 'package' => 'free',
119
- ],
120
- 'faq' => [
121
- 'slug' => 'faq',
122
- 'title' => 'Faq',
123
- 'package' => 'free',
124
- ],
125
- 'funfact' => [
126
- 'slug' => 'funfact',
127
- 'title' => 'Funfact',
128
- 'package' => 'free',
129
- ],
130
- 'image-comparison' => [
131
- 'slug' => 'image-comparison',
132
- 'title' => 'Image Comparison',
133
- 'package' => 'free',
134
- ],
135
- 'lottie' => [
136
- 'slug' => 'lottie',
137
- 'title' => 'Lottie',
138
- 'package' => 'free',
139
- ],
140
- 'testimonial' => [
141
- 'slug' => 'testimonial',
142
- 'title' => 'Testimonial',
143
- 'package' => 'free',
144
- ],
145
- 'pricing' => [
146
- 'slug' => 'pricing',
147
- 'title' => 'Pricing',
148
- 'package' => 'free',
149
- ],
150
- 'team' => [
151
- 'slug' => 'team',
152
- 'title' => 'Team',
153
- 'package' => 'free',
154
- ],
155
- 'social' => [
156
- 'slug' => 'social',
157
- 'title' => 'Social',
158
- 'package' => 'free',
159
- ],
160
- 'progressbar' => [
161
- 'slug' => 'progressbar',
162
- 'title' => 'Progressbar',
163
- 'package' => 'free',
164
- ],
165
- 'category-list' => [
166
- 'slug' => 'category-list',
167
- 'title' => 'Category List',
168
- 'package' => 'free',
169
- ],
170
- 'page-list' => [
171
- 'slug' => 'page-list',
172
- 'title' => 'Page List',
173
- 'package' => 'free',
174
- ],
175
- 'post-grid' => [
176
- 'slug' => 'post-grid',
177
- 'title' => 'Post Grid',
178
- 'package' => 'free',
179
- ],
180
- 'post-list' => [
181
- 'slug' => 'post-list',
182
- 'title' => 'Post List',
183
- 'package' => 'free',
184
- ],
185
- 'post-tab' => [
186
- 'slug' => 'post-tab',
187
- 'title' => 'Post Tab',
188
- 'package' => 'free',
189
- ],
190
- 'nav-menu' => [
191
- 'slug' => 'nav-menu',
192
- 'title' => 'Nav Menu',
193
- 'package' => 'free',
194
- ],
195
- 'mail-chimp' => [
196
- 'slug' => 'mail-chimp',
197
- 'title' => 'Mail Chimp',
198
- 'package' => 'free',
199
- ],
200
- 'header-info' => [
201
- 'slug' => 'header-info',
202
- 'title' => 'Header Info',
203
- 'package' => 'free',
204
- ],
205
- 'piechart' => [
206
- 'slug' => 'piechart',
207
- 'title' => 'Piechart',
208
- 'package' => 'free',
209
- ],
210
- 'header-search' => [
211
- 'slug' => 'header-search',
212
- 'title' => 'Header Search',
213
- 'package' => 'free',
214
- ],
215
- 'header-offcanvas' => [
216
- 'slug' => 'header-offcanvas',
217
- 'title' => 'Header Offcanvas',
218
- 'package' => 'free',
219
- ],
220
- 'tab' => [
221
- 'slug' => 'tab',
222
- 'title' => 'Tab',
223
- 'package' => 'free',
224
- ],
225
- 'contact-form7' => [
226
- 'slug' => 'contact-form7',
227
- 'title' => 'Contact Form7',
228
- 'package' => 'free',
229
- ],
230
- 'video' => [
231
- 'slug' => 'video',
232
- 'title' => 'Video',
233
- 'package' => 'free',
234
- ],
235
- 'business-hours' => [
236
- 'slug' => 'business-hours',
237
- 'title' => 'Business Hours',
238
- 'package' => 'free',
239
- ],
240
- 'drop-caps' => [
241
- 'slug' => 'drop-caps',
242
- 'title' => 'Drop Caps',
243
- 'package' => 'free',
244
- ],
245
- 'social-share' => [
246
- 'slug' => 'social-share',
247
- 'title' => 'Social Share',
248
- 'package' => 'free',
249
- ],
250
- 'dual-button' => [
251
- 'slug' => 'dual-button',
252
- 'title' => 'Dual Button',
253
- 'package' => 'free',
254
- ],
255
- 'caldera-forms' => [
256
- 'slug' => 'caldera-forms',
257
- 'title' => 'Caldera Forms',
258
- 'package' => 'free',
259
- ],
260
- 'we-forms' => [
261
- 'slug' => 'we-forms',
262
- 'title' => 'We Forms',
263
- 'package' => 'free',
264
- ],
265
- 'wp-forms' => [
266
- 'slug' => 'wp-forms',
267
- 'title' => 'Wp Forms',
268
- 'package' => 'free',
269
- ],
270
-
271
- 'ninja-forms' => [
272
- 'slug' => 'ninja-forms',
273
- 'title' => 'Ninja Forms',
274
- 'package' => 'free',
275
- ],
276
- 'tablepress' => [
277
- 'slug' => 'tablepress',
278
- 'title' => 'Tablepress',
279
- 'package' => 'free',
280
- ],
281
- 'fluent-forms' => [
282
- 'slug' => 'fluent-forms',
283
- 'title' => 'Fluent Forms',
284
- 'package' => 'free',
285
- ],
286
- 'advanced-accordion' => [
287
- 'slug' => 'advanced-accordion',
288
- 'title' => 'Advanced Accordion',
289
- 'package' => 'pro-disabled',
290
- ],
291
- 'advanced-tab' => [
292
- 'slug' => 'advanced-tab',
293
- 'title' => 'Advanced Tab',
294
- 'package' => 'pro-disabled',
295
- ],
296
- 'hotspot' => [
297
- 'slug' => 'hotspot',
298
- 'title' => 'Hotspot',
299
- 'package' => 'pro-disabled',
300
- ],
301
- 'motion-text' => [
302
- 'slug' => 'motion-text',
303
- 'title' => 'Motion Text',
304
- 'package' => 'pro-disabled',
305
- ],
306
- 'twitter-feed' => [
307
- 'slug' => 'twitter-feed',
308
- 'title' => 'Twitter Feed',
309
- 'package' => 'pro-disabled',
310
- ],
311
-
312
- 'instagram-feed' => [
313
- 'slug' => 'instagram-feed',
314
- 'title' => 'Instagram Feed',
315
- 'package' => 'pro-disabled',
316
- ],
317
- 'gallery' => [
318
- 'slug' => 'gallery',
319
- 'title' => 'Gallery',
320
- 'package' => 'pro-disabled',
321
- ],
322
- 'chart' => [
323
- 'slug' => 'chart',
324
- 'title' => 'Chart',
325
- 'package' => 'pro-disabled',
326
- ],
327
- 'woo-category-list' => [
328
- 'slug' => 'woo-category-list',
329
- 'title' => 'Woo Category List',
330
- 'package' => 'pro-disabled',
331
- ],
332
- 'woo-mini-cart' => [
333
- 'slug' => 'woo-mini-cart',
334
- 'title' => 'Woo Mini Cart',
335
- 'package' => 'pro-disabled',
336
- ],
337
- 'woo-product-carousel' => [
338
- 'slug' => 'woo-product-carousel',
339
- 'title' => 'Woo Product Carousel',
340
- 'package' => 'pro-disabled',
341
- ],
342
- 'woo-product-list' => [
343
- 'slug' => 'woo-product-list',
344
- 'title' => 'Woo Product List',
345
- 'package' => 'pro-disabled',
346
- ],
347
- 'table' => [
348
- 'slug' => 'table',
349
- 'title' => 'Table',
350
- 'package' => 'pro-disabled',
351
- ],
352
- 'timeline' => [
353
- 'slug' => 'timeline',
354
- 'title' => 'Timeline',
355
- 'package' => 'pro-disabled',
356
- ],
357
- 'creative-button' => [
358
- 'slug' => 'creative-button',
359
- 'title' => 'Creative Button',
360
- 'package' => 'pro-disabled',
361
- ],
362
- 'vertical-menu' => [
363
- 'slug' => 'vertical-menu',
364
- 'title' => 'Vertical Menu',
365
- 'package' => 'pro-disabled',
366
- ],
367
- 'advanced-toggle' => [
368
- 'slug' => 'advanced-toggle',
369
- 'title' => 'Advanced Toggle',
370
- 'package' => 'pro-disabled',
371
- ],
372
- 'video-gallery' => [
373
- 'slug' => 'video-gallery',
374
- 'title' => 'Video Gallery',
375
- 'package' => 'pro-disabled',
376
- ],
377
- 'zoom' => [
378
- 'slug' => 'zoom',
379
- 'title' => 'Zoom',
380
- 'package' => 'pro-disabled',
381
- ],
382
- 'behance-feed' => [
383
- 'slug' => 'behance-feed',
384
- 'title' => 'Behance Feed',
385
- 'package' => 'pro-disabled',
386
- ],
387
-
388
- 'breadcrumb' => [
389
- 'slug' => 'breadcrumb',
390
- 'title' => 'Breadcrumb',
391
- 'package' => 'pro-disabled',
392
- ],
393
-
394
- 'dribble-feed' => [
395
- 'slug' => 'dribble-feed',
396
- 'title' => 'Dribble Feed',
397
- 'package' => 'pro-disabled',
398
- ],
399
-
400
- 'facebook-feed' => [
401
- 'slug' => 'facebook-feed',
402
- 'title' => 'Facebook feed',
403
- 'package' => 'pro-disabled',
404
- ],
405
-
406
- 'facebook-review' => [
407
- 'slug' => 'facebook-review',
408
- 'title' => 'Facebook review',
409
- 'package' => 'pro-disabled',
410
- ],
411
-
412
- 'trustpilot' => [
413
- 'slug' => 'trustpilot',
414
- 'title' => 'Trustpilot',
415
- 'package' => 'pro-disabled',
416
- ],
417
-
418
- 'yelp' => [
419
- 'slug' => 'yelp',
420
- 'title' => 'Yelp',
421
- 'package' => 'pro-disabled',
422
- ],
423
-
424
- 'pinterest-feed' => [
425
- 'slug' => 'pinterest-feed',
426
- 'title' => 'Pinterest Feed',
427
- 'package' => 'pro-disabled',
428
- ],
429
-
430
- // 'popup-modal' => [
431
- // 'slug' => 'popup-modal',
432
- // 'title' => 'Popup Modal',
433
- // 'package' => 'pro-disabled',
434
- // ],
435
-
436
- 'google-map' => [
437
- 'slug' => 'google-map',
438
- 'title' => 'Google Map',
439
- 'package' => 'pro-disabled',
440
- ],
441
- 'unfold' => [
442
- 'slug' => 'unfold',
443
- 'title' => 'Unfold',
444
- 'package' => 'pro-disabled',
445
- ],
446
- ];
 
 
 
 
 
447
  }
1
+ <?php
2
+
3
+ namespace ElementsKit_Lite\Config;
4
+
5
+ defined('ABSPATH') || exit;
6
+
7
+ class Widget_List {
8
+
9
+ use \ElementsKit_Lite\Traits\Singleton;
10
+
11
+
12
+ /**
13
+ * todo: format the comment appropriately
14
+ *
15
+ * Usage :
16
+ * get full list >> get_list() []
17
+ * get full list of active widgets >> get_list(true, '', 'active') // []
18
+ * get specific widget data >> get_list(true, 'image-accordion') [] or false
19
+ * get specific widget data (if active) >> get_list(true, 'image-accordion', 'active') [] or false
20
+ *
21
+ * @param bool $filtered
22
+ * @param string $widget
23
+ * @param string $check_method - active|list
24
+ *
25
+ * @return array|bool|mixed
26
+ */
27
+ public function get_list($filtered = true, $widget = '', $check_method = 'list') {
28
+ $all_list = self::$list;
29
+
30
+ if($filtered == true) {
31
+ $all_list = apply_filters('elementskit/widgets/list', self::$list);
32
+ }
33
+
34
+ if($check_method == 'active') {
35
+ $active_list = \ElementsKit_Lite\Libs\Framework\Attr::instance()->utils->get_option('widget_list', array_keys($all_list));
36
+
37
+ foreach($all_list as $widget_slug => $info) {
38
+ if(!in_array($widget_slug, $active_list)) {
39
+ unset($all_list[$widget_slug]);
40
+ }
41
+ }
42
+ }
43
+
44
+ if($widget != '') {
45
+ return (isset($all_list[$widget]) ? $all_list[$widget] : false);
46
+ }
47
+
48
+ return $all_list;
49
+ }
50
+
51
+
52
+ /**
53
+ * Check if a widget is active or not, free package are considered inactive
54
+ *
55
+ * Usage : \ElementsKit_Lite\Config\Widget_List::instance()->is_active('facebook-review')
56
+ *
57
+ *
58
+ * @param $widget - widget slug
59
+ *
60
+ * @return bool
61
+ */
62
+ public function is_active($widget) {
63
+
64
+ $act = Widget_List::instance()->get_list(true, $widget, 'active');
65
+
66
+ return empty($act['package']) ? false : (($act['package'] == 'free' || $act['package'] == 'pro'));
67
+ }
68
+
69
+
70
+ private static $list = [
71
+ 'image-accordion' => [
72
+ 'slug' => 'image-accordion',
73
+ 'title' => 'Image Accordion',
74
+ 'package' => 'free', // free, pro, free
75
+ //'path' => 'path to the widget directory',
76
+ //'base_class_name' => 'main class name',
77
+ //'title' => 'widget title',
78
+ //'live' => 'live demo url'
79
+ ],
80
+ 'accordion' => [
81
+ 'slug' => 'accordion',
82
+ 'title' => 'Accordion',
83
+ 'package' => 'free',
84
+ ],
85
+ 'button' => [
86
+ 'slug' => 'button',
87
+ 'title' => 'Button',
88
+ 'package' => 'free',
89
+ ],
90
+ 'heading' => [
91
+ 'slug' => 'heading',
92
+ 'title' => 'Heading',
93
+ 'package' => 'free',
94
+ ],
95
+ 'blog-posts' => [
96
+ 'slug' => 'blog-posts',
97
+ 'title' => 'Blog Posts',
98
+ 'package' => 'free',
99
+ ],
100
+ 'icon-box' => [
101
+ 'slug' => 'icon-box',
102
+ 'title' => 'Icon Box',
103
+ 'package' => 'free',
104
+ ],
105
+ 'image-box' => [
106
+ 'slug' => 'image-box',
107
+ 'title' => 'Image Box',
108
+ 'package' => 'free',
109
+ ],
110
+ 'countdown-timer' => [
111
+ 'slug' => 'countdown-timer',
112
+ 'title' => 'Countdown Timer',
113
+ 'package' => 'free',
114
+ ],
115
+ 'client-logo' => [
116
+ 'slug' => 'client-logo',
117
+ 'title' => 'Client Logo',
118
+ 'package' => 'free',
119
+ ],
120
+ 'faq' => [
121
+ 'slug' => 'faq',
122
+ 'title' => 'Faq',
123
+ 'package' => 'free',
124
+ ],
125
+ 'funfact' => [
126
+ 'slug' => 'funfact',
127
+ 'title' => 'Funfact',
128
+ 'package' => 'free',
129
+ ],
130
+ 'image-comparison' => [
131
+ 'slug' => 'image-comparison',
132
+ 'title' => 'Image Comparison',
133
+ 'package' => 'free',
134
+ ],
135
+ 'lottie' => [
136
+ 'slug' => 'lottie',
137
+ 'title' => 'Lottie',
138
+ 'package' => 'free',
139
+ ],
140
+ 'testimonial' => [
141
+ 'slug' => 'testimonial',
142
+ 'title' => 'Testimonial',
143
+ 'package' => 'free',
144
+ ],
145
+ 'pricing' => [
146
+ 'slug' => 'pricing',
147
+ 'title' => 'Pricing',
148
+ 'package' => 'free',
149
+ ],
150
+ 'team' => [
151
+ 'slug' => 'team',
152
+ 'title' => 'Team',
153
+ 'package' => 'free',
154
+ ],
155
+ 'social' => [
156
+ 'slug' => 'social',
157
+ 'title' => 'Social',
158
+ 'package' => 'free',
159
+ ],
160
+ 'progressbar' => [
161
+ 'slug' => 'progressbar',
162
+ 'title' => 'Progressbar',
163
+ 'package' => 'free',
164
+ ],
165
+ 'category-list' => [
166
+ 'slug' => 'category-list',
167
+ 'title' => 'Category List',
168
+ 'package' => 'free',
169
+ ],
170
+ 'page-list' => [
171
+ 'slug' => 'page-list',
172
+ 'title' => 'Page List',
173
+ 'package' => 'free',
174
+ ],
175
+ 'post-grid' => [
176
+ 'slug' => 'post-grid',
177
+ 'title' => 'Post Grid',
178
+ 'package' => 'free',
179
+ ],
180
+ 'post-list' => [
181
+ 'slug' => 'post-list',
182
+ 'title' => 'Post List',
183
+ 'package' => 'free',
184
+ ],
185
+ 'post-tab' => [
186
+ 'slug' => 'post-tab',
187
+ 'title' => 'Post Tab',
188
+ 'package' => 'free',
189
+ ],
190
+ 'nav-menu' => [
191
+ 'slug' => 'nav-menu',
192
+ 'title' => 'Nav Menu',
193
+ 'package' => 'free',
194
+ ],
195
+ 'mail-chimp' => [
196
+ 'slug' => 'mail-chimp',
197
+ 'title' => 'Mail Chimp',
198
+ 'package' => 'free',
199
+ ],
200
+ 'header-info' => [
201
+ 'slug' => 'header-info',
202
+ 'title' => 'Header Info',
203
+ 'package' => 'free',
204
+ ],
205
+ 'piechart' => [
206
+ 'slug' => 'piechart',
207
+ 'title' => 'Piechart',
208
+ 'package' => 'free',
209
+ ],
210
+ 'header-search' => [
211
+ 'slug' => 'header-search',
212
+ 'title' => 'Header Search',
213
+ 'package' => 'free',
214
+ ],
215
+ 'header-offcanvas' => [
216
+ 'slug' => 'header-offcanvas',
217
+ 'title' => 'Header Offcanvas',
218
+ 'package' => 'free',
219
+ ],
220
+ 'tab' => [
221
+ 'slug' => 'tab',
222
+ 'title' => 'Tab',
223
+ 'package' => 'free',
224
+ ],
225
+ 'contact-form7' => [
226
+ 'slug' => 'contact-form7',
227
+ 'title' => 'Contact Form7',
228
+ 'package' => 'free',
229
+ ],
230
+ 'video' => [
231
+ 'slug' => 'video',
232
+ 'title' => 'Video',
233
+ 'package' => 'free',
234
+ ],
235
+ 'business-hours' => [
236
+ 'slug' => 'business-hours',
237
+ 'title' => 'Business Hours',
238
+ 'package' => 'free',
239
+ ],
240
+ 'drop-caps' => [
241
+ 'slug' => 'drop-caps',
242
+ 'title' => 'Drop Caps',
243
+ 'package' => 'free',
244
+ ],
245
+ 'social-share' => [
246
+ 'slug' => 'social-share',
247
+ 'title' => 'Social Share',
248
+ 'package' => 'free',
249
+ ],
250
+ 'dual-button' => [
251
+ 'slug' => 'dual-button',
252
+ 'title' => 'Dual Button',
253
+ 'package' => 'free',
254
+ ],
255
+ 'caldera-forms' => [
256
+ 'slug' => 'caldera-forms',
257
+ 'title' => 'Caldera Forms',
258
+ 'package' => 'free',
259
+ ],
260
+ 'we-forms' => [
261
+ 'slug' => 'we-forms',
262
+ 'title' => 'We Forms',
263
+ 'package' => 'free',
264
+ ],
265
+ 'wp-forms' => [
266
+ 'slug' => 'wp-forms',
267
+ 'title' => 'Wp Forms',
268
+ 'package' => 'free',
269
+ ],
270
+
271
+ 'ninja-forms' => [
272
+ 'slug' => 'ninja-forms',
273
+ 'title' => 'Ninja Forms',
274
+ 'package' => 'free',
275
+ ],
276
+ 'tablepress' => [
277
+ 'slug' => 'tablepress',
278
+ 'title' => 'Tablepress',
279
+ 'package' => 'free',
280
+ ],
281
+ 'fluent-forms' => [
282
+ 'slug' => 'fluent-forms',
283
+ 'title' => 'Fluent Forms',
284
+ 'package' => 'free',
285
+ ],
286
+ 'advanced-accordion' => [
287
+ 'slug' => 'advanced-accordion',
288
+ 'title' => 'Advanced Accordion',
289
+ 'package' => 'pro-disabled',
290
+ ],
291
+ 'advanced-tab' => [
292
+ 'slug' => 'advanced-tab',
293
+ 'title' => 'Advanced Tab',
294
+ 'package' => 'pro-disabled',
295
+ ],
296
+ 'hotspot' => [
297
+ 'slug' => 'hotspot',
298
+ 'title' => 'Hotspot',
299
+ 'package' => 'pro-disabled',
300
+ ],
301
+ 'motion-text' => [
302
+ 'slug' => 'motion-text',
303
+ 'title' => 'Motion Text',
304
+ 'package' => 'pro-disabled',
305
+ ],
306
+ 'twitter-feed' => [
307
+ 'slug' => 'twitter-feed',
308
+ 'title' => 'Twitter Feed',
309
+ 'package' => 'pro-disabled',
310
+ ],
311
+
312
+ 'instagram-feed' => [
313
+ 'slug' => 'instagram-feed',
314
+ 'title' => 'Instagram Feed',
315
+ 'package' => 'pro-disabled',
316
+ ],
317
+ 'gallery' => [
318
+ 'slug' => 'gallery',
319
+ 'title' => 'Gallery',
320
+ 'package' => 'pro-disabled',
321
+ ],
322
+ 'chart' => [
323
+ 'slug' => 'chart',
324
+ 'title' => 'Chart',
325
+ 'package' => 'pro-disabled',
326
+ ],
327
+ 'woo-category-list' => [
328
+ 'slug' => 'woo-category-list',
329
+ 'title' => 'Woo Category List',
330
+ 'package' => 'pro-disabled',
331
+ ],
332
+ 'woo-mini-cart' => [
333
+ 'slug' => 'woo-mini-cart',
334
+ 'title' => 'Woo Mini Cart',
335
+ 'package' => 'pro-disabled',
336
+ ],
337
+ 'woo-product-carousel' => [
338
+ 'slug' => 'woo-product-carousel',
339
+ 'title' => 'Woo Product Carousel',
340
+ 'package' => 'pro-disabled',
341
+ ],
342
+ 'woo-product-list' => [
343
+ 'slug' => 'woo-product-list',
344
+ 'title' => 'Woo Product List',
345
+ 'package' => 'pro-disabled',
346
+ ],
347
+ 'table' => [
348
+ 'slug' => 'table',
349
+ 'title' => 'Table',
350
+ 'package' => 'pro-disabled',
351
+ ],
352
+ 'timeline' => [
353
+ 'slug' => 'timeline',
354
+ 'title' => 'Timeline',
355
+ 'package' => 'pro-disabled',
356
+ ],
357
+ 'creative-button' => [
358
+ 'slug' => 'creative-button',
359
+ 'title' => 'Creative Button',
360
+ 'package' => 'pro-disabled',
361
+ ],
362
+ 'vertical-menu' => [
363
+ 'slug' => 'vertical-menu',
364
+ 'title' => 'Vertical Menu',
365
+ 'package' => 'pro-disabled',
366
+ ],
367
+ 'advanced-toggle' => [
368
+ 'slug' => 'advanced-toggle',
369
+ 'title' => 'Advanced Toggle',
370
+ 'package' => 'pro-disabled',
371
+ ],
372
+ 'video-gallery' => [
373
+ 'slug' => 'video-gallery',
374
+ 'title' => 'Video Gallery',
375
+ 'package' => 'pro-disabled',
376
+ ],
377
+ 'zoom' => [
378
+ 'slug' => 'zoom',
379
+ 'title' => 'Zoom',
380
+ 'package' => 'pro-disabled',
381
+ ],
382
+ 'behance-feed' => [
383
+ 'slug' => 'behance-feed',
384
+ 'title' => 'Behance Feed',
385
+ 'package' => 'pro-disabled',
386
+ ],
387
+
388
+ 'breadcrumb' => [
389
+ 'slug' => 'breadcrumb',
390
+ 'title' => 'Breadcrumb',
391
+ 'package' => 'pro-disabled',
392
+ ],
393
+
394
+ 'dribble-feed' => [
395
+ 'slug' => 'dribble-feed',
396
+ 'title' => 'Dribble Feed',
397
+ 'package' => 'pro-disabled',
398
+ ],
399
+
400
+ 'facebook-feed' => [
401
+ 'slug' => 'facebook-feed',
402
+ 'title' => 'Facebook feed',
403
+ 'package' => 'pro-disabled',
404
+ ],
405
+
406
+ 'facebook-review' => [
407
+ 'slug' => 'facebook-review',
408
+ 'title' => 'Facebook review',
409
+ 'package' => 'pro-disabled',
410
+ ],
411
+
412
+ 'trustpilot' => [
413
+ 'slug' => 'trustpilot',
414
+ 'title' => 'Trustpilot',
415
+ 'package' => 'pro-disabled',
416
+ ],
417
+
418
+ 'yelp' => [
419
+ 'slug' => 'yelp',
420
+ 'title' => 'Yelp',
421
+ 'package' => 'pro-disabled',
422
+ ],
423
+
424
+ 'pinterest-feed' => [
425
+ 'slug' => 'pinterest-feed',
426
+ 'title' => 'Pinterest Feed',
427
+ 'package' => 'pro-disabled',
428
+ ],
429
+
430
+ // 'popup-modal' => [
431
+ // 'slug' => 'popup-modal',
432
+ // 'title' => 'Popup Modal',
433
+ // 'package' => 'pro-disabled',
434
+ // ],
435
+
436
+ 'google-map' => [
437
+ 'slug' => 'google-map',
438
+ 'title' => 'Google Map',
439
+ 'package' => 'pro-disabled',
440
+ ],
441
+ 'unfold' => [
442
+ 'slug' => 'unfold',
443
+ 'title' => 'Unfold',
444
+ 'package' => 'pro-disabled',
445
+ ],
446
+ 'image-swap' => [
447
+ 'slug' => 'image-swap',
448
+ 'title' => 'Image Swap',
449
+ 'package' => 'pro-disabled',
450
+ ],
451
+ ];
452
  }
core/build-inline-scripts.php CHANGED
@@ -1,53 +1,53 @@
1
- <?php
2
- namespace ElementsKit_Lite\Core;
3
-
4
- defined( 'ABSPATH' ) || exit;
5
-
6
- /**
7
- * Inline script registrar.
8
- *
9
- * Returns all necessary inline js & css.
10
- *
11
- * @since 1.0.0
12
- * @access public
13
- */
14
- class Build_Inline_Scripts{
15
-
16
- use \ElementsKit_Lite\Traits\Singleton;
17
-
18
- function __construct(){
19
- add_action('wp_enqueue_scripts', [$this, 'frontend_js']);
20
- add_action('admin_print_scripts', [$this, 'admin_js']);
21
- }
22
-
23
-
24
- // scripts for common end, admin & frontend
25
- public function common_js(){
26
- ob_start(); ?>
27
-
28
- var elementskit = {
29
- resturl: '<?php echo get_rest_url() . 'elementskit/v1/'; ?>',
30
- }
31
-
32
- <?php
33
- $output = ob_get_contents();
34
- ob_end_clean();
35
- return $output;
36
- }
37
-
38
-
39
-
40
- // scripts for frontend
41
- public function frontend_js(){
42
- $js = $this->common_js();
43
- wp_add_inline_script('elementskit-framework-js-frontend', $js);
44
- }
45
-
46
-
47
- // scripts for admin
48
- public function admin_js(){
49
- echo "<script type='text/javascript'>\n";
50
- echo \ElementsKit_Lite\Utils::render($this->common_js());
51
- echo "\n</script>";
52
- }
53
  }
1
+ <?php
2
+ namespace ElementsKit_Lite\Core;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+ /**
7
+ * Inline script registrar.
8
+ *
9
+ * Returns all necessary inline js & css.
10
+ *
11
+ * @since 1.0.0
12
+ * @access public
13
+ */
14
+ class Build_Inline_Scripts{
15
+
16
+ use \ElementsKit_Lite\Traits\Singleton;
17
+
18
+ function __construct(){
19
+ add_action('wp_enqueue_scripts', [$this, 'frontend_js']);
20
+ add_action('admin_print_scripts', [$this, 'admin_js']);
21
+ }
22
+
23
+
24
+ // scripts for common end, admin & frontend
25
+ public function common_js(){
26
+ ob_start(); ?>
27
+
28
+ var elementskit = {
29
+ resturl: '<?php echo get_rest_url() . 'elementskit/v1/'; ?>',
30
+ }
31
+
32
+ <?php
33
+ $output = ob_get_contents();
34
+ ob_end_clean();
35
+ return $output;
36
+ }
37
+
38
+
39
+
40
+ // scripts for frontend
41
+ public function frontend_js(){
42
+ $js = $this->common_js();
43
+ wp_add_inline_script('elementskit-framework-js-frontend', $js);
44
+ }
45
+
46
+
47
+ // scripts for admin
48
+ public function admin_js(){
49
+ echo "<script type='text/javascript'>\n";
50
+ echo \ElementsKit_Lite\Utils::render($this->common_js());
51
+ echo "\n</script>";
52
+ }
53
  }
core/build-modules.php CHANGED
@@ -1,62 +1,62 @@
1
- <?php
2
- namespace ElementsKit_Lite\Core;
3
- use ElementsKit_Lite\Libs\Framework\Attr;
4
-
5
- defined( 'ABSPATH' ) || exit;
6
-
7
- /**
8
- * Module registrar.
9
- *
10
- * Call assosiated classes of every modules.
11
- *
12
- * @since 1.0.0
13
- * @access public
14
- */
15
- class Build_Modules{
16
-
17
- private $all_modules;
18
-
19
- private $active_modules;
20
-
21
- use \ElementsKit_Lite\Traits\Singleton;
22
-
23
- /**
24
- * Hold the module list.
25
- *
26
- * @since 1.0.0
27
- * @access public
28
- * @static
29
- */
30
-
31
- private $system_modules = [
32
- 'dynamic-content',
33
- 'library',
34
- 'controls',
35
- ];
36
-
37
- public function __construct(){
38
- $this->all_modules = \ElementsKit_Lite\Config\Module_List::instance()->get_list();
39
- $this->active_modules = Attr::instance()->utils->get_option('module_list', array_keys($this->all_modules));
40
- $this->active_modules = array_merge($this->active_modules, $this->system_modules);
41
-
42
- foreach($this->active_modules as $module_slug){
43
- if(isset($this->all_modules[$module_slug]['package']) && $this->all_modules[$module_slug]['package'] == 'pro-disabled'){
44
- continue;
45
- }
46
-
47
- if(isset($this->all_modules[$module_slug]['path'])){
48
- include_once $this->all_modules[$module_slug]['path'] . 'init.php';
49
- }
50
-
51
- // make the class name and call it.
52
- $class_name = (
53
- isset($this->all_modules[$module_slug]['base_class_name'])
54
- ? $this->all_modules[$module_slug]['base_class_name']
55
- : '\ElementsKit_Lite\Modules\\'. \ElementsKit_Lite\Utils::make_classname($module_slug) .'\Init'
56
- );
57
- if(class_exists($class_name)){
58
- new $class_name();
59
- }
60
- }
61
- }
62
  }
1
+ <?php
2
+ namespace ElementsKit_Lite\Core;
3
+ use ElementsKit_Lite\Libs\Framework\Attr;
4
+
5
+ defined( 'ABSPATH' ) || exit;
6
+
7
+ /**
8
+ * Module registrar.
9
+ *
10
+ * Call assosiated classes of every modules.
11
+ *
12
+ * @since 1.0.0
13
+ * @access public
14
+ */
15
+ class Build_Modules{
16
+
17
+ private $all_modules;
18
+
19
+ private $active_modules;
20
+
21
+ use \ElementsKit_Lite\Traits\Singleton;
22
+
23
+ /**
24
+ * Hold the module list.
25
+ *
26
+ * @since 1.0.0
27
+ * @access public
28
+ * @static
29
+ */
30
+
31
+ private $system_modules = [
32
+ 'dynamic-content',
33
+ 'library',
34
+ 'controls',
35
+ ];
36
+
37
+ public function __construct(){
38
+ $this->all_modules = \ElementsKit_Lite\Config\Module_List::instance()->get_list();
39
+ $this->active_modules = Attr::instance()->utils->get_option('module_list', array_keys($this->all_modules));
40
+ $this->active_modules = array_merge($this->active_modules, $this->system_modules);
41
+
42
+ foreach($this->active_modules as $module_slug){
43
+ if(isset($this->all_modules[$module_slug]['package']) && $this->all_modules[$module_slug]['package'] == 'pro-disabled'){
44
+ continue;
45
+ }
46
+
47
+ if(isset($this->all_modules[$module_slug]['path'])){
48
+ include_once $this->all_modules[$module_slug]['path'] . 'init.php';
49
+ }
50
+
51
+ // make the class name and call it.
52
+ $class_name = (
53
+ isset($this->all_modules[$module_slug]['base_class_name'])
54
+ ? $this->all_modules[$module_slug]['base_class_name']
55
+ : '\ElementsKit_Lite\Modules\\'. \ElementsKit_Lite\Utils::make_classname($module_slug) .'\Init'
56
+ );
57
+ if(class_exists($class_name)){
58
+ new $class_name();
59
+ }
60
+ }
61
+ }
62
  }
core/build-widgets.php CHANGED
@@ -1,101 +1,101 @@
1
- <?php
2
- namespace ElementsKit_Lite\Core;
3
-
4
- use ElementsKit_Lite\Libs\Framework\Attr;
5
-
6
- defined( 'ABSPATH' ) || exit;
7
-
8
- class Build_Widgets{
9
-
10
- /**
11
- * Collection of default widgets.
12
- *
13
- * @since 1.0.0
14
- * @access private
15
- */
16
- private $active_widgets;
17
- private $all_widgets;
18
-
19
- use \ElementsKit_Lite\Traits\Singleton;
20
-
21
- public function __construct() {
22
-
23
- new \ElementsKit_Lite\Widgets\Init\Enqueue_Scripts;
24
-
25
- $this->all_widgets = \ElementsKit_Lite\Config\Widget_List::instance()->get_list();
26
- $this->active_widgets = Attr::instance()->utils->get_option('widget_list', array_keys($this->all_widgets));
27
-
28
- // check if the widget is exists
29
- foreach($this->active_widgets as $widget_slug){
30
- if(array_key_exists($widget_slug, $this->all_widgets)){
31
- if($this->all_widgets[$widget_slug]['package'] != 'pro-disabled'){
32
- $this->add_widget($this->all_widgets[$widget_slug]);
33
- }
34
- }
35
- }
36
-
37
- add_action( 'elementor/widgets/widgets_registered', [$this, 'register_widget']);
38
- }
39
-
40
-
41
- public function add_widget($widget_config){
42
-
43
- $widget_dir = (
44
- isset($widget_config['path'])
45
- ? $widget_config['path']
46
- : \ElementsKit_Lite::widget_dir() . $widget_config['slug'] . '/'
47
- );
48
-
49
- include $widget_dir . $widget_config['slug'] . '.php';
50
- include $widget_dir . $widget_config['slug'] . '-handler.php';
51
-
52
- $base_class_name = (
53
- (isset($widget_config['base_class_name']))
54
- ? $widget_config['base_class_name']
55
- : '\Elementor\ElementsKit_Widget_' . \ElementsKit_Lite\Utils::make_classname($widget_config['slug'])
56
- );
57
-
58
- $handler = $base_class_name . '_Handler';
59
- $handler_class = new $handler();
60
-
61
- if($handler_class->scripts() != false){
62
- add_action( 'wp_enqueue_scripts', [$handler_class, 'scripts'] );
63
- }
64
-
65
- if($handler_class->styles() != false){
66
- add_action( 'wp_enqueue_scripts', [$handler_class, 'styles'] );
67
- }
68
-
69
- if($handler_class->inline_css() != false){
70
- wp_add_inline_style( 'elementskit-init-css', $handler_class->inline_css());
71
- }
72
-
73
- if($handler_class->inline_js() != false){
74
- wp_add_inline_script( 'elementskit-init-js', $handler_class->inline_js());
75
- }
76
-
77
- if($handler_class->register_api() != false){
78
- if(\file_exists($handler_class->register_api())){
79
- include_once $handler_class->register_api();
80
- $api = $base_class_name . '_Api';
81
- new $api();
82
- }
83
- }
84
-
85
- if($handler_class->wp_init() != false){
86
- add_action('init', [$handler_class, 'wp_init']);
87
- }
88
- }
89
-
90
-
91
- public function register_widget($widgets_manager){
92
- foreach($this->active_widgets as $widget_slug){
93
- if(array_key_exists($widget_slug, $this->all_widgets)){
94
- $class_name = '\Elementor\ElementsKit_Widget_' . \ElementsKit_Lite\Utils::make_classname($widget_slug);
95
- if(class_exists($class_name)){
96
- $widgets_manager->register_widget_type(new $class_name());
97
- }
98
- }
99
- }
100
- }
101
  }
1
+ <?php
2
+ namespace ElementsKit_Lite\Core;
3
+
4
+ use ElementsKit_Lite\Libs\Framework\Attr;
5
+
6
+ defined( 'ABSPATH' ) || exit;
7
+
8
+ class Build_Widgets{
9
+
10
+ /**
11
+ * Collection of default widgets.
12
+ *
13
+ * @since 1.0.0
14
+ * @access private
15
+ */
16
+ private $active_widgets;
17
+ private $all_widgets;
18
+
19
+ use \ElementsKit_Lite\Traits\Singleton;
20
+
21
+ public function __construct() {
22
+
23
+ new \ElementsKit_Lite\Widgets\Init\Enqueue_Scripts;
24
+
25
+ $this->all_widgets = \ElementsKit_Lite\Config\Widget_List::instance()->get_list();
26
+ $this->active_widgets = Attr::instance()->utils->get_option('widget_list', array_keys($this->all_widgets));
27
+
28
+ // check if the widget is exists
29
+ foreach($this->active_widgets as $widget_slug){
30
+ if(array_key_exists($widget_slug, $this->all_widgets)){
31
+ if($this->all_widgets[$widget_slug]['package'] != 'pro-disabled'){
32
+ $this->add_widget($this->all_widgets[$widget_slug]);
33
+ }
34
+ }
35
+ }
36
+
37
+ add_action( 'elementor/widgets/widgets_registered', [$this, 'register_widget']);
38
+ }
39
+
40
+
41
+ public function add_widget($widget_config){
42
+
43
+ $widget_dir = (
44
+ isset($widget_config['path'])
45
+ ? $widget_config['path']
46
+ : \ElementsKit_Lite::widget_dir() . $widget_config['slug'] . '/'
47
+ );
48
+
49
+ include $widget_dir . $widget_config['slug'] . '.php';
50
+ include $widget_dir . $widget_config['slug'] . '-handler.php';
51
+
52
+ $base_class_name = (
53
+ (isset($widget_config['base_class_name']))
54
+ ? $widget_config['base_class_name']
55
+ : '\Elementor\ElementsKit_Widget_' . \ElementsKit_Lite\Utils::make_classname($widget_config['slug'])
56
+ );
57
+
58
+ $handler = $base_class_name . '_Handler';
59
+ $handler_class = new $handler();
60
+
61
+ if($handler_class->scripts() != false){
62
+ add_action( 'wp_enqueue_scripts', [$handler_class, 'scripts'] );
63
+ }
64
+
65
+ if($handler_class->styles() != false){
66
+ add_action( 'wp_enqueue_scripts', [$handler_class, 'styles'] );
67
+ }
68
+
69
+ if($handler_class->inline_css() != false){
70
+ wp_add_inline_style( 'elementskit-init-css', $handler_class->inline_css());
71
+ }
72
+
73
+ if($handler_class->inline_js() != false){
74
+ wp_add_inline_script( 'elementskit-init-js', $handler_class->inline_js());
75
+ }
76
+
77
+ if($handler_class->register_api() != false){
78
+ if(\file_exists($handler_class->register_api())){
79
+ include_once $handler_class->register_api();
80
+ $api = $base_class_name . '_Api';
81
+ new $api();
82
+ }
83
+ }
84
+
85
+ if($handler_class->wp_init() != false){
86
+ add_action('init', [$handler_class, 'wp_init']);
87
+ }
88
+ }
89
+
90
+
91
+ public function register_widget($widgets_manager){
92
+ foreach($this->active_widgets as $widget_slug){
93
+ if(array_key_exists($widget_slug, $this->all_widgets)){
94
+ $class_name = '\Elementor\ElementsKit_Widget_' . \ElementsKit_Lite\Utils::make_classname($widget_slug);
95
+ if(class_exists($class_name)){
96
+ $widgets_manager->register_widget_type(new $class_name());
97
+ }
98
+ }
99
+ }
100
+ }
101
  }
core/handler-api.php CHANGED
@@ -1,39 +1,39 @@
1
- <?php
2
- namespace ElementsKit_Lite\Core;
3
-
4
- class Handler_Api{
5
-
6
- public $prefix = '';
7
- public $param = '';
8
- public $request = null;
9
-
10
- public function __construct(){
11
- $this->config();
12
- $this->init();
13
- }
14
-
15
- public function config(){
16
-
17
- }
18
-
19
- public function init(){
20
- add_action( 'rest_api_init', function () {
21
- register_rest_route( untrailingslashit('elementskit/v1/' . $this->prefix), '/(?P<action>\w+)/' . ltrim($this->param, '/'), array(
22
- 'methods' => \WP_REST_Server::ALLMETHODS,
23
- 'callback' => [$this, 'callback'],
24
- 'permission_callback' => '__return_true',
25
- // all permissions are implimented inside the callback action
26
- ));
27
- });
28
- }
29
-
30
- public function callback($request){
31
- $this->request = $request;
32
- $action_class = strtolower($this->request->get_method()) .'_'. $this->request['action'];
33
-
34
- if(method_exists($this, $action_class)){
35
- return $this->{$action_class}();
36
- }
37
- }
38
-
39
  }
1
+ <?php
2
+ namespace ElementsKit_Lite\Core;
3
+
4
+ class Handler_Api{
5
+
6
+ public $prefix = '';
7
+ public $param = '';
8
+ public $request = null;
9
+
10
+ public function __construct(){
11
+ $this->config();
12
+ $this->init();
13
+ }
14
+
15
+ public function config(){
16
+
17
+ }
18
+
19
+ public function init(){
20
+ add_action( 'rest_api_init', function () {
21
+ register_rest_route( untrailingslashit('elementskit/v1/' . $this->prefix), '/(?P<action>\w+)/' . ltrim($this->param, '/'), array(
22
+ 'methods' => \WP_REST_Server::ALLMETHODS,
23
+ 'callback' => [$this, 'callback'],
24
+ 'permission_callback' => '__return_true',
25
+ // all permissions are implimented inside the callback action
26
+ ));
27
+ });
28
+ }
29
+
30
+ public function callback($request){
31
+ $this->request = $request;
32
+ $action_class = strtolower($this->request->get_method()) .'_'. $this->request['action'];
33
+
34
+ if(method_exists($this, $action_class)){
35
+ return $this->{$action_class}();
36
+ }
37
+ }
38
+
39
  }
core/handler-widget.php CHANGED
@@ -1,56 +1,56 @@
1
- <?php
2
- namespace ElementsKit_Lite\Core;
3
-
4
- class Handler_Widget{
5
-
6
- public function wp_init(){
7
- return false;
8
- }
9
-
10
- static function get_name() {
11
- return false;
12
- }
13
-
14
- static function get_title() {
15
- return false;
16
- }
17
-
18
- static function get_icon() {
19
- return false;
20
- }
21
-
22
- static function get_categories() {
23
- return false;
24
- }
25
-
26
- static function get_dir() {
27
- return false;
28
- }
29
-
30
- static function get_url() {
31
- return false;
32
- }
33
-
34
- public function register_api(){
35
- return false;
36
- }
37
-
38
- public function inline_js(){
39
- return false;
40
- }
41
-
42
- public function inline_css(){
43
- return false;
44
- }
45
-
46
- public function sass(){
47
- return false;
48
- }
49
-
50
- public function scripts(){
51
- return false;
52
- }
53
- public function styles(){
54
- return false;
55
- }
56
  }
1
+ <?php
2
+ namespace ElementsKit_Lite\Core;
3
+
4
+ class Handler_Widget{
5
+
6
+ public function wp_init(){
7
+ return false;
8
+ }
9
+
10
+ static function get_name() {
11
+ return false;
12
+ }
13
+
14
+ static function get_title() {
15
+ return false;
16
+ }
17
+
18
+ static function get_icon() {
19
+ return false;
20
+ }
21
+
22
+ static function get_categories() {
23
+ return false;
24
+ }
25
+
26
+ static function get_dir() {
27
+ return false;
28
+ }
29
+
30
+ static function get_url() {
31
+ return false;
32
+ }
33
+
34
+ public function register_api(){
35
+ return false;
36
+ }
37
+
38
+ public function inline_js(){
39
+ return false;
40
+ }
41
+
42
+ public function inline_css(){
43
+ return false;
44
+ }
45
+
46
+ public function sass(){
47
+ return false;
48
+ }
49
+
50
+ public function scripts(){
51
+ return false;
52
+ }
53
+ public function styles(){
54
+ return false;
55
+ }
56
  }
elementskit-lite.php CHANGED
@@ -1,387 +1,388 @@
1
- <?php
2
- defined( 'ABSPATH' ) || exit;
3
-
4
- /**
5
- * Plugin Name: ElementsKit Lite
6
- * Description: The most advanced addons for Elementor with tons of widgets, Header builder, Footer builder, Mega menu builder, layout pack and powerful custom controls.
7
- * Plugin URI: https://products.wpmet.com/elementskit
8
- * Author: Wpmet
9
- * Version: 2.1.5
10
- * Author URI: https://wpmet.com/
11
- *
12
- * Text Domain: elementskit-lite
13
- *
14
- * ElementsKit is a powerful addon for Elementor page builder.
15
- * It includes most comprehensive modules, such as "header footer builder", "mega menu",
16
- * "layout installer", "quick form builder" etc under the hood.
17
- * It has a tons of widgets to create any sites with an ease. It has some most unique
18
- * and powerful custom controls for elementor, such as "image picker", "ajax select", "widget area".
19
- *
20
- */
21
-
22
- final class ElementsKit_Lite{
23
- /**
24
- * Plugin Version
25
- *
26
- * @since 1.0.0
27
- * @var string The plugin version.
28
- */
29
- static function version(){
30
- return '2.1.5';
31
- }
32
-
33
- /**
34
- * Package type
35
- *
36
- * @since 1.1.0
37
- * @var string The plugin purchase type [pro/ free].
38
- */
39
- static function package_type(){
40
- return apply_filters( 'elementskit/core/package_type', 'free' );
41
- }
42
-
43
- /**
44
- * Product ID
45
- *
46
- * @since 1.2.6
47
- * @var string The plugin ID in our server.
48
- */
49
- static function product_id(){
50
- return '9';
51
- }
52
-
53
- /**
54
- * Author Name
55
- *
56
- * @since 1.3.1
57
- * @var string The plugin author.
58
- */
59
- static function author_name(){
60
- return 'Wpmet';
61
- }
62
-
63
- /**
64
- * Store Name
65
- *
66
- * @since 1.3.1
67
- * @var string The store name: self site, envato.
68
- */
69
- static function store_name(){
70
- return 'wordpressorg';
71
- }
72
-
73
- /**
74
- * Minimum Elementor Version
75
- *
76
- * @since 1.0.0
77
- * @var string Minimum Elementor version required to run the plugin.
78
- */
79
- static function min_el_version(){
80
- return '2.8.0';
81
- }
82
-
83
- /**
84
- * Minimum PHP Version
85
- *
86
- * @since 1.0.0
87
- * @var string Minimum PHP version required to run the plugin.
88
- */
89
- static function min_php_version(){
90
- return '7.0';
91
- }
92
-
93
- /**
94
- * Plugin file
95
- *
96
- * @since 1.0.0
97
- * @var string plugins's root file.
98
- */
99
- static function plugin_file(){
100
- return __FILE__;
101
- }
102
-
103
- /**
104
- * Plugin url
105
- *
106
- * @since 1.0.0
107
- * @var string plugins's root url.
108
- */
109
- static function plugin_url(){
110
- return trailingslashit(plugin_dir_url( __FILE__ ));
111
- }
112
-
113
- /**
114
- * Plugin dir
115
- *
116
- * @since 1.0.0
117
- * @var string plugins's root directory.
118
- */
119
- static function plugin_dir(){
120
- return trailingslashit(plugin_dir_path( __FILE__ ));
121
- }
122
-
123
- /**
124
- * Plugin's widget directory.
125
- *
126
- * @since 1.0.0
127
- * @var string widget's root directory.
128
- */
129
- static function widget_dir(){
130
- return self::plugin_dir() . 'widgets/';
131
- }
132
-
133
- /**
134
- * Plugin's widget url.
135
- *
136
- * @since 1.0.0
137
- * @var string widget's root url.
138
- */
139
- static function widget_url(){
140
- return self::plugin_url() . 'widgets/';
141
- }
142
-
143
-
144
- /**
145
- * API url
146
- *
147
- * @since 1.0.0
148
- * @var string for license, layout notification related functions.
149
- */
150
- static function api_url(){
151
- return 'https://api.wpmet.com/public/';
152
- }
153
-
154
- /**
155
- * Account url
156
- *
157
- * @since 1.2.6
158
- * @var string for plugin update notification, user account page.
159
- */
160
- static function account_url(){
161
- return 'https://account.wpmet.com';
162
- }
163
-
164
- /**
165
- * Plugin's module directory.
166
- *
167
- * @since 1.0.0
168
- * @var string module's root directory.
169
- */
170
- static function module_dir(){
171
- return self::plugin_dir() . 'modules/';
172
- }
173
-
174
- /**
175
- * Plugin's module url.
176
- *
177
- * @since 1.0.0
178
- * @var string module's root url.
179
- */
180
- static function module_url(){
181
- return self::plugin_url() . 'modules/';
182
- }
183
-
184
-
185
- /**
186
- * Plugin's lib directory.
187
- *
188
- * @since 1.0.0
189
- * @var string lib's root directory.
190
- */
191
- static function lib_dir(){
192
- return self::plugin_dir() . 'libs/';
193
- }
194
-
195
- /**
196
- * Plugin's lib url.
197
- *
198
- * @since 1.0.0
199
- * @var string lib's root url.
200
- */
201
- static function lib_url(){
202
- return self::plugin_url() . 'libs/';
203
- }
204
-
205
- /**
206
- * Constructor
207
- *
208
- * @since 1.0.0
209
- * @access public
210
- */
211
- public function __construct() {
212
- // Load the main static helper class.
213
- require_once self::plugin_dir() . 'libs/notice/notice.php'; // new notice system
214
- require_once self::plugin_dir() . 'libs/banner/banner.php'; // new banner system
215
- require_once self::plugin_dir() . 'libs/stories/stories.php'; // new stories system
216
- require_once self::plugin_dir() . 'libs/rating/rating.php';
217
- require_once self::plugin_dir() . 'libs/pro-awareness/pro-awareness.php'; // pro menu class file
218
- require_once self::plugin_dir() . 'helpers/utils.php';
219
-
220
- // Load translation
221
- add_action( 'init', array( $this, 'i18n' ) );
222
- // Init Plugin
223
- add_action( 'plugins_loaded', array( $this, 'init' ), 100 );
224
- }
225
-
226
- /**
227
- * Load Textdomain
228
- *
229
- * Load plugin localization files.
230
- * Fired by `init` action hook.
231
- *
232
- * @since 1.0.0
233
- * @access public
234
- */
235
- public function i18n() {
236
- load_plugin_textdomain( 'elementskit-lite', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
237
- }
238
-
239
- /**
240
- * Initialize the plugin
241
- *
242
- * Checks for basic plugin requirements, if one check fail don't continue,
243
- * if all check have passed include the plugin class.
244
- *
245
- * Fired by `plugins_loaded` action hook.
246
- *
247
- * @since 1.0.0
248
- * @access public
249
- */
250
- public function init() {
251
-
252
- // init notice class
253
- \Oxaim\Libs\Notice::init();
254
-
255
- // init pro menu class
256
- \Wpmet\Libs\Pro_Awareness::init();
257
-
258
- // Check if Elementor installed and activated.
259
- if ( ! did_action( 'elementor/loaded' ) ) {
260
- add_action( 'admin_head', array( $this, 'missing_elementor' ) );
261
- return;
262
- }
263
-
264
- // Check for required PHP version.
265
- if ( version_compare( PHP_VERSION, self::min_php_version(), '<' ) ) {
266
- add_action( 'admin_head', array( $this, 'failed_php_version' ) );
267
- return;
268
- }
269
- // Once we get here, We have passed all validation checks so we can safely include our plugin.
270
-
271
- // Register ElementsKit_Lite widget category
272
- add_action('elementor/elements/categories_registered', [$this, 'elementor_widget_category']);
273
-
274
- add_action( 'elementor/init', function(){
275
- if(class_exists('ElementsKit') && !class_exists('ElementsKit_Comp')){
276
- return;
277
- }
278
-
279
- // adding backward classes and mathods for older 14 number themes.
280
- require_once self::plugin_dir() . 'compatibility/backward/plugin-class-backward-compatibility.php';
281
- require_once self::plugin_dir() . 'compatibility/backward/utils-backward-compablity.php';
282
-
283
- // Load the Plugin class, it's the core class of ElementsKit_Lite.
284
- require_once self::plugin_dir() . 'plugin.php';
285
-
286
- // adding backward classes and mathods for older 14 number themes.
287
- require_once self::plugin_dir() . 'compatibility/backward/module-list.php';
288
- require_once self::plugin_dir() . 'compatibility/backward/widget-list.php';
289
- });
290
-
291
- }
292
-
293
-
294
-
295
- /**
296
- * Admin notice
297
- *
298
- * Warning when the site doesn't have required Elementor.
299
- *
300
- * @since 1.0.0
301
- * @access public
302
- */
303
- public function missing_elementor() {
304
- if ( isset( $_GET['activate'] ) ) {
305
- unset( $_GET['activate'] );
306
- }
307
- $btn = [
308
- 'default_class' => 'button',
309
- 'class' => 'button-primary ', // button-primary button-secondary button-small button-large button-link
310
- ];
311
-
312
- if ( file_exists( WP_PLUGIN_DIR . '/elementor/elementor.php' ) ) {
313
- $btn['text'] = esc_html__('Activate Elementor', 'elementskit-lite');
314
- $btn['url'] = wp_nonce_url( 'plugins.php?action=activate&plugin=elementor/elementor.php&plugin_status=all&paged=1', 'activate-plugin_elementor/elementor.php' );
315
- } else {
316
- $btn['text'] = esc_html__('Install Elementor', 'elementskit-lite');
317
- $btn['url'] = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=elementor' ), 'install-plugin_elementor' );
318
- }
319
-
320
- \Oxaim\Libs\Notice::instance('elementskit-lite', 'unsupported-elementor-version')
321
- ->set_type('error')
322
- ->set_message(sprintf( esc_html__( 'ElementsKit requires Elementor version %1$s+, which is currently NOT RUNNING.', 'elementskit-lite' ), self::min_el_version() ))
323
- ->set_button($btn)
324
- ->call();
325
- }
326
-
327
-
328
- /**
329
- * Admin notice
330
- *
331
- * Warning when the site doesn't have a minimum required PHP version.
332
- *
333
- * @since 1.0.0
334
- * @access public
335
- */
336
- public function failed_php_version() {
337
- \Oxaim\Libs\Notice::instance('elementskit-lite', 'unsupported-php-version')
338
- ->set_type('error')
339
- ->set_message(sprintf( esc_html__( 'ElementsKit requires PHP version %1$s+, which is currently NOT RUNNING on this server.', 'elementskit-lite' ), self::min_php_version() ))
340
- ->call();
341
- }
342
-
343
- /**
344
- * Rewrite flush.
345
- *
346
- * @since 1.0.7
347
- * @access public
348
- */
349
- public static function flush_rewrites(){
350
-
351
- require_once self::module_dir() . 'dynamic-content/cpt.php';
352
-
353
- new ElementsKit_Lite\Modules\Dynamic_Content\Cpt();
354
-
355
- flush_rewrite_rules();
356
- }
357
- /**
358
- * Add category.
359
- *
360
- * Register custom widget category in Elementor's editor
361
- *
362
- * @since 1.0.0
363
- * @access public
364
- */
365
- public function elementor_widget_category($widgets_manager){
366
- \Elementor\Plugin::$instance->elements_manager->add_category(
367
- 'elementskit',
368
- [
369
- 'title' =>esc_html__( 'ElementsKit', 'elementskit-lite' ),
370
- 'icon' => 'fa fa-plug',
371
- ],
372
- 1
373
- );
374
- \Elementor\Plugin::$instance->elements_manager->add_category(
375
- 'elementskit_headerfooter',
376
- [
377
- 'title' =>esc_html__( 'ElementsKit Header Footer', 'elementskit-lite' ),
378
- 'icon' => 'fa fa-plug',
379
- ],
380
- 1
381
- );
382
- }
383
- }
384
-
385
- new ElementsKit_Lite();
386
-
387
- register_activation_hook( __FILE__, 'ElementsKit_Lite::flush_rewrites' );
 
1
+ <?php
2
+ defined( 'ABSPATH' ) || exit;
3
+
4
+ /**
5
+ * Plugin Name: ElementsKit Lite
6
+ * Description: The most advanced addons for Elementor with tons of widgets, Header builder, Footer builder, Mega menu builder, layout pack and powerful custom controls.
7
+ * Plugin URI: https://products.wpmet.com/elementskit
8
+ * Author: Wpmet
9
+ * Version: 2.1.6
10
+ * Author URI: https://wpmet.com/
11
+ *
12
+ * Text Domain: elementskit-lite
13
+ * Domain Path: /languages
14
+ *
15
+ * ElementsKit is a powerful addon for Elementor page builder.
16
+ * It includes most comprehensive modules, such as "header footer builder", "mega menu",
17
+ * "layout installer", "quick form builder" etc under the hood.
18
+ * It has a tons of widgets to create any sites with an ease. It has some most unique
19
+ * and powerful custom controls for elementor, such as "image picker", "ajax select", "widget area".
20
+ *
21
+ */
22
+
23
+ final class ElementsKit_Lite{
24
+ /**
25
+ * Plugin Version
26
+ *
27
+ * @since 1.0.0
28
+ * @var string The plugin version.
29
+ */
30
+ static function version(){
31
+ return '2.1.6';
32
+ }
33
+
34
+ /**
35
+ * Package type
36
+ *
37
+ * @since 1.1.0
38
+ * @var string The plugin purchase type [pro/ free].
39
+ */
40
+ static function package_type(){
41
+ return apply_filters( 'elementskit/core/package_type', 'free' );
42
+ }
43
+
44
+ /**
45
+ * Product ID
46
+ *
47
+ * @since 1.2.6
48
+ * @var string The plugin ID in our server.
49
+ */
50
+ static function product_id(){
51
+ return '9';
52
+ }
53
+
54
+ /**
55
+ * Author Name
56
+ *
57
+ * @since 1.3.1
58
+ * @var string The plugin author.
59
+ */
60
+ static function author_name(){
61
+ return 'Wpmet';
62
+ }
63
+
64
+ /**
65
+ * Store Name
66
+ *
67
+ * @since 1.3.1
68
+ * @var string The store name: self site, envato.
69
+ */
70
+ static function store_name(){
71
+ return 'wordpressorg';
72
+ }
73
+
74
+ /**
75
+ * Minimum Elementor Version
76
+ *
77
+ * @since 1.0.0
78
+ * @var string Minimum Elementor version required to run the plugin.
79
+ */
80
+ static function min_el_version(){
81
+ return '2.8.0';
82
+ }
83
+
84
+ /**
85
+ * Minimum PHP Version
86
+ *
87
+ * @since 1.0.0
88
+ * @var string Minimum PHP version required to run the plugin.
89
+ */
90
+ static function min_php_version(){
91
+ return '7.0';
92
+ }
93
+
94
+ /**
95
+ * Plugin file
96
+ *
97
+ * @since 1.0.0
98
+ * @var string plugins's root file.
99
+ */
100
+ static function plugin_file(){
101
+ return __FILE__;
102
+ }
103
+
104
+ /**
105
+ * Plugin url
106
+ *
107
+ * @since 1.0.0
108
+ * @var string plugins's root url.
109
+ */
110
+ static function plugin_url(){
111
+ return trailingslashit(plugin_dir_url( __FILE__ ));
112
+ }
113
+
114
+ /**
115
+ * Plugin dir
116
+ *
117
+ * @since 1.0.0
118
+ * @var string plugins's root directory.
119
+ */
120
+ static function plugin_dir(){
121
+ return trailingslashit(plugin_dir_path( __FILE__ ));
122
+ }
123
+
124
+ /**
125
+ * Plugin's widget directory.
126
+ *
127
+ * @since 1.0.0
128
+ * @var string widget's root directory.
129
+ */
130
+ static function widget_dir(){
131
+ return self::plugin_dir() . 'widgets/';
132
+ }
133
+
134
+ /**
135
+ * Plugin's widget url.
136
+ *
137
+ * @since 1.0.0
138
+ * @var string widget's root url.
139
+ */
140
+ static function widget_url(){
141
+ return self::plugin_url() . 'widgets/';
142
+ }
143
+
144
+
145
+ /**
146
+ * API url
147
+ *
148
+ * @since 1.0.0
149
+ * @var string for license, layout notification related functions.
150
+ */
151
+ static function api_url(){
152
+ return 'https://api.wpmet.com/public/';
153
+ }
154
+
155
+ /**
156
+ * Account url
157
+ *
158
+ * @since 1.2.6
159
+ * @var string for plugin update notification, user account page.
160
+ */
161
+ static function account_url(){
162
+ return 'https://account.wpmet.com';
163
+ }
164
+
165
+ /**
166
+ * Plugin's module directory.
167
+ *
168
+ * @since 1.0.0
169
+ * @var string module's root directory.
170
+ */
171
+ static function module_dir(){
172
+ return self::plugin_dir() . 'modules/';
173
+ }
174
+
175
+ /**
176
+ * Plugin's module url.
177
+ *
178
+ * @since 1.0.0
179
+ * @var string module's root url.
180
+ */
181
+ static function module_url(){
182
+ return self::plugin_url() . 'modules/';
183
+ }
184
+
185
+
186
+ /**
187
+ * Plugin's lib directory.
188
+ *
189
+ * @since 1.0.0
190
+ * @var string lib's root directory.
191
+ */
192
+ static function lib_dir(){
193
+ return self::plugin_dir() . 'libs/';
194
+ }
195
+
196
+ /**
197
+ * Plugin's lib url.
198
+ *
199
+ * @since 1.0.0
200
+ * @var string lib's root url.
201
+ */
202
+ static function lib_url(){
203
+ return self::plugin_url() . 'libs/';
204
+ }
205
+
206
+ /**
207
+ * Constructor
208
+ *
209
+ * @since 1.0.0
210
+ * @access public
211
+ */
212
+ public function __construct() {
213
+ // Load the main static helper class.
214
+ require_once self::plugin_dir() . 'libs/notice/notice.php'; // new notice system
215
+ require_once self::plugin_dir() . 'libs/banner/banner.php'; // new banner system
216
+ require_once self::plugin_dir() . 'libs/stories/stories.php'; // new stories system
217
+ require_once self::plugin_dir() . 'libs/rating/rating.php';
218
+ require_once self::plugin_dir() . 'libs/pro-awareness/pro-awareness.php'; // pro menu class file
219
+ require_once self::plugin_dir() . 'helpers/utils.php';
220
+
221
+ // Load translation
222
+ add_action( 'init', array( $this, 'i18n' ) );
223
+ // Init Plugin
224
+ add_action( 'plugins_loaded', array( $this, 'init' ), 100 );
225
+ }
226
+
227
+ /**
228
+ * Load Textdomain
229
+ *
230
+ * Load plugin localization files.
231
+ * Fired by `init` action hook.
232
+ *
233
+ * @since 1.0.0
234
+ * @access public
235
+ */
236
+ public function i18n() {
237
+ load_plugin_textdomain( 'elementskit-lite', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
238
+ }
239
+
240
+ /**
241
+ * Initialize the plugin
242
+ *
243
+ * Checks for basic plugin requirements, if one check fail don't continue,
244
+ * if all check have passed include the plugin class.
245
+ *
246
+ * Fired by `plugins_loaded` action hook.
247
+ *
248
+ * @since 1.0.0
249
+ * @access public
250
+ */
251
+ public function init() {
252
+
253
+ // init notice class
254
+ \Oxaim\Libs\Notice::init();
255
+
256
+ // init pro menu class
257
+ \Wpmet\Libs\Pro_Awareness::init();
258
+
259
+ // Check if Elementor installed and activated.
260
+ if ( ! did_action( 'elementor/loaded' ) ) {
261
+ add_action( 'admin_head', array( $this, 'missing_elementor' ) );
262
+ return;
263
+ }
264
+
265
+ // Check for required PHP version.
266
+ if ( version_compare( PHP_VERSION, self::min_php_version(), '<' ) ) {
267
+ add_action( 'admin_head', array( $this, 'failed_php_version' ) );
268
+ return;
269
+ }
270
+ // Once we get here, We have passed all validation checks so we can safely include our plugin.
271
+
272
+ // Register ElementsKit_Lite widget category
273
+ add_action('elementor/elements/categories_registered', [$this, 'elementor_widget_category']);
274
+
275
+ add_action( 'elementor/init', function(){
276
+ if(class_exists('ElementsKit') && !class_exists('ElementsKit_Comp')){
277
+ return;
278
+ }
279
+
280
+ // adding backward classes and mathods for older 14 number themes.
281
+ require_once self::plugin_dir() . 'compatibility/backward/plugin-class-backward-compatibility.php';
282
+ require_once self::plugin_dir() . 'compatibility/backward/utils-backward-compablity.php';
283
+
284
+ // Load the Plugin class, it's the core class of ElementsKit_Lite.
285
+ require_once self::plugin_dir() . 'plugin.php';
286
+
287
+ // adding backward classes and mathods for older 14 number themes.
288
+ require_once self::plugin_dir() . 'compatibility/backward/module-list.php';
289
+ require_once self::plugin_dir() . 'compatibility/backward/widget-list.php';
290
+ });
291
+
292
+ }
293
+
294
+
295
+
296
+ /**
297
+ * Admin notice
298
+ *
299
+ * Warning when the site doesn't have required Elementor.
300
+ *
301
+ * @since 1.0.0
302
+ * @access public
303
+ */
304
+ public function missing_elementor() {
305
+ if ( isset( $_GET['activate'] ) ) {
306
+ unset( $_GET['activate'] );
307
+ }
308
+ $btn = [
309
+ 'default_class' => 'button',
310
+ 'class' => 'button-primary ', // button-primary button-secondary button-small button-large button-link
311
+ ];
312
+
313
+ if ( file_exists( WP_PLUGIN_DIR . '/elementor/elementor.php' ) ) {
314
+ $btn['text'] = esc_html__('Activate Elementor', 'elementskit-lite');
315
+ $btn['url'] = wp_nonce_url( 'plugins.php?action=activate&plugin=elementor/elementor.php&plugin_status=all&paged=1', 'activate-plugin_elementor/elementor.php' );
316
+ } else {
317
+ $btn['text'] = esc_html__('Install Elementor', 'elementskit-lite');
318
+ $btn['url'] = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=elementor' ), 'install-plugin_elementor' );
319
+ }
320
+
321
+ \Oxaim\Libs\Notice::instance('elementskit-lite', 'unsupported-elementor-version')
322
+ ->set_type('error')
323
+ ->set_message(sprintf( esc_html__( 'ElementsKit requires Elementor version %1$s+, which is currently NOT RUNNING.', 'elementskit-lite' ), self::min_el_version() ))
324
+ ->set_button($btn)
325
+ ->call();
326
+ }
327
+
328
+
329
+ /**
330
+ * Admin notice
331
+ *
332
+ * Warning when the site doesn't have a minimum required PHP version.
333
+ *
334
+ * @since 1.0.0
335
+ * @access public
336
+ */
337
+ public function failed_php_version() {
338
+ \Oxaim\Libs\Notice::instance('elementskit-lite', 'unsupported-php-version')
339
+ ->set_type('error')
340
+ ->set_message(sprintf( esc_html__( 'ElementsKit requires PHP version %1$s+, which is currently NOT RUNNING on this server.', 'elementskit-lite' ), self::min_php_version() ))
341
+ ->call();
342
+ }
343
+
344
+ /**
345
+ * Rewrite flush.
346
+ *
347
+ * @since 1.0.7
348
+ * @access public
349
+ */
350
+ public static function flush_rewrites(){
351
+
352
+ require_once self::module_dir() . 'dynamic-content/cpt.php';
353
+
354
+ new ElementsKit_Lite\Modules\Dynamic_Content\Cpt();
355
+
356
+ flush_rewrite_rules();
357
+ }
358
+ /**
359
+ * Add category.
360
+ *
361
+ * Register custom widget category in Elementor's editor
362
+ *
363
+ * @since 1.0.0
364
+ * @access public
365
+ */
366
+ public function elementor_widget_category($widgets_manager){
367
+ \Elementor\Plugin::$instance->elements_manager->add_category(
368
+ 'elementskit',
369
+ [
370
+ 'title' =>esc_html__( 'ElementsKit', 'elementskit-lite' ),
371
+ 'icon' => 'fa fa-plug',
372
+ ],
373
+ 1
374
+ );
375
+ \Elementor\Plugin::$instance->elements_manager->add_category(
376
+ 'elementskit_headerfooter',
377
+ [
378
+ 'title' =>esc_html__( 'ElementsKit Header Footer', 'elementskit-lite' ),
379
+ 'icon' => 'fa fa-plug',
380
+ ],
381
+ 1
382
+ );
383
+ }
384
+ }
385
+
386
+ new ElementsKit_Lite();
387
+
388
+ register_activation_hook( __FILE__, 'ElementsKit_Lite::flush_rewrites' );
helpers/utils.php CHANGED
@@ -1,282 +1,282 @@
1
- <?php
2
- namespace ElementsKit_Lite;
3
-
4
- defined( 'ABSPATH' ) || exit;
5
-
6
- /**
7
- * Global helper class.
8
- *
9
- * @since 1.0.0
10
- */
11
-
12
- class Utils {
13
-
14
- /**
15
- * Auto generate classname from path.
16
- *
17
- * @since 1.0.0
18
- * @access public
19
- */
20
- public static function make_classname( $dirname ) {
21
- $dirname = pathinfo($dirname, PATHINFO_FILENAME);
22
- $class_name = explode( '-', $dirname );
23
- $class_name = array_map( 'ucfirst', $class_name );
24
- $class_name = implode( '_', $class_name );
25
-
26
- return $class_name;
27
- }
28
-
29
- public static function google_fonts($font_families = []) {
30
- $fonts_url = '';
31
- if ( $font_families ) {
32
- $query_args = array(
33
- 'family' => urlencode( implode( '|', $font_families ) )
34
- );
35
-
36
- $fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' );
37
- }
38
-
39
- return esc_url_raw( $fonts_url );
40
- }
41
-
42
- public static function kses( $raw ) {
43
-
44
- $allowed_tags = array(
45
- 'a' => array(
46
- 'class' => array(),
47
- 'href' => array(),
48
- 'rel' => array(),
49
- 'title' => array(),
50
- 'target' => array(),
51
- ),
52
- 'abbr' => array(
53
- 'title' => array(),
54
- ),
55
- 'b' => array(),
56
- 'blockquote' => array(
57
- 'cite' => array(),
58
- ),
59
- 'cite' => array(
60
- 'title' => array(),
61
- ),
62
- 'code' => array(),
63
- 'del' => array(
64
- 'datetime' => array(),
65
- 'title' => array(),
66
- ),
67
- 'dd' => array(),
68
- 'div' => array(
69
- 'class' => array(),
70
- 'title' => array(),
71
- 'style' => array(),
72
- ),
73
- 'dl' => array(),
74
- 'dt' => array(),
75
- 'em' => array(),
76
- 'h1' => array(
77
- 'class' => array(),
78
- ),
79
- 'h2' => array(
80
- 'class' => array(),
81
- ),
82
- 'h3' => array(
83
- 'class' => array(),
84
- ),
85
- 'h4' => array(
86
- 'class' => array(),
87
- ),
88
- 'h5' => array(
89
- 'class' => array(),
90
- ),
91
- 'h6' => array(
92
- 'class' => array(),
93
- ),
94
- 'i' => array(
95
- 'class' => array(),
96
- ),
97
- 'img' => array(
98
- 'alt' => array(),
99
- 'class' => array(),
100
- 'height' => array(),
101
- 'src' => array(),
102
- 'width' => array(),
103
- ),
104
- 'li' => array(
105
- 'class' => array(),
106
- ),
107
- 'ol' => array(
108
- 'class' => array(),
109
- ),
110
- 'p' => array(
111
- 'class' => array(),
112
- ),
113
- 'q' => array(
114
- 'cite' => array(),
115
- 'title' => array(),
116
- ),
117
- 'span' => array(
118
- 'class' => array(),
119
- 'title' => array(),
120
- 'style' => array(),
121
- ),
122
- 'iframe' => array(
123
- 'width' => array(),
124
- 'height' => array(),
125
- 'scrolling' => array(),
126
- 'frameborder' => array(),
127
- 'allow' => array(),
128
- 'src' => array(),
129
- ),
130
- 'strike' => array(),
131
- 'br' => array(),
132
- 'strong' => array(),
133
- 'data-wow-duration' => array(),
134
- 'data-wow-delay' => array(),
135
- 'data-wallpaper-options' => array(),
136
- 'data-stellar-background-ratio' => array(),
137
- 'ul' => array(
138
- 'class' => array(),
139
- ),
140
- );
141
-
142
- if ( function_exists( 'wp_kses' ) ) { // WP is here
143
- return wp_kses( $raw, $allowed_tags );
144
- } else {
145
- return $raw;
146
- }
147
- }
148
-
149
- public static function kspan($text){
150
- return str_replace(['{', '}'], ['<span>', '</span>'], self::kses($text));
151
- }
152
-
153
- public static function ekit_get__forms($post_type) {
154
- $wpuf_form_list = get_posts(array(
155
- 'post_type' => $post_type,
156
- 'showposts' => 999,
157
- ));
158
-
159
- $options = array();
160
-
161
- if (!empty($wpuf_form_list) && !is_wp_error($wpuf_form_list)) {
162
- $options[0] = esc_html__('Select Form', 'elementskit-lite');
163
- foreach ($wpuf_form_list as $post) {
164
- $options[$post->ID] = $post->post_title;
165
- }
166
- } else {
167
- $options[0] = esc_html__('Create a form first', 'elementskit-lite');
168
- }
169
-
170
- return $options;
171
- }
172
-
173
- public static function ekit_get_ninja_form() {
174
- $options = array();
175
-
176
- if (class_exists('Ninja_Forms')) {
177
- $contact_forms = Ninja_Forms()->form()->get_forms();
178
-
179
- if (!empty($contact_forms) && !is_wp_error($contact_forms)) {
180
-
181
- $options[0] = esc_html__('Select Ninja Form', 'elementskit-lite');
182
-
183
- foreach ($contact_forms as $form) {
184
- $options[$form->get_id()] = $form->get_setting('title');
185
- }
186
- }
187
- } else {
188
- $options[0] = esc_html__('Create a Form First', 'elementskit-lite');
189
- }
190
-
191
- return $options;
192
- }
193
-
194
- public static function tablepress_table_list() {
195
- $table_options = array();
196
-
197
- if (class_exists('TablePress')) {
198
- $table_ids = \TablePress::$model_table->load_all( false );
199
- $table_options[0] = esc_html__( 'Select Table', 'elementskit-lite' );
200
-
201
- foreach ( $table_ids as $table_id ) {
202
- // Load table, without table data, options, and visibility settings.
203
- $table = \TablePress::$model_table->load( $table_id, false, false );
204
-
205
- if ( '' === trim( $table['name'] ) ) {
206
- $table['name'] = __( '(no name)', 'elementskit-lite' );
207
- }
208
-
209
- $table_options[$table['id']] = $table['name'];
210
- }
211
- } else {
212
- $table_options[0] = esc_html__('Create a Table First', 'elementskit-lite');
213
- }
214
-
215
- return $table_options;
216
- }
217
-
218
- public static function ekit_do_shortcode( $tag, array $atts = array(), $content = null ) {
219
- global $shortcode_tags;
220
- if ( ! isset( $shortcode_tags[ $tag ] ) ) {
221
- return false;
222
- }
223
- return call_user_func( $shortcode_tags[ $tag ], $atts, $content, $tag );
224
- }
225
-
226
- public static function trim_words($text, $num_words){
227
- return wp_trim_words( $text, $num_words, '' );
228
- }
229
-
230
- public static function array_push_assoc($array, $key, $value){
231
- $array[$key] = $value;
232
- return $array;
233
- }
234
-
235
- public static function render_elementor_content_css($content_id){
236
- if ( class_exists( '\Elementor\Core\Files\CSS\Post' ) ) {
237
- $css_file = new \Elementor\Core\Files\CSS\Post( $content_id );
238
- $css_file->enqueue();
239
- }
240
- }
241
-
242
- public static function render_elementor_content($content_id){
243
- $elementor_instance = \Elementor\Plugin::instance();
244
- $has_css = false;
245
-
246
- /**
247
- * CSS Print Method Internal and Exteral option support for Header and Footer Builder.
248
- */
249
- if (('internal' === get_option( 'elementor_css_print_method' )) || \Elementor\Plugin::$instance->preview->is_preview_mode()) {
250
- $has_css = true;
251
- }
252
-
253
- return $elementor_instance->frontend->get_builder_content_for_display( $content_id , $has_css );
254
- }
255
-
256
- public static function render($content){
257
- if (stripos($content, "elementskit-has-lisence") !== false) {
258
- return null;
259
- }
260
-
261
- return $content;
262
- }
263
-
264
- public static function render_tab_content($content, $id){
265
- return str_replace('.elementor-'.$id.' ', '#elementor .elementor-'.$id.' ', $content);
266
- }
267
-
268
- public static function img_meta($id){
269
- $attachment = get_post($id);
270
- if($attachment == null || $attachment->post_type != 'attachment'){
271
- return null;
272
- }
273
- return [
274
- 'alt' => get_post_meta( $attachment->ID, '_wp_attachment_image_alt', true ),
275
- 'caption' => $attachment->post_excerpt,
276
- 'description' => $attachment->post_content,
277
- 'href' => get_permalink( $attachment->ID ),
278
- 'src' => $attachment->guid,
279
- 'title' => $attachment->post_title
280
- ];
281
- }
282
- }
1
+ <?php
2
+ namespace ElementsKit_Lite;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+ /**
7
+ * Global helper class.
8
+ *
9
+ * @since 1.0.0
10
+ */
11
+
12
+ class Utils {
13
+
14
+ /**
15
+ * Auto generate classname from path.
16
+ *
17
+ * @since 1.0.0
18
+ * @access public
19
+ */
20
+ public static function make_classname( $dirname ) {
21
+ $dirname = pathinfo($dirname, PATHINFO_FILENAME);
22
+ $class_name = explode( '-', $dirname );
23
+ $class_name = array_map( 'ucfirst', $class_name );
24
+ $class_name = implode( '_', $class_name );
25
+
26
+ return $class_name;
27
+ }
28
+
29
+ public static function google_fonts($font_families = []) {
30
+ $fonts_url = '';
31
+ if ( $font_families ) {
32
+ $query_args = array(
33
+ 'family' => urlencode( implode( '|', $font_families ) )
34
+ );
35
+
36
+ $fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' );
37
+ }
38
+
39
+ return esc_url_raw( $fonts_url );
40
+ }
41
+
42
+ public static function kses( $raw ) {
43
+
44
+ $allowed_tags = array(
45
+ 'a' => array(
46
+ 'class' => array(),
47
+ 'href' => array(),
48
+ 'rel' => array(),
49
+ 'title' => array(),
50
+ 'target' => array(),
51
+ ),
52
+ 'abbr' => array(
53
+ 'title' => array(),
54
+ ),
55
+ 'b' => array(),
56
+ 'blockquote' => array(
57
+ 'cite' => array(),
58
+ ),
59
+ 'cite' => array(
60
+ 'title' => array(),
61
+ ),
62
+ 'code' => array(),
63
+ 'del' => array(
64
+ 'datetime' => array(),
65
+ 'title' => array(),
66
+ ),
67
+ 'dd' => array(),
68
+ 'div' => array(
69
+ 'class' => array(),
70
+ 'title' => array(),
71
+ 'style' => array(),
72
+ ),
73
+ 'dl' => array(),
74
+ 'dt' => array(),
75
+ 'em' => array(),
76
+ 'h1' => array(
77
+ 'class' => array(),
78
+ ),
79
+ 'h2' => array(
80
+ 'class' => array(),
81
+ ),
82
+ 'h3' => array(
83
+ 'class' => array(),
84
+ ),
85
+ 'h4' => array(
86
+ 'class' => array(),
87
+ ),
88
+ 'h5' => array(
89
+ 'class' => array(),
90
+ ),
91
+ 'h6' => array(
92
+ 'class' => array(),
93
+ ),
94
+ 'i' => array(
95
+ 'class' => array(),
96
+ ),
97
+ 'img' => array(
98
+ 'alt' => array(),
99
+ 'class' => array(),
100
+ 'height' => array(),
101
+ 'src' => array(),
102
+ 'width' => array(),
103
+ ),
104
+ 'li' => array(
105
+ 'class' => array(),
106
+ ),
107
+ 'ol' => array(
108
+ 'class' => array(),
109
+ ),
110
+ 'p' => array(
111
+ 'class' => array(),
112
+ ),
113
+ 'q' => array(
114
+ 'cite' => array(),
115
+ 'title' => array(),
116
+ ),
117
+ 'span' => array(
118
+ 'class' => array(),
119
+ 'title' => array(),
120
+ 'style' => array(),
121
+ ),
122
+ 'iframe' => array(
123
+ 'width' => array(),
124
+ 'height' => array(),
125
+ 'scrolling' => array(),
126
+ 'frameborder' => array(),
127
+ 'allow' => array(),
128
+ 'src' => array(),
129
+ ),
130
+ 'strike' => array(),
131
+ 'br' => array(),
132
+ 'strong' => array(),
133
+ 'data-wow-duration' => array(),
134
+ 'data-wow-delay' => array(),
135
+ 'data-wallpaper-options' => array(),
136
+ 'data-stellar-background-ratio' => array(),
137
+ 'ul' => array(
138
+ 'class' => array(),
139
+ ),
140
+ );
141
+
142
+ if ( function_exists( 'wp_kses' ) ) { // WP is here
143
+ return wp_kses( $raw, $allowed_tags );
144
+ } else {
145
+ return $raw;
146
+ }
147
+ }
148
+
149
+ public static function kspan($text){
150
+ return str_replace(['{', '}'], ['<span>', '</span>'], self::kses($text));
151
+ }
152
+
153
+ public static function ekit_get__forms($post_type) {
154
+ $wpuf_form_list = get_posts(array(
155
+ 'post_type' => $post_type,
156
+ 'showposts' => 999,
157
+ ));
158
+
159
+ $options = array();
160
+
161
+ if (!empty($wpuf_form_list) && !is_wp_error($wpuf_form_list)) {
162
+ $options[0] = esc_html__('Select Form', 'elementskit-lite');
163
+ foreach ($wpuf_form_list as $post) {
164
+ $options[$post->ID] = $post->post_title;
165
+ }
166
+ } else {
167
+ $options[0] = esc_html__('Create a form first', 'elementskit-lite');
168
+ }
169
+
170
+ return $options;
171
+ }
172
+
173
+ public static function ekit_get_ninja_form() {
174
+ $options = array();
175
+
176
+ if (class_exists('Ninja_Forms')) {
177
+ $contact_forms = Ninja_Forms()->form()->get_forms();
178
+
179
+ if (!empty($contact_forms) && !is_wp_error($contact_forms)) {
180
+
181
+ $options[0] = esc_html__('Select Ninja Form', 'elementskit-lite');
182
+
183
+ foreach ($contact_forms as $form) {
184
+ $options[$form->get_id()] = $form->get_setting('title');
185
+ }
186
+ }
187
+ } else {
188
+ $options[0] = esc_html__('Create a Form First', 'elementskit-lite');
189
+ }
190
+
191
+ return $options;
192
+ }
193
+
194
+ public static function tablepress_table_list() {
195
+ $table_options = array();
196
+
197
+ if (class_exists('TablePress')) {
198
+ $table_ids = \TablePress::$model_table->load_all( false );
199
+ $table_options[0] = esc_html__( 'Select Table', 'elementskit-lite' );
200
+
201
+ foreach ( $table_ids as $table_id ) {
202
+ // Load table, without table data, options, and visibility settings.
203
+ $table = \TablePress::$model_table->load( $table_id, false, false );
204
+
205
+ if ( '' === trim( $table['name'] ) ) {
206
+ $table['name'] = __( '(no name)', 'elementskit-lite' );
207
+ }
208
+
209
+ $table_options[$table['id']] = $table['name'];
210
+ }
211
+ } else {
212
+ $table_options[0] = esc_html__('Create a Table First', 'elementskit-lite');
213
+ }
214
+
215
+ return $table_options;
216
+ }
217
+
218
+ public static function ekit_do_shortcode( $tag, array $atts = array(), $content = null ) {
219
+ global $shortcode_tags;
220
+ if ( ! isset( $shortcode_tags[ $tag ] ) ) {
221
+ return false;
222
+ }
223
+ return call_user_func( $shortcode_tags[ $tag ], $atts, $content, $tag );
224
+ }
225
+
226
+ public static function trim_words($text, $num_words){
227
+ return wp_trim_words( $text, $num_words, '' );
228
+ }
229
+
230
+ public static function array_push_assoc($array, $key, $value){
231
+ $array[$key] = $value;
232
+ return $array;
233
+ }
234
+
235
+ public static function render_elementor_content_css($content_id){
236
+ if ( class_exists( '\Elementor\Core\Files\CSS\Post' ) ) {
237
+ $css_file = new \Elementor\Core\Files\CSS\Post( $content_id );
238
+ $css_file->enqueue();
239
+ }
240
+ }
241
+
242
+ public static function render_elementor_content($content_id){
243
+ $elementor_instance = \Elementor\Plugin::instance();
244
+ $has_css = false;
245
+
246
+ /**
247
+ * CSS Print Method Internal and Exteral option support for Header and Footer Builder.
248
+ */
249
+ if (('internal' === get_option( 'elementor_css_print_method' )) || \Elementor\Plugin::$instance->preview->is_preview_mode()) {
250
+ $has_css = true;
251
+ }
252
+
253
+ return $elementor_instance->frontend->get_builder_content_for_display( $content_id , $has_css );
254
+ }
255
+
256
+ public static function render($content){
257
+ if (stripos($content, "elementskit-has-lisence") !== false) {
258
+ return null;
259
+ }
260
+
261
+ return $content;
262
+ }
263
+
264
+ public static function render_tab_content($content, $id){
265
+ return str_replace('.elementor-'.$id.' ', '#elementor .elementor-'.$id.' ', $content);
266
+ }
267
+
268
+ public static function img_meta($id){
269
+ $attachment = get_post($id);
270
+ if($attachment == null || $attachment->post_type != 'attachment'){
271
+ return null;
272
+ }
273
+ return [
274
+ 'alt' => get_post_meta( $attachment->ID, '_wp_attachment_image_alt', true ),
275
+ 'caption' => $attachment->post_excerpt,
276
+ 'description' => $attachment->post_content,
277
+ 'href' => get_permalink( $attachment->ID ),
278
+ 'src' => $attachment->guid,
279
+ 'title' => $attachment->post_title
280
+ ];
281
+ }
282
+ }
helpers/widget-list.php DELETED
@@ -1,442 +0,0 @@
1
- <?php
2
-
3
- namespace ElementsKit_Lite\Helpers;
4
-
5
- defined('ABSPATH') || exit;
6
-
7
- class Widget_List {
8
-
9
- use \ElementsKit_Lite\Traits\Singleton;
10
-
11
-
12
- /**
13
- * todo: format the comment appropriately
14
- *
15
- * Usage :
16
- * get full list >> get_list() []
17
- * get full list of active widgets >> get_list(true, '', 'active') // []
18
- * get specific widget data >> get_list(true, 'image-accordion') [] or false
19
- * get specific widget data (if active) >> get_list(true, 'image-accordion', 'active') [] or false
20
- *
21
- * @param bool $filtered
22
- * @param string $widget
23
- * @param string $check_method - active|list
24
- *
25
- * @return array|bool|mixed
26
- */
27
- public function get_list($filtered = true, $widget = '', $check_method = 'list') {
28
- $all_list = self::$list;
29
-
30
- if($filtered == true) {
31
- $all_list = apply_filters('elementskit/widgets/list', self::$list);
32
- }
33
-
34
- if($check_method == 'active') {
35
- $active_list = \ElementsKit_Lite\Libs\Framework\Attr::instance()->utils->get_option('widget_list', array_keys($all_list));
36
-
37
- foreach($all_list as $widget_slug => $info) {
38
- if(!in_array($widget_slug, $active_list)) {
39
- unset($all_list[$widget_slug]);
40
- }
41
- }
42
- }
43
-
44
- if($widget != '') {
45
- return (isset($all_list[$widget]) ? $all_list[$widget] : false);
46
- }
47
-
48
- return $all_list;
49
- }
50
-
51
-
52
- /**
53
- * Check if a widget is active or not, free package are considered inactive
54
- *
55
- * Usage : \ElementsKit_Lite\Helpers\Widget_List::instance()->is_active('facebook-review')
56
- *
57
- *
58
- * @param $widget - widget slug
59
- *
60
- * @return bool
61
- */
62
- public function is_active($widget) {
63
-
64
- $act = Widget_List::instance()->get_list(true, $widget, 'active');
65
-
66
- return empty($act['package']) ? false : (($act['package'] == 'free' || $act['package'] == 'pro'));
67
- }
68
-
69
-
70
- private static $list = [
71
- 'image-accordion' => [
72
- 'slug' => 'image-accordion',
73
- 'title' => 'Image Accordion',
74
- 'package' => 'free', // free, pro, free
75
- //'path' => 'path to the widget directory',
76
- //'base_class_name' => 'main class name',
77
- //'title' => 'widget title',
78
- //'live' => 'live demo url'
79
- ],
80
- 'accordion' => [
81
- 'slug' => 'accordion',
82
- 'title' => 'Accordion',
83
- 'package' => 'free',
84
- ],
85
- 'button' => [
86
- 'slug' => 'button',
87
- 'title' => 'Button',
88
- 'package' => 'free',
89
- ],
90
- 'heading' => [
91
- 'slug' => 'heading',
92
- 'title' => 'Heading',
93
- 'package' => 'free',
94
- ],
95
- 'blog-posts' => [
96
- 'slug' => 'blog-posts',
97
- 'title' => 'Blog Posts',
98
- 'package' => 'free',
99
- ],
100
- 'icon-box' => [
101
- 'slug' => 'icon-box',
102
- 'title' => 'Icon Box',
103
- 'package' => 'free',
104
- ],
105
- 'image-box' => [
106
- 'slug' => 'image-box',
107
- 'title' => 'Image Box',
108
- 'package' => 'free',
109
- ],
110
- 'countdown-timer' => [
111
- 'slug' => 'countdown-timer',
112
- 'title' => 'Countdown Timer',
113
- 'package' => 'free',
114
- ],
115
- 'client-logo' => [
116
- 'slug' => 'client-logo',
117
- 'title' => 'Client Logo',
118
- 'package' => 'free',
119
- ],
120
- 'faq' => [
121
- 'slug' => 'faq',
122
- 'title' => 'FAQs',
123
- 'package' => 'free',
124
- ],
125
- 'funfact' => [
126
- 'slug' => 'funfact',
127
- 'title' => 'Funfact',
128
- 'package' => 'free',
129
- ],
130
- 'image-comparison' => [
131
- 'slug' => 'image-comparison',
132
- 'title' => 'Image Comparison',
133
- 'package' => 'free',
134
- ],
135
- 'lottie' => [
136
- 'slug' => 'lottie',
137
- 'title' => 'Lottie',
138
- 'package' => 'free',
139
- ],
140
- 'testimonial' => [
141
- 'slug' => 'testimonial',
142
- 'title' => 'Testimonial',
143
- 'package' => 'free',
144
- ],
145
- 'pricing' => [
146
- 'slug' => 'pricing',
147
- 'title' => 'Pricing',
148
- 'package' => 'free',
149
- ],
150
- 'team' => [
151
- 'slug' => 'team',
152
- 'title' => 'Team',
153
- 'package' => 'free',
154
- ],
155
- 'social' => [
156
- 'slug' => 'social',
157
- 'title' => 'Social',
158
- 'package' => 'free',
159
- ],
160
- 'progressbar' => [
161
- 'slug' => 'progressbar',
162
- 'title' => 'Progressbar',
163
- 'package' => 'free',
164
- ],
165
- 'category-list' => [
166
- 'slug' => 'category-list',
167
- 'title' => 'Category List',
168
- 'package' => 'free',
169
- ],
170
- 'page-list' => [
171
- 'slug' => 'page-list',
172
- 'title' => 'Page List',
173
- 'package' => 'free',
174
- ],
175
- 'post-grid' => [
176
- 'slug' => 'post-grid',
177
- 'title' => 'Post Grid',
178
- 'package' => 'free',
179
- ],
180
- 'post-list' => [
181
- 'slug' => 'post-list',
182
- 'title' => 'Post List',
183
- 'package' => 'free',
184
- ],
185
- 'post-tab' => [
186
- 'slug' => 'post-tab',
187
- 'title' => 'Post Tab',
188
- 'package' => 'free',
189
- ],
190
- 'nav-menu' => [
191
- 'slug' => 'nav-menu',
192
- 'title' => 'Nav Menu',
193
- 'package' => 'free',
194
- ],
195
- 'mail-chimp' => [
196
- 'slug' => 'mail-chimp',
197
- 'title' => 'Mail Chimp',
198
- 'package' => 'free',
199
- ],
200
- 'header-info' => [
201
- 'slug' => 'header-info',
202
- 'title' => 'Header Info',
203
- 'package' => 'free',
204
- ],
205
- 'piechart' => [
206
- 'slug' => 'piechart',
207
- 'title' => 'Piechart',
208
- 'package' => 'free',
209
- ],
210
- 'header-search' => [
211
- 'slug' => 'header-search',
212
- 'title' => 'Header Search',
213
- 'package' => 'free',
214
- ],
215
- 'header-offcanvas' => [
216
- 'slug' => 'header-offcanvas',
217
- 'title' => 'Header Offcanvas',
218
- 'package' => 'free',
219
- ],
220
- 'tab' => [
221
- 'slug' => 'tab',
222
- 'title' => 'Tab',
223
- 'package' => 'free',
224
- ],
225
- 'contact-form7' => [
226
- 'slug' => 'contact-form7',
227
- 'title' => 'Contact Form 7',
228
- 'package' => 'free',
229
- ],
230
- 'video' => [
231
- 'slug' => 'video',
232
- 'title' => 'Video',
233
- 'package' => 'free',
234
- ],
235
- 'business-hours' => [
236
- 'slug' => 'business-hours',
237
- 'title' => 'Business Hours',
238
- 'package' => 'free',
239
- ],
240
- 'drop-caps' => [
241
- 'slug' => 'drop-caps',
242
- 'title' => 'Drop Caps',
243
- 'package' => 'free',
244
- ],
245
- 'social-share' => [
246
- 'slug' => 'social-share',
247
- 'title' => 'Social Share',
248
- 'package' => 'free',
249
- ],
250
- 'dual-button' => [
251
- 'slug' => 'dual-button',
252
- 'title' => 'Dual Button',
253
- 'package' => 'free',
254
- ],
255
- 'caldera-forms' => [
256
- 'slug' => 'caldera-forms',
257
- 'title' => 'Caldera Forms',
258
- 'package' => 'free',
259
- ],
260
- 'we-forms' => [
261
- 'slug' => 'we-forms',
262
- 'title' => 'We Forms',
263
- 'package' => 'free',
264
- ],
265
- 'wp-forms' => [
266
- 'slug' => 'wp-forms',
267
- 'title' => 'Wp Forms',
268
- 'package' => 'free',
269
- ],
270
-
271
- 'ninja-forms' => [
272
- 'slug' => 'ninja-forms',
273
- 'title' => 'Ninja Forms',
274
- 'package' => 'free',
275
- ],
276
- 'tablepress' => [
277
- 'slug' => 'tablepress',
278
- 'title' => 'Tablepress',
279
- 'package' => 'free',
280
- ],
281
- 'advanced-accordion' => [
282
- 'slug' => 'advanced-accordion',
283
- 'title' => 'Advanced Accordion',
284
- 'package' => 'pro-disabled',
285
- ],
286
- 'advanced-tab' => [
287
- 'slug' => 'advanced-tab',
288
- 'title' => 'Advanced Tab',
289
- 'package' => 'pro-disabled',
290
- ],
291
- 'hotspot' => [
292
- 'slug' => 'hotspot',
293
- 'title' => 'Hotspot',
294
- 'package' => 'pro-disabled',
295
- ],
296
- 'motion-text' => [
297
- 'slug' => 'motion-text',
298
- 'title' => 'Motion Text',
299
- 'package' => 'pro-disabled',
300
- ],
301
- 'twitter-feed' => [
302
- 'slug' => 'twitter-feed',
303
- 'title' => 'Twitter Feed',
304
- 'package' => 'pro-disabled',
305
- ],
306
-
307
- 'instagram-feed' => [
308
- 'slug' => 'instagram-feed',
309
- 'title' => 'Instagram Feed',
310
- 'package' => 'pro-disabled',
311
- ],
312
- 'gallery' => [
313
- 'slug' => 'gallery',
314
- 'title' => 'Gallery',
315
- 'package' => 'pro-disabled',
316
- ],
317
- 'chart' => [
318
- 'slug' => 'chart',
319
- 'title' => 'Chart',
320
- 'package' => 'pro-disabled',
321
- ],
322
- 'woo-category-list' => [
323
- 'slug' => 'woo-category-list',
324
- 'title' => 'Woo Category List',
325
- 'package' => 'pro-disabled',
326
- ],
327
- 'woo-mini-cart' => [
328
- 'slug' => 'woo-mini-cart',
329
- 'title' => 'Woo Mini Cart',
330
- 'package' => 'pro-disabled',
331
- ],
332
- 'woo-product-carousel' => [
333
- 'slug' => 'woo-product-carousel',
334
- 'title' => 'Woo Product Carousel',
335
- 'package' => 'pro-disabled',
336
- ],
337
- 'woo-product-list' => [
338
- 'slug' => 'woo-product-list',
339
- 'title' => 'Woo Product List',
340
- 'package' => 'pro-disabled',
341
- ],
342
- 'table' => [
343
- 'slug' => 'table',
344
- 'title' => 'Table',
345
- 'package' => 'pro-disabled',
346
- ],
347
- 'timeline' => [
348
- 'slug' => 'timeline',
349
- 'title' => 'Timeline',
350
- 'package' => 'pro-disabled',
351
- ],
352
- 'creative-button' => [
353
- 'slug' => 'creative-button',
354
- 'title' => 'Creative Button',
355
- 'package' => 'pro-disabled',
356
- ],
357
- 'vertical-menu' => [
358
- 'slug' => 'vertical-menu',
359
- 'title' => 'Vertical Menu',
360
- 'package' => 'pro-disabled',
361
- ],
362
- 'advanced-toggle' => [
363
- 'slug' => 'advanced-toggle',
364
- 'title' => 'Advanced Toggle',
365
- 'package' => 'pro-disabled',
366
- ],
367
- 'video-gallery' => [
368
- 'slug' => 'video-gallery',
369
- 'title' => 'Video Gallery',
370
- 'package' => 'pro-disabled',
371
- ],
372
- 'zoom' => [
373
- 'slug' => 'zoom',
374
- 'title' => 'Zoom',
375
- 'package' => 'pro-disabled',
376
- ],
377
- 'behance-feed' => [
378
- 'slug' => 'behance-feed',
379
- 'title' => 'Behance Feed',
380
- 'package' => 'pro-disabled',
381
- ],
382
-
383
- 'breadcrumb' => [
384
- 'slug' => 'breadcrumb',
385
- 'title' => 'Breadcrumb',
386
- 'package' => 'pro-disabled',
387
- ],
388
-
389
- 'dribble-feed' => [
390
- 'slug' => 'dribble-feed',
391
- 'title' => 'Dribble Feed',
392
- 'package' => 'pro-disabled',
393
- ],
394
-
395
- 'facebook-feed' => [
396
- 'slug' => 'facebook-feed',
397
- 'title' => 'Facebook Feed',
398
- 'package' => 'pro-disabled',
399
- ],
400
-
401
- 'facebook-review' => [
402
- 'slug' => 'facebook-review',
403
- 'title' => 'Facebook Review',
404
- 'package' => 'pro-disabled',
405
- ],
406
-
407
- 'trustpilot' => [
408
- 'slug' => 'trustpilot',
409
- 'title' => 'Trustpilot',
410
- 'package' => 'pro-disabled',
411
- ],
412
-
413
- 'yelp' => [
414
- 'slug' => 'yelp',
415
- 'title' => 'Yelp',
416
- 'package' => 'pro-disabled',
417
- ],
418
-
419
- 'pinterest-feed' => [
420
- 'slug' => 'pinterest-feed',
421
- 'title' => 'Pinterest Feed',
422
- 'package' => 'pro-disabled',
423
- ],
424
-
425
- 'popup-modal' => [
426
- 'slug' => 'popup-modal',
427
- 'title' => 'Popup Modal',
428
- 'package' => 'pro-disabled',
429
- ],
430
-
431
- 'google-map' => [
432
- 'slug' => 'google-map',
433
- 'title' => 'Google Map',
434
- 'package' => 'pro-disabled',
435
- ],
436
- 'unfold' => [
437
- 'slug' => 'unfold',
438
- 'title' => 'Unfold',
439
- 'package' => 'pro-disabled',
440
- ],
441
- ];
442
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
elementskit-lite.pot → languages/elementskit-lite.pot RENAMED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the ElementsKit Lite package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: ElementsKit Lite 2.1.5\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/elementskit-lite\n"
7
- "POT-Creation-Date: 2021-02-01 09:49:24+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -13,22 +13,22 @@ msgstr ""
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
  "X-Generator: grunt-wp-i18n 1.0.3\n"
15
 
16
- #: widgets/blog-posts/blog-posts.php:102
17
  #: widgets/testimonial/testimonial.php:322
18
  msgid "1"
19
  msgstr ""
20
 
21
- #: widgets/blog-posts/blog-posts.php:103
22
  #: widgets/testimonial/testimonial.php:321
23
  msgid "2"
24
  msgstr ""
25
 
26
- #: widgets/blog-posts/blog-posts.php:104 widgets/post-grid/post-grid.php:64
27
  #: widgets/post-tab/post-tab.php:65 widgets/testimonial/testimonial.php:320
28
  msgid "3"
29
  msgstr ""
30
 
31
- #: widgets/blog-posts/blog-posts.php:105
32
  #: widgets/testimonial/testimonial.php:319
33
  msgid "4"
34
  msgstr ""
@@ -37,7 +37,7 @@ msgstr ""
37
  msgid "5"
38
  msgstr ""
39
 
40
- #: widgets/blog-posts/blog-posts.php:106
41
  msgid "6"
42
  msgstr ""
43
 
@@ -425,31 +425,31 @@ msgstr ""
425
  msgid "Address (Timeline)"
426
  msgstr ""
427
 
428
- #: elementskit-lite.php:313
429
  msgid "Activate Elementor"
430
  msgstr ""
431
 
432
- #: elementskit-lite.php:316
433
  msgid "Install Elementor"
434
  msgstr ""
435
 
436
- #: elementskit-lite.php:322
437
  msgid ""
438
  "ElementsKit requires Elementor version %1$s+, which is currently NOT "
439
  "RUNNING."
440
  msgstr ""
441
 
442
- #: elementskit-lite.php:339
443
  msgid ""
444
  "ElementsKit requires PHP version %1$s+, which is currently NOT RUNNING on "
445
  "this server."
446
  msgstr ""
447
 
448
- #: elementskit-lite.php:369 libs/framework/attr.php:63
449
  msgid "ElementsKit"
450
  msgstr ""
451
 
452
- #: elementskit-lite.php:377
453
  msgid "ElementsKit Header Footer"
454
  msgstr ""
455
 
@@ -765,13 +765,13 @@ msgstr ""
765
  #: libs/framework/views/settings-userdata.php:279
766
  #: widgets/accordion/accordion.php:249 widgets/accordion/accordion.php:341
767
  #: widgets/accordion/accordion.php:478 widgets/accordion/accordion.php:630
768
- #: widgets/accordion/accordion.php:692 widgets/blog-posts/blog-posts.php:993
769
- #: widgets/blog-posts/blog-posts.php:1064
770
- #: widgets/blog-posts/blog-posts.php:1317
771
- #: widgets/blog-posts/blog-posts.php:1342
772
- #: widgets/blog-posts/blog-posts.php:1595
773
- #: widgets/blog-posts/blog-posts.php:1623
774
- #: widgets/blog-posts/blog-posts.php:1825
775
  #: widgets/business-hours/business-hours.php:253
776
  #: widgets/business-hours/business-hours.php:317
777
  #: widgets/caldera-forms/caldera-forms.php:93
@@ -1082,7 +1082,7 @@ msgstr ""
1082
  msgid "Not found in Trash"
1083
  msgstr ""
1084
 
1085
- #: modules/dynamic-content/cpt.php:35 widgets/blog-posts/blog-posts.php:805
1086
  msgid "Featured Image"
1087
  msgstr ""
1088
 
@@ -1318,7 +1318,7 @@ msgid "Enable this menu for Megamenu content"
1318
  msgstr ""
1319
 
1320
  #: modules/megamenu/views/options-menu-item.php:7
1321
- #: widgets/accordion/accordion.php:77 widgets/blog-posts/blog-posts.php:1814
1322
  #: widgets/business-hours/business-hours.php:41 widgets/button/button.php:41
1323
  #: widgets/countdown-timer/countdown-timer.php:204
1324
  #: widgets/drop-caps/drop-caps.php:47 widgets/faq/faq.php:58
@@ -1336,7 +1336,7 @@ msgstr ""
1336
 
1337
  #: modules/megamenu/views/options-menu-item.php:9
1338
  #: widgets/accordion/accordion.php:131 widgets/accordion/accordion.php:601
1339
- #: widgets/blog-posts/blog-posts.php:490 widgets/button/button.php:97
1340
  #: widgets/button/button.php:419 widgets/category-list/category-list.php:84
1341
  #: widgets/category-list/category-list.php:300
1342
  #: widgets/dual-button/dual-button.php:200
@@ -1497,7 +1497,7 @@ msgid "Navigation Style"
1497
  msgstr ""
1498
 
1499
  #: modules/onepage-scroll/extend-controls-pro.php:45
1500
- #: widgets/blog-posts/blog-posts.php:722 widgets/blog-posts/blog-posts.php:2334
1501
  #: widgets/button/button.php:302 widgets/funfact/funfact.php:72
1502
  #: widgets/icon-box/icon-box.php:68 widgets/image-box/image-box.php:767
1503
  #: widgets/lottie/lottie.php:234 widgets/nav-menu/nav-menu.php:549
@@ -1587,7 +1587,7 @@ msgid "Navigation Position"
1587
  msgstr ""
1588
 
1589
  #: modules/onepage-scroll/extend-controls-pro.php:108
1590
- #: widgets/blog-posts/blog-posts.php:598 widgets/blog-posts/blog-posts.php:1216
1591
  #: widgets/funfact/funfact.php:925 widgets/funfact/funfact.php:976
1592
  #: widgets/heading/heading.php:338 widgets/icon-box/icon-box.php:365
1593
  #: widgets/image-accordion/image-accordion.php:540
@@ -1601,7 +1601,7 @@ msgid "Top"
1601
  msgstr ""
1602
 
1603
  #: modules/onepage-scroll/extend-controls-pro.php:112
1604
- #: widgets/blog-posts/blog-posts.php:606 widgets/blog-posts/blog-posts.php:1244
1605
  #: widgets/funfact/funfact.php:984 widgets/heading/heading.php:341
1606
  #: widgets/image-accordion/image-accordion.php:548
1607
  #: widgets/page-list/page-list.php:603 widgets/page-list/page-list.php:984
@@ -1615,12 +1615,12 @@ msgid "Bottom"
1615
  msgstr ""
1616
 
1617
  #: modules/onepage-scroll/extend-controls-pro.php:116
1618
- #: widgets/accordion/accordion.php:142 widgets/blog-posts/blog-posts.php:81
1619
- #: widgets/blog-posts/blog-posts.php:524 widgets/blog-posts/blog-posts.php:895
1620
- #: widgets/blog-posts/blog-posts.php:1188
1621
- #: widgets/blog-posts/blog-posts.php:1272
1622
- #: widgets/blog-posts/blog-posts.php:1660
1623
- #: widgets/blog-posts/blog-posts.php:1855 widgets/button/button.php:131
1624
  #: widgets/caldera-forms/caldera-forms.php:581
1625
  #: widgets/category-list/category-list.php:154
1626
  #: widgets/contact-form7/contact-form7.php:580
@@ -1663,10 +1663,10 @@ msgid "Left"
1663
  msgstr ""
1664
 
1665
  #: modules/onepage-scroll/extend-controls-pro.php:120
1666
- #: widgets/accordion/accordion.php:141 widgets/blog-posts/blog-posts.php:85
1667
- #: widgets/blog-posts/blog-posts.php:532 widgets/blog-posts/blog-posts.php:903
1668
- #: widgets/blog-posts/blog-posts.php:1668
1669
- #: widgets/blog-posts/blog-posts.php:1863 widgets/button/button.php:139
1670
  #: widgets/caldera-forms/caldera-forms.php:589
1671
  #: widgets/category-list/category-list.php:162
1672
  #: widgets/contact-form7/contact-form7.php:588
@@ -1823,7 +1823,7 @@ msgid "Accordion"
1823
  msgstr ""
1824
 
1825
  #: widgets/accordion/accordion.php:47 widgets/accordion/accordion.php:228
1826
- #: widgets/blog-posts/blog-posts.php:256 widgets/blog-posts/blog-posts.php:1566
1827
  #: widgets/faq/faq.php:48 widgets/faq/faq.php:97
1828
  #: widgets/fluent-forms/fluent-forms.php:97
1829
  #: widgets/fluent-forms/fluent-forms.php:212 widgets/funfact/funfact.php:826
@@ -1843,11 +1843,11 @@ msgid "Keep this slide open? "
1843
  msgstr ""
1844
 
1845
  #: widgets/accordion/accordion.php:60 widgets/accordion/accordion.php:104
1846
- #: widgets/blog-posts/blog-posts.php:66 widgets/blog-posts/blog-posts.php:119
1847
- #: widgets/blog-posts/blog-posts.php:140 widgets/blog-posts/blog-posts.php:162
1848
- #: widgets/blog-posts/blog-posts.php:294 widgets/blog-posts/blog-posts.php:332
1849
- #: widgets/blog-posts/blog-posts.php:379 widgets/blog-posts/blog-posts.php:482
1850
- #: widgets/blog-posts/blog-posts.php:1714 widgets/button/button.php:89
1851
  #: widgets/client-logo/client-logo.php:89
1852
  #: widgets/client-logo/client-logo.php:115
1853
  #: widgets/client-logo/client-logo.php:318
@@ -1897,11 +1897,11 @@ msgid "Yes"
1897
  msgstr ""
1898
 
1899
  #: widgets/accordion/accordion.php:61 widgets/accordion/accordion.php:105
1900
- #: widgets/blog-posts/blog-posts.php:67 widgets/blog-posts/blog-posts.php:120
1901
- #: widgets/blog-posts/blog-posts.php:141 widgets/blog-posts/blog-posts.php:163
1902
- #: widgets/blog-posts/blog-posts.php:295 widgets/blog-posts/blog-posts.php:333
1903
- #: widgets/blog-posts/blog-posts.php:380 widgets/blog-posts/blog-posts.php:483
1904
- #: widgets/blog-posts/blog-posts.php:1715 widgets/button/button.php:90
1905
  #: widgets/client-logo/client-logo.php:90
1906
  #: widgets/client-logo/client-logo.php:116
1907
  #: widgets/client-logo/client-logo.php:319
@@ -1994,7 +1994,7 @@ msgstr ""
1994
  msgid "Floating Style"
1995
  msgstr ""
1996
 
1997
- #: widgets/accordion/accordion.php:137 widgets/blog-posts/blog-posts.php:505
1998
  #: widgets/button/button.php:112 widgets/dual-button/dual-button.php:215
1999
  #: widgets/dual-button/dual-button.php:344 widgets/icon-box/icon-box.php:268
2000
  #: widgets/icon-box/icon-box.php:361
@@ -2014,7 +2014,7 @@ msgstr ""
2014
  msgid "Show Loop Count"
2015
  msgstr ""
2016
 
2017
- #: widgets/accordion/accordion.php:153 widgets/blog-posts/blog-posts.php:1901
2018
  #: widgets/caldera-forms/caldera-forms.php:652
2019
  #: widgets/client-logo/client-logo.php:435
2020
  #: widgets/contact-form7/contact-form7.php:651
@@ -2044,7 +2044,7 @@ msgstr ""
2044
  msgid "Show"
2045
  msgstr ""
2046
 
2047
- #: widgets/accordion/accordion.php:154 widgets/blog-posts/blog-posts.php:1902
2048
  #: widgets/caldera-forms/caldera-forms.php:653
2049
  #: widgets/client-logo/client-logo.php:436
2050
  #: widgets/contact-form7/contact-form7.php:652
@@ -2097,8 +2097,8 @@ msgstr ""
2097
  #: widgets/accordion/accordion.php:262 widgets/accordion/accordion.php:352
2098
  #: widgets/accordion/accordion.php:362 widgets/accordion/accordion.php:498
2099
  #: widgets/accordion/accordion.php:673 widgets/accordion/accordion.php:734
2100
- #: widgets/blog-posts/blog-posts.php:578 widgets/blog-posts/blog-posts.php:1006
2101
- #: widgets/blog-posts/blog-posts.php:1077
2102
  #: widgets/business-hours/business-hours.php:212
2103
  #: widgets/business-hours/business-hours.php:273
2104
  #: widgets/business-hours/business-hours.php:337
@@ -2244,10 +2244,10 @@ msgstr ""
2244
 
2245
  #: widgets/accordion/accordion.php:300 widgets/accordion/accordion.php:390
2246
  #: widgets/accordion/accordion.php:560 widgets/accordion/accordion.php:569
2247
- #: widgets/blog-posts/blog-posts.php:825 widgets/blog-posts/blog-posts.php:1019
2248
- #: widgets/blog-posts/blog-posts.php:1090
2249
- #: widgets/blog-posts/blog-posts.php:1377
2250
- #: widgets/blog-posts/blog-posts.php:2170
2251
  #: widgets/business-hours/business-hours.php:234 widgets/button/button.php:291
2252
  #: widgets/caldera-forms/caldera-forms.php:338
2253
  #: widgets/caldera-forms/caldera-forms.php:393
@@ -2333,10 +2333,10 @@ msgstr ""
2333
 
2334
  #: widgets/accordion/accordion.php:311 widgets/accordion/accordion.php:400
2335
  #: widgets/accordion/accordion.php:507 widgets/accordion/accordion.php:577
2336
- #: widgets/blog-posts/blog-posts.php:1027
2337
- #: widgets/blog-posts/blog-posts.php:1098
2338
- #: widgets/blog-posts/blog-posts.php:1387
2339
- #: widgets/blog-posts/blog-posts.php:2414
2340
  #: widgets/business-hours/business-hours.php:221
2341
  #: widgets/business-hours/business-hours.php:282
2342
  #: widgets/business-hours/business-hours.php:346 widgets/button/button.php:350
@@ -2416,8 +2416,8 @@ msgid "Border Radius"
2416
  msgstr ""
2417
 
2418
  #: widgets/accordion/accordion.php:326 widgets/accordion/accordion.php:416
2419
- #: widgets/accordion/accordion.php:590 widgets/blog-posts/blog-posts.php:1040
2420
- #: widgets/blog-posts/blog-posts.php:1111
2421
  #: widgets/caldera-forms/caldera-forms.php:347
2422
  #: widgets/caldera-forms/caldera-forms.php:402
2423
  #: widgets/caldera-forms/caldera-forms.php:457
@@ -2468,8 +2468,8 @@ msgid "Closed"
2468
  msgstr ""
2469
 
2470
  #: widgets/accordion/accordion.php:435 widgets/accordion/accordion.php:519
2471
- #: widgets/blog-posts/blog-posts.php:857 widgets/blog-posts/blog-posts.php:1362
2472
- #: widgets/blog-posts/blog-posts.php:2225
2473
  #: widgets/business-hours/business-hours.php:198
2474
  #: widgets/business-hours/business-hours.php:294
2475
  #: widgets/business-hours/business-hours.php:358 widgets/button/button.php:193
@@ -2564,9 +2564,9 @@ msgstr ""
2564
  msgid "Margin Bottom"
2565
  msgstr ""
2566
 
2567
- #: widgets/accordion/accordion.php:531 widgets/blog-posts/blog-posts.php:1166
2568
- #: widgets/blog-posts/blog-posts.php:1741
2569
- #: widgets/blog-posts/blog-posts.php:1939
2570
  #: widgets/caldera-forms/caldera-forms.php:171
2571
  #: widgets/caldera-forms/caldera-forms.php:662
2572
  #: widgets/category-list/category-list.php:232
@@ -2607,11 +2607,11 @@ msgstr ""
2607
  msgid "Width"
2608
  msgstr ""
2609
 
2610
- #: widgets/accordion/accordion.php:609 widgets/blog-posts/blog-posts.php:845
2611
- #: widgets/blog-posts/blog-posts.php:1688
2612
- #: widgets/blog-posts/blog-posts.php:1794
2613
- #: widgets/blog-posts/blog-posts.php:1883
2614
- #: widgets/blog-posts/blog-posts.php:2178
2615
  #: widgets/business-hours/business-hours.php:185
2616
  #: widgets/caldera-forms/caldera-forms.php:105
2617
  #: widgets/caldera-forms/caldera-forms.php:637
@@ -2717,187 +2717,191 @@ msgstr ""
2717
  msgid "Show Featured Image"
2718
  msgstr ""
2719
 
2720
- #: widgets/blog-posts/blog-posts.php:77
2721
- msgid "Featured image alignment"
2722
  msgstr ""
2723
 
2724
  #: widgets/blog-posts/blog-posts.php:99
 
 
 
 
2725
  msgid "Show Posts Per Row"
2726
  msgstr ""
2727
 
2728
- #: widgets/blog-posts/blog-posts.php:117
2729
  #: widgets/dual-button/dual-button.php:925
2730
  msgid "Show Title"
2731
  msgstr ""
2732
 
2733
- #: widgets/blog-posts/blog-posts.php:127
2734
  msgid "Crop title by word"
2735
  msgstr ""
2736
 
2737
- #: widgets/blog-posts/blog-posts.php:138
2738
  msgid "Show Content"
2739
  msgstr ""
2740
 
2741
- #: widgets/blog-posts/blog-posts.php:148
2742
  msgid "Crop content by word"
2743
  msgstr ""
2744
 
2745
- #: widgets/blog-posts/blog-posts.php:160
2746
  msgid "Show Read More"
2747
  msgstr ""
2748
 
2749
- #: widgets/blog-posts/blog-posts.php:172
2750
  msgid "Enable Masonry"
2751
  msgstr ""
2752
 
2753
- #: widgets/blog-posts/blog-posts.php:185
2754
  msgid "Query"
2755
  msgstr ""
2756
 
2757
- #: widgets/blog-posts/blog-posts.php:192
2758
  msgid "Posts Count"
2759
  msgstr ""
2760
 
2761
- #: widgets/blog-posts/blog-posts.php:203
2762
  msgid "Select posts by:"
2763
  msgstr ""
2764
 
2765
- #: widgets/blog-posts/blog-posts.php:207 widgets/post-list/post-list.php:54
2766
  msgid "Recent Post"
2767
  msgstr ""
2768
 
2769
- #: widgets/blog-posts/blog-posts.php:208 widgets/post-list/post-list.php:56
2770
  msgid "Selected Post"
2771
  msgstr ""
2772
 
2773
- #: widgets/blog-posts/blog-posts.php:209
2774
  msgid "Category Post"
2775
  msgstr ""
2776
 
2777
- #: widgets/blog-posts/blog-posts.php:218
2778
  msgid "Search & Select"
2779
  msgstr ""
2780
 
2781
- #: widgets/blog-posts/blog-posts.php:229 widgets/post-grid/post-grid.php:51
2782
  #: widgets/post-tab/post-tab.php:52
2783
  msgid "Select Categories"
2784
  msgstr ""
2785
 
2786
- #: widgets/blog-posts/blog-posts.php:241
2787
  #: widgets/image-comparison/image-comparison.php:129
2788
  msgid "Offset"
2789
  msgstr ""
2790
 
2791
- #: widgets/blog-posts/blog-posts.php:252
2792
  msgid "Order by"
2793
  msgstr ""
2794
 
2795
- #: widgets/blog-posts/blog-posts.php:255 widgets/blog-posts/blog-posts.php:360
2796
  msgid "Date"
2797
  msgstr ""
2798
 
2799
- #: widgets/blog-posts/blog-posts.php:257 widgets/blog-posts/blog-posts.php:359
2800
  msgid "Author"
2801
  msgstr ""
2802
 
2803
- #: widgets/blog-posts/blog-posts.php:258
2804
  msgid "Modified"
2805
  msgstr ""
2806
 
2807
- #: widgets/blog-posts/blog-posts.php:259
2808
  msgid "Comments"
2809
  msgstr ""
2810
 
2811
- #: widgets/blog-posts/blog-posts.php:268
2812
  msgid "Order"
2813
  msgstr ""
2814
 
2815
- #: widgets/blog-posts/blog-posts.php:271
2816
  msgid "ASC"
2817
  msgstr ""
2818
 
2819
- #: widgets/blog-posts/blog-posts.php:272
2820
  msgid "DESC"
2821
  msgstr ""
2822
 
2823
- #: widgets/blog-posts/blog-posts.php:284 widgets/blog-posts/blog-posts.php:356
2824
  msgid "Meta Data"
2825
  msgstr ""
2826
 
2827
- #: widgets/blog-posts/blog-posts.php:292
2828
  msgid "Show Floating Date"
2829
  msgstr ""
2830
 
2831
- #: widgets/blog-posts/blog-posts.php:305
2832
  #: widgets/countdown-timer/countdown-timer.php:51 widgets/social/social.php:47
2833
  #: widgets/social-share/social-share.php:53 widgets/tab/tab.php:94
2834
  #: widgets/testimonial/testimonial.php:54
2835
  msgid "Choose Style"
2836
  msgstr ""
2837
 
2838
- #: widgets/blog-posts/blog-posts.php:310
2839
  msgid "Image style 1"
2840
  msgstr ""
2841
 
2842
- #: widgets/blog-posts/blog-posts.php:316
2843
  msgid "Image style 2"
2844
  msgstr ""
2845
 
2846
- #: widgets/blog-posts/blog-posts.php:330
2847
  msgid "Show Meta Data"
2848
  msgstr ""
2849
 
2850
- #: widgets/blog-posts/blog-posts.php:340 widgets/post-list/post-list.php:310
2851
  msgid "Meta Position"
2852
  msgstr ""
2853
 
2854
- #: widgets/blog-posts/blog-posts.php:343 widgets/heading/heading.php:190
2855
  #: widgets/heading/heading.php:339
2856
  msgid "Before Title"
2857
  msgstr ""
2858
 
2859
- #: widgets/blog-posts/blog-posts.php:344 widgets/heading/heading.php:191
2860
  #: widgets/heading/heading.php:340
2861
  msgid "After Title"
2862
  msgstr ""
2863
 
2864
- #: widgets/blog-posts/blog-posts.php:345
2865
  msgid "After Content"
2866
  msgstr ""
2867
 
2868
- #: widgets/blog-posts/blog-posts.php:361
2869
  msgid "Category"
2870
  msgstr ""
2871
 
2872
- #: widgets/blog-posts/blog-posts.php:362
2873
  msgid "Comment"
2874
  msgstr ""
2875
 
2876
- #: widgets/blog-posts/blog-posts.php:377
2877
  msgid "Show Author Image"
2878
  msgstr ""
2879
 
2880
- #: widgets/blog-posts/blog-posts.php:391
2881
  msgid "Author Icon"
2882
  msgstr ""
2883
 
2884
- #: widgets/blog-posts/blog-posts.php:408
2885
  msgid "Date Icon"
2886
  msgstr ""
2887
 
2888
- #: widgets/blog-posts/blog-posts.php:424
2889
  msgid "Category Icon"
2890
  msgstr ""
2891
 
2892
- #: widgets/blog-posts/blog-posts.php:440
2893
  msgid "Comment Icon"
2894
  msgstr ""
2895
 
2896
- #: widgets/blog-posts/blog-posts.php:461
2897
  msgid "Read More Button"
2898
  msgstr ""
2899
 
2900
- #: widgets/blog-posts/blog-posts.php:469 widgets/button/button.php:48
2901
  #: widgets/caldera-forms/caldera-forms.php:75
2902
  #: widgets/contact-form7/contact-form7.php:73
2903
  #: widgets/countdown-timer/countdown-timer.php:380
@@ -2919,7 +2923,7 @@ msgstr ""
2919
  msgid "Label"
2920
  msgstr ""
2921
 
2922
- #: widgets/blog-posts/blog-posts.php:471 widgets/blog-posts/blog-posts.php:472
2923
  #: widgets/button/button.php:50 widgets/button/button.php:51
2924
  #: widgets/icon-box/icon-box.php:207 widgets/icon-box/icon-box.php:208
2925
  #: widgets/image-box/image-box.php:299 widgets/image-box/image-box.php:300
@@ -2927,7 +2931,7 @@ msgstr ""
2927
  msgid "Learn more "
2928
  msgstr ""
2929
 
2930
- #: widgets/blog-posts/blog-posts.php:479 widgets/button/button.php:86
2931
  #: widgets/dual-button/dual-button.php:189
2932
  #: widgets/dual-button/dual-button.php:318 widgets/funfact/funfact.php:84
2933
  #: widgets/icon-box/icon-box.php:87 widgets/icon-box/icon-box.php:238
@@ -2937,7 +2941,7 @@ msgstr ""
2937
  msgid "Add icon? "
2938
  msgstr ""
2939
 
2940
- #: widgets/blog-posts/blog-posts.php:509 widgets/button/button.php:116
2941
  #: widgets/dual-button/dual-button.php:219
2942
  #: widgets/dual-button/dual-button.php:348 widgets/icon-box/icon-box.php:272
2943
  #: widgets/image-accordion/image-accordion.php:112
@@ -2952,7 +2956,7 @@ msgstr ""
2952
  msgid "Before"
2953
  msgstr ""
2954
 
2955
- #: widgets/blog-posts/blog-posts.php:510 widgets/button/button.php:117
2956
  #: widgets/dual-button/dual-button.php:220
2957
  #: widgets/dual-button/dual-button.php:349 widgets/icon-box/icon-box.php:273
2958
  #: widgets/image-accordion/image-accordion.php:113
@@ -2967,9 +2971,9 @@ msgstr ""
2967
  msgid "After"
2968
  msgstr ""
2969
 
2970
- #: widgets/blog-posts/blog-posts.php:520 widgets/blog-posts/blog-posts.php:891
2971
- #: widgets/blog-posts/blog-posts.php:1656
2972
- #: widgets/blog-posts/blog-posts.php:1851 widgets/button/button.php:127
2973
  #: widgets/caldera-forms/caldera-forms.php:577
2974
  #: widgets/category-list/category-list.php:150
2975
  #: widgets/contact-form7/contact-form7.php:576
@@ -2998,9 +3002,9 @@ msgstr ""
2998
  msgid "Alignment"
2999
  msgstr ""
3000
 
3001
- #: widgets/blog-posts/blog-posts.php:528 widgets/blog-posts/blog-posts.php:899
3002
- #: widgets/blog-posts/blog-posts.php:1664
3003
- #: widgets/blog-posts/blog-posts.php:1859 widgets/button/button.php:135
3004
  #: widgets/caldera-forms/caldera-forms.php:585
3005
  #: widgets/category-list/category-list.php:158
3006
  #: widgets/contact-form7/contact-form7.php:584
@@ -3039,73 +3043,73 @@ msgstr ""
3039
  msgid "Center"
3040
  msgstr ""
3041
 
3042
- #: widgets/blog-posts/blog-posts.php:546 widgets/button/button.php:152
3043
  #: widgets/pricing/pricing.php:418
3044
  msgid "Class"
3045
  msgstr ""
3046
 
3047
- #: widgets/blog-posts/blog-posts.php:548 widgets/button/button.php:154
3048
  #: widgets/pricing/pricing.php:420
3049
  msgid "Class Name"
3050
  msgstr ""
3051
 
3052
- #: widgets/blog-posts/blog-posts.php:555 widgets/button/button.php:161
3053
  #: widgets/pricing/pricing.php:427
3054
  msgid "id"
3055
  msgstr ""
3056
 
3057
- #: widgets/blog-posts/blog-posts.php:557 widgets/button/button.php:163
3058
  #: widgets/pricing/pricing.php:429
3059
  msgid "ID"
3060
  msgstr ""
3061
 
3062
- #: widgets/blog-posts/blog-posts.php:569 widgets/tab/tab.php:458
3063
  msgid "Wrapper"
3064
  msgstr ""
3065
 
3066
- #: widgets/blog-posts/blog-posts.php:594 widgets/page-list/page-list.php:591
3067
  #: widgets/page-list/page-list.php:972 widgets/post-list/post-list.php:710
3068
  #: widgets/testimonial/testimonial.php:718
3069
  msgid "Vertical Alignment"
3070
  msgstr ""
3071
 
3072
- #: widgets/blog-posts/blog-posts.php:602 widgets/funfact/funfact.php:980
3073
  #: widgets/nav-menu/nav-menu.php:908 widgets/pricing/pricing.php:1444
3074
  #: widgets/pricing/pricing.php:1514
3075
  msgid "Middle"
3076
  msgstr ""
3077
 
3078
- #: widgets/blog-posts/blog-posts.php:623
3079
  msgid "Container Border radius"
3080
  msgstr ""
3081
 
3082
- #: widgets/blog-posts/blog-posts.php:635
3083
  msgid "Container Padding"
3084
  msgstr ""
3085
 
3086
- #: widgets/blog-posts/blog-posts.php:647 widgets/blog-posts/blog-posts.php:917
3087
  #: widgets/faq/faq.php:276
3088
  msgid "Container Margin"
3089
  msgstr ""
3090
 
3091
- #: widgets/blog-posts/blog-posts.php:675 widgets/faq/faq.php:245
3092
  #: widgets/team/team.php:687
3093
  msgid "Content Padding"
3094
  msgstr ""
3095
 
3096
- #: widgets/blog-posts/blog-posts.php:688 widgets/blog-posts/blog-posts.php:698
3097
  msgid "Container Border"
3098
  msgstr ""
3099
 
3100
- #: widgets/blog-posts/blog-posts.php:706 widgets/faq/faq.php:225
3101
  msgid "Content Border"
3102
  msgstr ""
3103
 
3104
- #: widgets/blog-posts/blog-posts.php:761 widgets/blog-posts/blog-posts.php:986
3105
- #: widgets/blog-posts/blog-posts.php:1588
3106
- #: widgets/blog-posts/blog-posts.php:2027
3107
- #: widgets/blog-posts/blog-posts.php:2269
3108
- #: widgets/blog-posts/blog-posts.php:2363 widgets/button/button.php:224
3109
  #: widgets/button/button.php:332 widgets/caldera-forms/caldera-forms.php:304
3110
  #: widgets/caldera-forms/caldera-forms.php:755
3111
  #: widgets/client-logo/client-logo.php:523
@@ -3164,11 +3168,11 @@ msgstr ""
3164
  msgid "Normal"
3165
  msgstr ""
3166
 
3167
- #: widgets/blog-posts/blog-posts.php:781 widgets/blog-posts/blog-posts.php:1057
3168
- #: widgets/blog-posts/blog-posts.php:1616
3169
- #: widgets/blog-posts/blog-posts.php:2046
3170
- #: widgets/blog-posts/blog-posts.php:2299
3171
- #: widgets/blog-posts/blog-posts.php:2389 widgets/button/button.php:255
3172
  #: widgets/button/button.php:369 widgets/caldera-forms/caldera-forms.php:359
3173
  #: widgets/caldera-forms/caldera-forms.php:814
3174
  #: widgets/category-list/category-list.php:325
@@ -3226,7 +3230,7 @@ msgstr ""
3226
  msgid "Hover"
3227
  msgstr ""
3228
 
3229
- #: widgets/blog-posts/blog-posts.php:833
3230
  #: widgets/client-logo/client-logo.php:1186
3231
  #: widgets/header-offcanvas/header-offcanvas.php:271
3232
  #: widgets/header-offcanvas/header-offcanvas.php:451
@@ -3238,19 +3242,19 @@ msgstr ""
3238
  msgid "Border radius"
3239
  msgstr ""
3240
 
3241
- #: widgets/blog-posts/blog-posts.php:873 widgets/post-list/post-list.php:987
3242
  msgid "Meta"
3243
  msgstr ""
3244
 
3245
- #: widgets/blog-posts/blog-posts.php:929
3246
  msgid "Item Margin"
3247
  msgstr ""
3248
 
3249
- #: widgets/blog-posts/blog-posts.php:941
3250
  msgid "Item Padding"
3251
  msgstr ""
3252
 
3253
- #: widgets/blog-posts/blog-posts.php:953
3254
  #: widgets/dual-button/dual-button.php:231
3255
  #: widgets/dual-button/dual-button.php:255
3256
  #: widgets/dual-button/dual-button.php:360
@@ -3263,7 +3267,7 @@ msgstr ""
3263
  msgid "Icon Spacing"
3264
  msgstr ""
3265
 
3266
- #: widgets/blog-posts/blog-posts.php:965
3267
  #: widgets/header-info/header-info.php:196
3268
  #: widgets/header-offcanvas/header-offcanvas.php:208
3269
  #: widgets/header-offcanvas/header-offcanvas.php:403
@@ -3277,12 +3281,12 @@ msgstr ""
3277
  msgid "Icon Size"
3278
  msgstr ""
3279
 
3280
- #: widgets/blog-posts/blog-posts.php:1133
3281
  msgid "Floating Date"
3282
  msgstr ""
3283
 
3284
- #: widgets/blog-posts/blog-posts.php:1143
3285
- #: widgets/blog-posts/blog-posts.php:1767
3286
  #: widgets/caldera-forms/caldera-forms.php:199
3287
  #: widgets/caldera-forms/caldera-forms.php:255
3288
  #: widgets/caldera-forms/caldera-forms.php:692
@@ -3318,66 +3322,66 @@ msgstr ""
3318
  msgid "Height"
3319
  msgstr ""
3320
 
3321
- #: widgets/blog-posts/blog-posts.php:1302
3322
  msgid "Date Typography"
3323
  msgstr ""
3324
 
3325
- #: widgets/blog-posts/blog-posts.php:1327
3326
  msgid "Month Typography"
3327
  msgstr ""
3328
 
3329
- #: widgets/blog-posts/blog-posts.php:1416
3330
  msgid "Triangle"
3331
  msgstr ""
3332
 
3333
- #: widgets/blog-posts/blog-posts.php:1427
3334
  msgid "Triangle Background"
3335
  msgstr ""
3336
 
3337
- #: widgets/blog-posts/blog-posts.php:1444
3338
  msgid "Triangle Size"
3339
  msgstr ""
3340
 
3341
- #: widgets/blog-posts/blog-posts.php:1472
3342
  msgid "Triangle Position Left"
3343
  msgstr ""
3344
 
3345
- #: widgets/blog-posts/blog-posts.php:1500
3346
  msgid "Triangle Position Top"
3347
  msgstr ""
3348
 
3349
- #: widgets/blog-posts/blog-posts.php:1529
3350
  msgid "Triangle Direction"
3351
  msgstr ""
3352
 
3353
- #: widgets/blog-posts/blog-posts.php:1533
3354
  #: widgets/client-logo/client-logo.php:596 widgets/funfact/funfact.php:322
3355
  #: widgets/funfact/funfact.php:365 widgets/icon-box/icon-box.php:1520
3356
  #: widgets/image-box/image-box.php:703
3357
  msgid "From Left"
3358
  msgstr ""
3359
 
3360
- #: widgets/blog-posts/blog-posts.php:1537
3361
  #: widgets/client-logo/client-logo.php:608 widgets/funfact/funfact.php:326
3362
  #: widgets/funfact/funfact.php:369 widgets/icon-box/icon-box.php:1528
3363
  #: widgets/image-box/image-box.php:711
3364
  msgid "From Right"
3365
  msgstr ""
3366
 
3367
- #: widgets/blog-posts/blog-posts.php:1672
3368
- #: widgets/blog-posts/blog-posts.php:1867
3369
  msgid "justify"
3370
  msgstr ""
3371
 
3372
- #: widgets/blog-posts/blog-posts.php:1712
3373
  #: widgets/client-logo/client-logo.php:433
3374
  #: widgets/testimonial/testimonial.php:275
3375
  msgid "Show Separator"
3376
  msgstr ""
3377
 
3378
- #: widgets/blog-posts/blog-posts.php:1726
3379
- #: widgets/blog-posts/blog-posts.php:2035
3380
- #: widgets/blog-posts/blog-posts.php:2054
3381
  #: widgets/client-logo/client-logo.php:1398
3382
  #: widgets/client-logo/client-logo.php:1417
3383
  #: widgets/fluent-forms/fluent-forms.php:1258
@@ -3386,46 +3390,46 @@ msgstr ""
3386
  msgid "Separator Color"
3387
  msgstr ""
3388
 
3389
- #: widgets/blog-posts/blog-posts.php:1899
3390
  msgid "Show Highlight Border"
3391
  msgstr ""
3392
 
3393
- #: widgets/blog-posts/blog-posts.php:1912
3394
  #: widgets/client-logo/client-logo.php:1292
3395
  msgid "Hight"
3396
  msgstr ""
3397
 
3398
- #: widgets/blog-posts/blog-posts.php:1966
3399
  #: widgets/client-logo/client-logo.php:1340
3400
  msgid "Top Bottom Position"
3401
  msgstr ""
3402
 
3403
- #: widgets/blog-posts/blog-posts.php:1994
3404
  #: widgets/client-logo/client-logo.php:1364
3405
  msgid "Left Right Position"
3406
  msgstr ""
3407
 
3408
- #: widgets/blog-posts/blog-posts.php:2063 widgets/lottie/lottie.php:321
3409
  msgid "Transition"
3410
  msgstr ""
3411
 
3412
- #: widgets/blog-posts/blog-posts.php:2097
3413
  msgid "Author Image"
3414
  msgstr ""
3415
 
3416
- #: widgets/blog-posts/blog-posts.php:2108
3417
  msgid "Image Width"
3418
  msgstr ""
3419
 
3420
- #: widgets/blog-posts/blog-posts.php:2135
3421
  msgid "Image Height"
3422
  msgstr ""
3423
 
3424
- #: widgets/blog-posts/blog-posts.php:2197 widgets/tablepress/tablepress.php:658
3425
  msgid "Radius"
3426
  msgstr ""
3427
 
3428
- #: widgets/blog-posts/blog-posts.php:2216 widgets/button/button-handler.php:11
3429
  #: widgets/button/button.php:174 widgets/caldera-forms/caldera-forms.php:569
3430
  #: widgets/contact-form7/contact-form7.php:568
3431
  #: widgets/dual-button/dual-button.php:161
@@ -3440,7 +3444,7 @@ msgstr ""
3440
  msgid "Button"
3441
  msgstr ""
3442
 
3443
- #: widgets/blog-posts/blog-posts.php:2237 widgets/button/button.php:429
3444
  #: widgets/caldera-forms/caldera-forms.php:514
3445
  #: widgets/contact-form7/contact-form7.php:513
3446
  #: widgets/fluent-forms/fluent-forms.php:1825
@@ -3453,7 +3457,7 @@ msgstr ""
3453
  msgid "Font Size"
3454
  msgstr ""
3455
 
3456
- #: widgets/blog-posts/blog-posts.php:2259 widgets/button/button.php:206
3457
  #: widgets/caldera-forms/caldera-forms.php:84
3458
  #: widgets/caldera-forms/caldera-forms.php:127
3459
  #: widgets/caldera-forms/caldera-forms.php:472
@@ -3513,8 +3517,8 @@ msgstr ""
3513
  msgid "Typography"
3514
  msgstr ""
3515
 
3516
- #: widgets/blog-posts/blog-posts.php:2276
3517
- #: widgets/blog-posts/blog-posts.php:2306 widgets/button/button.php:231
3518
  #: widgets/button/button.php:262 widgets/category-list/category-list.php:368
3519
  #: widgets/fluent-forms/fluent-forms.php:511
3520
  #: widgets/fluent-forms/fluent-forms.php:589
@@ -3980,7 +3984,7 @@ msgstr ""
3980
  #: widgets/client-logo/client-logo.php:419
3981
  msgid ""
3982
  "Setting this to more than 1 initializes grid mode. Use slidesPerRow to set "
3983
- "how many slides should be in each row.\r\n"
3984
  "\t\t\t\t"
3985
  msgstr ""
3986
 
@@ -7459,7 +7463,7 @@ msgctxt "Post Type Singular Name"
7459
  msgid "ElementsKit item"
7460
  msgstr ""
7461
 
7462
- #: widgets/blog-posts/blog-posts.php:719 widgets/blog-posts/blog-posts.php:2331
7463
  #: widgets/button/button.php:299 widgets/pricing/pricing.php:600
7464
  #: widgets/pricing/pricing.php:827 widgets/pricing/pricing.php:1614
7465
  #: widgets/pricing/pricing.php:2198 widgets/video/video.php:587
@@ -7467,7 +7471,7 @@ msgctxt "Border Control"
7467
  msgid "Border Type"
7468
  msgstr ""
7469
 
7470
- #: widgets/blog-posts/blog-posts.php:723 widgets/blog-posts/blog-posts.php:2335
7471
  #: widgets/button/button.php:303 widgets/pricing/pricing.php:604
7472
  #: widgets/pricing/pricing.php:831 widgets/pricing/pricing.php:1618
7473
  #: widgets/pricing/pricing.php:2202 widgets/video/video.php:591
@@ -7475,7 +7479,7 @@ msgctxt "Border Control"
7475
  msgid "Solid"
7476
  msgstr ""
7477
 
7478
- #: widgets/blog-posts/blog-posts.php:724 widgets/blog-posts/blog-posts.php:2336
7479
  #: widgets/button/button.php:304 widgets/pricing/pricing.php:605
7480
  #: widgets/pricing/pricing.php:832 widgets/pricing/pricing.php:1619
7481
  #: widgets/pricing/pricing.php:2203 widgets/video/video.php:592
@@ -7483,7 +7487,7 @@ msgctxt "Border Control"
7483
  msgid "Double"
7484
  msgstr ""
7485
 
7486
- #: widgets/blog-posts/blog-posts.php:725 widgets/blog-posts/blog-posts.php:2337
7487
  #: widgets/button/button.php:305 widgets/pricing/pricing.php:606
7488
  #: widgets/pricing/pricing.php:833 widgets/pricing/pricing.php:1620
7489
  #: widgets/pricing/pricing.php:2204 widgets/video/video.php:593
@@ -7491,7 +7495,7 @@ msgctxt "Border Control"
7491
  msgid "Dotted"
7492
  msgstr ""
7493
 
7494
- #: widgets/blog-posts/blog-posts.php:726 widgets/blog-posts/blog-posts.php:2338
7495
  #: widgets/button/button.php:306 widgets/pricing/pricing.php:607
7496
  #: widgets/pricing/pricing.php:834 widgets/pricing/pricing.php:1621
7497
  #: widgets/pricing/pricing.php:2205 widgets/video/video.php:594
@@ -7499,7 +7503,7 @@ msgctxt "Border Control"
7499
  msgid "Dashed"
7500
  msgstr ""
7501
 
7502
- #: widgets/blog-posts/blog-posts.php:727 widgets/blog-posts/blog-posts.php:2339
7503
  #: widgets/button/button.php:307 widgets/pricing/pricing.php:608
7504
  #: widgets/pricing/pricing.php:835 widgets/pricing/pricing.php:1622
7505
  #: widgets/pricing/pricing.php:2206 widgets/video/video.php:595
@@ -7507,7 +7511,7 @@ msgctxt "Border Control"
7507
  msgid "Groove"
7508
  msgstr ""
7509
 
7510
- #: widgets/blog-posts/blog-posts.php:741 widgets/blog-posts/blog-posts.php:2349
7511
  #: widgets/button/button.php:318 widgets/pricing/pricing.php:845
7512
  #: widgets/pricing/pricing.php:1632 widgets/pricing/pricing.php:2216
7513
  #: widgets/video/video.php:605
@@ -7515,9 +7519,9 @@ msgctxt "Border Control"
7515
  msgid "Width"
7516
  msgstr ""
7517
 
7518
- #: widgets/blog-posts/blog-posts.php:768 widgets/blog-posts/blog-posts.php:787
7519
- #: widgets/blog-posts/blog-posts.php:2373
7520
- #: widgets/blog-posts/blog-posts.php:2398 widgets/button/button.php:339
7521
  #: widgets/button/button.php:375 widgets/pricing/pricing.php:869
7522
  #: widgets/pricing/pricing.php:894 widgets/pricing/pricing.php:1650
7523
  #: widgets/pricing/pricing.php:1669 widgets/video/video.php:623
2
  # This file is distributed under the same license as the ElementsKit Lite package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: ElementsKit Lite 2.1.6\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/elementskit-lite\n"
7
+ "POT-Creation-Date: 2021-02-08 11:06:46+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
  "X-Generator: grunt-wp-i18n 1.0.3\n"
15
 
16
+ #: widgets/blog-posts/blog-posts.php:125
17
  #: widgets/testimonial/testimonial.php:322
18
  msgid "1"
19
  msgstr ""
20
 
21
+ #: widgets/blog-posts/blog-posts.php:126
22
  #: widgets/testimonial/testimonial.php:321
23
  msgid "2"
24
  msgstr ""
25
 
26
+ #: widgets/blog-posts/blog-posts.php:127 widgets/post-grid/post-grid.php:64
27
  #: widgets/post-tab/post-tab.php:65 widgets/testimonial/testimonial.php:320
28
  msgid "3"
29
  msgstr ""
30
 
31
+ #: widgets/blog-posts/blog-posts.php:128
32
  #: widgets/testimonial/testimonial.php:319
33
  msgid "4"
34
  msgstr ""
37
  msgid "5"
38
  msgstr ""
39
 
40
+ #: widgets/blog-posts/blog-posts.php:129
41
  msgid "6"
42
  msgstr ""
43
 
425
  msgid "Address (Timeline)"
426
  msgstr ""
427
 
428
+ #: elementskit-lite.php:314
429
  msgid "Activate Elementor"
430
  msgstr ""
431
 
432
+ #: elementskit-lite.php:317
433
  msgid "Install Elementor"
434
  msgstr ""
435
 
436
+ #: elementskit-lite.php:323
437
  msgid ""
438
  "ElementsKit requires Elementor version %1$s+, which is currently NOT "
439
  "RUNNING."
440
  msgstr ""
441
 
442
+ #: elementskit-lite.php:340
443
  msgid ""
444
  "ElementsKit requires PHP version %1$s+, which is currently NOT RUNNING on "
445
  "this server."
446
  msgstr ""
447
 
448
+ #: elementskit-lite.php:370 libs/framework/attr.php:63
449
  msgid "ElementsKit"
450
  msgstr ""
451
 
452
+ #: elementskit-lite.php:378
453
  msgid "ElementsKit Header Footer"
454
  msgstr ""
455
 
765
  #: libs/framework/views/settings-userdata.php:279
766
  #: widgets/accordion/accordion.php:249 widgets/accordion/accordion.php:341
767
  #: widgets/accordion/accordion.php:478 widgets/accordion/accordion.php:630
768
+ #: widgets/accordion/accordion.php:692 widgets/blog-posts/blog-posts.php:1017
769
+ #: widgets/blog-posts/blog-posts.php:1088
770
+ #: widgets/blog-posts/blog-posts.php:1341
771
+ #: widgets/blog-posts/blog-posts.php:1366
772
+ #: widgets/blog-posts/blog-posts.php:1619
773
+ #: widgets/blog-posts/blog-posts.php:1647
774
+ #: widgets/blog-posts/blog-posts.php:1849
775
  #: widgets/business-hours/business-hours.php:253
776
  #: widgets/business-hours/business-hours.php:317
777
  #: widgets/caldera-forms/caldera-forms.php:93
1082
  msgid "Not found in Trash"
1083
  msgstr ""
1084
 
1085
+ #: modules/dynamic-content/cpt.php:35 widgets/blog-posts/blog-posts.php:829
1086
  msgid "Featured Image"
1087
  msgstr ""
1088
 
1318
  msgstr ""
1319
 
1320
  #: modules/megamenu/views/options-menu-item.php:7
1321
+ #: widgets/accordion/accordion.php:77 widgets/blog-posts/blog-posts.php:1838
1322
  #: widgets/business-hours/business-hours.php:41 widgets/button/button.php:41
1323
  #: widgets/countdown-timer/countdown-timer.php:204
1324
  #: widgets/drop-caps/drop-caps.php:47 widgets/faq/faq.php:58
1336
 
1337
  #: modules/megamenu/views/options-menu-item.php:9
1338
  #: widgets/accordion/accordion.php:131 widgets/accordion/accordion.php:601
1339
+ #: widgets/blog-posts/blog-posts.php:514 widgets/button/button.php:97
1340
  #: widgets/button/button.php:419 widgets/category-list/category-list.php:84
1341
  #: widgets/category-list/category-list.php:300
1342
  #: widgets/dual-button/dual-button.php:200
1497
  msgstr ""
1498
 
1499
  #: modules/onepage-scroll/extend-controls-pro.php:45
1500
+ #: widgets/blog-posts/blog-posts.php:746 widgets/blog-posts/blog-posts.php:2358
1501
  #: widgets/button/button.php:302 widgets/funfact/funfact.php:72
1502
  #: widgets/icon-box/icon-box.php:68 widgets/image-box/image-box.php:767
1503
  #: widgets/lottie/lottie.php:234 widgets/nav-menu/nav-menu.php:549
1587
  msgstr ""
1588
 
1589
  #: modules/onepage-scroll/extend-controls-pro.php:108
1590
+ #: widgets/blog-posts/blog-posts.php:622 widgets/blog-posts/blog-posts.php:1240
1591
  #: widgets/funfact/funfact.php:925 widgets/funfact/funfact.php:976
1592
  #: widgets/heading/heading.php:338 widgets/icon-box/icon-box.php:365
1593
  #: widgets/image-accordion/image-accordion.php:540
1601
  msgstr ""
1602
 
1603
  #: modules/onepage-scroll/extend-controls-pro.php:112
1604
+ #: widgets/blog-posts/blog-posts.php:630 widgets/blog-posts/blog-posts.php:1268
1605
  #: widgets/funfact/funfact.php:984 widgets/heading/heading.php:341
1606
  #: widgets/image-accordion/image-accordion.php:548
1607
  #: widgets/page-list/page-list.php:603 widgets/page-list/page-list.php:984
1615
  msgstr ""
1616
 
1617
  #: modules/onepage-scroll/extend-controls-pro.php:116
1618
+ #: widgets/accordion/accordion.php:142 widgets/blog-posts/blog-posts.php:103
1619
+ #: widgets/blog-posts/blog-posts.php:548 widgets/blog-posts/blog-posts.php:919
1620
+ #: widgets/blog-posts/blog-posts.php:1212
1621
+ #: widgets/blog-posts/blog-posts.php:1296
1622
+ #: widgets/blog-posts/blog-posts.php:1684
1623
+ #: widgets/blog-posts/blog-posts.php:1879 widgets/button/button.php:131
1624
  #: widgets/caldera-forms/caldera-forms.php:581
1625
  #: widgets/category-list/category-list.php:154
1626
  #: widgets/contact-form7/contact-form7.php:580
1663
  msgstr ""
1664
 
1665
  #: modules/onepage-scroll/extend-controls-pro.php:120
1666
+ #: widgets/accordion/accordion.php:141 widgets/blog-posts/blog-posts.php:107
1667
+ #: widgets/blog-posts/blog-posts.php:556 widgets/blog-posts/blog-posts.php:927
1668
+ #: widgets/blog-posts/blog-posts.php:1692
1669
+ #: widgets/blog-posts/blog-posts.php:1887 widgets/button/button.php:139
1670
  #: widgets/caldera-forms/caldera-forms.php:589
1671
  #: widgets/category-list/category-list.php:162
1672
  #: widgets/contact-form7/contact-form7.php:588
1823
  msgstr ""
1824
 
1825
  #: widgets/accordion/accordion.php:47 widgets/accordion/accordion.php:228
1826
+ #: widgets/blog-posts/blog-posts.php:280 widgets/blog-posts/blog-posts.php:1590
1827
  #: widgets/faq/faq.php:48 widgets/faq/faq.php:97
1828
  #: widgets/fluent-forms/fluent-forms.php:97
1829
  #: widgets/fluent-forms/fluent-forms.php:212 widgets/funfact/funfact.php:826
1843
  msgstr ""
1844
 
1845
  #: widgets/accordion/accordion.php:60 widgets/accordion/accordion.php:104
1846
+ #: widgets/blog-posts/blog-posts.php:66 widgets/blog-posts/blog-posts.php:143
1847
+ #: widgets/blog-posts/blog-posts.php:164 widgets/blog-posts/blog-posts.php:186
1848
+ #: widgets/blog-posts/blog-posts.php:318 widgets/blog-posts/blog-posts.php:356
1849
+ #: widgets/blog-posts/blog-posts.php:403 widgets/blog-posts/blog-posts.php:506
1850
+ #: widgets/blog-posts/blog-posts.php:1738 widgets/button/button.php:89
1851
  #: widgets/client-logo/client-logo.php:89
1852
  #: widgets/client-logo/client-logo.php:115
1853
  #: widgets/client-logo/client-logo.php:318
1897
  msgstr ""
1898
 
1899
  #: widgets/accordion/accordion.php:61 widgets/accordion/accordion.php:105
1900
+ #: widgets/blog-posts/blog-posts.php:67 widgets/blog-posts/blog-posts.php:144
1901
+ #: widgets/blog-posts/blog-posts.php:165 widgets/blog-posts/blog-posts.php:187
1902
+ #: widgets/blog-posts/blog-posts.php:319 widgets/blog-posts/blog-posts.php:357
1903
+ #: widgets/blog-posts/blog-posts.php:404 widgets/blog-posts/blog-posts.php:507
1904
+ #: widgets/blog-posts/blog-posts.php:1739 widgets/button/button.php:90
1905
  #: widgets/client-logo/client-logo.php:90
1906
  #: widgets/client-logo/client-logo.php:116
1907
  #: widgets/client-logo/client-logo.php:319
1994
  msgid "Floating Style"
1995
  msgstr ""
1996
 
1997
+ #: widgets/accordion/accordion.php:137 widgets/blog-posts/blog-posts.php:529
1998
  #: widgets/button/button.php:112 widgets/dual-button/dual-button.php:215
1999
  #: widgets/dual-button/dual-button.php:344 widgets/icon-box/icon-box.php:268
2000
  #: widgets/icon-box/icon-box.php:361
2014
  msgid "Show Loop Count"
2015
  msgstr ""
2016
 
2017
+ #: widgets/accordion/accordion.php:153 widgets/blog-posts/blog-posts.php:1925
2018
  #: widgets/caldera-forms/caldera-forms.php:652
2019
  #: widgets/client-logo/client-logo.php:435
2020
  #: widgets/contact-form7/contact-form7.php:651
2044
  msgid "Show"
2045
  msgstr ""
2046
 
2047
+ #: widgets/accordion/accordion.php:154 widgets/blog-posts/blog-posts.php:1926
2048
  #: widgets/caldera-forms/caldera-forms.php:653
2049
  #: widgets/client-logo/client-logo.php:436
2050
  #: widgets/contact-form7/contact-form7.php:652
2097
  #: widgets/accordion/accordion.php:262 widgets/accordion/accordion.php:352
2098
  #: widgets/accordion/accordion.php:362 widgets/accordion/accordion.php:498
2099
  #: widgets/accordion/accordion.php:673 widgets/accordion/accordion.php:734
2100
+ #: widgets/blog-posts/blog-posts.php:602 widgets/blog-posts/blog-posts.php:1030
2101
+ #: widgets/blog-posts/blog-posts.php:1101
2102
  #: widgets/business-hours/business-hours.php:212
2103
  #: widgets/business-hours/business-hours.php:273
2104
  #: widgets/business-hours/business-hours.php:337
2244
 
2245
  #: widgets/accordion/accordion.php:300 widgets/accordion/accordion.php:390
2246
  #: widgets/accordion/accordion.php:560 widgets/accordion/accordion.php:569
2247
+ #: widgets/blog-posts/blog-posts.php:849 widgets/blog-posts/blog-posts.php:1043
2248
+ #: widgets/blog-posts/blog-posts.php:1114
2249
+ #: widgets/blog-posts/blog-posts.php:1401
2250
+ #: widgets/blog-posts/blog-posts.php:2194
2251
  #: widgets/business-hours/business-hours.php:234 widgets/button/button.php:291
2252
  #: widgets/caldera-forms/caldera-forms.php:338
2253
  #: widgets/caldera-forms/caldera-forms.php:393
2333
 
2334
  #: widgets/accordion/accordion.php:311 widgets/accordion/accordion.php:400
2335
  #: widgets/accordion/accordion.php:507 widgets/accordion/accordion.php:577
2336
+ #: widgets/blog-posts/blog-posts.php:1051
2337
+ #: widgets/blog-posts/blog-posts.php:1122
2338
+ #: widgets/blog-posts/blog-posts.php:1411
2339
+ #: widgets/blog-posts/blog-posts.php:2438
2340
  #: widgets/business-hours/business-hours.php:221
2341
  #: widgets/business-hours/business-hours.php:282
2342
  #: widgets/business-hours/business-hours.php:346 widgets/button/button.php:350
2416
  msgstr ""
2417
 
2418
  #: widgets/accordion/accordion.php:326 widgets/accordion/accordion.php:416
2419
+ #: widgets/accordion/accordion.php:590 widgets/blog-posts/blog-posts.php:1064
2420
+ #: widgets/blog-posts/blog-posts.php:1135
2421
  #: widgets/caldera-forms/caldera-forms.php:347
2422
  #: widgets/caldera-forms/caldera-forms.php:402
2423
  #: widgets/caldera-forms/caldera-forms.php:457
2468
  msgstr ""
2469
 
2470
  #: widgets/accordion/accordion.php:435 widgets/accordion/accordion.php:519
2471
+ #: widgets/blog-posts/blog-posts.php:881 widgets/blog-posts/blog-posts.php:1386
2472
+ #: widgets/blog-posts/blog-posts.php:2249
2473
  #: widgets/business-hours/business-hours.php:198
2474
  #: widgets/business-hours/business-hours.php:294
2475
  #: widgets/business-hours/business-hours.php:358 widgets/button/button.php:193
2564
  msgid "Margin Bottom"
2565
  msgstr ""
2566
 
2567
+ #: widgets/accordion/accordion.php:531 widgets/blog-posts/blog-posts.php:1190
2568
+ #: widgets/blog-posts/blog-posts.php:1765
2569
+ #: widgets/blog-posts/blog-posts.php:1963
2570
  #: widgets/caldera-forms/caldera-forms.php:171
2571
  #: widgets/caldera-forms/caldera-forms.php:662
2572
  #: widgets/category-list/category-list.php:232
2607
  msgid "Width"
2608
  msgstr ""
2609
 
2610
+ #: widgets/accordion/accordion.php:609 widgets/blog-posts/blog-posts.php:869
2611
+ #: widgets/blog-posts/blog-posts.php:1712
2612
+ #: widgets/blog-posts/blog-posts.php:1818
2613
+ #: widgets/blog-posts/blog-posts.php:1907
2614
+ #: widgets/blog-posts/blog-posts.php:2202
2615
  #: widgets/business-hours/business-hours.php:185
2616
  #: widgets/caldera-forms/caldera-forms.php:105
2617
  #: widgets/caldera-forms/caldera-forms.php:637
2717
  msgid "Show Featured Image"
2718
  msgstr ""
2719
 
2720
+ #: widgets/blog-posts/blog-posts.php:84
2721
+ msgid "Featured Image Size"
2722
  msgstr ""
2723
 
2724
  #: widgets/blog-posts/blog-posts.php:99
2725
+ msgid "Featured Image Alignment"
2726
+ msgstr ""
2727
+
2728
+ #: widgets/blog-posts/blog-posts.php:122
2729
  msgid "Show Posts Per Row"
2730
  msgstr ""
2731
 
2732
+ #: widgets/blog-posts/blog-posts.php:141
2733
  #: widgets/dual-button/dual-button.php:925
2734
  msgid "Show Title"
2735
  msgstr ""
2736
 
2737
+ #: widgets/blog-posts/blog-posts.php:151
2738
  msgid "Crop title by word"
2739
  msgstr ""
2740
 
2741
+ #: widgets/blog-posts/blog-posts.php:162
2742
  msgid "Show Content"
2743
  msgstr ""
2744
 
2745
+ #: widgets/blog-posts/blog-posts.php:172
2746
  msgid "Crop content by word"
2747
  msgstr ""
2748
 
2749
+ #: widgets/blog-posts/blog-posts.php:184
2750
  msgid "Show Read More"
2751
  msgstr ""
2752
 
2753
+ #: widgets/blog-posts/blog-posts.php:196
2754
  msgid "Enable Masonry"
2755
  msgstr ""
2756
 
2757
+ #: widgets/blog-posts/blog-posts.php:209
2758
  msgid "Query"
2759
  msgstr ""
2760
 
2761
+ #: widgets/blog-posts/blog-posts.php:216
2762
  msgid "Posts Count"
2763
  msgstr ""
2764
 
2765
+ #: widgets/blog-posts/blog-posts.php:227
2766
  msgid "Select posts by:"
2767
  msgstr ""
2768
 
2769
+ #: widgets/blog-posts/blog-posts.php:231 widgets/post-list/post-list.php:54
2770
  msgid "Recent Post"
2771
  msgstr ""
2772
 
2773
+ #: widgets/blog-posts/blog-posts.php:232 widgets/post-list/post-list.php:56
2774
  msgid "Selected Post"
2775
  msgstr ""
2776
 
2777
+ #: widgets/blog-posts/blog-posts.php:233
2778
  msgid "Category Post"
2779
  msgstr ""
2780
 
2781
+ #: widgets/blog-posts/blog-posts.php:242
2782
  msgid "Search & Select"
2783
  msgstr ""
2784
 
2785
+ #: widgets/blog-posts/blog-posts.php:253 widgets/post-grid/post-grid.php:51
2786
  #: widgets/post-tab/post-tab.php:52
2787
  msgid "Select Categories"
2788
  msgstr ""
2789
 
2790
+ #: widgets/blog-posts/blog-posts.php:265
2791
  #: widgets/image-comparison/image-comparison.php:129
2792
  msgid "Offset"
2793
  msgstr ""
2794
 
2795
+ #: widgets/blog-posts/blog-posts.php:276
2796
  msgid "Order by"
2797
  msgstr ""
2798
 
2799
+ #: widgets/blog-posts/blog-posts.php:279 widgets/blog-posts/blog-posts.php:384
2800
  msgid "Date"
2801
  msgstr ""
2802
 
2803
+ #: widgets/blog-posts/blog-posts.php:281 widgets/blog-posts/blog-posts.php:383
2804
  msgid "Author"
2805
  msgstr ""
2806
 
2807
+ #: widgets/blog-posts/blog-posts.php:282
2808
  msgid "Modified"
2809
  msgstr ""
2810
 
2811
+ #: widgets/blog-posts/blog-posts.php:283
2812
  msgid "Comments"
2813
  msgstr ""
2814
 
2815
+ #: widgets/blog-posts/blog-posts.php:292
2816
  msgid "Order"
2817
  msgstr ""
2818
 
2819
+ #: widgets/blog-posts/blog-posts.php:295
2820
  msgid "ASC"
2821
  msgstr ""
2822
 
2823
+ #: widgets/blog-posts/blog-posts.php:296
2824
  msgid "DESC"
2825
  msgstr ""
2826
 
2827
+ #: widgets/blog-posts/blog-posts.php:308 widgets/blog-posts/blog-posts.php:380
2828
  msgid "Meta Data"
2829
  msgstr ""
2830
 
2831
+ #: widgets/blog-posts/blog-posts.php:316
2832
  msgid "Show Floating Date"
2833
  msgstr ""
2834
 
2835
+ #: widgets/blog-posts/blog-posts.php:329
2836
  #: widgets/countdown-timer/countdown-timer.php:51 widgets/social/social.php:47
2837
  #: widgets/social-share/social-share.php:53 widgets/tab/tab.php:94
2838
  #: widgets/testimonial/testimonial.php:54
2839
  msgid "Choose Style"
2840
  msgstr ""
2841
 
2842
+ #: widgets/blog-posts/blog-posts.php:334
2843
  msgid "Image style 1"
2844
  msgstr ""
2845
 
2846
+ #: widgets/blog-posts/blog-posts.php:340
2847
  msgid "Image style 2"
2848
  msgstr ""
2849
 
2850
+ #: widgets/blog-posts/blog-posts.php:354
2851
  msgid "Show Meta Data"
2852
  msgstr ""
2853
 
2854
+ #: widgets/blog-posts/blog-posts.php:364 widgets/post-list/post-list.php:310
2855
  msgid "Meta Position"
2856
  msgstr ""
2857
 
2858
+ #: widgets/blog-posts/blog-posts.php:367 widgets/heading/heading.php:190
2859
  #: widgets/heading/heading.php:339
2860
  msgid "Before Title"
2861
  msgstr ""
2862
 
2863
+ #: widgets/blog-posts/blog-posts.php:368 widgets/heading/heading.php:191
2864
  #: widgets/heading/heading.php:340
2865
  msgid "After Title"
2866
  msgstr ""
2867
 
2868
+ #: widgets/blog-posts/blog-posts.php:369
2869
  msgid "After Content"
2870
  msgstr ""
2871
 
2872
+ #: widgets/blog-posts/blog-posts.php:385
2873
  msgid "Category"
2874
  msgstr ""
2875
 
2876
+ #: widgets/blog-posts/blog-posts.php:386
2877
  msgid "Comment"
2878
  msgstr ""
2879
 
2880
+ #: widgets/blog-posts/blog-posts.php:401
2881
  msgid "Show Author Image"
2882
  msgstr ""
2883
 
2884
+ #: widgets/blog-posts/blog-posts.php:415
2885
  msgid "Author Icon"
2886
  msgstr ""
2887
 
2888
+ #: widgets/blog-posts/blog-posts.php:432
2889
  msgid "Date Icon"
2890
  msgstr ""
2891
 
2892
+ #: widgets/blog-posts/blog-posts.php:448
2893
  msgid "Category Icon"
2894
  msgstr ""
2895
 
2896
+ #: widgets/blog-posts/blog-posts.php:464
2897
  msgid "Comment Icon"
2898
  msgstr ""
2899
 
2900
+ #: widgets/blog-posts/blog-posts.php:485
2901
  msgid "Read More Button"
2902
  msgstr ""
2903
 
2904
+ #: widgets/blog-posts/blog-posts.php:493 widgets/button/button.php:48
2905
  #: widgets/caldera-forms/caldera-forms.php:75
2906
  #: widgets/contact-form7/contact-form7.php:73
2907
  #: widgets/countdown-timer/countdown-timer.php:380
2923
  msgid "Label"
2924
  msgstr ""
2925
 
2926
+ #: widgets/blog-posts/blog-posts.php:495 widgets/blog-posts/blog-posts.php:496
2927
  #: widgets/button/button.php:50 widgets/button/button.php:51
2928
  #: widgets/icon-box/icon-box.php:207 widgets/icon-box/icon-box.php:208
2929
  #: widgets/image-box/image-box.php:299 widgets/image-box/image-box.php:300
2931
  msgid "Learn more "
2932
  msgstr ""
2933
 
2934
+ #: widgets/blog-posts/blog-posts.php:503 widgets/button/button.php:86
2935
  #: widgets/dual-button/dual-button.php:189
2936
  #: widgets/dual-button/dual-button.php:318 widgets/funfact/funfact.php:84
2937
  #: widgets/icon-box/icon-box.php:87 widgets/icon-box/icon-box.php:238
2941
  msgid "Add icon? "
2942
  msgstr ""
2943
 
2944
+ #: widgets/blog-posts/blog-posts.php:533 widgets/button/button.php:116
2945
  #: widgets/dual-button/dual-button.php:219
2946
  #: widgets/dual-button/dual-button.php:348 widgets/icon-box/icon-box.php:272
2947
  #: widgets/image-accordion/image-accordion.php:112
2956
  msgid "Before"
2957
  msgstr ""
2958
 
2959
+ #: widgets/blog-posts/blog-posts.php:534 widgets/button/button.php:117
2960
  #: widgets/dual-button/dual-button.php:220
2961
  #: widgets/dual-button/dual-button.php:349 widgets/icon-box/icon-box.php:273
2962
  #: widgets/image-accordion/image-accordion.php:113
2971
  msgid "After"
2972
  msgstr ""
2973
 
2974
+ #: widgets/blog-posts/blog-posts.php:544 widgets/blog-posts/blog-posts.php:915
2975
+ #: widgets/blog-posts/blog-posts.php:1680
2976
+ #: widgets/blog-posts/blog-posts.php:1875 widgets/button/button.php:127
2977
  #: widgets/caldera-forms/caldera-forms.php:577
2978
  #: widgets/category-list/category-list.php:150
2979
  #: widgets/contact-form7/contact-form7.php:576
3002
  msgid "Alignment"
3003
  msgstr ""
3004
 
3005
+ #: widgets/blog-posts/blog-posts.php:552 widgets/blog-posts/blog-posts.php:923
3006
+ #: widgets/blog-posts/blog-posts.php:1688
3007
+ #: widgets/blog-posts/blog-posts.php:1883 widgets/button/button.php:135
3008
  #: widgets/caldera-forms/caldera-forms.php:585
3009
  #: widgets/category-list/category-list.php:158
3010
  #: widgets/contact-form7/contact-form7.php:584
3043
  msgid "Center"
3044
  msgstr ""
3045
 
3046
+ #: widgets/blog-posts/blog-posts.php:570 widgets/button/button.php:152
3047
  #: widgets/pricing/pricing.php:418
3048
  msgid "Class"
3049
  msgstr ""
3050
 
3051
+ #: widgets/blog-posts/blog-posts.php:572 widgets/button/button.php:154
3052
  #: widgets/pricing/pricing.php:420
3053
  msgid "Class Name"
3054
  msgstr ""
3055
 
3056
+ #: widgets/blog-posts/blog-posts.php:579 widgets/button/button.php:161
3057
  #: widgets/pricing/pricing.php:427
3058
  msgid "id"
3059
  msgstr ""
3060
 
3061
+ #: widgets/blog-posts/blog-posts.php:581 widgets/button/button.php:163
3062
  #: widgets/pricing/pricing.php:429
3063
  msgid "ID"
3064
  msgstr ""
3065
 
3066
+ #: widgets/blog-posts/blog-posts.php:593 widgets/tab/tab.php:458
3067
  msgid "Wrapper"
3068
  msgstr ""
3069
 
3070
+ #: widgets/blog-posts/blog-posts.php:618 widgets/page-list/page-list.php:591
3071
  #: widgets/page-list/page-list.php:972 widgets/post-list/post-list.php:710
3072
  #: widgets/testimonial/testimonial.php:718
3073
  msgid "Vertical Alignment"
3074
  msgstr ""
3075
 
3076
+ #: widgets/blog-posts/blog-posts.php:626 widgets/funfact/funfact.php:980
3077
  #: widgets/nav-menu/nav-menu.php:908 widgets/pricing/pricing.php:1444
3078
  #: widgets/pricing/pricing.php:1514
3079
  msgid "Middle"
3080
  msgstr ""
3081
 
3082
+ #: widgets/blog-posts/blog-posts.php:647
3083
  msgid "Container Border radius"
3084
  msgstr ""
3085
 
3086
+ #: widgets/blog-posts/blog-posts.php:659
3087
  msgid "Container Padding"
3088
  msgstr ""
3089
 
3090
+ #: widgets/blog-posts/blog-posts.php:671 widgets/blog-posts/blog-posts.php:941
3091
  #: widgets/faq/faq.php:276
3092
  msgid "Container Margin"
3093
  msgstr ""
3094
 
3095
+ #: widgets/blog-posts/blog-posts.php:699 widgets/faq/faq.php:245
3096
  #: widgets/team/team.php:687
3097
  msgid "Content Padding"
3098
  msgstr ""
3099
 
3100
+ #: widgets/blog-posts/blog-posts.php:712 widgets/blog-posts/blog-posts.php:722
3101
  msgid "Container Border"
3102
  msgstr ""
3103
 
3104
+ #: widgets/blog-posts/blog-posts.php:730 widgets/faq/faq.php:225
3105
  msgid "Content Border"
3106
  msgstr ""
3107
 
3108
+ #: widgets/blog-posts/blog-posts.php:785 widgets/blog-posts/blog-posts.php:1010
3109
+ #: widgets/blog-posts/blog-posts.php:1612
3110
+ #: widgets/blog-posts/blog-posts.php:2051
3111
+ #: widgets/blog-posts/blog-posts.php:2293
3112
+ #: widgets/blog-posts/blog-posts.php:2387 widgets/button/button.php:224
3113
  #: widgets/button/button.php:332 widgets/caldera-forms/caldera-forms.php:304
3114
  #: widgets/caldera-forms/caldera-forms.php:755
3115
  #: widgets/client-logo/client-logo.php:523
3168
  msgid "Normal"
3169
  msgstr ""
3170
 
3171
+ #: widgets/blog-posts/blog-posts.php:805 widgets/blog-posts/blog-posts.php:1081
3172
+ #: widgets/blog-posts/blog-posts.php:1640
3173
+ #: widgets/blog-posts/blog-posts.php:2070
3174
+ #: widgets/blog-posts/blog-posts.php:2323
3175
+ #: widgets/blog-posts/blog-posts.php:2413 widgets/button/button.php:255
3176
  #: widgets/button/button.php:369 widgets/caldera-forms/caldera-forms.php:359
3177
  #: widgets/caldera-forms/caldera-forms.php:814
3178
  #: widgets/category-list/category-list.php:325
3230
  msgid "Hover"
3231
  msgstr ""
3232
 
3233
+ #: widgets/blog-posts/blog-posts.php:857
3234
  #: widgets/client-logo/client-logo.php:1186
3235
  #: widgets/header-offcanvas/header-offcanvas.php:271
3236
  #: widgets/header-offcanvas/header-offcanvas.php:451
3242
  msgid "Border radius"
3243
  msgstr ""
3244
 
3245
+ #: widgets/blog-posts/blog-posts.php:897 widgets/post-list/post-list.php:987
3246
  msgid "Meta"
3247
  msgstr ""
3248
 
3249
+ #: widgets/blog-posts/blog-posts.php:953
3250
  msgid "Item Margin"
3251
  msgstr ""
3252
 
3253
+ #: widgets/blog-posts/blog-posts.php:965
3254
  msgid "Item Padding"
3255
  msgstr ""
3256
 
3257
+ #: widgets/blog-posts/blog-posts.php:977
3258
  #: widgets/dual-button/dual-button.php:231
3259
  #: widgets/dual-button/dual-button.php:255
3260
  #: widgets/dual-button/dual-button.php:360
3267
  msgid "Icon Spacing"
3268
  msgstr ""
3269
 
3270
+ #: widgets/blog-posts/blog-posts.php:989
3271
  #: widgets/header-info/header-info.php:196
3272
  #: widgets/header-offcanvas/header-offcanvas.php:208
3273
  #: widgets/header-offcanvas/header-offcanvas.php:403
3281
  msgid "Icon Size"
3282
  msgstr ""
3283
 
3284
+ #: widgets/blog-posts/blog-posts.php:1157
3285
  msgid "Floating Date"
3286
  msgstr ""
3287
 
3288
+ #: widgets/blog-posts/blog-posts.php:1167
3289
+ #: widgets/blog-posts/blog-posts.php:1791
3290
  #: widgets/caldera-forms/caldera-forms.php:199
3291
  #: widgets/caldera-forms/caldera-forms.php:255
3292
  #: widgets/caldera-forms/caldera-forms.php:692
3322
  msgid "Height"
3323
  msgstr ""
3324
 
3325
+ #: widgets/blog-posts/blog-posts.php:1326
3326
  msgid "Date Typography"
3327
  msgstr ""
3328
 
3329
+ #: widgets/blog-posts/blog-posts.php:1351
3330
  msgid "Month Typography"
3331
  msgstr ""
3332
 
3333
+ #: widgets/blog-posts/blog-posts.php:1440
3334
  msgid "Triangle"
3335
  msgstr ""
3336
 
3337
+ #: widgets/blog-posts/blog-posts.php:1451
3338
  msgid "Triangle Background"
3339
  msgstr ""
3340
 
3341
+ #: widgets/blog-posts/blog-posts.php:1468
3342
  msgid "Triangle Size"
3343
  msgstr ""
3344
 
3345
+ #: widgets/blog-posts/blog-posts.php:1496
3346
  msgid "Triangle Position Left"
3347
  msgstr ""
3348
 
3349
+ #: widgets/blog-posts/blog-posts.php:1524
3350
  msgid "Triangle Position Top"
3351
  msgstr ""
3352
 
3353
+ #: widgets/blog-posts/blog-posts.php:1553
3354
  msgid "Triangle Direction"
3355
  msgstr ""
3356
 
3357
+ #: widgets/blog-posts/blog-posts.php:1557
3358
  #: widgets/client-logo/client-logo.php:596 widgets/funfact/funfact.php:322
3359
  #: widgets/funfact/funfact.php:365 widgets/icon-box/icon-box.php:1520
3360
  #: widgets/image-box/image-box.php:703
3361
  msgid "From Left"
3362
  msgstr ""
3363
 
3364
+ #: widgets/blog-posts/blog-posts.php:1561
3365
  #: widgets/client-logo/client-logo.php:608 widgets/funfact/funfact.php:326
3366
  #: widgets/funfact/funfact.php:369 widgets/icon-box/icon-box.php:1528
3367
  #: widgets/image-box/image-box.php:711
3368
  msgid "From Right"
3369
  msgstr ""
3370
 
3371
+ #: widgets/blog-posts/blog-posts.php:1696
3372
+ #: widgets/blog-posts/blog-posts.php:1891
3373
  msgid "justify"
3374
  msgstr ""
3375
 
3376
+ #: widgets/blog-posts/blog-posts.php:1736
3377
  #: widgets/client-logo/client-logo.php:433
3378
  #: widgets/testimonial/testimonial.php:275
3379
  msgid "Show Separator"
3380
  msgstr ""
3381
 
3382
+ #: widgets/blog-posts/blog-posts.php:1750
3383
+ #: widgets/blog-posts/blog-posts.php:2059
3384
+ #: widgets/blog-posts/blog-posts.php:2078
3385
  #: widgets/client-logo/client-logo.php:1398
3386
  #: widgets/client-logo/client-logo.php:1417
3387
  #: widgets/fluent-forms/fluent-forms.php:1258
3390
  msgid "Separator Color"
3391
  msgstr ""
3392
 
3393
+ #: widgets/blog-posts/blog-posts.php:1923
3394
  msgid "Show Highlight Border"
3395
  msgstr ""
3396
 
3397
+ #: widgets/blog-posts/blog-posts.php:1936
3398
  #: widgets/client-logo/client-logo.php:1292
3399
  msgid "Hight"
3400
  msgstr ""
3401
 
3402
+ #: widgets/blog-posts/blog-posts.php:1990
3403
  #: widgets/client-logo/client-logo.php:1340
3404
  msgid "Top Bottom Position"
3405
  msgstr ""
3406
 
3407
+ #: widgets/blog-posts/blog-posts.php:2018
3408
  #: widgets/client-logo/client-logo.php:1364
3409
  msgid "Left Right Position"
3410
  msgstr ""
3411
 
3412
+ #: widgets/blog-posts/blog-posts.php:2087 widgets/lottie/lottie.php:321
3413
  msgid "Transition"
3414
  msgstr ""
3415
 
3416
+ #: widgets/blog-posts/blog-posts.php:2121
3417
  msgid "Author Image"
3418
  msgstr ""
3419
 
3420
+ #: widgets/blog-posts/blog-posts.php:2132
3421
  msgid "Image Width"
3422
  msgstr ""
3423
 
3424
+ #: widgets/blog-posts/blog-posts.php:2159
3425
  msgid "Image Height"
3426
  msgstr ""
3427
 
3428
+ #: widgets/blog-posts/blog-posts.php:2221 widgets/tablepress/tablepress.php:658
3429
  msgid "Radius"
3430
  msgstr ""
3431
 
3432
+ #: widgets/blog-posts/blog-posts.php:2240 widgets/button/button-handler.php:11
3433
  #: widgets/button/button.php:174 widgets/caldera-forms/caldera-forms.php:569
3434
  #: widgets/contact-form7/contact-form7.php:568
3435
  #: widgets/dual-button/dual-button.php:161
3444
  msgid "Button"
3445
  msgstr ""
3446
 
3447
+ #: widgets/blog-posts/blog-posts.php:2261 widgets/button/button.php:429
3448
  #: widgets/caldera-forms/caldera-forms.php:514
3449
  #: widgets/contact-form7/contact-form7.php:513
3450
  #: widgets/fluent-forms/fluent-forms.php:1825
3457
  msgid "Font Size"
3458
  msgstr ""
3459
 
3460
+ #: widgets/blog-posts/blog-posts.php:2283 widgets/button/button.php:206
3461
  #: widgets/caldera-forms/caldera-forms.php:84
3462
  #: widgets/caldera-forms/caldera-forms.php:127
3463
  #: widgets/caldera-forms/caldera-forms.php:472
3517
  msgid "Typography"
3518
  msgstr ""
3519
 
3520
+ #: widgets/blog-posts/blog-posts.php:2300
3521
+ #: widgets/blog-posts/blog-posts.php:2330 widgets/button/button.php:231
3522
  #: widgets/button/button.php:262 widgets/category-list/category-list.php:368
3523
  #: widgets/fluent-forms/fluent-forms.php:511
3524
  #: widgets/fluent-forms/fluent-forms.php:589
3984
  #: widgets/client-logo/client-logo.php:419
3985
  msgid ""
3986
  "Setting this to more than 1 initializes grid mode. Use slidesPerRow to set "
3987
+ "how many slides should be in each row.\n"
3988
  "\t\t\t\t"
3989
  msgstr ""
3990
 
7463
  msgid "ElementsKit item"
7464
  msgstr ""
7465
 
7466
+ #: widgets/blog-posts/blog-posts.php:743 widgets/blog-posts/blog-posts.php:2355
7467
  #: widgets/button/button.php:299 widgets/pricing/pricing.php:600
7468
  #: widgets/pricing/pricing.php:827 widgets/pricing/pricing.php:1614
7469
  #: widgets/pricing/pricing.php:2198 widgets/video/video.php:587
7471
  msgid "Border Type"
7472
  msgstr ""
7473
 
7474
+ #: widgets/blog-posts/blog-posts.php:747 widgets/blog-posts/blog-posts.php:2359
7475
  #: widgets/button/button.php:303 widgets/pricing/pricing.php:604
7476
  #: widgets/pricing/pricing.php:831 widgets/pricing/pricing.php:1618
7477
  #: widgets/pricing/pricing.php:2202 widgets/video/video.php:591
7479
  msgid "Solid"
7480
  msgstr ""
7481
 
7482
+ #: widgets/blog-posts/blog-posts.php:748 widgets/blog-posts/blog-posts.php:2360
7483
  #: widgets/button/button.php:304 widgets/pricing/pricing.php:605
7484
  #: widgets/pricing/pricing.php:832 widgets/pricing/pricing.php:1619
7485
  #: widgets/pricing/pricing.php:2203 widgets/video/video.php:592
7487
  msgid "Double"
7488
  msgstr ""
7489
 
7490
+ #: widgets/blog-posts/blog-posts.php:749 widgets/blog-posts/blog-posts.php:2361
7491
  #: widgets/button/button.php:305 widgets/pricing/pricing.php:606
7492
  #: widgets/pricing/pricing.php:833 widgets/pricing/pricing.php:1620
7493
  #: widgets/pricing/pricing.php:2204 widgets/video/video.php:593
7495
  msgid "Dotted"
7496
  msgstr ""
7497
 
7498
+ #: widgets/blog-posts/blog-posts.php:750 widgets/blog-posts/blog-posts.php:2362
7499
  #: widgets/button/button.php:306 widgets/pricing/pricing.php:607
7500
  #: widgets/pricing/pricing.php:834 widgets/pricing/pricing.php:1621
7501
  #: widgets/pricing/pricing.php:2205 widgets/video/video.php:594
7503
  msgid "Dashed"
7504
  msgstr ""
7505
 
7506
+ #: widgets/blog-posts/blog-posts.php:751 widgets/blog-posts/blog-posts.php:2363
7507
  #: widgets/button/button.php:307 widgets/pricing/pricing.php:608
7508
  #: widgets/pricing/pricing.php:835 widgets/pricing/pricing.php:1622
7509
  #: widgets/pricing/pricing.php:2206 widgets/video/video.php:595
7511
  msgid "Groove"
7512
  msgstr ""
7513
 
7514
+ #: widgets/blog-posts/blog-posts.php:765 widgets/blog-posts/blog-posts.php:2373
7515
  #: widgets/button/button.php:318 widgets/pricing/pricing.php:845
7516
  #: widgets/pricing/pricing.php:1632 widgets/pricing/pricing.php:2216
7517
  #: widgets/video/video.php:605
7519
  msgid "Width"
7520
  msgstr ""
7521
 
7522
+ #: widgets/blog-posts/blog-posts.php:792 widgets/blog-posts/blog-posts.php:811
7523
+ #: widgets/blog-posts/blog-posts.php:2397
7524
+ #: widgets/blog-posts/blog-posts.php:2422 widgets/button/button.php:339
7525
  #: widgets/button/button.php:375 widgets/pricing/pricing.php:869
7526
  #: widgets/pricing/pricing.php:894 widgets/pricing/pricing.php:1650
7527
  #: widgets/pricing/pricing.php:1669 widgets/video/video.php:623
languages/elementskit.pot DELETED
@@ -1,10469 +0,0 @@
1
- #, fuzzy
2
- msgid ""
3
- msgstr ""
4
- "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
- "Project-Id-Version: ElementsKit_Lite\n"
6
- "POT-Creation-Date: 2020-04-28 15:03+0600\n"
7
- "PO-Revision-Date: 2020-04-28 15:03+0600\n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 2.2.4\n"
14
- "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
16
- "X-Poedit-WPHeader: elementskit.php\n"
17
- "X-Poedit-SourceCharset: UTF-8\n"
18
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
19
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
20
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
21
- "X-Poedit-SearchPath-0: .\n"
22
- "X-Poedit-SearchPathExcluded-0: *.min.js\n"
23
-
24
- #: compatibility/wpml/init.php:139
25
- msgid "Label (Button)"
26
- msgstr ""
27
-
28
- #: compatibility/wpml/init.php:150
29
- msgid "Title (Heading)"
30
- msgstr ""
31
-
32
- #: compatibility/wpml/init.php:155
33
- msgid "Sub Title (Heading)"
34
- msgstr ""
35
-
36
- #: compatibility/wpml/init.php:160
37
- msgid "Description (Heading)"
38
- msgstr ""
39
-
40
- #: compatibility/wpml/init.php:171
41
- msgid "Title (Icon Box)"
42
- msgstr ""
43
-
44
- #: compatibility/wpml/init.php:176
45
- msgid "Content (Icon Box)"
46
- msgstr ""
47
-
48
- #: compatibility/wpml/init.php:181
49
- msgid "Button Label (Icon Box)"
50
- msgstr ""
51
-
52
- #: compatibility/wpml/init.php:186
53
- msgid "Badge Text (Icon Box)"
54
- msgstr ""
55
-
56
- #: compatibility/wpml/init.php:197
57
- msgid "Title (Image Box)"
58
- msgstr ""
59
-
60
- #: compatibility/wpml/init.php:202
61
- msgid "Description (Image Box)"
62
- msgstr ""
63
-
64
- #: compatibility/wpml/init.php:207
65
- msgid "Button Label (Image Box)"
66
- msgstr ""
67
-
68
- #: compatibility/wpml/init.php:218
69
- msgid "Weeks (Countdown Timer)"
70
- msgstr ""
71
-
72
- #: compatibility/wpml/init.php:223
73
- msgid "Days (Countdown Timer)"
74
- msgstr ""
75
-
76
- #: compatibility/wpml/init.php:228
77
- msgid "Hours (Countdown Timer)"
78
- msgstr ""
79
-
80
- #: compatibility/wpml/init.php:233
81
- msgid "Minutes (Countdown Timer)"
82
- msgstr ""
83
-
84
- #: compatibility/wpml/init.php:238
85
- msgid "Seconds (Countdown Timer)"
86
- msgstr ""
87
-
88
- #: compatibility/wpml/init.php:243
89
- msgid "On Expiry Title (Countdown Timer)"
90
- msgstr ""
91
-
92
- #: compatibility/wpml/init.php:248
93
- msgid "On Expiry Content (Countdown Timer)"
94
- msgstr ""
95
-
96
- #: compatibility/wpml/init.php:264
97
- msgid "Number Suffix (Funfact)"
98
- msgstr ""
99
-
100
- #: compatibility/wpml/init.php:269
101
- msgid "Title (Funfact)"
102
- msgstr ""
103
-
104
- #: compatibility/wpml/init.php:274
105
- msgid "Super (Funfact)"
106
- msgstr ""
107
-
108
- #: compatibility/wpml/init.php:285
109
- msgid "Before Label (Image Comparison)"
110
- msgstr ""
111
-
112
- #: compatibility/wpml/init.php:290
113
- msgid "After Label (Image Comparison)"
114
- msgstr ""
115
-
116
- #: compatibility/wpml/init.php:306
117
- msgid "Table Title (Pricing Table)"
118
- msgstr ""
119
-
120
- #: compatibility/wpml/init.php:311
121
- msgid "Table Subtitle (Pricing Table)"
122
- msgstr ""
123
-
124
- #: compatibility/wpml/init.php:316
125
- msgid "Currency (Pricing Table)"
126
- msgstr ""
127
-
128
- #: compatibility/wpml/init.php:321
129
- msgid "Price (Pricing Table)"
130
- msgstr ""
131
-
132
- #: compatibility/wpml/init.php:326
133
- msgid "Duration (Pricing Table)"
134
- msgstr ""
135
-
136
- #: compatibility/wpml/init.php:331
137
- msgid "Table Content (Pricing Table)"
138
- msgstr ""
139
-
140
- #: compatibility/wpml/init.php:336
141
- msgid "Button Label (Pricing Table)"
142
- msgstr ""
143
-
144
- #: compatibility/wpml/init.php:348
145
- msgid "Member Name (Team)"
146
- msgstr ""
147
-
148
- #: compatibility/wpml/init.php:353
149
- msgid "Member Position (Team)"
150
- msgstr ""
151
-
152
- #: compatibility/wpml/init.php:358
153
- msgid "Short Description (Team)"
154
- msgstr ""
155
-
156
- #: compatibility/wpml/init.php:363
157
- msgid "Popup Description (Team)"
158
- msgstr ""
159
-
160
- #: compatibility/wpml/init.php:368
161
- msgid "Phone (Team)"
162
- msgstr ""
163
-
164
- #: compatibility/wpml/init.php:373
165
- msgid "Email (Team)"
166
- msgstr ""
167
-
168
- #: compatibility/wpml/init.php:389
169
- msgid "Title (Progress Bar)"
170
- msgstr ""
171
-
172
- #: compatibility/wpml/init.php:400
173
- msgid "First Name (Mail Chimp)"
174
- msgstr ""
175
-
176
- #: compatibility/wpml/init.php:405 compatibility/wpml/init.php:415
177
- msgid "First Name Placeholder (Mail Chimp)"
178
- msgstr ""
179
-
180
- #: compatibility/wpml/init.php:410
181
- msgid "Last Name (Mail Chimp)"
182
- msgstr ""
183
-
184
- #: compatibility/wpml/init.php:420
185
- msgid "Phone (Mail Chimp)"
186
- msgstr ""
187
-
188
- #: compatibility/wpml/init.php:425
189
- msgid "Phone Placeholder (Mail Chimp)"
190
- msgstr ""
191
-
192
- #: compatibility/wpml/init.php:430
193
- msgid "Email (Mail Chimp)"
194
- msgstr ""
195
-
196
- #: compatibility/wpml/init.php:435
197
- msgid "Email Placeholder (Mail Chimp)"
198
- msgstr ""
199
-
200
- #: compatibility/wpml/init.php:440
201
- msgid "Submit Button Text (Mail Chimp)"
202
- msgstr ""
203
-
204
- #: compatibility/wpml/init.php:445
205
- msgid "Success Message (Mail Chimp)"
206
- msgstr ""
207
-
208
- #: compatibility/wpml/init.php:456
209
- msgid "Title (Pie Chart)"
210
- msgstr ""
211
-
212
- #: compatibility/wpml/init.php:461
213
- msgid "Description (Pie Chart)"
214
- msgstr ""
215
-
216
- #: compatibility/wpml/init.php:477
217
- msgid "Button Title (Video)"
218
- msgstr ""
219
-
220
- #: compatibility/wpml/init.php:493
221
- msgid "Content (Drop Caps)"
222
- msgstr ""
223
-
224
- #: compatibility/wpml/init.php:524
225
- msgid "Title (Motion Text)"
226
- msgstr ""
227
-
228
- #: compatibility/wpml/init.php:535
229
- msgid "Label (Twitter)"
230
- msgstr ""
231
-
232
- #: compatibility/wpml/init.php:546
233
- msgid "Follow Button Text (Instagram Feed)"
234
- msgstr ""
235
-
236
- #: compatibility/wpml/init.php:557
237
- msgid "\"All\" Filter Label (Gallery)"
238
- msgstr ""
239
-
240
- #: compatibility/wpml/init.php:569
241
- msgid "Title (Chart)"
242
- msgstr ""
243
-
244
- #: compatibility/wpml/init.php:581
245
- msgid "Prev Text (Table)"
246
- msgstr ""
247
-
248
- #: compatibility/wpml/init.php:586
249
- msgid "Next Text (Table)"
250
- msgstr ""
251
-
252
- #: compatibility/wpml/init.php:603
253
- msgid "Middle Text (Dual Button)"
254
- msgstr ""
255
-
256
- #: compatibility/wpml/init.php:608
257
- msgid "Button One Text (Dual Button)"
258
- msgstr ""
259
-
260
- #: compatibility/wpml/init.php:613
261
- msgid "Button Two Text (Dual Button)"
262
- msgstr ""
263
-
264
- #: compatibility/wpml/init.php:624
265
- msgid "Label (Creative Button)"
266
- msgstr ""
267
-
268
- #: compatibility/wpml/init.php:655
269
- msgid "Placeholder Text (Header Search)"
270
- msgstr ""
271
-
272
- #: compatibility/wpml/widgets/accordion.php:52
273
- msgid "Title (Accordion)"
274
- msgstr ""
275
-
276
- #: compatibility/wpml/widgets/accordion.php:56
277
- msgid "Description (Accordion)"
278
- msgstr ""
279
-
280
- #: compatibility/wpml/widgets/advanced-accordion.php:51
281
- msgid "Title (Advanced Accordion)"
282
- msgstr ""
283
-
284
- #: compatibility/wpml/widgets/advanced-tab.php:52
285
- msgid "Title (Advanced Tab)"
286
- msgstr ""
287
-
288
- #: compatibility/wpml/widgets/advanced-tab.php:56
289
- msgid "Sub-Title (Advanced Tab)"
290
- msgstr ""
291
-
292
- #: compatibility/wpml/widgets/business-hours.php:52
293
- msgid "Day (Business Hours)"
294
- msgstr ""
295
-
296
- #: compatibility/wpml/widgets/business-hours.php:56
297
- msgid "Time (Business Hours)"
298
- msgstr ""
299
-
300
- #: compatibility/wpml/widgets/cat-list.php:51
301
- msgid "Test (Category List)"
302
- msgstr ""
303
-
304
- #: compatibility/wpml/widgets/chart.php:51
305
- msgid "Name (Chart)"
306
- msgstr ""
307
-
308
- #: compatibility/wpml/widgets/faq.php:52
309
- msgid "Title (FAQ)"
310
- msgstr ""
311
-
312
- #: compatibility/wpml/widgets/faq.php:56
313
- msgid "Content (FAQ)"
314
- msgstr ""
315
-
316
- #: compatibility/wpml/widgets/gallery.php:51
317
- msgid "Filter Label (Gallery)"
318
- msgstr ""
319
-
320
- #: compatibility/wpml/widgets/header-info.php:51
321
- msgid "Text (Header Info)"
322
- msgstr ""
323
-
324
- #: compatibility/wpml/widgets/hotspot.php:52
325
- msgid "Title (Hotspot)"
326
- msgstr ""
327
-
328
- #: compatibility/wpml/widgets/hotspot.php:56
329
- msgid "Address (Hotspot)"
330
- msgstr ""
331
-
332
- #: compatibility/wpml/widgets/image-accordion.php:52
333
- msgid "Title (Image Accordion)"
334
- msgstr ""
335
-
336
- #: compatibility/wpml/widgets/image-accordion.php:56
337
- msgid "Button Label (Image Accordion)"
338
- msgstr ""
339
-
340
- #: compatibility/wpml/widgets/page-list.php:52
341
- msgid "Title (Page List)"
342
- msgstr ""
343
-
344
- #: compatibility/wpml/widgets/page-list.php:56
345
- msgid "Sub-Title (Page List)"
346
- msgstr ""
347
-
348
- #: compatibility/wpml/widgets/post-list.php:51
349
- msgid "Title (Post List)"
350
- msgstr ""
351
-
352
- #: compatibility/wpml/widgets/pricing.php:51
353
- msgid "List text (Pricing Table)"
354
- msgstr ""
355
-
356
- #: compatibility/wpml/widgets/social-share.php:51
357
- msgid "Label (Social Share)"
358
- msgstr ""
359
-
360
- #: compatibility/wpml/widgets/social.php:51
361
- msgid "Label (Social Media)"
362
- msgstr ""
363
-
364
- #: compatibility/wpml/widgets/tab.php:52
365
- msgid "Title (Tab)"
366
- msgstr ""
367
-
368
- #: compatibility/wpml/widgets/tab.php:56
369
- msgid "Content (Tab)"
370
- msgstr ""
371
-
372
- #: compatibility/wpml/widgets/table.php:51
373
- msgid "Text (Table)"
374
- msgstr ""
375
-
376
- #: compatibility/wpml/widgets/testimonial.php:53
377
- msgid "Client Name (Testimonial)"
378
- msgstr ""
379
-
380
- #: compatibility/wpml/widgets/testimonial.php:57
381
- msgid "Designation (Testimonial)"
382
- msgstr ""
383
-
384
- #: compatibility/wpml/widgets/testimonial.php:61
385
- msgid "Testimonial Review (Testimonial)"
386
- msgstr ""
387
-
388
- #: compatibility/wpml/widgets/timeline.php:55
389
- msgid "Sub Title (Timeline)"
390
- msgstr ""
391
-
392
- #: compatibility/wpml/widgets/timeline.php:59
393
- msgid "Title (Timeline)"
394
- msgstr ""
395
-
396
- #: compatibility/wpml/widgets/timeline.php:63
397
- msgid "Description (Timeline)"
398
- msgstr ""
399
-
400
- #: compatibility/wpml/widgets/timeline.php:67
401
- msgid "Date (Timeline)"
402
- msgstr ""
403
-
404
- #: compatibility/wpml/widgets/timeline.php:71
405
- msgid "Address (Timeline)"
406
- msgstr ""
407
-
408
- #: elementskit.php:280
409
- msgid "Activate Elementor"
410
- msgstr ""
411
-
412
- #: elementskit.php:283
413
- msgid "Install Elementor"
414
- msgstr ""
415
-
416
- #: elementskit.php:293
417
- #, php-format
418
- msgid ""
419
- "ElementsKit_Lite requires Elementor version %1$s+, which is currently NOT RUNNING."
420
- msgstr ""
421
-
422
- #: elementskit.php:313
423
- #, php-format
424
- msgid ""
425
- "ElementsKit_Lite requires PHP version %1$s+, which is currently NOT RUNNING on "
426
- "this server."
427
- msgstr ""
428
-
429
- #. Plugin Name of the plugin/theme
430
- #: elementskit.php:342 libs/framework/attr.php:70
431
- msgid "ElementsKit_Lite"
432
- msgstr ""
433
-
434
- #: elementskit.php:350
435
- msgid "ElementsKit_Lite Header Footer"
436
- msgstr ""
437
-
438
- #: handler.php:194
439
- msgid ""
440
- "Please activate ElementsKit_Lite to get automatic updates, premium support and "
441
- "unlimited access to the layout library of ElementsKit_Lite."
442
- msgstr ""
443
-
444
- #: handler.php:196
445
- msgid "Activate Now"
446
- msgstr ""
447
-
448
- #: handler.php:260
449
- msgid "Cloning is forbidden."
450
- msgstr ""
451
-
452
- #: handler.php:273
453
- msgid "Unserializing instances of this class is forbidden."
454
- msgstr ""
455
-
456
- #: helpers/utils.php:181 widgets/caldera-forms/caldera-forms.php:32
457
- #: widgets/caldera-forms/caldera-forms.php:57
458
- msgid "Select Form"
459
- msgstr ""
460
-
461
- #: helpers/utils.php:186
462
- msgid "Create a form first"
463
- msgstr ""
464
-
465
- #: helpers/utils.php:200
466
- msgid "Select Ninja Form"
467
- msgstr ""
468
-
469
- #: helpers/utils.php:207
470
- msgid "Create a Form First"
471
- msgstr ""
472
-
473
- #: helpers/utils.php:218 widgets/tablepress/tablepress.php:41
474
- msgid "Select Table"
475
- msgstr ""
476
-
477
- #: helpers/utils.php:225
478
- msgid "(no name)"
479
- msgstr ""
480
-
481
- #: helpers/utils.php:231
482
- msgid "Create a Table First"
483
- msgstr ""
484
-
485
- #: libs/framework/attr.php:69 modules/onepage-scroll/extend-controls.php:67
486
- msgid "ElementsKit_Lite Settings"
487
- msgstr ""
488
-
489
- #: libs/framework/attr.php:84
490
- msgid "Get Support"
491
- msgstr ""
492
-
493
- #: libs/framework/attr.php:85
494
- msgid "License"
495
- msgstr ""
496
-
497
- #: libs/framework/attr.php:97
498
- msgid "Please wait.."
499
- msgstr ""
500
-
501
- #: libs/framework/classes/ajax.php:43
502
- msgid "Something went wrong"
503
- msgstr ""
504
-
505
- #: libs/framework/classes/ajax.php:49
506
- msgid "Your key is empty"
507
- msgstr ""
508
-
509
- #: libs/framework/controls/settings/switch.php:36
510
- msgid "View Demo"
511
- msgstr ""
512
-
513
- #: libs/framework/pages/license.php:11
514
- msgid "License Settings"
515
- msgstr ""
516
-
517
- #: libs/framework/pages/license.php:17
518
- msgid ""
519
- "Enter your license key here, to activate ElementsKit_Lite, and get auto updates, "
520
- "premium support and unlimited access to the template library."
521
- msgstr ""
522
-
523
- #: libs/framework/pages/license.php:20
524
- #, php-format
525
- msgid "Log in to your %sWpmet account%s to get your license key."
526
- msgstr ""
527
-
528
- #: libs/framework/pages/license.php:21
529
- #, php-format
530
- msgid "If you don't yet have a license key, get %sElementsKit%s now."
531
- msgstr ""
532
-
533
- #: libs/framework/pages/license.php:24
534
- msgid "Copy the ElementsKit_Lite license key from your account and paste it below."
535
- msgstr ""
536
-
537
- #: libs/framework/pages/license.php:27
538
- msgid "Your License Key"
539
- msgstr ""
540
-
541
- #: libs/framework/pages/license.php:44
542
- #, php-format
543
- msgid "Still can't find your lisence key? %s"
544
- msgstr ""
545
-
546
- #: libs/framework/pages/license.php:49
547
- msgid "Activate"
548
- msgstr ""
549
-
550
- #: libs/framework/pages/license.php:54
551
- #, php-format
552
- msgid "Congratulations! Your product is activated for \"%s\""
553
- msgstr ""
554
-
555
- #: libs/framework/pages/license.php:59
556
- msgid "Remove license from this domain"
557
- msgstr ""
558
-
559
- #: libs/framework/pages/license.php:59
560
- #, php-format
561
- msgid "See documention %shere%s."
562
- msgstr ""
563
-
564
- #: libs/framework/pages/license.php:68
565
- msgid "Are you sure to remove license from this site?"
566
- msgstr ""
567
-
568
- #: libs/framework/pages/license.php:69
569
- msgid "Yes, I confrim"
570
- msgstr ""
571
-
572
- #: libs/framework/pages/settings-dashboard.php:8
573
- #: libs/framework/pages/settings-dashboard.php:128
574
- msgid "Documentation Thumb"
575
- msgstr ""
576
-
577
- #: libs/framework/pages/settings-dashboard.php:12
578
- msgid "Easy Documentation"
579
- msgstr ""
580
-
581
- #: libs/framework/pages/settings-dashboard.php:13
582
- msgid "Docs"
583
- msgstr ""
584
-
585
- #: libs/framework/pages/settings-dashboard.php:15
586
- #: libs/framework/pages/settings-dashboard.php:121
587
- msgid ""
588
- "Get started by spending some time with the documentation to get familiar "
589
- "with ElementsKit_Lite. Build awesome websites for you or your clients with ease."
590
- msgstr ""
591
-
592
- #: libs/framework/pages/settings-dashboard.php:17
593
- msgid "Get started"
594
- msgstr ""
595
-
596
- #: libs/framework/pages/settings-dashboard.php:26
597
- msgid "Video Tutorials"
598
- msgstr ""
599
-
600
- #: libs/framework/pages/settings-dashboard.php:27
601
- msgid "Tutorials"
602
- msgstr ""
603
-
604
- #: libs/framework/pages/settings-dashboard.php:29
605
- #: libs/framework/pages/settings-dashboard.php:78
606
- msgid ""
607
- "Get started by spending some time with the documentation to get familiar "
608
- "with ElementsKit_Lite."
609
- msgstr ""
610
-
611
- #: libs/framework/pages/settings-dashboard.php:36
612
- #: libs/framework/pages/settings-dashboard.php:44
613
- #: libs/framework/pages/settings-dashboard.php:52
614
- msgid "Totorial Thumb"
615
- msgstr ""
616
-
617
- #: libs/framework/pages/settings-dashboard.php:38
618
- msgid "Parallax Effects"
619
- msgstr ""
620
-
621
- #: libs/framework/pages/settings-dashboard.php:46
622
- msgid "Advanced Accordions"
623
- msgstr ""
624
-
625
- #: libs/framework/pages/settings-dashboard.php:54
626
- msgid "Mega Menu Builder"
627
- msgstr ""
628
-
629
- #: libs/framework/pages/settings-dashboard.php:67
630
- msgid "View more videos"
631
- msgstr ""
632
-
633
- #: libs/framework/pages/settings-dashboard.php:75
634
- msgid "General Knowledge Base"
635
- msgstr ""
636
-
637
- #: libs/framework/pages/settings-dashboard.php:76
638
- #: widgets/faq/faq-handler.php:11 widgets/faq/faq.php:35
639
- msgid "FAQ"
640
- msgstr ""
641
-
642
- #: libs/framework/pages/settings-dashboard.php:83
643
- msgid "1. How to create a shop page in ElementsKit_Lite?"
644
- msgstr ""
645
-
646
- #: libs/framework/pages/settings-dashboard.php:86
647
- #: libs/framework/pages/settings-dashboard.php:94
648
- #: libs/framework/pages/settings-dashboard.php:102
649
- msgid ""
650
- "You will get 20+ complete homepages and total 450+ blocks in our layout "
651
- "library and we’re continuously updating the numbers there."
652
- msgstr ""
653
-
654
- #: libs/framework/pages/settings-dashboard.php:91
655
- msgid "2. How to translate theme with WPML?"
656
- msgstr ""
657
-
658
- #: libs/framework/pages/settings-dashboard.php:99
659
- msgid "3. How to add custom css in specific section shortcode?"
660
- msgstr ""
661
-
662
- #: libs/framework/pages/settings-dashboard.php:110
663
- msgid "View all faq’s"
664
- msgstr ""
665
-
666
- #: libs/framework/pages/settings-dashboard.php:118
667
- msgid "Top-class Friendly Support"
668
- msgstr ""
669
-
670
- #: libs/framework/pages/settings-dashboard.php:119
671
- msgid "Support"
672
- msgstr ""
673
-
674
- #: libs/framework/pages/settings-dashboard.php:123
675
- msgid "Join support forum"
676
- msgstr ""
677
-
678
- #: libs/framework/pages/settings-dashboard.php:136
679
- msgid "Feature Request Thumb"
680
- msgstr ""
681
-
682
- #: libs/framework/pages/settings-dashboard.php:140
683
- msgid "Maybe we’re missing something you can’t live without."
684
- msgstr ""
685
-
686
- #: libs/framework/pages/settings-dashboard.php:142
687
- msgid "Feature request"
688
- msgstr ""
689
-
690
- #: libs/framework/pages/settings-dashboard.php:152
691
- msgid "Satisfied!"
692
- msgstr ""
693
-
694
- #: libs/framework/pages/settings-dashboard.php:152
695
- msgid "Don’t forget to rate our item."
696
- msgstr ""
697
-
698
- #: libs/framework/pages/settings-dashboard.php:154
699
- msgid "Rate it now"
700
- msgstr ""
701
-
702
- #: libs/framework/pages/settings-dashboard.php:159
703
- msgid "Rate Now Thumb"
704
- msgstr ""
705
-
706
- #: libs/framework/pages/settings-elements.php:9
707
- msgid ""
708
- "You can disable the elements you are not using on your site. That will "
709
- "disable all associated assets of those widgets to improve your site loading."
710
- msgstr ""
711
-
712
- #: libs/framework/pages/settings-init.php:5
713
- msgid "Dashboard"
714
- msgstr ""
715
-
716
- #: libs/framework/pages/settings-init.php:6
717
- msgid "General info"
718
- msgstr ""
719
-
720
- #: libs/framework/pages/settings-init.php:10
721
- msgid "Elements"
722
- msgstr ""
723
-
724
- #: libs/framework/pages/settings-init.php:11
725
- msgid "Enable disable widgets"
726
- msgstr ""
727
-
728
- #: libs/framework/pages/settings-init.php:15
729
- msgid "Modules"
730
- msgstr ""
731
-
732
- #: libs/framework/pages/settings-init.php:16
733
- msgid "Enable disable modules"
734
- msgstr ""
735
-
736
- #: libs/framework/pages/settings-init.php:20
737
- msgid "User Data"
738
- msgstr ""
739
-
740
- #: libs/framework/pages/settings-init.php:21
741
- msgid "Data for fb, mailchimp etc"
742
- msgstr ""
743
-
744
- #: libs/framework/pages/settings-init.php:64
745
- msgid "Save Changes"
746
- msgstr ""
747
-
748
- #: libs/framework/pages/settings-modules.php:8
749
- msgid ""
750
- "You can disable the modules you are not using on your site. That will "
751
- "disable all associated assets of those modules to improve your site loading."
752
- msgstr ""
753
-
754
- #: libs/framework/pages/settings-modules.php:11
755
- #: modules/header-footer/cpt.php:52
756
- msgid "Header Footer"
757
- msgstr ""
758
-
759
- #: libs/framework/pages/settings-userdata.php:12
760
- msgid "Facebook User Data"
761
- msgstr ""
762
-
763
- #: libs/framework/pages/settings-userdata.php:23
764
- msgid "Page ID"
765
- msgstr ""
766
-
767
- #: libs/framework/pages/settings-userdata.php:32
768
- #: libs/framework/pages/settings-userdata.php:66
769
- #: libs/framework/pages/settings-userdata.php:125
770
- msgid "Access Token"
771
- msgstr ""
772
-
773
- #: libs/framework/pages/settings-userdata.php:37
774
- #: libs/framework/pages/settings-userdata.php:72
775
- #: libs/framework/pages/settings-userdata.php:130
776
- msgid "Get Access Token"
777
- msgstr ""
778
-
779
- #: libs/framework/pages/settings-userdata.php:45
780
- msgid "Twitter User Data"
781
- msgstr ""
782
-
783
- #: libs/framework/pages/settings-userdata.php:56
784
- msgid "Twitter Username"
785
- msgstr ""
786
-
787
- #: libs/framework/pages/settings-userdata.php:81
788
- msgid "Mail Chimp Data"
789
- msgstr ""
790
-
791
- #: libs/framework/pages/settings-userdata.php:92
792
- msgid "Token"
793
- msgstr ""
794
-
795
- #: libs/framework/pages/settings-userdata.php:105
796
- msgid "Instragram User Data"
797
- msgstr ""
798
-
799
- #: libs/framework/pages/settings-userdata.php:116
800
- msgid "User ID"
801
- msgstr ""
802
-
803
- #: libs/updater/edd-warper.php:237
804
- #, php-format
805
- msgid ""
806
- "There is a new version of %1$s available. %2$sView version %3$s details%4$s."
807
- msgstr ""
808
-
809
- #: libs/updater/edd-warper.php:245
810
- #, php-format
811
- msgid ""
812
- "There is a new version of %1$s available. %2$sView version %3$s details%4$s "
813
- "or %5$supdate now%6$s."
814
- msgstr ""
815
-
816
- #: libs/updater/edd-warper.php:489
817
- msgid "You do not have permission to install plugin updates"
818
- msgstr ""
819
-
820
- #: libs/updater/edd-warper.php:489
821
- msgid "Error"
822
- msgstr ""
823
-
824
- #: modules/controls/icon.php:33 modules/controls/icon.php:34
825
- #: widgets/header-search/header-search.php:60
826
- msgid "Select Icon"
827
- msgstr ""
828
-
829
- #: modules/controls/icons.php:15
830
- msgid "ElementsKit_Lite - Icons"
831
- msgstr ""
832
-
833
- #: modules/controls/widget-area-modal.php:11
834
- msgid "Widget Area"
835
- msgstr ""
836
-
837
- #: modules/controls/widget-area-modal.php:17
838
- #: modules/controls/widget-area-modal.php:18
839
- #: modules/library/views/editor/template-library-header.php:8
840
- #: widgets/business-hours/business-hours.php:127
841
- msgid "Close"
842
- msgstr ""
843
-
844
- #: modules/controls/widget-area-modal.php:43
845
- msgid "Loading"
846
- msgstr ""
847
-
848
- #: modules/controls/widget-area-utils.php:33
849
- msgid "Edit"
850
- msgstr ""
851
-
852
- #: modules/controls/widget-area-utils.php:45
853
- msgid "no content added yet"
854
- msgstr ""
855
-
856
- #: modules/dynamic-content/cpt.php:17
857
- msgctxt "Post Type General Name"
858
- msgid "ElementsKit items"
859
- msgstr ""
860
-
861
- #: modules/dynamic-content/cpt.php:18
862
- msgctxt "Post Type Singular Name"
863
- msgid "ElementsKit item"
864
- msgstr ""
865
-
866
- #: modules/dynamic-content/cpt.php:19 modules/dynamic-content/cpt.php:20
867
- #: modules/dynamic-content/cpt.php:52
868
- msgid "ElementsKit item"
869
- msgstr ""
870
-
871
- #: modules/dynamic-content/cpt.php:21
872
- msgid "Item Archives"
873
- msgstr ""
874
-
875
- #: modules/dynamic-content/cpt.php:22
876
- msgid "Item Attributes"
877
- msgstr ""
878
-
879
- #: modules/dynamic-content/cpt.php:23
880
- msgid "Parent Item:"
881
- msgstr ""
882
-
883
- #: modules/dynamic-content/cpt.php:24
884
- msgid "All Items"
885
- msgstr ""
886
-
887
- #: modules/dynamic-content/cpt.php:25
888
- msgid "Add New Item"
889
- msgstr ""
890
-
891
- #: modules/dynamic-content/cpt.php:26 modules/header-footer/cpt.php:22
892
- msgid "Add New"
893
- msgstr ""
894
-
895
- #: modules/dynamic-content/cpt.php:27
896
- msgid "New Item"
897
- msgstr ""
898
-
899
- #: modules/dynamic-content/cpt.php:28
900
- msgid "Edit Item"
901
- msgstr ""
902
-
903
- #: modules/dynamic-content/cpt.php:29
904
- msgid "Update Item"
905
- msgstr ""
906
-
907
- #: modules/dynamic-content/cpt.php:30
908
- msgid "View Item"
909
- msgstr ""
910
-
911
- #: modules/dynamic-content/cpt.php:31
912
- msgid "View Items"
913
- msgstr ""
914
-
915
- #: modules/dynamic-content/cpt.php:32
916
- msgid "Search Item"
917
- msgstr ""
918
-
919
- #: modules/dynamic-content/cpt.php:33
920
- msgid "Not found"
921
- msgstr ""
922
-
923
- #: modules/dynamic-content/cpt.php:34
924
- msgid "Not found in Trash"
925
- msgstr ""
926
-
927
- #: modules/dynamic-content/cpt.php:35 widgets/blog-posts/blog-posts.php:787
928
- msgid "Featured Image"
929
- msgstr ""
930
-
931
- #: modules/dynamic-content/cpt.php:36
932
- msgid "Set featured image"
933
- msgstr ""
934
-
935
- #: modules/dynamic-content/cpt.php:37
936
- msgid "Remove featured image"
937
- msgstr ""
938
-
939
- #: modules/dynamic-content/cpt.php:38
940
- msgid "Use as featured image"
941
- msgstr ""
942
-
943
- #: modules/dynamic-content/cpt.php:39
944
- msgid "Insert into item"
945
- msgstr ""
946
-
947
- #: modules/dynamic-content/cpt.php:40
948
- msgid "Uploaded to this item"
949
- msgstr ""
950
-
951
- #: modules/dynamic-content/cpt.php:41
952
- msgid "Items list"
953
- msgstr ""
954
-
955
- #: modules/dynamic-content/cpt.php:42
956
- msgid "Items list navigation"
957
- msgstr ""
958
-
959
- #: modules/dynamic-content/cpt.php:43
960
- msgid "Filter items list"
961
- msgstr ""
962
-
963
- #: modules/dynamic-content/cpt.php:53
964
- msgid "elementskit_content"
965
- msgstr ""
966
-
967
- #: modules/header-footer/cpt-api.php:78 modules/header-footer/cpt-hooks.php:56
968
- #: widgets/advanced-tab/advanced-tab.php:768
969
- #: widgets/advanced-tab/advanced-tab.php:2111
970
- #: widgets/advanced-toggle/advanced-toggle.php:158
971
- #: widgets/advanced-toggle/advanced-toggle.php:366
972
- #: widgets/client-logo/client-logo.php:1204 widgets/gallery/gallery.php:2741
973
- #: widgets/nav-menu/nav-menu.php:424 widgets/nav-menu/nav-menu.php:628
974
- #: widgets/post-tab/post-tab.php:268 widgets/tab/tab.php:779
975
- #: widgets/testimonial/testimonial.php:673
976
- #: widgets/testimonial/testimonial.php:868
977
- #: widgets/testimonial/testimonial.php:1862
978
- #: widgets/vertical-menu/vertical-menu.php:243
979
- #: widgets/woo-product-carousel/woo-product-carousel.php:2379
980
- msgid "Active"
981
- msgstr ""
982
-
983
- #: modules/header-footer/cpt-api.php:79 modules/header-footer/cpt-hooks.php:57
984
- msgid "Inactive"
985
- msgstr ""
986
-
987
- #: modules/header-footer/cpt-hooks.php:32
988
- msgid "Type"
989
- msgstr ""
990
-
991
- #: modules/header-footer/cpt-hooks.php:33
992
- msgid "Conditions"
993
- msgstr ""
994
-
995
- #: modules/header-footer/cpt.php:18 modules/header-footer/cpt.php:21
996
- msgid "Templates"
997
- msgstr ""
998
-
999
- #: modules/header-footer/cpt.php:19
1000
- msgid "Template"
1001
- msgstr ""
1002
-
1003
- #: modules/header-footer/cpt.php:20
1004
- msgid "Header Footerr"
1005
- msgstr ""
1006
-
1007
- #: modules/header-footer/cpt.php:23
1008
- msgid "Add New Template"
1009
- msgstr ""
1010
-
1011
- #: modules/header-footer/cpt.php:24
1012
- msgid "New Template"
1013
- msgstr ""
1014
-
1015
- #: modules/header-footer/cpt.php:25
1016
- msgid "Edit Template"
1017
- msgstr ""
1018
-
1019
- #: modules/header-footer/cpt.php:26
1020
- msgid "View Template"
1021
- msgstr ""
1022
-
1023
- #: modules/header-footer/cpt.php:27
1024
- msgid "All Templates"
1025
- msgstr ""
1026
-
1027
- #: modules/header-footer/cpt.php:28
1028
- msgid "Search Templates"
1029
- msgstr ""
1030
-
1031
- #: modules/header-footer/cpt.php:29
1032
- msgid "Parent Templates:"
1033
- msgstr ""
1034
-
1035
- #: modules/header-footer/cpt.php:30
1036
- msgid "No Templates found."
1037
- msgstr ""
1038
-
1039
- #: modules/header-footer/cpt.php:31
1040
- msgid "No Templates found in Trash."
1041
- msgstr ""
1042
-
1043
- #: modules/header-footer/views/modal-editor.php:11
1044
- msgid "Template Settings"
1045
- msgstr ""
1046
-
1047
- #: modules/header-footer/views/modal-editor.php:15
1048
- #: widgets/woo-mini-cart/woo-mini-cart.php:515
1049
- #: widgets/woo-mini-cart/woo-mini-cart.php:927
1050
- msgid "Title:"
1051
- msgstr ""
1052
-
1053
- #: modules/header-footer/views/modal-editor.php:20
1054
- #: modules/library/views/editor/template-library-item.php:40
1055
- msgid "Type:"
1056
- msgstr ""
1057
-
1058
- #: modules/header-footer/views/modal-editor.php:22
1059
- #: widgets/facebook-feed/facebook-feed.php:407
1060
- #: widgets/instagram-feed/instagram-feed.php:492 widgets/pricing/pricing.php:35
1061
- #: widgets/pricing/pricing.php:2299 widgets/table/table.php:820
1062
- #: widgets/tablepress/tablepress.php:291
1063
- #: widgets/twitter-feed/twitter-feed.php:611
1064
- #: widgets/woo-mini-cart/woo-mini-cart.php:370
1065
- msgid "Header"
1066
- msgstr ""
1067
-
1068
- #: modules/header-footer/views/modal-editor.php:23
1069
- #: widgets/facebook-feed/facebook-feed.php:953
1070
- #: widgets/instagram-feed/instagram-feed.php:663
1071
- msgid "Footer"
1072
- msgstr ""
1073
-
1074
- #: modules/header-footer/views/modal-editor.php:30
1075
- msgid "Conditions:"
1076
- msgstr ""
1077
-
1078
- #: modules/header-footer/views/modal-editor.php:32
1079
- msgid "Entire Site"
1080
- msgstr ""
1081
-
1082
- #: modules/header-footer/views/modal-editor.php:33
1083
- msgid "Singular"
1084
- msgstr ""
1085
-
1086
- #: modules/header-footer/views/modal-editor.php:34
1087
- msgid "Archive"
1088
- msgstr ""
1089
-
1090
- #: modules/header-footer/views/modal-editor.php:44
1091
- msgid "All Singulars"
1092
- msgstr ""
1093
-
1094
- #: modules/header-footer/views/modal-editor.php:45
1095
- msgid "Front Page"
1096
- msgstr ""
1097
-
1098
- #: modules/header-footer/views/modal-editor.php:46
1099
- msgid "All Posts"
1100
- msgstr ""
1101
-
1102
- #: modules/header-footer/views/modal-editor.php:47
1103
- msgid "All Pages"
1104
- msgstr ""
1105
-
1106
- #: modules/header-footer/views/modal-editor.php:48
1107
- msgid "Selective Singular"
1108
- msgstr ""
1109
-
1110
- #: modules/header-footer/views/modal-editor.php:50
1111
- msgid "404 Page"
1112
- msgstr ""
1113
-
1114
- #: modules/header-footer/views/modal-editor.php:67
1115
- msgid "Activition:"
1116
- msgstr ""
1117
-
1118
- #: modules/header-footer/views/modal-editor.php:82
1119
- msgid "Edit with Elementor"
1120
- msgstr ""
1121
-
1122
- #: modules/header-footer/views/modal-editor.php:83
1123
- msgid "Save changes"
1124
- msgstr ""
1125
-
1126
- #: modules/library/views/editor/template-library-error.php:8
1127
- msgid "Template couldn't be loaded. Please activate you license key before."
1128
- msgstr ""
1129
-
1130
- #: modules/library/views/editor/template-library-header-back.php:3
1131
- msgid "Back to Library"
1132
- msgstr ""
1133
-
1134
- #: modules/library/views/editor/template-library-insert-button.php:5
1135
- #: modules/library/views/editor/template-library-item.php:29
1136
- msgid "Insert"
1137
- msgstr ""
1138
-
1139
- #: modules/library/views/editor/template-library-item.php:23
1140
- #: modules/library/views/editor/template-library-pro-button.php:6
1141
- msgid "Active License"
1142
- msgstr ""
1143
-
1144
- #: modules/library/views/editor/template-library-keywords.php:10
1145
- msgid "Any Topic"
1146
- msgstr ""
1147
-
1148
- #: modules/library/views/editor/template-library-live-button.php:5
1149
- msgid "Live Preview"
1150
- msgstr ""
1151
-
1152
- #: modules/megamenu/api.php:24
1153
- msgid "Saved"
1154
- msgstr ""
1155
-
1156
- #: modules/megamenu/views/options-megamenu.php:4
1157
- msgid "ElementsKit_Lite Megamenu"
1158
- msgstr ""
1159
-
1160
- #: modules/megamenu/views/options-megamenu.php:7
1161
- msgid "Enable this menu for Megamenu content"
1162
- msgstr ""
1163
-
1164
- #: modules/megamenu/views/options-menu-item.php:7
1165
- #: widgets/accordion/accordion.php:72
1166
- #: widgets/advanced-accordion/advanced-accordion.php:72
1167
- #: widgets/advanced-accordion/advanced-accordion.php:463
1168
- #: widgets/advanced-tab/advanced-tab.php:441
1169
- #: widgets/advanced-toggle/advanced-toggle.php:114
1170
- #: widgets/advanced-toggle/advanced-toggle.php:392
1171
- #: widgets/blog-posts/blog-posts.php:1796
1172
- #: widgets/business-hours/business-hours.php:37 widgets/button/button.php:37
1173
- #: widgets/countdown-timer/countdown-timer.php:201
1174
- #: widgets/creative-button/creative-button.php:37
1175
- #: widgets/drop-caps/drop-caps.php:43
1176
- #: widgets/facebook-feed/facebook-feed.php:499 widgets/faq/faq.php:55
1177
- #: widgets/faq/faq.php:185 widgets/funfact/funfact.php:152
1178
- #: widgets/funfact/funfact.php:729
1179
- #: widgets/header-offcanvas/header-offcanvas.php:44
1180
- #: widgets/hotspot/hotspot.php:435 widgets/icon-box/icon-box.php:130
1181
- #: widgets/icon-box/icon-box.php:803
1182
- #: widgets/image-accordion/image-accordion.php:36
1183
- #: widgets/image-accordion/image-accordion.php:429
1184
- #: widgets/instagram-feed/instagram-feed.php:822
1185
- #: widgets/motion-text/motion-text.php:34 widgets/piechart/piechart.php:44
1186
- #: widgets/piechart/piechart.php:262 widgets/tab/tab.php:390
1187
- #: widgets/team/team.php:529 widgets/timeline/timeline.php:36
1188
- #: widgets/timeline/timeline.php:409 widgets/twitter-feed/twitter-feed.php:796
1189
- #: widgets/woo-mini-cart/woo-mini-cart.php:40
1190
- #: widgets/woo-product-carousel/woo-product-carousel.php:625
1191
- #: widgets/woo-product-list/woo-product-list.php:784
1192
- msgid "Content"
1193
- msgstr ""
1194
-
1195
- #: modules/megamenu/views/options-menu-item.php:9
1196
- #: widgets/accordion/accordion.php:126 widgets/accordion/accordion.php:596
1197
- #: widgets/advanced-accordion/advanced-accordion.php:123
1198
- #: widgets/advanced-accordion/advanced-accordion.php:593
1199
- #: widgets/advanced-tab/advanced-tab.php:399
1200
- #: widgets/blog-posts/blog-posts.php:475 widgets/button/button.php:95
1201
- #: widgets/button/button.php:395 widgets/category-list/category-list.php:80
1202
- #: widgets/category-list/category-list.php:296
1203
- #: widgets/creative-button/creative-button.php:95
1204
- #: widgets/creative-button/creative-button.php:558
1205
- #: widgets/dual-button/dual-button.php:196
1206
- #: widgets/dual-button/dual-button.php:325 widgets/funfact/funfact.php:41
1207
- #: widgets/funfact/funfact.php:53 widgets/funfact/funfact.php:87
1208
- #: widgets/funfact/funfact.php:368 widgets/header-info/header-info.php:45
1209
- #: widgets/header-offcanvas/header-offcanvas.php:73
1210
- #: widgets/icon-box/icon-box.php:51 widgets/icon-box/icon-box.php:258
1211
- #: widgets/icon-box/icon-box.php:495 widgets/image-box/image-box.php:322
1212
- #: widgets/instagram-feed/instagram-feed.php:564
1213
- #: widgets/instagram-feed/instagram-feed.php:636
1214
- #: widgets/mail-chimp/mail-chimp.php:152 widgets/mail-chimp/mail-chimp.php:246
1215
- #: widgets/mail-chimp/mail-chimp.php:338 widgets/mail-chimp/mail-chimp.php:412
1216
- #: widgets/mail-chimp/mail-chimp.php:1010 widgets/page-list/page-list.php:156
1217
- #: widgets/page-list/page-list.php:670 widgets/piechart/piechart.php:70
1218
- #: widgets/piechart/piechart.php:94 widgets/piechart/piechart.php:106
1219
- #: widgets/post-list/post-list.php:170 widgets/post-list/post-list.php:463
1220
- #: widgets/pricing/pricing.php:87 widgets/pricing/pricing.php:118
1221
- #: widgets/pricing/pricing.php:230 widgets/pricing/pricing.php:355
1222
- #: widgets/progressbar/progressbar.php:396
1223
- #: widgets/social-share/social-share.php:53
1224
- #: widgets/social-share/social-share.php:163 widgets/social/social.php:47
1225
- #: widgets/social/social.php:157 widgets/tab/tab.php:348
1226
- #: widgets/table/table.php:103 widgets/table/table.php:119
1227
- #: widgets/table/table.php:378 widgets/table/table.php:393
1228
- #: widgets/team/team.php:126 widgets/team/team.php:194
1229
- #: widgets/team/team.php:920 widgets/timeline/timeline.php:381
1230
- #: widgets/twitter-feed/twitter-feed.php:696
1231
- #: widgets/twitter-feed/twitter-feed.php:769 widgets/video/video.php:53
1232
- #: widgets/video/video.php:698 widgets/woo-mini-cart/woo-mini-cart.php:48
1233
- #: widgets/woo-product-carousel/woo-product-carousel.php:1326
1234
- #: widgets/woo-product-carousel/woo-product-carousel.php:1928
1235
- #: widgets/woo-product-carousel/woo-product-carousel.php:1953
1236
- #: widgets/woo-product-list/woo-product-list.php:1490
1237
- msgid "Icon"
1238
- msgstr ""
1239
-
1240
- #: modules/megamenu/views/options-menu-item.php:11
1241
- #: widgets/icon-box/icon-box.php:439 widgets/icon-box/icon-box.php:1478
1242
- #: widgets/woo-product-carousel/woo-product-carousel.php:1519
1243
- #: widgets/woo-product-list/woo-product-list.php:1852
1244
- msgid "Badge"
1245
- msgstr ""
1246
-
1247
- #: modules/megamenu/views/options-menu-item.php:13
1248
- msgid "Extra"
1249
- msgstr ""
1250
-
1251
- #: modules/megamenu/views/options-menu-item.php:26
1252
- msgid "Megamenu enabled"
1253
- msgstr ""
1254
-
1255
- #: modules/megamenu/views/options-menu-item.php:28
1256
- msgid "Megamenu disabled"
1257
- msgstr ""
1258
-
1259
- #: modules/megamenu/views/options-menu-item.php:35
1260
- msgid "Edit megamenu content"
1261
- msgstr ""
1262
-
1263
- #: modules/megamenu/views/options-menu-item.php:39
1264
- msgid "Use mobile submenu as:"
1265
- msgstr ""
1266
-
1267
- #: modules/megamenu/views/options-menu-item.php:40
1268
- msgid "builder content"
1269
- msgstr ""
1270
-
1271
- #: modules/megamenu/views/options-menu-item.php:41
1272
- msgid "wp submenu list"
1273
- msgstr ""
1274
-
1275
- #: modules/megamenu/views/options-menu-item.php:46
1276
- msgid ""
1277
- "This plugin requires Elementor page builder to edt megamenu items content"
1278
- msgstr ""
1279
-
1280
- #: modules/megamenu/views/options-menu-item.php:54
1281
- msgid "Choose icon color"
1282
- msgstr ""
1283
-
1284
- #: modules/megamenu/views/options-menu-item.php:61
1285
- msgid "Select icon"
1286
- msgstr ""
1287
-
1288
- #: modules/megamenu/views/options-menu-item.php:64
1289
- msgid "No icon"
1290
- msgstr ""
1291
-
1292
- #: modules/megamenu/views/options-menu-item.php:80
1293
- msgid "Badge text"
1294
- msgstr ""
1295
-
1296
- #: modules/megamenu/views/options-menu-item.php:83
1297
- msgid "Badge Text"
1298
- msgstr ""
1299
-
1300
- #: modules/megamenu/views/options-menu-item.php:89
1301
- msgid "Choose badge color"
1302
- msgstr ""
1303
-
1304
- #: modules/megamenu/views/options-menu-item.php:97
1305
- msgid "Choose badge background"
1306
- msgstr ""
1307
-
1308
- #: modules/megamenu/views/options-menu-item.php:110
1309
- msgid "Vertical Mega Menu Position as:"
1310
- msgstr ""
1311
-
1312
- #: modules/megamenu/views/options-menu-item.php:111
1313
- msgid "Relative"
1314
- msgstr ""
1315
-
1316
- #: modules/megamenu/views/options-menu-item.php:112
1317
- #: modules/onepage-scroll/extend-controls-pro.php:108
1318
- #: modules/parallax/widget-controls.php:534
1319
- #: modules/parallax/widget-controls.php:576
1320
- #: modules/parallax/widget-controls.php:651
1321
- #: modules/parallax/widget-controls.php:726
1322
- #: modules/parallax/widget-controls.php:803
1323
- #: modules/parallax/widget-controls.php:879
1324
- #: modules/parallax/widget-controls.php:953
1325
- #: modules/sticky-content/extend-controls.php:28
1326
- #: widgets/advanced-tab/advanced-tab.php:156
1327
- #: widgets/blog-posts/blog-posts.php:583 widgets/blog-posts/blog-posts.php:1198
1328
- #: widgets/chart/chart.php:620 widgets/chart/chart.php:785
1329
- #: widgets/funfact/funfact.php:904 widgets/funfact/funfact.php:955
1330
- #: widgets/gallery/gallery.php:204 widgets/gallery/gallery.php:2220
1331
- #: widgets/heading/heading.php:240 widgets/hotspot/hotspot.php:139
1332
- #: widgets/hotspot/hotspot.php:211 widgets/hotspot/hotspot.php:273
1333
- #: widgets/hotspot/hotspot.php:740 widgets/icon-box/icon-box.php:373
1334
- #: widgets/image-accordion/image-accordion.php:478
1335
- #: widgets/nav-menu/nav-menu.php:820 widgets/page-list/page-list.php:193
1336
- #: widgets/page-list/page-list.php:400 widgets/post-list/post-list.php:268
1337
- #: widgets/pricing/pricing.php:1388 widgets/pricing/pricing.php:1458
1338
- #: widgets/tab/tab.php:155 widgets/table/table.php:154
1339
- #: widgets/testimonial/testimonial.php:145
1340
- #: widgets/testimonial/testimonial.php:718
1341
- #: widgets/woo-category-list/woo-category-list.php:596
1342
- #: widgets/woo-category-list/woo-category-list.php:894
1343
- #: widgets/woo-product-carousel/woo-product-carousel.php:661
1344
- #: widgets/woo-product-carousel/woo-product-carousel.php:687
1345
- #: widgets/woo-product-carousel/woo-product-carousel.php:1123
1346
- #: widgets/woo-product-carousel/woo-product-carousel.php:1570
1347
- #: widgets/woo-product-carousel/woo-product-carousel.php:2525
1348
- #: widgets/woo-product-list/woo-product-list.php:824
1349
- #: widgets/woo-product-list/woo-product-list.php:850
1350
- #: widgets/woo-product-list/woo-product-list.php:1286
1351
- #: widgets/woo-product-list/woo-product-list.php:1904
1352
- #: widgets/woo-product-list/woo-product-list.php:2313
1353
- msgid "Top"
1354
- msgstr ""
1355
-
1356
- #: modules/megamenu/views/options-menu-item.php:117
1357
- #: modules/megamenu/views/options-menu-item.php:120
1358
- msgid "Vertical Menu Width"
1359
- msgstr ""
1360
-
1361
- #: modules/megamenu/views/options-menu-item.php:143
1362
- msgid "Save"
1363
- msgstr ""
1364
-
1365
- #: modules/megamenu/walker-nav-menu.php:291
1366
- msgid "No content found"
1367
- msgstr ""
1368
-
1369
- #: modules/onepage-scroll/extend-controls-pro.php:29
1370
- msgid "Onepage Scroll Settings"
1371
- msgstr ""
1372
-
1373
- #: modules/onepage-scroll/extend-controls-pro.php:41
1374
- msgid "Navigation Style"
1375
- msgstr ""
1376
-
1377
- #: modules/onepage-scroll/extend-controls-pro.php:45
1378
- #: modules/parallax/section-controls.php:515
1379
- #: modules/parallax/widget-controls.php:30
1380
- #: modules/sticky-content/extend-controls.php:27
1381
- #: widgets/advanced-tab/advanced-tab.php:395
1382
- #: widgets/blog-posts/blog-posts.php:704 widgets/blog-posts/blog-posts.php:2316
1383
- #: widgets/button/button.php:289 widgets/funfact/funfact.php:61
1384
- #: widgets/icon-box/icon-box.php:47 widgets/image-box/image-box.php:756
1385
- #: widgets/nav-menu/nav-menu.php:478 widgets/pricing/pricing.php:83
1386
- #: widgets/pricing/pricing.php:551 widgets/pricing/pricing.php:778
1387
- #: widgets/pricing/pricing.php:1565 widgets/pricing/pricing.php:1718
1388
- #: widgets/pricing/pricing.php:2083 widgets/social-share/social-share.php:465
1389
- #: widgets/social/social.php:427 widgets/tab/tab.php:344
1390
- #: widgets/table/table.php:99 widgets/table/table.php:374
1391
- #: widgets/table/table.php:1432 widgets/table/table.php:2232
1392
- #: widgets/tablepress/tablepress.php:59 widgets/tablepress/tablepress.php:75
1393
- #: widgets/tablepress/tablepress.php:212 widgets/tablepress/tablepress.php:339
1394
- #: widgets/tablepress/tablepress.php:422 widgets/team/team.php:1517
1395
- #: widgets/video/video.php:586
1396
- #: widgets/woo-product-carousel/woo-product-carousel.php:65
1397
- #: widgets/woo-product-carousel/woo-product-carousel.php:440
1398
- msgid "None"
1399
- msgstr ""
1400
-
1401
- #: modules/onepage-scroll/extend-controls-pro.php:47
1402
- #: widgets/facebook-feed/facebook-feed.php:147
1403
- #: widgets/instagram-feed/instagram-feed.php:146
1404
- #: widgets/twitter-feed/twitter-feed.php:195
1405
- msgid "Circle"
1406
- msgstr ""
1407
-
1408
- #: modules/onepage-scroll/extend-controls-pro.php:49
1409
- #: modules/onepage-scroll/extend-controls-pro.php:62
1410
- #: widgets/woo-product-carousel/woo-product-carousel.php:67
1411
- msgid "Scale Up"
1412
- msgstr ""
1413
-
1414
- #: modules/onepage-scroll/extend-controls-pro.php:50
1415
- msgid "Fill In"
1416
- msgstr ""
1417
-
1418
- #: modules/onepage-scroll/extend-controls-pro.php:51
1419
- msgid "Fill Out"
1420
- msgstr ""
1421
-
1422
- #: modules/onepage-scroll/extend-controls-pro.php:52
1423
- msgid "Stroke"
1424
- msgstr ""
1425
-
1426
- #: modules/onepage-scroll/extend-controls-pro.php:53
1427
- msgid "Stroke Dot"
1428
- msgstr ""
1429
-
1430
- #: modules/onepage-scroll/extend-controls-pro.php:54
1431
- msgid "Stroke Simple"
1432
- msgstr ""
1433
-
1434
- #: modules/onepage-scroll/extend-controls-pro.php:55
1435
- msgid "Dot Move"
1436
- msgstr ""
1437
-
1438
- #: modules/onepage-scroll/extend-controls-pro.php:56
1439
- #: widgets/timeline/timeline-handler.php:11
1440
- msgid "Timeline"
1441
- msgstr ""
1442
-
1443
- #: modules/onepage-scroll/extend-controls-pro.php:60
1444
- #: widgets/facebook-feed/facebook-feed.php:148
1445
- #: widgets/instagram-feed/instagram-feed.php:147
1446
- #: widgets/twitter-feed/twitter-feed.php:196
1447
- msgid "Square"
1448
- msgstr ""
1449
-
1450
- #: modules/onepage-scroll/extend-controls-pro.php:66
1451
- #: widgets/chart/chart.php:306 widgets/social-share/social-share.php:214
1452
- msgid "Line"
1453
- msgstr ""
1454
-
1455
- #: modules/onepage-scroll/extend-controls-pro.php:68
1456
- msgid "Line Grow"
1457
- msgstr ""
1458
-
1459
- #: modules/onepage-scroll/extend-controls-pro.php:69
1460
- msgid "Line Shrink"
1461
- msgstr ""
1462
-
1463
- #: modules/onepage-scroll/extend-controls-pro.php:70
1464
- msgid "Line Fill"
1465
- msgstr ""
1466
-
1467
- #: modules/onepage-scroll/extend-controls-pro.php:71
1468
- msgid "Line Move"
1469
- msgstr ""
1470
-
1471
- #: modules/onepage-scroll/extend-controls-pro.php:74
1472
- msgid "Custom Icon"
1473
- msgstr ""
1474
-
1475
- #: modules/onepage-scroll/extend-controls-pro.php:86
1476
- msgid "Navigation Icon"
1477
- msgstr ""
1478
-
1479
- #: modules/onepage-scroll/extend-controls-pro.php:103
1480
- msgid "Navigation Position"
1481
- msgstr ""
1482
-
1483
- #: modules/onepage-scroll/extend-controls-pro.php:112
1484
- #: modules/parallax/widget-controls.php:535
1485
- #: modules/parallax/widget-controls.php:575
1486
- #: modules/parallax/widget-controls.php:650
1487
- #: modules/parallax/widget-controls.php:725
1488
- #: modules/parallax/widget-controls.php:802
1489
- #: modules/parallax/widget-controls.php:878
1490
- #: modules/parallax/widget-controls.php:952
1491
- #: modules/sticky-content/extend-controls.php:29
1492
- #: widgets/advanced-tab/advanced-tab.php:157
1493
- #: widgets/advanced-tab/advanced-tab.php:1105
1494
- #: widgets/advanced-tab/advanced-tab.php:1474
1495
- #: widgets/blog-posts/blog-posts.php:591 widgets/blog-posts/blog-posts.php:1226
1496
- #: widgets/chart/chart.php:624 widgets/chart/chart.php:789
1497
- #: widgets/funfact/funfact.php:963 widgets/gallery/gallery.php:212
1498
- #: widgets/gallery/gallery.php:2327 widgets/gallery/gallery.php:2565
1499
- #: widgets/heading/heading.php:243 widgets/hotspot/hotspot.php:142
1500
- #: widgets/hotspot/hotspot.php:154 widgets/hotspot/hotspot.php:182
1501
- #: widgets/hotspot/hotspot.php:338 widgets/hotspot/hotspot.php:743
1502
- #: widgets/image-accordion/image-accordion.php:486
1503
- #: widgets/page-list/page-list.php:201 widgets/page-list/page-list.php:408
1504
- #: widgets/post-list/post-list.php:269 widgets/pricing/pricing.php:1396
1505
- #: widgets/pricing/pricing.php:1466 widgets/tab/tab.php:156
1506
- #: widgets/tab/tab.php:1116 widgets/tab/tab.php:1485
1507
- #: widgets/testimonial/testimonial.php:146
1508
- #: widgets/testimonial/testimonial.php:726
1509
- #: widgets/testimonial/testimonial.php:1708
1510
- #: widgets/woo-category-list/woo-category-list.php:604
1511
- #: widgets/woo-category-list/woo-category-list.php:902
1512
- #: widgets/woo-product-carousel/woo-product-carousel.php:669
1513
- #: widgets/woo-product-carousel/woo-product-carousel.php:695
1514
- #: widgets/woo-product-carousel/woo-product-carousel.php:1131
1515
- #: widgets/woo-product-carousel/woo-product-carousel.php:1578
1516
- #: widgets/woo-product-carousel/woo-product-carousel.php:2533
1517
- #: widgets/woo-product-list/woo-product-list.php:832
1518
- #: widgets/woo-product-list/woo-product-list.php:858
1519
- #: widgets/woo-product-list/woo-product-list.php:1294
1520
- #: widgets/woo-product-list/woo-product-list.php:1912
1521
- #: widgets/woo-product-list/woo-product-list.php:2321
1522
- msgid "Bottom"
1523
- msgstr ""
1524
-
1525
- #: modules/onepage-scroll/extend-controls-pro.php:116
1526
- #: modules/parallax/widget-controls.php:609
1527
- #: modules/parallax/widget-controls.php:912 widgets/accordion/accordion.php:137
1528
- #: widgets/advanced-accordion/advanced-accordion.php:134
1529
- #: widgets/advanced-tab/advanced-tab.php:155
1530
- #: widgets/advanced-tab/advanced-tab.php:269
1531
- #: widgets/advanced-tab/advanced-tab.php:299
1532
- #: widgets/advanced-tab/advanced-tab.php:325
1533
- #: widgets/advanced-tab/advanced-tab.php:1014
1534
- #: widgets/advanced-tab/advanced-tab.php:1135
1535
- #: widgets/advanced-tab/advanced-tab.php:1505
1536
- #: widgets/advanced-toggle/advanced-toggle.php:81
1537
- #: widgets/advanced-toggle/advanced-toggle.php:314
1538
- #: widgets/blog-posts/blog-posts.php:77 widgets/blog-posts/blog-posts.php:509
1539
- #: widgets/blog-posts/blog-posts.php:877 widgets/blog-posts/blog-posts.php:1170
1540
- #: widgets/blog-posts/blog-posts.php:1254
1541
- #: widgets/blog-posts/blog-posts.php:1642
1542
- #: widgets/blog-posts/blog-posts.php:1837 widgets/button/button.php:129
1543
- #: widgets/caldera-forms/caldera-forms.php:576
1544
- #: widgets/category-list/category-list.php:150 widgets/chart/chart.php:616
1545
- #: widgets/chart/chart.php:781 widgets/contact-form7/contact-form7.php:576
1546
- #: widgets/creative-button/creative-button.php:126
1547
- #: widgets/creative-button/creative-button.php:218
1548
- #: widgets/dual-button/dual-button.php:70
1549
- #: widgets/dual-button/dual-button.php:532
1550
- #: widgets/dual-button/dual-button.php:753 widgets/funfact/funfact.php:227
1551
- #: widgets/gallery/gallery.php:178 widgets/gallery/gallery.php:2089
1552
- #: widgets/gallery/gallery.php:2122 widgets/gallery/gallery.php:2595
1553
- #: widgets/header-offcanvas/header-offcanvas.php:236
1554
- #: widgets/header-search/header-search.php:310 widgets/heading/heading.php:298
1555
- #: widgets/hotspot/hotspot.php:140 widgets/hotspot/hotspot.php:247
1556
- #: widgets/hotspot/hotspot.php:490 widgets/hotspot/hotspot.php:741
1557
- #: widgets/icon-box/icon-box.php:374 widgets/icon-box/icon-box.php:392
1558
- #: widgets/image-accordion/image-accordion.php:440
1559
- #: widgets/image-box/image-box.php:232
1560
- #: widgets/instagram-feed/instagram-feed.php:255
1561
- #: widgets/motion-text/motion-text.php:92 widgets/nav-menu/nav-menu.php:121
1562
- #: widgets/ninja-forms/ninja-forms.php:71
1563
- #: widgets/ninja-forms/ninja-forms.php:240
1564
- #: widgets/ninja-forms/ninja-forms.php:603 widgets/page-list/page-list.php:377
1565
- #: widgets/page-list/page-list.php:524 widgets/piechart/piechart.php:317
1566
- #: widgets/post-list/post-list.php:317 widgets/pricing/pricing.php:450
1567
- #: widgets/pricing/pricing.php:678 widgets/pricing/pricing.php:1683
1568
- #: widgets/pricing/pricing.php:2256 widgets/social-share/social-share.php:137
1569
- #: widgets/social-share/social-share.php:420 widgets/social/social.php:131
1570
- #: widgets/social/social.php:382 widgets/tab/tab.php:154
1571
- #: widgets/tab/tab.php:268 widgets/tab/tab.php:298 widgets/tab/tab.php:1025
1572
- #: widgets/tab/tab.php:1146 widgets/tab/tab.php:1516
1573
- #: widgets/table/table.php:266 widgets/table/table.php:515
1574
- #: widgets/tablepress/tablepress.php:139 widgets/tablepress/tablepress.php:165
1575
- #: widgets/team/team.php:457 widgets/team/team.php:500
1576
- #: widgets/team/team.php:632 widgets/team/team.php:936
1577
- #: widgets/team/team.php:1472 widgets/testimonial/testimonial.php:191
1578
- #: widgets/testimonial/testimonial.php:744
1579
- #: widgets/testimonial/testimonial.php:1575 widgets/timeline/timeline.php:421
1580
- #: widgets/vertical-menu/vertical-menu.php:66 widgets/video/video.php:293
1581
- #: widgets/we-forms/we-forms.php:395
1582
- #: widgets/woo-category-list/woo-category-list.php:571
1583
- #: widgets/woo-category-list/woo-category-list.php:869
1584
- #: widgets/woo-mini-cart/woo-mini-cart.php:79
1585
- #: widgets/woo-product-carousel/woo-product-carousel.php:638
1586
- #: widgets/woo-product-carousel/woo-product-carousel.php:1100
1587
- #: widgets/woo-product-carousel/woo-product-carousel.php:1346
1588
- #: widgets/woo-product-carousel/woo-product-carousel.php:1547
1589
- #: widgets/woo-product-carousel/woo-product-carousel.php:2309
1590
- #: widgets/woo-product-carousel/woo-product-carousel.php:2502
1591
- #: widgets/woo-product-list/woo-product-list.php:797
1592
- #: widgets/woo-product-list/woo-product-list.php:1263
1593
- #: widgets/woo-product-list/woo-product-list.php:1510
1594
- #: widgets/woo-product-list/woo-product-list.php:1881
1595
- #: widgets/woo-product-list/woo-product-list.php:2290
1596
- #: widgets/wp-forms/wp-forms.php:103 widgets/wp-forms/wp-forms.php:430
1597
- msgid "Left"
1598
- msgstr ""
1599
-
1600
- #: modules/onepage-scroll/extend-controls-pro.php:120
1601
- #: modules/parallax/widget-controls.php:610
1602
- #: modules/parallax/widget-controls.php:913 widgets/accordion/accordion.php:136
1603
- #: widgets/advanced-accordion/advanced-accordion.php:133
1604
- #: widgets/advanced-tab/advanced-tab.php:154
1605
- #: widgets/advanced-tab/advanced-tab.php:277
1606
- #: widgets/advanced-tab/advanced-tab.php:307
1607
- #: widgets/advanced-tab/advanced-tab.php:333
1608
- #: widgets/advanced-toggle/advanced-toggle.php:89
1609
- #: widgets/blog-posts/blog-posts.php:81 widgets/blog-posts/blog-posts.php:517
1610
- #: widgets/blog-posts/blog-posts.php:885 widgets/blog-posts/blog-posts.php:1650
1611
- #: widgets/blog-posts/blog-posts.php:1845 widgets/button/button.php:137
1612
- #: widgets/caldera-forms/caldera-forms.php:584
1613
- #: widgets/category-list/category-list.php:158 widgets/chart/chart.php:628
1614
- #: widgets/chart/chart.php:793 widgets/contact-form7/contact-form7.php:584
1615
- #: widgets/creative-button/creative-button.php:134
1616
- #: widgets/dual-button/dual-button.php:78
1617
- #: widgets/dual-button/dual-button.php:540
1618
- #: widgets/dual-button/dual-button.php:761 widgets/funfact/funfact.php:235
1619
- #: widgets/gallery/gallery.php:186 widgets/gallery/gallery.php:2101
1620
- #: widgets/gallery/gallery.php:2130
1621
- #: widgets/header-offcanvas/header-offcanvas.php:244
1622
- #: widgets/header-search/header-search.php:318 widgets/heading/heading.php:306
1623
- #: widgets/hotspot/hotspot.php:141 widgets/hotspot/hotspot.php:312
1624
- #: widgets/hotspot/hotspot.php:498 widgets/hotspot/hotspot.php:742
1625
- #: widgets/icon-box/icon-box.php:375 widgets/icon-box/icon-box.php:400
1626
- #: widgets/image-accordion/image-accordion.php:448
1627
- #: widgets/image-box/image-box.php:240
1628
- #: widgets/instagram-feed/instagram-feed.php:263
1629
- #: widgets/motion-text/motion-text.php:100 widgets/nav-menu/nav-menu.php:123
1630
- #: widgets/ninja-forms/ninja-forms.php:79
1631
- #: widgets/ninja-forms/ninja-forms.php:248
1632
- #: widgets/ninja-forms/ninja-forms.php:611 widgets/page-list/page-list.php:381
1633
- #: widgets/page-list/page-list.php:532 widgets/piechart/piechart.php:325
1634
- #: widgets/post-list/post-list.php:325 widgets/pricing/pricing.php:458
1635
- #: widgets/pricing/pricing.php:686 widgets/pricing/pricing.php:1249
1636
- #: widgets/pricing/pricing.php:1691 widgets/pricing/pricing.php:2264
1637
- #: widgets/social-share/social-share.php:145
1638
- #: widgets/social-share/social-share.php:428 widgets/social/social.php:139
1639
- #: widgets/social/social.php:390 widgets/tab/tab.php:153
1640
- #: widgets/tab/tab.php:276 widgets/tab/tab.php:306 widgets/table/table.php:274
1641
- #: widgets/table/table.php:523 widgets/tablepress/tablepress.php:147
1642
- #: widgets/tablepress/tablepress.php:173 widgets/team/team.php:461
1643
- #: widgets/team/team.php:508 widgets/team/team.php:640
1644
- #: widgets/team/team.php:940 widgets/team/team.php:944
1645
- #: widgets/team/team.php:1480 widgets/testimonial/testimonial.php:752
1646
- #: widgets/testimonial/testimonial.php:1583 widgets/timeline/timeline.php:429
1647
- #: widgets/vertical-menu/vertical-menu.php:65 widgets/video/video.php:301
1648
- #: widgets/we-forms/we-forms.php:403
1649
- #: widgets/woo-category-list/woo-category-list.php:579
1650
- #: widgets/woo-category-list/woo-category-list.php:877
1651
- #: widgets/woo-mini-cart/woo-mini-cart.php:87
1652
- #: widgets/woo-product-carousel/woo-product-carousel.php:646
1653
- #: widgets/woo-product-carousel/woo-product-carousel.php:1108
1654
- #: widgets/woo-product-carousel/woo-product-carousel.php:1347
1655
- #: widgets/woo-product-carousel/woo-product-carousel.php:1555
1656
- #: widgets/woo-product-carousel/woo-product-carousel.php:2317
1657
- #: widgets/woo-product-carousel/woo-product-carousel.php:2510
1658
- #: widgets/woo-product-list/woo-product-list.php:805
1659
- #: widgets/woo-product-list/woo-product-list.php:1271
1660
- #: widgets/woo-product-list/woo-product-list.php:1511
1661
- #: widgets/woo-product-list/woo-product-list.php:1889
1662
- #: widgets/woo-product-list/woo-product-list.php:2298
1663
- #: widgets/wp-forms/wp-forms.php:111 widgets/wp-forms/wp-forms.php:438
1664
- msgid "Right"
1665
- msgstr ""
1666
-
1667
- #: modules/onepage-scroll/extend-controls-pro.php:136
1668
- msgid "Navigation Position Offset"
1669
- msgstr ""
1670
-
1671
- #: modules/onepage-scroll/extend-controls-pro.php:168
1672
- msgid "Navigation Spacing"
1673
- msgstr ""
1674
-
1675
- #: modules/onepage-scroll/extend-controls-pro.php:192
1676
- msgid "Navigation Color"
1677
- msgstr ""
1678
-
1679
- #: modules/onepage-scroll/extend-controls-pro.php:224
1680
- msgid "Tooltip Typography"
1681
- msgstr ""
1682
-
1683
- #: modules/onepage-scroll/extend-controls-pro.php:242
1684
- msgid "Enable Dot"
1685
- msgstr ""
1686
-
1687
- #: modules/onepage-scroll/extend-controls-pro.php:252
1688
- msgid "Tooltip Text"
1689
- msgstr ""
1690
-
1691
- #: modules/onepage-scroll/extend-controls.php:44 widgets/widget-notice.php:24
1692
- msgid "Unlock more possibilities"
1693
- msgstr ""
1694
-
1695
- #: modules/onepage-scroll/extend-controls.php:54
1696
- #, php-format
1697
- msgid ""
1698
- "%s Get the %s Pro version %s for more awesome elements and powerful modules. "
1699
- "%s"
1700
- msgstr ""
1701
-
1702
- #: modules/onepage-scroll/extend-controls.php:74
1703
- msgid "Enable Onepage Scroll"
1704
- msgstr ""
1705
-
1706
- #: modules/onepage-scroll/extend-controls.php:94
1707
- msgid "ElementsKit_Lite Onepage Scroll"
1708
- msgstr ""
1709
-
1710
- #: modules/onepage-scroll/extend-controls.php:102
1711
- msgid "Enable Section"
1712
- msgstr ""
1713
-
1714
- #: modules/parallax/section-controls.php:16
1715
- #: modules/parallax/widget-controls.php:17
1716
- msgid "ElementsKit_Lite Effects"
1717
- msgstr ""
1718
-
1719
- #: modules/parallax/section-controls.php:23
1720
- msgid "Background Image Parallax"
1721
- msgstr ""
1722
-
1723
- #: modules/parallax/section-controls.php:25
1724
- #: modules/parallax/section-controls.php:52 widgets/accordion/accordion.php:148
1725
- #: widgets/advanced-accordion/advanced-accordion.php:145
1726
- #: widgets/advanced-tab/advanced-tab.php:81
1727
- #: widgets/advanced-tab/advanced-tab.php:137
1728
- #: widgets/blog-posts/blog-posts.php:1883
1729
- #: widgets/caldera-forms/caldera-forms.php:647
1730
- #: widgets/client-logo/client-logo.php:431
1731
- #: widgets/contact-form7/contact-form7.php:647
1732
- #: widgets/dual-button/dual-button.php:923
1733
- #: widgets/facebook-feed/facebook-feed.php:118
1734
- #: widgets/facebook-feed/facebook-feed.php:160
1735
- #: widgets/facebook-feed/facebook-feed.php:173
1736
- #: widgets/facebook-feed/facebook-feed.php:185
1737
- #: widgets/facebook-feed/facebook-feed.php:606 widgets/gallery/gallery.php:227
1738
- #: widgets/gallery/gallery.php:239 widgets/gallery/gallery.php:252
1739
- #: widgets/gallery/gallery.php:264 widgets/gallery/gallery.php:989
1740
- #: widgets/gallery/gallery.php:1883 widgets/gallery/gallery.php:2145
1741
- #: widgets/gallery/gallery.php:2388 widgets/header-search/header-search.php:242
1742
- #: widgets/hotspot/hotspot.php:76 widgets/hotspot/hotspot.php:103
1743
- #: widgets/hotspot/hotspot.php:302 widgets/hotspot/hotspot.php:515
1744
- #: widgets/icon-box/icon-box.php:449
1745
- #: widgets/instagram-feed/instagram-feed.php:78
1746
- #: widgets/instagram-feed/instagram-feed.php:113
1747
- #: widgets/instagram-feed/instagram-feed.php:162
1748
- #: widgets/instagram-feed/instagram-feed.php:177
1749
- #: widgets/instagram-feed/instagram-feed.php:193
1750
- #: widgets/instagram-feed/instagram-feed.php:205
1751
- #: widgets/instagram-feed/instagram-feed.php:218
1752
- #: widgets/mail-chimp/mail-chimp.php:140 widgets/mail-chimp/mail-chimp.php:234
1753
- #: widgets/mail-chimp/mail-chimp.php:326 widgets/mail-chimp/mail-chimp.php:403
1754
- #: widgets/mail-chimp/mail-chimp.php:470 widgets/mail-chimp/mail-chimp.php:663
1755
- #: widgets/mail-chimp/mail-chimp.php:883
1756
- #: widgets/motion-text/motion-text.php:116 widgets/page-list/page-list.php:112
1757
- #: widgets/page-list/page-list.php:146 widgets/page-list/page-list.php:221
1758
- #: widgets/page-list/page-list.php:265 widgets/post-list/post-list.php:145
1759
- #: widgets/post-list/post-list.php:157 widgets/post-list/post-list.php:190
1760
- #: widgets/post-list/post-list.php:202 widgets/post-list/post-list.php:234
1761
- #: widgets/post-tab/post-tab.php:88 widgets/social-share/social-share.php:500
1762
- #: widgets/social/social.php:536 widgets/tab/tab.php:80 widgets/tab/tab.php:136
1763
- #: widgets/table/table.php:924 widgets/table/table.php:1197
1764
- #: widgets/table/table.php:2391 widgets/team/team.php:114
1765
- #: widgets/team/team.php:146 widgets/team/team.php:182
1766
- #: widgets/team/team.php:1035 widgets/team/team.php:1615
1767
- #: widgets/testimonial/testimonial.php:160
1768
- #: widgets/testimonial/testimonial.php:177
1769
- #: widgets/twitter-feed/twitter-feed.php:48
1770
- #: widgets/twitter-feed/twitter-feed.php:60
1771
- #: widgets/twitter-feed/twitter-feed.php:75
1772
- #: widgets/twitter-feed/twitter-feed.php:133
1773
- #: widgets/twitter-feed/twitter-feed.php:168
1774
- #: widgets/twitter-feed/twitter-feed.php:209
1775
- #: widgets/twitter-feed/twitter-feed.php:227
1776
- #: widgets/twitter-feed/twitter-feed.php:238
1777
- #: widgets/twitter-feed/twitter-feed.php:249
1778
- #: widgets/vertical-menu/vertical-menu.php:76
1779
- #: widgets/vertical-menu/vertical-menu.php:87 widgets/video/video.php:385
1780
- #: widgets/woo-category-list/woo-category-list.php:372
1781
- msgid "Show"
1782
- msgstr ""
1783
-
1784
- #: modules/parallax/section-controls.php:26
1785
- #: modules/parallax/section-controls.php:53 widgets/accordion/accordion.php:149
1786
- #: widgets/advanced-accordion/advanced-accordion.php:146
1787
- #: widgets/advanced-tab/advanced-tab.php:82
1788
- #: widgets/advanced-tab/advanced-tab.php:138
1789
- #: widgets/blog-posts/blog-posts.php:1884
1790
- #: widgets/caldera-forms/caldera-forms.php:648
1791
- #: widgets/client-logo/client-logo.php:432
1792
- #: widgets/contact-form7/contact-form7.php:648
1793
- #: widgets/dual-button/dual-button.php:924
1794
- #: widgets/facebook-feed/facebook-feed.php:119
1795
- #: widgets/facebook-feed/facebook-feed.php:161
1796
- #: widgets/facebook-feed/facebook-feed.php:174
1797
- #: widgets/facebook-feed/facebook-feed.php:186
1798
- #: widgets/facebook-feed/facebook-feed.php:607 widgets/gallery/gallery.php:228
1799
- #: widgets/gallery/gallery.php:240 widgets/gallery/gallery.php:253
1800
- #: widgets/gallery/gallery.php:265 widgets/gallery/gallery.php:990
1801
- #: widgets/gallery/gallery.php:1884 widgets/gallery/gallery.php:2146
1802
- #: widgets/gallery/gallery.php:2389 widgets/header-search/header-search.php:243
1803
- #: widgets/hotspot/hotspot.php:77 widgets/hotspot/hotspot.php:104
1804
- #: widgets/hotspot/hotspot.php:303 widgets/hotspot/hotspot.php:516
1805
- #: widgets/icon-box/icon-box.php:450
1806
- #: widgets/instagram-feed/instagram-feed.php:79
1807
- #: widgets/instagram-feed/instagram-feed.php:114
1808
- #: widgets/instagram-feed/instagram-feed.php:163
1809
- #: widgets/instagram-feed/instagram-feed.php:178
1810
- #: widgets/instagram-feed/instagram-feed.php:194
1811
- #: widgets/instagram-feed/instagram-feed.php:206
1812
- #: widgets/instagram-feed/instagram-feed.php:219
1813
- #: widgets/mail-chimp/mail-chimp.php:141 widgets/mail-chimp/mail-chimp.php:235
1814
- #: widgets/mail-chimp/mail-chimp.php:327 widgets/mail-chimp/mail-chimp.php:404
1815
- #: widgets/mail-chimp/mail-chimp.php:471 widgets/mail-chimp/mail-chimp.php:664
1816
- #: widgets/mail-chimp/mail-chimp.php:884
1817
- #: widgets/motion-text/motion-text.php:117 widgets/page-list/page-list.php:113
1818
- #: widgets/page-list/page-list.php:147 widgets/page-list/page-list.php:222
1819
- #: widgets/page-list/page-list.php:266 widgets/post-list/post-list.php:146
1820
- #: widgets/post-list/post-list.php:158 widgets/post-list/post-list.php:191
1821
- #: widgets/post-list/post-list.php:203 widgets/post-list/post-list.php:235
1822
- #: widgets/post-tab/post-tab.php:89 widgets/social-share/social-share.php:501
1823
- #: widgets/social/social.php:537 widgets/tab/tab.php:81 widgets/tab/tab.php:137
1824
- #: widgets/table/table.php:925 widgets/table/table.php:1198
1825
- #: widgets/table/table.php:2392 widgets/team/team.php:115
1826
- #: widgets/team/team.php:147 widgets/team/team.php:183
1827
- #: widgets/team/team.php:1036 widgets/team/team.php:1616
1828
- #: widgets/testimonial/testimonial.php:161
1829
- #: widgets/testimonial/testimonial.php:178
1830
- #: widgets/twitter-feed/twitter-feed.php:49
1831
- #: widgets/twitter-feed/twitter-feed.php:61
1832
- #: widgets/twitter-feed/twitter-feed.php:76
1833
- #: widgets/twitter-feed/twitter-feed.php:134
1834
- #: widgets/twitter-feed/twitter-feed.php:169
1835
- #: widgets/twitter-feed/twitter-feed.php:210
1836
- #: widgets/twitter-feed/twitter-feed.php:228
1837
- #: widgets/twitter-feed/twitter-feed.php:239
1838
- #: widgets/twitter-feed/twitter-feed.php:250
1839
- #: widgets/vertical-menu/vertical-menu.php:77
1840
- #: widgets/vertical-menu/vertical-menu.php:88 widgets/video/video.php:386
1841
- #: widgets/woo-category-list/woo-category-list.php:373
1842
- msgid "Hide"
1843
- msgstr ""
1844
-
1845
- #: modules/parallax/section-controls.php:33
1846
- #: modules/parallax/section-controls.php:409
1847
- #: modules/parallax/widget-controls.php:921
1848
- #: modules/parallax/widget-controls.php:1000
1849
- #: modules/parallax/widget-controls.php:1053
1850
- #: widgets/testimonial/testimonial.php:474
1851
- msgid "Speed"
1852
- msgstr ""
1853
-
1854
- #: modules/parallax/section-controls.php:49
1855
- msgid "Multi Item Parallax"
1856
- msgstr ""
1857
-
1858
- #: modules/parallax/section-controls.php:59
1859
- #: modules/parallax/widget-controls.php:24
1860
- msgid "Effect Type"
1861
- msgstr ""
1862
-
1863
- #: modules/parallax/section-controls.php:63
1864
- msgid "Css Animation"
1865
- msgstr ""
1866
-
1867
- #: modules/parallax/section-controls.php:64
1868
- #: modules/parallax/widget-controls.php:970
1869
- msgid "Mouse Move"
1870
- msgstr ""
1871
-
1872
- #: modules/parallax/section-controls.php:65
1873
- msgid "On Scroll"
1874
- msgstr ""
1875
-
1876
- #: modules/parallax/section-controls.php:66
1877
- msgid "Parallax Tilt"
1878
- msgstr ""
1879
-
1880
- #: modules/parallax/section-controls.php:73
1881
- msgid "Item source"
1882
- msgstr ""
1883
-
1884
- #: modules/parallax/section-controls.php:95
1885
- #: widgets/advanced-tab/advanced-tab.php:429 widgets/funfact/funfact.php:122
1886
- #: widgets/heading/heading.php:255 widgets/hotspot/hotspot.php:239
1887
- #: widgets/icon-box/icon-box.php:98 widgets/icon-box/icon-box.php:1360
1888
- #: widgets/image-box/image-box.php:45
1889
- #: widgets/image-comparison/image-comparison.php:70
1890
- #: widgets/image-comparison/image-comparison.php:96
1891
- #: widgets/piechart/piechart.php:123 widgets/pricing/pricing.php:135
1892
- #: widgets/tab/tab.php:378 widgets/woo-category-list/woo-category-list.php:148
1893
- msgid "Choose Image"
1894
- msgstr ""
1895
-
1896
- #: modules/parallax/section-controls.php:105
1897
- msgid "Choose Shape"
1898
- msgstr ""
1899
-
1900
- #: modules/parallax/section-controls.php:109
1901
- msgid "Shape 1"
1902
- msgstr ""
1903
-
1904
- #: modules/parallax/section-controls.php:110
1905
- msgid "Shape 2"
1906
- msgstr ""
1907
-
1908
- #: modules/parallax/section-controls.php:111
1909
- msgid "Shape 3"
1910
- msgstr ""
1911
-
1912
- #: modules/parallax/section-controls.php:112
1913
- msgid "Shape 4"
1914
- msgstr ""
1915
-
1916
- #: modules/parallax/section-controls.php:113
1917
- msgid "Shape 5"
1918
- msgstr ""
1919
-
1920
- #: modules/parallax/section-controls.php:114
1921
- msgid "Shape 6"
1922
- msgstr ""
1923
-
1924
- #: modules/parallax/section-controls.php:115
1925
- msgid "Shape 7"
1926
- msgstr ""
1927
-
1928
- #: modules/parallax/section-controls.php:116
1929
- msgid "Shape 8"
1930
- msgstr ""
1931
-
1932
- #: modules/parallax/section-controls.php:117
1933
- msgid "Shape 9"
1934
- msgstr ""
1935
-
1936
- #: modules/parallax/section-controls.php:118
1937
- msgid "Shape 10"
1938
- msgstr ""
1939
-
1940
- #: modules/parallax/section-controls.php:119
1941
- msgid "Shape 11"
1942
- msgstr ""
1943
-
1944
- #: modules/parallax/section-controls.php:120
1945
- msgid "Shape 12"
1946
- msgstr ""
1947
-
1948
- #: modules/parallax/section-controls.php:121
1949
- msgid "Shape 13"
1950
- msgstr ""
1951
-
1952
- #: modules/parallax/section-controls.php:122
1953
- msgid "Shape 14"
1954
- msgstr ""
1955
-
1956
- #: modules/parallax/section-controls.php:133
1957
- #: widgets/accordion/accordion.php:244 widgets/accordion/accordion.php:336
1958
- #: widgets/accordion/accordion.php:473 widgets/accordion/accordion.php:625
1959
- #: widgets/accordion/accordion.php:687
1960
- #: widgets/advanced-accordion/advanced-accordion.php:241
1961
- #: widgets/advanced-accordion/advanced-accordion.php:333
1962
- #: widgets/advanced-accordion/advanced-accordion.php:470
1963
- #: widgets/advanced-accordion/advanced-accordion.php:622
1964
- #: widgets/advanced-accordion/advanced-accordion.php:683
1965
- #: widgets/advanced-tab/advanced-tab.php:2097
1966
- #: widgets/advanced-tab/advanced-tab.php:2117
1967
- #: widgets/blog-posts/blog-posts.php:975 widgets/blog-posts/blog-posts.php:1046
1968
- #: widgets/blog-posts/blog-posts.php:1299
1969
- #: widgets/blog-posts/blog-posts.php:1324
1970
- #: widgets/blog-posts/blog-posts.php:1577
1971
- #: widgets/blog-posts/blog-posts.php:1605
1972
- #: widgets/blog-posts/blog-posts.php:1807
1973
- #: widgets/business-hours/business-hours.php:249
1974
- #: widgets/business-hours/business-hours.php:313
1975
- #: widgets/caldera-forms/caldera-forms.php:88
1976
- #: widgets/caldera-forms/caldera-forms.php:131
1977
- #: widgets/caldera-forms/caldera-forms.php:486
1978
- #: widgets/caldera-forms/caldera-forms.php:757
1979
- #: widgets/caldera-forms/caldera-forms.php:816
1980
- #: widgets/category-list/category-list.php:275
1981
- #: widgets/category-list/category-list.php:304
1982
- #: widgets/contact-form7/contact-form7.php:87
1983
- #: widgets/contact-form7/contact-form7.php:130
1984
- #: widgets/contact-form7/contact-form7.php:486
1985
- #: widgets/contact-form7/contact-form7.php:757
1986
- #: widgets/contact-form7/contact-form7.php:816
1987
- #: widgets/countdown-timer/countdown-timer.php:350
1988
- #: widgets/countdown-timer/countdown-timer.php:396
1989
- #: widgets/countdown-timer/countdown-timer.php:550
1990
- #: widgets/countdown-timer/countdown-timer.php:608
1991
- #: widgets/countdown-timer/countdown-timer.php:825
1992
- #: widgets/countdown-timer/countdown-timer.php:884
1993
- #: widgets/countdown-timer/countdown-timer.php:1098
1994
- #: widgets/countdown-timer/countdown-timer.php:1159
1995
- #: widgets/countdown-timer/countdown-timer.php:1374
1996
- #: widgets/countdown-timer/countdown-timer.php:1435
1997
- #: widgets/drop-caps/drop-caps.php:67 widgets/drop-caps/drop-caps.php:155
1998
- #: widgets/dual-button/dual-button.php:426
1999
- #: widgets/dual-button/dual-button.php:568
2000
- #: widgets/dual-button/dual-button.php:647
2001
- #: widgets/dual-button/dual-button.php:787
2002
- #: widgets/dual-button/dual-button.php:859
2003
- #: widgets/facebook-feed/facebook-feed.php:964 widgets/faq/faq.php:192
2004
- #: widgets/funfact/funfact.php:533 widgets/funfact/funfact.php:831
2005
- #: widgets/gallery/gallery.php:1643 widgets/gallery/gallery.php:1792
2006
- #: widgets/gallery/gallery.php:1874 widgets/gallery/gallery.php:2666
2007
- #: widgets/gallery/gallery.php:2765
2008
- #: widgets/header-offcanvas/header-offcanvas.php:136
2009
- #: widgets/header-offcanvas/header-offcanvas.php:169
2010
- #: widgets/header-offcanvas/header-offcanvas.php:331
2011
- #: widgets/header-offcanvas/header-offcanvas.php:364
2012
- #: widgets/header-search/header-search.php:110
2013
- #: widgets/header-search/header-search.php:140 widgets/heading/heading.php:501
2014
- #: widgets/icon-box/icon-box.php:836 widgets/icon-box/icon-box.php:876
2015
- #: widgets/image-accordion/image-accordion.php:379
2016
- #: widgets/image-box/image-box.php:1125 widgets/image-box/image-box.php:1209
2017
- #: widgets/image-comparison/image-comparison.php:262
2018
- #: widgets/image-comparison/image-comparison.php:323
2019
- #: widgets/instagram-feed/instagram-feed.php:531
2020
- #: widgets/instagram-feed/instagram-feed.php:552
2021
- #: widgets/instagram-feed/instagram-feed.php:573
2022
- #: widgets/instagram-feed/instagram-feed.php:603
2023
- #: widgets/instagram-feed/instagram-feed.php:624
2024
- #: widgets/instagram-feed/instagram-feed.php:645
2025
- #: widgets/instagram-feed/instagram-feed.php:749
2026
- #: widgets/instagram-feed/instagram-feed.php:765
2027
- #: widgets/instagram-feed/instagram-feed.php:790
2028
- #: widgets/instagram-feed/instagram-feed.php:806
2029
- #: widgets/instagram-feed/instagram-feed.php:831
2030
- #: widgets/instagram-feed/instagram-feed.php:846
2031
- #: widgets/instagram-feed/instagram-feed.php:889
2032
- #: widgets/instagram-feed/instagram-feed.php:905
2033
- #: widgets/instagram-feed/instagram-feed.php:930
2034
- #: widgets/instagram-feed/instagram-feed.php:946
2035
- #: widgets/mail-chimp/mail-chimp.php:556 widgets/mail-chimp/mail-chimp.php:946
2036
- #: widgets/mail-chimp/mail-chimp.php:980 widgets/mail-chimp/mail-chimp.php:1125
2037
- #: widgets/mail-chimp/mail-chimp.php:1256
2038
- #: widgets/mail-chimp/mail-chimp.php:1292
2039
- #: widgets/motion-text/motion-text.php:288
2040
- #: widgets/ninja-forms/ninja-forms.php:184 widgets/page-list/page-list.php:173
2041
- #: widgets/page-list/page-list.php:304 widgets/page-list/page-list.php:649
2042
- #: widgets/page-list/page-list.php:817 widgets/post-list/post-list.php:442
2043
- #: widgets/post-list/post-list.php:474 widgets/post-list/post-list.php:672
2044
- #: widgets/post-list/post-list.php:717 widgets/post-tab/post-tab.php:208
2045
- #: widgets/post-tab/post-tab.php:275 widgets/pricing/pricing.php:497
2046
- #: widgets/pricing/pricing.php:716 widgets/pricing/pricing.php:734
2047
- #: widgets/pricing/pricing.php:1039 widgets/pricing/pricing.php:1501
2048
- #: widgets/pricing/pricing.php:1530 widgets/pricing/pricing.php:1751
2049
- #: widgets/pricing/pricing.php:1777 widgets/pricing/pricing.php:1833
2050
- #: widgets/progressbar/progressbar.php:308
2051
- #: widgets/progressbar/progressbar.php:341
2052
- #: widgets/progressbar/progressbar.php:407
2053
- #: widgets/social-share/social-share.php:245
2054
- #: widgets/social-share/social-share.php:307 widgets/social/social.php:207
2055
- #: widgets/social/social.php:269 widgets/table/table.php:1734
2056
- #: widgets/table/table.php:1767 widgets/table/table.php:1799
2057
- #: widgets/table/table.php:1843 widgets/table/table.php:1889
2058
- #: widgets/table/table.php:1909 widgets/table/table.php:2008
2059
- #: widgets/table/table.php:2037 widgets/table/table.php:2549
2060
- #: widgets/table/table.php:2577 widgets/table/table.php:2605
2061
- #: widgets/tablepress/tablepress.php:197 widgets/tablepress/tablepress.php:609
2062
- #: widgets/team/team.php:241 widgets/team/team.php:304
2063
- #: widgets/team/team.php:1127 widgets/team/team.php:1166
2064
- #: widgets/team/team.php:1229 widgets/team/team.php:1248
2065
- #: widgets/team/team.php:1306 widgets/team/team.php:1326
2066
- #: widgets/team/team.php:1403 widgets/team/team.php:1423
2067
- #: widgets/team/team.php:1820 widgets/team/team.php:1872
2068
- #: widgets/team/team.php:1931 widgets/testimonial/testimonial.php:856
2069
- #: widgets/testimonial/testimonial.php:877
2070
- #: widgets/testimonial/testimonial.php:903
2071
- #: widgets/testimonial/testimonial.php:985
2072
- #: widgets/testimonial/testimonial.php:1009
2073
- #: widgets/testimonial/testimonial.php:1345
2074
- #: widgets/testimonial/testimonial.php:1365
2075
- #: widgets/testimonial/testimonial.php:1441
2076
- #: widgets/testimonial/testimonial.php:1461
2077
- #: widgets/testimonial/testimonial.php:2126
2078
- #: widgets/testimonial/testimonial.php:2176 widgets/timeline/timeline.php:673
2079
- #: widgets/timeline/timeline.php:746 widgets/twitter-feed/twitter-feed.php:640
2080
- #: widgets/twitter-feed/twitter-feed.php:662
2081
- #: widgets/twitter-feed/twitter-feed.php:684
2082
- #: widgets/twitter-feed/twitter-feed.php:705
2083
- #: widgets/twitter-feed/twitter-feed.php:733
2084
- #: widgets/twitter-feed/twitter-feed.php:756
2085
- #: widgets/twitter-feed/twitter-feed.php:778
2086
- #: widgets/twitter-feed/twitter-feed.php:804
2087
- #: widgets/twitter-feed/twitter-feed.php:895
2088
- #: widgets/twitter-feed/twitter-feed.php:916
2089
- #: widgets/twitter-feed/twitter-feed.php:977
2090
- #: widgets/twitter-feed/twitter-feed.php:998
2091
- #: widgets/twitter-feed/twitter-feed.php:1034
2092
- #: widgets/twitter-feed/twitter-feed.php:1110
2093
- #: widgets/twitter-feed/twitter-feed.php:1132
2094
- #: widgets/twitter-feed/twitter-feed.php:1154
2095
- #: widgets/vertical-menu/vertical-menu.php:195
2096
- #: widgets/vertical-menu/vertical-menu.php:250
2097
- #: widgets/vertical-menu/vertical-menu.php:349
2098
- #: widgets/vertical-menu/vertical-menu.php:403
2099
- #: widgets/vertical-menu/vertical-menu.php:470
2100
- #: widgets/vertical-menu/vertical-menu.php:512
2101
- #: widgets/woo-category-list/woo-category-list.php:647
2102
- #: widgets/woo-category-list/woo-category-list.php:676
2103
- #: widgets/woo-category-list/woo-category-list.php:729
2104
- #: widgets/woo-category-list/woo-category-list.php:749
2105
- #: widgets/woo-category-list/woo-category-list.php:942
2106
- #: widgets/woo-category-list/woo-category-list.php:971
2107
- #: widgets/woo-category-list/woo-category-list.php:1023
2108
- #: widgets/woo-category-list/woo-category-list.php:1043
2109
- #: widgets/woo-mini-cart/woo-mini-cart.php:195
2110
- #: widgets/woo-mini-cart/woo-mini-cart.php:233
2111
- #: widgets/woo-mini-cart/woo-mini-cart.php:417
2112
- #: widgets/woo-mini-cart/woo-mini-cart.php:438
2113
- #: widgets/woo-mini-cart/woo-mini-cart.php:538
2114
- #: widgets/woo-mini-cart/woo-mini-cart.php:559
2115
- #: widgets/woo-mini-cart/woo-mini-cart.php:599
2116
- #: widgets/woo-mini-cart/woo-mini-cart.php:620
2117
- #: widgets/woo-mini-cart/woo-mini-cart.php:804
2118
- #: widgets/woo-mini-cart/woo-mini-cart.php:848
2119
- #: widgets/woo-mini-cart/woo-mini-cart.php:945
2120
- #: widgets/woo-mini-cart/woo-mini-cart.php:975
2121
- #: widgets/woo-mini-cart/woo-mini-cart.php:1058
2122
- #: widgets/woo-mini-cart/woo-mini-cart.php:1095
2123
- #: widgets/woo-product-carousel/woo-product-carousel.php:755
2124
- #: widgets/woo-product-carousel/woo-product-carousel.php:823
2125
- #: widgets/woo-product-carousel/woo-product-carousel.php:895
2126
- #: widgets/woo-product-carousel/woo-product-carousel.php:949
2127
- #: widgets/woo-product-carousel/woo-product-carousel.php:1759
2128
- #: widgets/woo-product-carousel/woo-product-carousel.php:1878
2129
- #: widgets/woo-product-carousel/woo-product-carousel.php:2425
2130
- #: widgets/woo-product-carousel/woo-product-carousel.php:2795
2131
- #: widgets/woo-product-carousel/woo-product-carousel.php:2832
2132
- #: widgets/woo-product-list/woo-product-list.php:917
2133
- #: widgets/woo-product-list/woo-product-list.php:985
2134
- #: widgets/woo-product-list/woo-product-list.php:1058
2135
- #: widgets/woo-product-list/woo-product-list.php:1112
2136
- #: widgets/woo-product-list/woo-product-list.php:1781
2137
- #: widgets/woo-product-list/woo-product-list.php:1818
2138
- #: widgets/woo-product-list/woo-product-list.php:2091
2139
- #: widgets/woo-product-list/woo-product-list.php:2174
2140
- #: widgets/woo-product-list/woo-product-list.php:2213
2141
- msgid "Color"
2142
- msgstr ""
2143
-
2144
- #: modules/parallax/section-controls.php:147
2145
- #: widgets/accordion/accordion.php:526
2146
- #: widgets/advanced-accordion/advanced-accordion.php:523
2147
- #: widgets/advanced-tab/advanced-tab.php:911
2148
- #: widgets/advanced-tab/advanced-tab.php:1040
2149
- #: widgets/advanced-tab/advanced-tab.php:1161
2150
- #: widgets/advanced-tab/advanced-tab.php:1414
2151
- #: widgets/advanced-tab/advanced-tab.php:1724
2152
- #: widgets/blog-posts/blog-posts.php:1148
2153
- #: widgets/blog-posts/blog-posts.php:1723
2154
- #: widgets/blog-posts/blog-posts.php:1921
2155
- #: widgets/caldera-forms/caldera-forms.php:166
2156
- #: widgets/caldera-forms/caldera-forms.php:657
2157
- #: widgets/category-list/category-list.php:228
2158
- #: widgets/client-logo/client-logo.php:1136
2159
- #: widgets/client-logo/client-logo.php:1223
2160
- #: widgets/client-logo/client-logo.php:1312
2161
- #: widgets/contact-form7/contact-form7.php:165
2162
- #: widgets/contact-form7/contact-form7.php:657
2163
- #: widgets/countdown-timer/countdown-timer.php:210
2164
- #: widgets/dual-button/dual-button.php:934 widgets/funfact/funfact.php:1092
2165
- #: widgets/gallery/gallery.php:1025 widgets/gallery/gallery.php:2158
2166
- #: widgets/gallery/gallery.php:2265 widgets/gallery/gallery.php:2418
2167
- #: widgets/gallery/gallery.php:2505
2168
- #: widgets/header-offcanvas/header-offcanvas.php:506
2169
- #: widgets/header-search/header-search.php:252 widgets/heading/heading.php:589
2170
- #: widgets/heading/heading.php:653 widgets/heading/heading.php:800
2171
- #: widgets/hotspot/hotspot.php:465 widgets/hotspot/hotspot.php:763
2172
- #: widgets/icon-box/icon-box.php:742 widgets/image-box/image-box.php:522
2173
- #: widgets/image-box/image-box.php:578 widgets/image-box/image-box.php:797
2174
- #: widgets/image-box/image-box.php:849 widgets/mail-chimp/mail-chimp.php:673
2175
- #: widgets/mail-chimp/mail-chimp.php:893 widgets/nav-menu/nav-menu.php:258
2176
- #: widgets/nav-menu/nav-menu.php:858 widgets/nav-menu/nav-menu.php:1093
2177
- #: widgets/nav-menu/nav-menu.php:1251 widgets/ninja-forms/ninja-forms.php:585
2178
- #: widgets/ninja-forms/ninja-forms.php:628 widgets/page-list/page-list.php:602
2179
- #: widgets/post-list/post-list.php:395 widgets/pricing/pricing.php:1276
2180
- #: widgets/pricing/pricing.php:1872 widgets/social-share/social-share.php:510
2181
- #: widgets/social/social.php:547 widgets/tab/tab.php:922
2182
- #: widgets/tab/tab.php:1051 widgets/tab/tab.php:1172 widgets/tab/tab.php:1425
2183
- #: widgets/tab/tab.php:1735 widgets/table/table.php:961
2184
- #: widgets/table/table.php:1234 widgets/table/table.php:1638
2185
- #: widgets/table/table.php:2401 widgets/team/team.php:810
2186
- #: widgets/team/team.php:1045 widgets/team/team.php:1625
2187
- #: widgets/team/team.php:2162 widgets/testimonial/testimonial.php:1255
2188
- #: widgets/testimonial/testimonial.php:1771
2189
- #: widgets/testimonial/testimonial.php:1881
2190
- #: widgets/testimonial/testimonial.php:2045
2191
- #: widgets/vertical-menu/vertical-menu.php:441 widgets/video/video.php:395
2192
- #: widgets/woo-category-list/woo-category-list.php:409
2193
- #: widgets/woo-category-list/woo-category-list.php:779
2194
- #: widgets/woo-mini-cart/woo-mini-cart.php:277
2195
- #: widgets/woo-mini-cart/woo-mini-cart.php:721
2196
- #: widgets/wp-forms/wp-forms.php:412 widgets/wp-forms/wp-forms.php:456
2197
- msgid "Width"
2198
- msgstr ""
2199
-
2200
- #: modules/parallax/section-controls.php:151
2201
- msgid "Auto"
2202
- msgstr ""
2203
-
2204
- #: modules/parallax/section-controls.php:152 widgets/heading/heading.php:225
2205
- #: widgets/ninja-forms/ninja-forms.php:590 widgets/table/table.php:51
2206
- #: widgets/wp-forms/wp-forms.php:417
2207
- msgid "Custom"
2208
- msgstr ""
2209
-
2210
- #: modules/parallax/section-controls.php:161
2211
- msgid "Custom Width"
2212
- msgstr ""
2213
-
2214
- #: modules/parallax/section-controls.php:197
2215
- #: modules/parallax/widget-controls.php:250
2216
- #: modules/parallax/widget-controls.php:891 widgets/funfact/funfact.php:702
2217
- #: widgets/gallery/gallery.php:530 widgets/gallery/gallery.php:638
2218
- #: widgets/gallery/gallery.php:811 widgets/icon-box/icon-box.php:709
2219
- #: widgets/pricing/pricing.php:1215
2220
- msgid "Rotate"
2221
- msgstr ""
2222
-
2223
- #: modules/parallax/section-controls.php:221
2224
- #: modules/parallax/widget-controls.php:816 widgets/gallery/gallery.php:531
2225
- #: widgets/gallery/gallery.php:664 widgets/gallery/gallery.php:837
2226
- msgid "Blur"
2227
- msgstr ""
2228
-
2229
- #: modules/parallax/section-controls.php:248
2230
- msgid "Position X (%)"
2231
- msgstr ""
2232
-
2233
- #: modules/parallax/section-controls.php:275
2234
- msgid "Position Y (%)"
2235
- msgstr ""
2236
-
2237
- #: modules/parallax/section-controls.php:303
2238
- #: modules/parallax/widget-controls.php:57 widgets/chart/chart.php:831
2239
- #: widgets/funfact/funfact.php:492 widgets/icon-box/icon-box.php:1180
2240
- #: widgets/pricing/pricing.php:1001
2241
- msgid "Animation"
2242
- msgstr ""
2243
-
2244
- #: modules/parallax/section-controls.php:336
2245
- #: modules/parallax/widget-controls.php:693
2246
- #: modules/parallax/widget-controls.php:846
2247
- #: widgets/client-logo/client-logo.php:728
2248
- #: widgets/client-logo/client-logo.php:764
2249
- #: widgets/facebook-feed/facebook-feed.php:658
2250
- #: widgets/facebook-feed/facebook-feed.php:713 widgets/gallery/gallery.php:528
2251
- #: widgets/gallery/gallery.php:560 widgets/gallery/gallery.php:733
2252
- #: widgets/gallery/gallery.php:1713 widgets/gallery/gallery.php:1829
2253
- #: widgets/twitter-feed/twitter-feed.php:1251
2254
- #: widgets/twitter-feed/twitter-feed.php:1330
2255
- msgid "Opacity"
2256
- msgstr ""
2257
-
2258
- #: modules/parallax/section-controls.php:337
2259
- msgid "Opacity will be (0-1), default value 1"
2260
- msgstr ""
2261
-
2262
- #: modules/parallax/section-controls.php:353
2263
- #: modules/parallax/widget-controls.php:92
2264
- msgid "Animation speed"
2265
- msgstr ""
2266
-
2267
- #: modules/parallax/section-controls.php:372
2268
- #: modules/parallax/widget-controls.php:111
2269
- msgid "Animation Iteration Count"
2270
- msgstr ""
2271
-
2272
- #: modules/parallax/section-controls.php:376
2273
- #: modules/parallax/widget-controls.php:116
2274
- msgid "Infinite"
2275
- msgstr ""
2276
-
2277
- #: modules/parallax/section-controls.php:377
2278
- #: modules/parallax/widget-controls.php:117
2279
- msgid "Unset"
2280
- msgstr ""
2281
-
2282
- #: modules/parallax/section-controls.php:390
2283
- #: modules/parallax/widget-controls.php:131
2284
- msgid "Animation Direction"
2285
- msgstr ""
2286
-
2287
- #: modules/parallax/section-controls.php:394
2288
- #: modules/parallax/widget-controls.php:136
2289
- #: widgets/advanced-tab/advanced-tab.php:694
2290
- #: widgets/advanced-tab/advanced-tab.php:2091
2291
- #: widgets/advanced-toggle/advanced-toggle.php:136
2292
- #: widgets/advanced-toggle/advanced-toggle.php:345
2293
- #: widgets/blog-posts/blog-posts.php:743 widgets/blog-posts/blog-posts.php:968
2294
- #: widgets/blog-posts/blog-posts.php:1570
2295
- #: widgets/blog-posts/blog-posts.php:2009
2296
- #: widgets/blog-posts/blog-posts.php:2251
2297
- #: widgets/blog-posts/blog-posts.php:2345 widgets/button/button.php:211
2298
- #: widgets/button/button.php:319 widgets/caldera-forms/caldera-forms.php:299
2299
- #: widgets/caldera-forms/caldera-forms.php:750 widgets/chart/chart.php:99
2300
- #: widgets/chart/chart.php:207 widgets/client-logo/client-logo.php:519
2301
- #: widgets/client-logo/client-logo.php:664
2302
- #: widgets/client-logo/client-logo.php:721
2303
- #: widgets/client-logo/client-logo.php:966
2304
- #: widgets/client-logo/client-logo.php:1386
2305
- #: widgets/contact-form7/contact-form7.php:299
2306
- #: widgets/contact-form7/contact-form7.php:750
2307
- #: widgets/creative-button/creative-button.php:291
2308
- #: widgets/dual-button/dual-button.php:419
2309
- #: widgets/dual-button/dual-button.php:640
2310
- #: widgets/facebook-feed/facebook-feed.php:332
2311
- #: widgets/facebook-feed/facebook-feed.php:456
2312
- #: widgets/facebook-feed/facebook-feed.php:522
2313
- #: widgets/facebook-feed/facebook-feed.php:628
2314
- #: widgets/facebook-feed/facebook-feed.php:778 widgets/funfact/funfact.php:421
2315
- #: widgets/funfact/funfact.php:526 widgets/gallery/gallery.php:467
2316
- #: widgets/gallery/gallery.php:527 widgets/gallery/gallery.php:550
2317
- #: widgets/gallery/gallery.php:1101 widgets/gallery/gallery.php:1291
2318
- #: widgets/gallery/gallery.php:1480 widgets/gallery/gallery.php:1636
2319
- #: widgets/gallery/gallery.php:1862 widgets/gallery/gallery.php:1895
2320
- #: widgets/gallery/gallery.php:2650 widgets/header-search/header-search.php:104
2321
- #: widgets/icon-box/icon-box.php:509 widgets/icon-box/icon-box.php:1053
2322
- #: widgets/icon-box/icon-box.php:1204 widgets/icon-box/icon-box.php:1409
2323
- #: widgets/image-accordion/image-accordion.php:543
2324
- #: widgets/image-accordion/image-accordion.php:728
2325
- #: widgets/image-box/image-box.php:376 widgets/image-box/image-box.php:935
2326
- #: widgets/image-box/image-box.php:1097 widgets/image-box/image-box.php:1182
2327
- #: widgets/image-box/image-box.php:1311
2328
- #: widgets/image-comparison/image-comparison.php:431
2329
- #: widgets/instagram-feed/instagram-feed.php:515
2330
- #: widgets/instagram-feed/instagram-feed.php:733
2331
- #: widgets/instagram-feed/instagram-feed.php:1103
2332
- #: widgets/mail-chimp/mail-chimp.php:939 widgets/nav-menu/nav-menu.php:350
2333
- #: widgets/nav-menu/nav-menu.php:556 widgets/nav-menu/nav-menu.php:943
2334
- #: widgets/nav-menu/nav-menu.php:1149 widgets/ninja-forms/ninja-forms.php:264
2335
- #: widgets/ninja-forms/ninja-forms.php:656 widgets/piechart/piechart.php:432
2336
- #: widgets/piechart/piechart.php:556 widgets/post-list/post-list.php:665
2337
- #: widgets/post-tab/post-tab.php:201 widgets/pricing/pricing.php:473
2338
- #: widgets/pricing/pricing.php:581 widgets/pricing/pricing.php:710
2339
- #: widgets/pricing/pricing.php:807 widgets/pricing/pricing.php:930
2340
- #: widgets/pricing/pricing.php:1032 widgets/pricing/pricing.php:1494
2341
- #: widgets/pricing/pricing.php:1591 widgets/pricing/pricing.php:1745
2342
- #: widgets/pricing/pricing.php:1999 widgets/pricing/pricing.php:2112
2343
- #: widgets/pricing/pricing.php:2194 widgets/social-share/social-share.php:237
2344
- #: widgets/social/social.php:199 widgets/tab/tab.php:705
2345
- #: widgets/table/table.php:1086 widgets/table/table.php:1356
2346
- #: widgets/table/table.php:1468 widgets/table/table.php:1727
2347
- #: widgets/table/table.php:1882 widgets/tablepress/tablepress.php:479
2348
- #: widgets/team/team.php:233 widgets/team/team.php:543
2349
- #: widgets/team/team.php:1121 widgets/team/team.php:1222
2350
- #: widgets/team/team.php:1299 widgets/team/team.php:1396
2351
- #: widgets/team/team.php:1969 widgets/testimonial/testimonial.php:978
2352
- #: widgets/testimonial/testimonial.php:1205
2353
- #: widgets/testimonial/testimonial.php:1338
2354
- #: widgets/testimonial/testimonial.php:1434
2355
- #: widgets/testimonial/testimonial.php:2119 widgets/timeline/timeline.php:166
2356
- #: widgets/timeline/timeline.php:487 widgets/timeline/timeline.php:1017
2357
- #: widgets/twitter-feed/twitter-feed.php:370
2358
- #: widgets/twitter-feed/twitter-feed.php:625
2359
- #: widgets/twitter-feed/twitter-feed.php:888
2360
- #: widgets/twitter-feed/twitter-feed.php:970
2361
- #: widgets/twitter-feed/twitter-feed.php:1027
2362
- #: widgets/twitter-feed/twitter-feed.php:1220
2363
- #: widgets/vertical-menu/vertical-menu.php:178
2364
- #: widgets/vertical-menu/vertical-menu.php:332
2365
- #: widgets/vertical-menu/vertical-menu.php:434 widgets/video/video.php:509
2366
- #: widgets/video/video.php:612 widgets/we-forms/we-forms.php:171
2367
- #: widgets/we-forms/we-forms.php:500
2368
- #: widgets/woo-category-list/woo-category-list.php:248
2369
- #: widgets/woo-category-list/woo-category-list.php:438
2370
- #: widgets/woo-category-list/woo-category-list.php:640
2371
- #: widgets/woo-category-list/woo-category-list.php:722
2372
- #: widgets/woo-category-list/woo-category-list.php:935
2373
- #: widgets/woo-category-list/woo-category-list.php:1016
2374
- #: widgets/woo-mini-cart/woo-mini-cart.php:188
2375
- #: widgets/woo-mini-cart/woo-mini-cart.php:410
2376
- #: widgets/woo-mini-cart/woo-mini-cart.php:531
2377
- #: widgets/woo-mini-cart/woo-mini-cart.php:592
2378
- #: widgets/woo-mini-cart/woo-mini-cart.php:797
2379
- #: widgets/woo-mini-cart/woo-mini-cart.php:1051
2380
- #: widgets/woo-product-carousel/woo-product-carousel.php:501
2381
- #: widgets/woo-product-carousel/woo-product-carousel.php:1228
2382
- #: widgets/woo-product-carousel/woo-product-carousel.php:1437
2383
- #: widgets/woo-product-carousel/woo-product-carousel.php:1646
2384
- #: widgets/woo-product-carousel/woo-product-carousel.php:1752
2385
- #: widgets/woo-product-carousel/woo-product-carousel.php:2104
2386
- #: widgets/woo-product-carousel/woo-product-carousel.php:2331
2387
- #: widgets/woo-product-carousel/woo-product-carousel.php:2599
2388
- #: widgets/woo-product-carousel/woo-product-carousel.php:2788
2389
- #: widgets/woo-product-list/woo-product-list.php:331
2390
- #: widgets/woo-product-list/woo-product-list.php:525
2391
- #: widgets/woo-product-list/woo-product-list.php:665
2392
- #: widgets/woo-product-list/woo-product-list.php:1392
2393
- #: widgets/woo-product-list/woo-product-list.php:1601
2394
- #: widgets/woo-product-list/woo-product-list.php:1774
2395
- #: widgets/woo-product-list/woo-product-list.php:1980
2396
- #: widgets/woo-product-list/woo-product-list.php:2387
2397
- #: widgets/wp-forms/wp-forms.php:127 widgets/wp-forms/wp-forms.php:480
2398
- msgid "Normal"
2399
- msgstr ""
2400
-
2401
- #: modules/parallax/section-controls.php:395
2402
- #: modules/parallax/widget-controls.php:137
2403
- msgid "Reverse"
2404
- msgstr ""
2405
-
2406
- #: modules/parallax/section-controls.php:396
2407
- #: modules/parallax/widget-controls.php:138
2408
- msgid "Alternate"
2409
- msgstr ""
2410
-
2411
- #: modules/parallax/section-controls.php:422
2412
- msgid "Parallax style"
2413
- msgstr ""
2414
-
2415
- #: modules/parallax/section-controls.php:426
2416
- #: modules/parallax/section-controls.php:516
2417
- msgid "X axis"
2418
- msgstr ""
2419
-
2420
- #: modules/parallax/section-controls.php:427
2421
- #: modules/parallax/section-controls.php:517
2422
- msgid "Y axis"
2423
- msgstr ""
2424
-
2425
- #: modules/parallax/section-controls.php:428
2426
- msgid "rotate"
2427
- msgstr ""
2428
-
2429
- #: modules/parallax/section-controls.php:429
2430
- msgid "rotateX"
2431
- msgstr ""
2432
-
2433
- #: modules/parallax/section-controls.php:430
2434
- msgid "rotateY"
2435
- msgstr ""
2436
-
2437
- #: modules/parallax/section-controls.php:431
2438
- msgid "scale"
2439
- msgstr ""
2440
-
2441
- #: modules/parallax/section-controls.php:432
2442
- msgid "scaleX"
2443
- msgstr ""
2444
-
2445
- #: modules/parallax/section-controls.php:433
2446
- msgid "scaleY"
2447
- msgstr ""
2448
-
2449
- #: modules/parallax/section-controls.php:442
2450
- msgid "Parallax Transition "
2451
- msgstr ""
2452
-
2453
- #: modules/parallax/section-controls.php:443
2454
- msgid ""
2455
- "X, Y and Z Axis will be pixels, Rotate will be degrees (0-180), scale will "
2456
- "be ratio"
2457
- msgstr ""
2458
-
2459
- #: modules/parallax/section-controls.php:453
2460
- msgid "Smoothness"
2461
- msgstr ""
2462
-
2463
- #: modules/parallax/section-controls.php:454
2464
- msgid ""
2465
- "factor that slowdown the animation, the more the smoothier (default: 700)"
2466
- msgstr ""
2467
-
2468
- #: modules/parallax/section-controls.php:467
2469
- msgid "Offset Top"
2470
- msgstr ""
2471
-
2472
- #: modules/parallax/section-controls.php:468
2473
- #: modules/parallax/section-controls.php:479
2474
- msgid "default: 0; when the element is visible"
2475
- msgstr ""
2476
-
2477
- #: modules/parallax/section-controls.php:478
2478
- msgid "Offset Bottom"
2479
- msgstr ""
2480
-
2481
- #: modules/parallax/section-controls.php:489
2482
- msgid "MaxTilt"
2483
- msgstr ""
2484
-
2485
- #: modules/parallax/section-controls.php:499
2486
- msgid "Image Scale"
2487
- msgstr ""
2488
-
2489
- #: modules/parallax/section-controls.php:500
2490
- msgid "2 = 200%, 1.5 = 150%, etc.. Default 1"
2491
- msgstr ""
2492
-
2493
- #: modules/parallax/section-controls.php:510
2494
- msgid "Disable Axis"
2495
- msgstr ""
2496
-
2497
- #: modules/parallax/section-controls.php:511
2498
- msgid "What axis should be disabled. Can be X or Y."
2499
- msgstr ""
2500
-
2501
- #: modules/parallax/section-controls.php:527
2502
- msgid "Z-index"
2503
- msgstr ""
2504
-
2505
- #: modules/parallax/section-controls.php:529
2506
- #: widgets/blog-posts/blog-posts.php:99 widgets/testimonial/testimonial.php:317
2507
- msgid "2"
2508
- msgstr ""
2509
-
2510
- #: modules/parallax/section-controls.php:538
2511
- msgid "Parallax"
2512
- msgstr ""
2513
-
2514
- #: modules/parallax/section-controls.php:553
2515
- msgid "Section Overflow"
2516
- msgstr ""
2517
-
2518
- #: modules/parallax/section-controls.php:557
2519
- msgid "Visible"
2520
- msgstr ""
2521
-
2522
- #: modules/parallax/section-controls.php:558
2523
- msgid "Hidden"
2524
- msgstr ""
2525
-
2526
- #: modules/parallax/widget-controls.php:31
2527
- msgid "CSS effect"
2528
- msgstr ""
2529
-
2530
- #: modules/parallax/widget-controls.php:32
2531
- msgid "On Scroll effect"
2532
- msgstr ""
2533
-
2534
- #: modules/parallax/widget-controls.php:33
2535
- msgid "Mouse move effect"
2536
- msgstr ""
2537
-
2538
- #: modules/parallax/widget-controls.php:44
2539
- msgid "CSS Animation"
2540
- msgstr ""
2541
-
2542
- #: modules/parallax/widget-controls.php:46
2543
- #: widgets/category-list/category-list.php:172
2544
- #: widgets/page-list/page-list.php:546 widgets/post-list/post-list.php:339
2545
- msgid "On"
2546
- msgstr ""
2547
-
2548
- #: modules/parallax/widget-controls.php:48
2549
- #: widgets/category-list/category-list.php:171
2550
- #: widgets/page-list/page-list.php:545 widgets/post-list/post-list.php:338
2551
- msgid "Off"
2552
- msgstr ""
2553
-
2554
- #: modules/parallax/widget-controls.php:166
2555
- msgid "CSS Transform"
2556
- msgstr ""
2557
-
2558
- #: modules/parallax/widget-controls.php:179
2559
- msgid "Translate"
2560
- msgstr ""
2561
-
2562
- #: modules/parallax/widget-controls.php:195
2563
- msgid "Left-RIght"
2564
- msgstr ""
2565
-
2566
- #: modules/parallax/widget-controls.php:216 widgets/icon-box/icon-box.php:477
2567
- #: widgets/woo-product-carousel/woo-product-carousel.php:39
2568
- #: widgets/woo-product-carousel/woo-product-carousel.php:54
2569
- msgid "Top Right"
2570
- msgstr ""
2571
-
2572
- #: modules/parallax/widget-controls.php:265
2573
- msgid "Rotate Round (Z)"
2574
- msgstr ""
2575
-
2576
- #: modules/parallax/widget-controls.php:300
2577
- msgid "Rotate Top Bottom (X)"
2578
- msgstr ""
2579
-
2580
- #: modules/parallax/widget-controls.php:321
2581
- msgid "Rotate Let-Right (Y)"
2582
- msgstr ""
2583
-
2584
- #: modules/parallax/widget-controls.php:344
2585
- #: widgets/facebook-feed/facebook-feed.php:635
2586
- #: widgets/facebook-feed/facebook-feed.php:690
2587
- #: widgets/facebook-feed/facebook-feed.php:797
2588
- #: widgets/facebook-feed/facebook-feed.php:841 widgets/gallery/gallery.php:529
2589
- #: widgets/gallery/gallery.php:585 widgets/gallery/gallery.php:611
2590
- #: widgets/gallery/gallery.php:759 widgets/gallery/gallery.php:784
2591
- #: widgets/gallery/gallery.php:943 widgets/gallery/gallery.php:1937
2592
- #: widgets/gallery/gallery.php:2008
2593
- #: widgets/instagram-feed/instagram-feed.php:992
2594
- #: widgets/testimonial/testimonial.php:1927
2595
- #: widgets/twitter-feed/twitter-feed.php:1274
2596
- #: widgets/twitter-feed/twitter-feed.php:1353
2597
- msgid "Scale"
2598
- msgstr ""
2599
-
2600
- #: modules/parallax/widget-controls.php:360
2601
- msgid "Scale Left-right (X)"
2602
- msgstr ""
2603
-
2604
- #: modules/parallax/widget-controls.php:385
2605
- msgid "Scale Top Bottom (Y)"
2606
- msgstr ""
2607
-
2608
- #: modules/parallax/widget-controls.php:429
2609
- msgid "Skew"
2610
- msgstr ""
2611
-
2612
- #: modules/parallax/widget-controls.php:445
2613
- msgid "Skew Left-right (X)"
2614
- msgstr ""
2615
-
2616
- #: modules/parallax/widget-controls.php:466
2617
- msgid "Skew Top Bottom (Y)"
2618
- msgstr ""
2619
-
2620
- #: modules/parallax/widget-controls.php:513
2621
- msgid "Top-Bottom Scroll"
2622
- msgstr ""
2623
-
2624
- #: modules/parallax/widget-controls.php:529
2625
- #: modules/parallax/widget-controls.php:604
2626
- #: modules/parallax/widget-controls.php:907
2627
- #: modules/parallax/widget-controls.php:986
2628
- msgid "Moving to"
2629
- msgstr ""
2630
-
2631
- #: modules/parallax/widget-controls.php:543
2632
- #: modules/parallax/widget-controls.php:618
2633
- msgid "Scrolling Speed"
2634
- msgstr ""
2635
-
2636
- #: modules/parallax/widget-controls.php:564
2637
- msgid "Scrolling Position"
2638
- msgstr ""
2639
-
2640
- #: modules/parallax/widget-controls.php:588
2641
- msgid "Left-Right Scroll"
2642
- msgstr ""
2643
-
2644
- #: modules/parallax/widget-controls.php:639
2645
- #: modules/parallax/widget-controls.php:714
2646
- #: modules/parallax/widget-controls.php:791
2647
- #: modules/parallax/widget-controls.php:867
2648
- #: modules/parallax/widget-controls.php:941 widgets/chart/chart.php:611
2649
- #: widgets/chart/chart.php:776 widgets/client-logo/client-logo.php:827
2650
- #: widgets/nav-menu/nav-menu.php:815 widgets/pricing/pricing.php:1433
2651
- #: widgets/team/team.php:1280 widgets/team/team.php:1863
2652
- #: widgets/woo-product-carousel/woo-product-carousel.php:1342
2653
- #: widgets/woo-product-list/woo-product-list.php:1506
2654
- msgid "Position"
2655
- msgstr ""
2656
-
2657
- #: modules/parallax/widget-controls.php:663
2658
- #: widgets/woo-product-carousel/woo-product-carousel.php:66
2659
- msgid "Fade"
2660
- msgstr ""
2661
-
2662
- #: modules/parallax/widget-controls.php:679
2663
- #: modules/parallax/widget-controls.php:754
2664
- #: modules/parallax/widget-controls.php:832 widgets/accordion/accordion.php:109
2665
- #: widgets/advanced-accordion/advanced-accordion.php:106
2666
- #: widgets/advanced-tab/advanced-tab.php:41
2667
- #: widgets/category-list/category-list.php:183 widgets/chart/chart.php:852
2668
- #: widgets/contact-form7/contact-form7.php:56
2669
- #: widgets/drop-caps/drop-caps.php:59 widgets/gallery/gallery.php:99
2670
- #: widgets/motion-text/motion-text.php:280 widgets/page-list/page-list.php:557
2671
- #: widgets/post-list/post-list.php:350 widgets/pricing/pricing.php:1812
2672
- #: widgets/progressbar/progressbar.php:46 widgets/tab/tab.php:40
2673
- #: widgets/team/team.php:49 widgets/video/video.php:281
2674
- msgid "Style"
2675
- msgstr ""
2676
-
2677
- #: modules/parallax/widget-controls.php:684
2678
- #: modules/parallax/widget-controls.php:837
2679
- msgid "Fade In"
2680
- msgstr ""
2681
-
2682
- #: modules/parallax/widget-controls.php:685
2683
- #: modules/parallax/widget-controls.php:838
2684
- msgid "Fade Out"
2685
- msgstr ""
2686
-
2687
- #: modules/parallax/widget-controls.php:738
2688
- msgid "Zoom"
2689
- msgstr ""
2690
-
2691
- #: modules/parallax/widget-controls.php:759
2692
- msgid "Zoom In"
2693
- msgstr ""
2694
-
2695
- #: modules/parallax/widget-controls.php:760
2696
- msgid "Zoom Out"
2697
- msgstr ""
2698
-
2699
- #: modules/parallax/widget-controls.php:761
2700
- msgid "Zoom In Out"
2701
- msgstr ""
2702
-
2703
- #: modules/parallax/widget-controls.php:762
2704
- msgid "Zoom Out In"
2705
- msgstr ""
2706
-
2707
- #: modules/parallax/widget-controls.php:770 widgets/accordion/accordion.php:638
2708
- #: widgets/accordion/accordion.php:699
2709
- #: widgets/advanced-accordion/advanced-accordion.php:634
2710
- #: widgets/advanced-accordion/advanced-accordion.php:695
2711
- #: widgets/category-list/category-list.php:334
2712
- #: widgets/client-logo/client-logo.php:840 widgets/funfact/funfact.php:639
2713
- #: widgets/gallery/gallery.php:1731 widgets/icon-box/icon-box.php:647
2714
- #: widgets/page-list/page-list.php:701 widgets/post-list/post-list.php:504
2715
- #: widgets/pricing/pricing.php:1152 widgets/team/team.php:2094
2716
- msgid "Size"
2717
- msgstr ""
2718
-
2719
- #: modules/parallax/widget-controls.php:991
2720
- msgid "Same direction"
2721
- msgstr ""
2722
-
2723
- #: modules/parallax/widget-controls.php:992
2724
- msgid "Reverse direction"
2725
- msgstr ""
2726
-
2727
- #: modules/parallax/widget-controls.php:1023 widgets/gallery/gallery.php:897
2728
- msgid "Tilt"
2729
- msgstr ""
2730
-
2731
- #: modules/parallax/widget-controls.php:1039
2732
- #: widgets/client-logo/client-logo.php:588
2733
- msgid "Direction"
2734
- msgstr ""
2735
-
2736
- #: modules/parallax/widget-controls.php:1044
2737
- msgid "Direct"
2738
- msgstr ""
2739
-
2740
- #: modules/parallax/widget-controls.php:1045
2741
- msgid "Opposite"
2742
- msgstr ""
2743
-
2744
- #: modules/parallax/widget-controls.php:1076
2745
- msgid "Display On"
2746
- msgstr ""
2747
-
2748
- #: modules/parallax/widget-controls.php:1082
2749
- #: modules/sticky-content/extend-controls.php:92
2750
- msgid "All Devices"
2751
- msgstr ""
2752
-
2753
- #: modules/parallax/widget-controls.php:1083
2754
- #: widgets/tablepress/tablepress.php:78
2755
- msgid "Desktop"
2756
- msgstr ""
2757
-
2758
- #: modules/parallax/widget-controls.php:1084
2759
- #: modules/sticky-content/extend-controls.php:94
2760
- msgid "Desktop & Tablet"
2761
- msgstr ""
2762
-
2763
- #: modules/sticky-content/extend-controls.php:16
2764
- msgid "ElementsKit_Lite Sticky"
2765
- msgstr ""
2766
-
2767
- #: modules/sticky-content/extend-controls.php:24
2768
- msgid "Sticky"
2769
- msgstr ""
2770
-
2771
- #: modules/sticky-content/extend-controls.php:30
2772
- msgid "Column"
2773
- msgstr ""
2774
-
2775
- #: modules/sticky-content/extend-controls.php:31
2776
- msgid "Show on Scroll Up"
2777
- msgstr ""
2778
-
2779
- #: modules/sticky-content/extend-controls.php:42
2780
- msgid "Sticky Until"
2781
- msgstr ""
2782
-
2783
- #: modules/sticky-content/extend-controls.php:43
2784
- msgid "Section id without starting hash, example \"section1\"."
2785
- msgstr ""
2786
-
2787
- #: modules/sticky-content/extend-controls.php:57
2788
- msgid "Sticky Offset"
2789
- msgstr ""
2790
-
2791
- #: modules/sticky-content/extend-controls.php:75
2792
- msgid "Sticky Background Color"
2793
- msgstr ""
2794
-
2795
- #: modules/sticky-content/extend-controls.php:89
2796
- msgid "Sticky On"
2797
- msgstr ""
2798
-
2799
- #: modules/sticky-content/extend-controls.php:93
2800
- msgid "Desktop Only"
2801
- msgstr ""
2802
-
2803
- #: modules/sticky-content/extend-controls.php:108
2804
- msgid "Add \"ekit-sticky--effects\" Class Offset"
2805
- msgstr ""
2806
-
2807
- #: widgets/accordion/accordion-handler.php:11
2808
- #: widgets/accordion/accordion.php:36
2809
- #: widgets/advanced-accordion/advanced-accordion.php:36
2810
- msgid "Accordion"
2811
- msgstr ""
2812
-
2813
- #: widgets/accordion/accordion.php:44 widgets/accordion/accordion.php:223
2814
- #: widgets/advanced-accordion/advanced-accordion.php:44
2815
- #: widgets/advanced-accordion/advanced-accordion.php:220
2816
- #: widgets/advanced-tab/advanced-tab.php:348
2817
- #: widgets/advanced-toggle/advanced-toggle.php:106
2818
- #: widgets/blog-posts/blog-posts.php:241 widgets/blog-posts/blog-posts.php:1548
2819
- #: widgets/chart/chart.php:329 widgets/chart/chart.php:734
2820
- #: widgets/faq/faq.php:45 widgets/faq/faq.php:94
2821
- #: widgets/funfact/funfact.php:805 widgets/heading/heading.php:37
2822
- #: widgets/heading/heading.php:324 widgets/hotspot/hotspot.php:116
2823
- #: widgets/hotspot/hotspot.php:639 widgets/icon-box/icon-box.php:458
2824
- #: widgets/icon-box/icon-box.php:811
2825
- #: widgets/image-accordion/image-accordion.php:74
2826
- #: widgets/image-accordion/image-accordion.php:344
2827
- #: widgets/image-box/image-box.php:1087 widgets/motion-text/motion-text.php:42
2828
- #: widgets/ninja-forms/ninja-forms.php:93 widgets/piechart/piechart.php:150
2829
- #: widgets/progressbar/progressbar.php:85
2830
- #: widgets/progressbar/progressbar.php:301 widgets/tab/tab.php:320
2831
- #: widgets/timeline/timeline.php:85 widgets/timeline/timeline.php:87
2832
- #: widgets/vertical-menu/vertical-menu.php:99
2833
- #: widgets/woo-category-list/woo-category-list.php:218
2834
- #: widgets/woo-product-carousel/woo-product-carousel.php:154
2835
- #: widgets/woo-product-carousel/woo-product-carousel.php:331
2836
- #: widgets/woo-product-carousel/woo-product-carousel.php:744
2837
- #: widgets/woo-product-list/woo-product-list.php:109
2838
- #: widgets/woo-product-list/woo-product-list.php:276
2839
- #: widgets/woo-product-list/woo-product-list.php:906
2840
- msgid "Title"
2841
- msgstr ""
2842
-
2843
- #: widgets/accordion/accordion.php:53
2844
- msgid "Keep this slide open? "
2845
- msgstr ""
2846
-
2847
- #: widgets/accordion/accordion.php:56 widgets/accordion/accordion.php:99
2848
- #: widgets/advanced-accordion/advanced-accordion.php:56
2849
- #: widgets/advanced-accordion/advanced-accordion.php:97
2850
- #: widgets/advanced-tab/advanced-tab.php:383
2851
- #: widgets/advanced-tab/advanced-tab.php:500
2852
- #: widgets/advanced-toggle/advanced-toggle.php:184
2853
- #: widgets/blog-posts/blog-posts.php:62 widgets/blog-posts/blog-posts.php:115
2854
- #: widgets/blog-posts/blog-posts.php:136 widgets/blog-posts/blog-posts.php:158
2855
- #: widgets/blog-posts/blog-posts.php:279 widgets/blog-posts/blog-posts.php:317
2856
- #: widgets/blog-posts/blog-posts.php:364 widgets/blog-posts/blog-posts.php:467
2857
- #: widgets/blog-posts/blog-posts.php:1696 widgets/button/button.php:87
2858
- #: widgets/client-logo/client-logo.php:85
2859
- #: widgets/client-logo/client-logo.php:111
2860
- #: widgets/client-logo/client-logo.php:314
2861
- #: widgets/client-logo/client-logo.php:339
2862
- #: widgets/client-logo/client-logo.php:353
2863
- #: widgets/client-logo/client-logo.php:395
2864
- #: widgets/creative-button/creative-button.php:87
2865
- #: widgets/dual-button/dual-button.php:188
2866
- #: widgets/dual-button/dual-button.php:317 widgets/funfact/funfact.php:76
2867
- #: widgets/funfact/funfact.php:1056 widgets/gallery/gallery.php:292
2868
- #: widgets/gallery/gallery.php:2075 widgets/heading/heading.php:210
2869
- #: widgets/heading/heading.php:424 widgets/heading/heading.php:464
2870
- #: widgets/heading/heading.php:533 widgets/icon-box/icon-box.php:69
2871
- #: widgets/icon-box/icon-box.php:158 widgets/icon-box/icon-box.php:170
2872
- #: widgets/icon-box/icon-box.php:247 widgets/icon-box/icon-box.php:293
2873
- #: widgets/icon-box/icon-box.php:340 widgets/icon-box/icon-box.php:1350
2874
- #: widgets/icon-box/icon-box.php:1392
2875
- #: widgets/image-accordion/image-accordion.php:60
2876
- #: widgets/image-accordion/image-accordion.php:83
2877
- #: widgets/image-accordion/image-accordion.php:118
2878
- #: widgets/image-accordion/image-accordion.php:145
2879
- #: widgets/image-accordion/image-accordion.php:168
2880
- #: widgets/image-box/image-box.php:89 widgets/image-box/image-box.php:144
2881
- #: widgets/image-box/image-box.php:312
2882
- #: widgets/image-comparison/image-comparison.php:144
2883
- #: widgets/image-comparison/image-comparison.php:156
2884
- #: widgets/image-comparison/image-comparison.php:168
2885
- #: widgets/nav-menu/nav-menu.php:63 widgets/pricing/pricing.php:107
2886
- #: widgets/pricing/pricing.php:347 widgets/tab/tab.php:332
2887
- #: widgets/tab/tab.php:510 widgets/table/table.php:305
2888
- #: widgets/table/table.php:327 widgets/team/team.php:731
2889
- #: widgets/team/team.php:732 widgets/team/team.php:2131
2890
- #: widgets/testimonial/testimonial.php:108
2891
- #: widgets/testimonial/testimonial.php:256
2892
- #: widgets/testimonial/testimonial.php:273
2893
- #: widgets/testimonial/testimonial.php:345
2894
- #: widgets/testimonial/testimonial.php:488
2895
- #: widgets/testimonial/testimonial.php:500
2896
- #: widgets/testimonial/testimonial.php:512
2897
- #: widgets/testimonial/testimonial.php:556
2898
- #: widgets/testimonial/testimonial.php:782 widgets/video/video.php:82
2899
- #: widgets/video/video.php:129 widgets/video/video.php:193
2900
- #: widgets/video/video.php:205 widgets/video/video.php:217
2901
- #: widgets/video/video.php:229 widgets/video/video.php:241
2902
- #: widgets/video/video.php:254 widgets/video/video.php:267
2903
- #: widgets/we-forms/we-forms.php:352
2904
- #: widgets/woo-category-list/woo-category-list.php:140
2905
- #: widgets/woo-product-carousel/woo-product-carousel.php:202
2906
- #: widgets/woo-product-carousel/woo-product-carousel.php:1318
2907
- #: widgets/woo-product-list/woo-product-list.php:160
2908
- #: widgets/woo-product-list/woo-product-list.php:1482
2909
- msgid "Yes"
2910
- msgstr ""
2911
-
2912
- #: widgets/accordion/accordion.php:57 widgets/accordion/accordion.php:100
2913
- #: widgets/advanced-accordion/advanced-accordion.php:57
2914
- #: widgets/advanced-accordion/advanced-accordion.php:98
2915
- #: widgets/advanced-tab/advanced-tab.php:384
2916
- #: widgets/advanced-tab/advanced-tab.php:501
2917
- #: widgets/advanced-toggle/advanced-toggle.php:185
2918
- #: widgets/blog-posts/blog-posts.php:63 widgets/blog-posts/blog-posts.php:116
2919
- #: widgets/blog-posts/blog-posts.php:137 widgets/blog-posts/blog-posts.php:159
2920
- #: widgets/blog-posts/blog-posts.php:280 widgets/blog-posts/blog-posts.php:318
2921
- #: widgets/blog-posts/blog-posts.php:365 widgets/blog-posts/blog-posts.php:468
2922
- #: widgets/blog-posts/blog-posts.php:1697 widgets/button/button.php:88
2923
- #: widgets/client-logo/client-logo.php:86
2924
- #: widgets/client-logo/client-logo.php:112
2925
- #: widgets/client-logo/client-logo.php:315
2926
- #: widgets/client-logo/client-logo.php:340
2927
- #: widgets/client-logo/client-logo.php:354
2928
- #: widgets/client-logo/client-logo.php:396
2929
- #: widgets/creative-button/creative-button.php:88
2930
- #: widgets/dual-button/dual-button.php:189
2931
- #: widgets/dual-button/dual-button.php:318 widgets/funfact/funfact.php:77
2932
- #: widgets/funfact/funfact.php:1057 widgets/gallery/gallery.php:293
2933
- #: widgets/gallery/gallery.php:2076 widgets/heading/heading.php:211
2934
- #: widgets/heading/heading.php:425 widgets/heading/heading.php:465
2935
- #: widgets/heading/heading.php:534 widgets/icon-box/icon-box.php:70
2936
- #: widgets/icon-box/icon-box.php:159 widgets/icon-box/icon-box.php:171
2937
- #: widgets/icon-box/icon-box.php:248 widgets/icon-box/icon-box.php:294
2938
- #: widgets/icon-box/icon-box.php:341 widgets/icon-box/icon-box.php:1351
2939
- #: widgets/icon-box/icon-box.php:1393
2940
- #: widgets/image-accordion/image-accordion.php:61
2941
- #: widgets/image-accordion/image-accordion.php:84
2942
- #: widgets/image-accordion/image-accordion.php:119
2943
- #: widgets/image-accordion/image-accordion.php:146
2944
- #: widgets/image-accordion/image-accordion.php:169
2945
- #: widgets/image-box/image-box.php:90 widgets/image-box/image-box.php:145
2946
- #: widgets/image-box/image-box.php:313
2947
- #: widgets/image-comparison/image-comparison.php:145
2948
- #: widgets/image-comparison/image-comparison.php:157
2949
- #: widgets/image-comparison/image-comparison.php:169
2950
- #: widgets/nav-menu/nav-menu.php:64 widgets/pricing/pricing.php:108
2951
- #: widgets/pricing/pricing.php:348 widgets/tab/tab.php:333
2952
- #: widgets/tab/tab.php:511 widgets/table/table.php:304
2953
- #: widgets/table/table.php:328 widgets/team/team.php:2132
2954
- #: widgets/testimonial/testimonial.php:109
2955
- #: widgets/testimonial/testimonial.php:257
2956
- #: widgets/testimonial/testimonial.php:274
2957
- #: widgets/testimonial/testimonial.php:346
2958
- #: widgets/testimonial/testimonial.php:489
2959
- #: widgets/testimonial/testimonial.php:501
2960
- #: widgets/testimonial/testimonial.php:513
2961
- #: widgets/testimonial/testimonial.php:557
2962
- #: widgets/testimonial/testimonial.php:783 widgets/video/video.php:83
2963
- #: widgets/video/video.php:130 widgets/video/video.php:194
2964
- #: widgets/video/video.php:206 widgets/video/video.php:218
2965
- #: widgets/video/video.php:230 widgets/video/video.php:242
2966
- #: widgets/video/video.php:255 widgets/video/video.php:268
2967
- #: widgets/we-forms/we-forms.php:353
2968
- #: widgets/woo-category-list/woo-category-list.php:141
2969
- #: widgets/woo-product-carousel/woo-product-carousel.php:203
2970
- #: widgets/woo-product-carousel/woo-product-carousel.php:1319
2971
- #: widgets/woo-product-list/woo-product-list.php:161
2972
- #: widgets/woo-product-list/woo-product-list.php:1483
2973
- msgid "No"
2974
- msgstr ""
2975
-
2976
- #: widgets/accordion/accordion.php:63 widgets/accordion/accordion.php:466
2977
- #: widgets/advanced-accordion/advanced-accordion.php:63
2978
- #: widgets/gallery/gallery.php:1245 widgets/hotspot/hotspot.php:126
2979
- #: widgets/hotspot/hotspot.php:683 widgets/icon-box/icon-box.php:867
2980
- #: widgets/image-box/image-box.php:210 widgets/image-box/image-box.php:1173
2981
- #: widgets/piechart/piechart.php:164 widgets/testimonial/testimonial.php:825
2982
- #: widgets/timeline/timeline.php:110
2983
- #: widgets/woo-category-list/woo-category-list.php:92
2984
- msgid "Description"
2985
- msgstr ""
2986
-
2987
- #: widgets/accordion/accordion.php:97
2988
- #: widgets/advanced-accordion/advanced-accordion.php:95
2989
- msgid "Keep first slide auto open?"
2990
- msgstr ""
2991
-
2992
- #: widgets/accordion/accordion.php:113
2993
- #: widgets/advanced-accordion/advanced-accordion.php:110
2994
- msgid "Primary"
2995
- msgstr ""
2996
-
2997
- #: widgets/accordion/accordion.php:114
2998
- #: widgets/advanced-accordion/advanced-accordion.php:111
2999
- msgid "Curve Shape"
3000
- msgstr ""
3001
-
3002
- #: widgets/accordion/accordion.php:115
3003
- #: widgets/advanced-accordion/advanced-accordion.php:112
3004
- msgid "Side Curve"
3005
- msgstr ""
3006
-
3007
- #: widgets/accordion/accordion.php:116
3008
- #: widgets/advanced-accordion/advanced-accordion.php:113
3009
- msgid "Box Icon"
3010
- msgstr ""
3011
-
3012
- #: widgets/accordion/accordion.php:117
3013
- #: widgets/advanced-accordion/advanced-accordion.php:114
3014
- #: widgets/image-box/image-box.php:361
3015
- msgid "Floating Style"
3016
- msgstr ""
3017
-
3018
- #: widgets/accordion/accordion.php:132
3019
- #: widgets/advanced-accordion/advanced-accordion.php:129
3020
- #: widgets/blog-posts/blog-posts.php:490 widgets/button/button.php:110
3021
- #: widgets/creative-button/creative-button.php:107
3022
- #: widgets/dual-button/dual-button.php:211 widgets/icon-box/icon-box.php:274
3023
- #: widgets/icon-box/icon-box.php:369
3024
- #: widgets/image-accordion/image-accordion.php:102
3025
- #: widgets/image-box/image-box.php:338 widgets/mail-chimp/mail-chimp.php:494
3026
- #: widgets/pricing/pricing.php:371 widgets/social-share/social-share.php:63
3027
- #: widgets/social/social.php:57 widgets/table/table.php:148
3028
- #: widgets/table/table.php:422 widgets/video/video.php:110
3029
- msgid "Icon Position"
3030
- msgstr ""
3031
-
3032
- #: widgets/accordion/accordion.php:138
3033
- #: widgets/advanced-accordion/advanced-accordion.php:135
3034
- #: widgets/timeline/timeline.php:62
3035
- msgid "Both side"
3036
- msgstr ""
3037
-
3038
- #: widgets/accordion/accordion.php:146
3039
- #: widgets/advanced-accordion/advanced-accordion.php:143
3040
- msgid "Show Loop Count"
3041
- msgstr ""
3042
-
3043
- #: widgets/accordion/accordion.php:160
3044
- #: widgets/advanced-accordion/advanced-accordion.php:157
3045
- msgid "Left Icon"
3046
- msgstr ""
3047
-
3048
- #: widgets/accordion/accordion.php:175
3049
- #: widgets/advanced-accordion/advanced-accordion.php:172
3050
- msgid "Left Icon Active"
3051
- msgstr ""
3052
-
3053
- #: widgets/accordion/accordion.php:190
3054
- #: widgets/advanced-accordion/advanced-accordion.php:187
3055
- msgid "Right Icon"
3056
- msgstr ""
3057
-
3058
- #: widgets/accordion/accordion.php:205
3059
- #: widgets/advanced-accordion/advanced-accordion.php:202
3060
- msgid "Right Icon Active"
3061
- msgstr ""
3062
-
3063
- #: widgets/accordion/accordion.php:239
3064
- #: widgets/advanced-accordion/advanced-accordion.php:236
3065
- msgid "Open"
3066
- msgstr ""
3067
-
3068
- #: widgets/accordion/accordion.php:257 widgets/accordion/accordion.php:347
3069
- #: widgets/accordion/accordion.php:357 widgets/accordion/accordion.php:493
3070
- #: widgets/accordion/accordion.php:668 widgets/accordion/accordion.php:729
3071
- #: widgets/advanced-accordion/advanced-accordion.php:254
3072
- #: widgets/advanced-accordion/advanced-accordion.php:344
3073
- #: widgets/advanced-accordion/advanced-accordion.php:354
3074
- #: widgets/advanced-accordion/advanced-accordion.php:490
3075
- #: widgets/advanced-accordion/advanced-accordion.php:664
3076
- #: widgets/advanced-accordion/advanced-accordion.php:725
3077
- #: widgets/advanced-tab/advanced-tab.php:512
3078
- #: widgets/advanced-tab/advanced-tab.php:725
3079
- #: widgets/advanced-tab/advanced-tab.php:797
3080
- #: widgets/advanced-tab/advanced-tab.php:972
3081
- #: widgets/advanced-tab/advanced-tab.php:1093
3082
- #: widgets/advanced-tab/advanced-tab.php:1253
3083
- #: widgets/advanced-tab/advanced-tab.php:1537
3084
- #: widgets/advanced-tab/advanced-tab.php:1561
3085
- #: widgets/advanced-tab/advanced-tab.php:1777
3086
- #: widgets/advanced-tab/advanced-tab.php:1801
3087
- #: widgets/advanced-toggle/advanced-toggle.php:225
3088
- #: widgets/blog-posts/blog-posts.php:563 widgets/blog-posts/blog-posts.php:988
3089
- #: widgets/blog-posts/blog-posts.php:1059
3090
- #: widgets/business-hours/business-hours.php:208
3091
- #: widgets/business-hours/business-hours.php:269
3092
- #: widgets/business-hours/business-hours.php:333
3093
- #: widgets/caldera-forms/caldera-forms.php:307
3094
- #: widgets/caldera-forms/caldera-forms.php:362
3095
- #: widgets/caldera-forms/caldera-forms.php:417
3096
- #: widgets/caldera-forms/caldera-forms.php:770
3097
- #: widgets/caldera-forms/caldera-forms.php:829
3098
- #: widgets/client-logo/client-logo.php:451
3099
- #: widgets/client-logo/client-logo.php:527
3100
- #: widgets/client-logo/client-logo.php:548
3101
- #: widgets/client-logo/client-logo.php:561
3102
- #: widgets/client-logo/client-logo.php:1195
3103
- #: widgets/client-logo/client-logo.php:1214
3104
- #: widgets/contact-form7/contact-form7.php:307
3105
- #: widgets/contact-form7/contact-form7.php:362
3106
- #: widgets/contact-form7/contact-form7.php:417
3107
- #: widgets/contact-form7/contact-form7.php:770
3108
- #: widgets/contact-form7/contact-form7.php:829
3109
- #: widgets/countdown-timer/countdown-timer.php:424
3110
- #: widgets/countdown-timer/countdown-timer.php:487
3111
- #: widgets/countdown-timer/countdown-timer.php:650
3112
- #: widgets/countdown-timer/countdown-timer.php:744
3113
- #: widgets/countdown-timer/countdown-timer.php:926
3114
- #: widgets/countdown-timer/countdown-timer.php:1019
3115
- #: widgets/countdown-timer/countdown-timer.php:1199
3116
- #: widgets/countdown-timer/countdown-timer.php:1292
3117
- #: widgets/countdown-timer/countdown-timer.php:1475
3118
- #: widgets/countdown-timer/countdown-timer.php:1567
3119
- #: widgets/countdown-timer/countdown-timer.php:1629
3120
- #: widgets/drop-caps/drop-caps.php:177 widgets/dual-button/dual-button.php:484
3121
- #: widgets/dual-button/dual-button.php:603
3122
- #: widgets/dual-button/dual-button.php:705
3123
- #: widgets/dual-button/dual-button.php:822
3124
- #: widgets/dual-button/dual-button.php:903
3125
- #: widgets/facebook-feed/facebook-feed.php:340
3126
- #: widgets/facebook-feed/facebook-feed.php:375
3127
- #: widgets/facebook-feed/facebook-feed.php:894 widgets/faq/faq.php:121
3128
- #: widgets/funfact/funfact.php:985 widgets/funfact/funfact.php:994
3129
- #: widgets/funfact/funfact.php:1139 widgets/gallery/gallery.php:2248
3130
- #: widgets/gallery/gallery.php:2360 widgets/gallery/gallery.php:2402
3131
- #: widgets/gallery/gallery.php:2490 widgets/gallery/gallery.php:2793
3132
- #: widgets/gallery/gallery.php:2846
3133
- #: widgets/header-offcanvas/header-offcanvas.php:519
3134
- #: widgets/hotspot/hotspot.php:444 widgets/icon-box/icon-box.php:1074
3135
- #: widgets/icon-box/icon-box.php:1138 widgets/icon-box/icon-box.php:1211
3136
- #: widgets/icon-box/icon-box.php:1280 widgets/icon-box/icon-box.php:1529
3137
- #: widgets/image-accordion/image-accordion.php:562
3138
- #: widgets/image-box/image-box.php:546 widgets/image-box/image-box.php:665
3139
- #: widgets/image-box/image-box.php:830 widgets/image-box/image-box.php:882
3140
- #: widgets/image-box/image-box.php:1057 widgets/image-box/image-box.php:1332
3141
- #: widgets/image-box/image-box.php:1396
3142
- #: widgets/instagram-feed/instagram-feed.php:313
3143
- #: widgets/instagram-feed/instagram-feed.php:980
3144
- #: widgets/mail-chimp/mail-chimp.php:601 widgets/mail-chimp/mail-chimp.php:960
3145
- #: widgets/mail-chimp/mail-chimp.php:994 widgets/mail-chimp/mail-chimp.php:1106
3146
- #: widgets/motion-text/motion-text.php:325 widgets/nav-menu/nav-menu.php:216
3147
- #: widgets/nav-menu/nav-menu.php:951 widgets/nav-menu/nav-menu.php:993
3148
- #: widgets/nav-menu/nav-menu.php:1157 widgets/nav-menu/nav-menu.php:1202
3149
- #: widgets/page-list/page-list.php:289 widgets/page-list/page-list.php:480
3150
- #: widgets/piechart/piechart.php:356 widgets/piechart/piechart.php:565
3151
- #: widgets/piechart/piechart.php:584 widgets/post-tab/post-tab.php:118
3152
- #: widgets/post-tab/post-tab.php:224 widgets/post-tab/post-tab.php:291
3153
- #: widgets/progressbar/progressbar.php:140 widgets/tab/tab.php:522
3154
- #: widgets/tab/tab.php:736 widgets/tab/tab.php:808 widgets/tab/tab.php:983
3155
- #: widgets/tab/tab.php:1104 widgets/tab/tab.php:1264 widgets/tab/tab.php:1548
3156
- #: widgets/tab/tab.php:1572 widgets/tab/tab.php:1788 widgets/tab/tab.php:1812
3157
- #: widgets/table/table.php:1093 widgets/table/table.php:1126
3158
- #: widgets/table/table.php:1158 widgets/tablepress/tablepress.php:299
3159
- #: widgets/tablepress/tablepress.php:486 widgets/tablepress/tablepress.php:533
3160
- #: widgets/tablepress/tablepress.php:620 widgets/team/team.php:551
3161
- #: widgets/team/team.php:576 widgets/team/team.php:717
3162
- #: widgets/team/team.php:883 widgets/team/team.php:1730
3163
- #: widgets/team/team.php:1764 widgets/testimonial/testimonial.php:365
3164
- #: widgets/testimonial/testimonial.php:577
3165
- #: widgets/testimonial/testimonial.php:694
3166
- #: widgets/testimonial/testimonial.php:1107
3167
- #: widgets/testimonial/testimonial.php:1175
3168
- #: widgets/testimonial/testimonial.php:1559
3169
- #: widgets/testimonial/testimonial.php:1853
3170
- #: widgets/testimonial/testimonial.php:1872
3171
- #: widgets/testimonial/testimonial.php:2140
3172
- #: widgets/testimonial/testimonial.php:2190 widgets/timeline/timeline.php:1053
3173
- #: widgets/timeline/timeline.php:1104 widgets/twitter-feed/twitter-feed.php:478
3174
- #: widgets/vertical-menu/vertical-menu.php:207
3175
- #: widgets/vertical-menu/vertical-menu.php:262
3176
- #: widgets/vertical-menu/vertical-menu.php:287
3177
- #: widgets/woo-product-carousel/woo-product-carousel.php:508
3178
- #: widgets/woo-product-carousel/woo-product-carousel.php:586
3179
- #: widgets/woo-product-carousel/woo-product-carousel.php:711
3180
- #: widgets/woo-product-carousel/woo-product-carousel.php:1018
3181
- #: widgets/woo-product-carousel/woo-product-carousel.php:1770
3182
- #: widgets/woo-product-carousel/woo-product-carousel.php:1867
3183
- #: widgets/woo-product-list/woo-product-list.php:338
3184
- #: widgets/woo-product-list/woo-product-list.php:471
3185
- #: widgets/woo-product-list/woo-product-list.php:873
3186
- #: widgets/woo-product-list/woo-product-list.php:1181
3187
- msgid "Background"
3188
- msgstr ""
3189
-
3190
- #: widgets/accordion/accordion.php:267
3191
- #: widgets/advanced-accordion/advanced-accordion.php:264
3192
- #: widgets/business-hours/business-hours.php:107 widgets/chart/chart.php:105
3193
- #: widgets/chart/chart.php:132 widgets/chart/chart.php:213
3194
- #: widgets/chart/chart.php:240 widgets/chart/chart.php:649
3195
- #: widgets/creative-button/creative-button.php:314
3196
- #: widgets/creative-button/creative-button.php:349
3197
- #: widgets/creative-button/creative-button.php:363
3198
- #: widgets/creative-button/creative-button.php:377
3199
- #: widgets/creative-button/creative-button.php:391
3200
- #: widgets/creative-button/creative-button.php:405
3201
- #: widgets/creative-button/creative-button.php:419
3202
- #: widgets/creative-button/creative-button.php:433
3203
- #: widgets/creative-button/creative-button.php:446
3204
- #: widgets/creative-button/creative-button.php:485
3205
- #: widgets/gallery/gallery.php:1108 widgets/gallery/gallery.php:1183
3206
- #: widgets/gallery/gallery.php:1298 widgets/gallery/gallery.php:1372
3207
- #: widgets/gallery/gallery.php:1487 widgets/gallery/gallery.php:1561
3208
- #: widgets/gallery/gallery.php:1656 widgets/gallery/gallery.php:1805
3209
- #: widgets/gallery/gallery.php:2678 widgets/gallery/gallery.php:2777
3210
- #: widgets/header-offcanvas/header-offcanvas.php:149
3211
- #: widgets/header-offcanvas/header-offcanvas.php:181
3212
- #: widgets/header-offcanvas/header-offcanvas.php:344
3213
- #: widgets/header-offcanvas/header-offcanvas.php:376
3214
- #: widgets/header-search/header-search.php:122
3215
- #: widgets/header-search/header-search.php:152 widgets/hotspot/hotspot.php:548
3216
- #: widgets/icon-box/icon-box.php:598
3217
- #: widgets/instagram-feed/instagram-feed.php:1122
3218
- #: widgets/instagram-feed/instagram-feed.php:1164
3219
- #: widgets/mail-chimp/mail-chimp.php:1268
3220
- #: widgets/mail-chimp/mail-chimp.php:1304
3221
- #: widgets/ninja-forms/ninja-forms.php:283
3222
- #: widgets/ninja-forms/ninja-forms.php:462
3223
- #: widgets/ninja-forms/ninja-forms.php:686
3224
- #: widgets/ninja-forms/ninja-forms.php:764 widgets/post-list/post-list.php:685
3225
- #: widgets/post-list/post-list.php:729 widgets/pricing/pricing.php:2241
3226
- #: widgets/progressbar/progressbar.php:358
3227
- #: widgets/progressbar/progressbar.php:371
3228
- #: widgets/social-share/social-share.php:259
3229
- #: widgets/social-share/social-share.php:320 widgets/social/social.php:221
3230
- #: widgets/social/social.php:282 widgets/table/table.php:71
3231
- #: widgets/table/table.php:347 widgets/table/table.php:1745
3232
- #: widgets/table/table.php:1778 widgets/table/table.php:1810
3233
- #: widgets/team/team.php:255 widgets/team/team.php:317
3234
- #: widgets/team/team.php:1139 widgets/team/team.php:1178
3235
- #: widgets/team/team.php:2052 widgets/twitter-feed/twitter-feed.php:389
3236
- #: widgets/twitter-feed/twitter-feed.php:431 widgets/we-forms/we-forms.php:194
3237
- #: widgets/we-forms/we-forms.php:230 widgets/we-forms/we-forms.php:519
3238
- #: widgets/we-forms/we-forms.php:550
3239
- #: widgets/woo-category-list/woo-category-list.php:255
3240
- #: widgets/woo-category-list/woo-category-list.php:316
3241
- #: widgets/woo-mini-cart/woo-mini-cart.php:324
3242
- #: widgets/woo-mini-cart/woo-mini-cart.php:816
3243
- #: widgets/woo-mini-cart/woo-mini-cart.php:860
3244
- #: widgets/woo-product-carousel/woo-product-carousel.php:999
3245
- #: widgets/woo-product-carousel/woo-product-carousel.php:1247
3246
- #: widgets/woo-product-carousel/woo-product-carousel.php:1278
3247
- #: widgets/woo-product-carousel/woo-product-carousel.php:1665
3248
- #: widgets/woo-product-carousel/woo-product-carousel.php:1708
3249
- #: widgets/woo-product-carousel/woo-product-carousel.php:1993
3250
- #: widgets/woo-product-list/woo-product-list.php:543
3251
- #: widgets/woo-product-list/woo-product-list.php:683
3252
- #: widgets/woo-product-list/woo-product-list.php:1162
3253
- #: widgets/woo-product-list/woo-product-list.php:1411
3254
- #: widgets/woo-product-list/woo-product-list.php:1442
3255
- #: widgets/woo-product-list/woo-product-list.php:1999
3256
- #: widgets/woo-product-list/woo-product-list.php:2042
3257
- #: widgets/wp-forms/wp-forms.php:134 widgets/wp-forms/wp-forms.php:498
3258
- #: widgets/wp-forms/wp-forms.php:587
3259
- msgid "Background Color"
3260
- msgstr ""
3261
-
3262
- #: widgets/accordion/accordion.php:279 widgets/accordion/accordion.php:369
3263
- #: widgets/advanced-accordion/advanced-accordion.php:276
3264
- #: widgets/advanced-accordion/advanced-accordion.php:366
3265
- #: widgets/chart/chart.php:114 widgets/chart/chart.php:140
3266
- #: widgets/chart/chart.php:222 widgets/chart/chart.php:248
3267
- #: widgets/gallery/gallery.php:1207 widgets/gallery/gallery.php:1396
3268
- #: widgets/gallery/gallery.php:1585 widgets/gallery/gallery.php:1817
3269
- #: widgets/gallery/gallery.php:2809
3270
- #: widgets/header-offcanvas/header-offcanvas.php:192
3271
- #: widgets/header-offcanvas/header-offcanvas.php:387
3272
- #: widgets/image-box/image-box.php:718
3273
- #: widgets/instagram-feed/instagram-feed.php:1176
3274
- #: widgets/ninja-forms/ninja-forms.php:788
3275
- #: widgets/tablepress/tablepress.php:250 widgets/tablepress/tablepress.php:374
3276
- #: widgets/tablepress/tablepress.php:509 widgets/tablepress/tablepress.php:556
3277
- #: widgets/testimonial/testimonial.php:682
3278
- #: widgets/twitter-feed/twitter-feed.php:443 widgets/we-forms/we-forms.php:561
3279
- #: widgets/woo-category-list/woo-category-list.php:327
3280
- #: widgets/woo-category-list/woo-category-list.php:476
3281
- #: widgets/woo-mini-cart/woo-mini-cart.php:463
3282
- #: widgets/woo-product-carousel/woo-product-carousel.php:520
3283
- #: widgets/woo-product-carousel/woo-product-carousel.php:597
3284
- #: widgets/woo-product-carousel/woo-product-carousel.php:1289
3285
- #: widgets/woo-product-carousel/woo-product-carousel.php:1889
3286
- #: widgets/woo-product-list/woo-product-list.php:482
3287
- #: widgets/woo-product-list/woo-product-list.php:632
3288
- #: widgets/woo-product-list/woo-product-list.php:730
3289
- #: widgets/woo-product-list/woo-product-list.php:764
3290
- #: widgets/woo-product-list/woo-product-list.php:1453
3291
- #: widgets/wp-forms/wp-forms.php:611
3292
- msgid "Border Color"
3293
- msgstr ""
3294
-
3295
- #: widgets/accordion/accordion.php:295 widgets/accordion/accordion.php:385
3296
- #: widgets/accordion/accordion.php:555 widgets/accordion/accordion.php:564
3297
- #: widgets/advanced-accordion/advanced-accordion.php:292
3298
- #: widgets/advanced-accordion/advanced-accordion.php:382
3299
- #: widgets/advanced-accordion/advanced-accordion.php:552
3300
- #: widgets/advanced-accordion/advanced-accordion.php:561
3301
- #: widgets/advanced-tab/advanced-tab.php:559
3302
- #: widgets/advanced-tab/advanced-tab.php:734
3303
- #: widgets/advanced-tab/advanced-tab.php:806
3304
- #: widgets/advanced-tab/advanced-tab.php:1290
3305
- #: widgets/advanced-tab/advanced-tab.php:1575
3306
- #: widgets/advanced-tab/advanced-tab.php:1974
3307
- #: widgets/advanced-tab/advanced-tab.php:2031
3308
- #: widgets/blog-posts/blog-posts.php:807 widgets/blog-posts/blog-posts.php:1001
3309
- #: widgets/blog-posts/blog-posts.php:1072
3310
- #: widgets/blog-posts/blog-posts.php:1359
3311
- #: widgets/blog-posts/blog-posts.php:2152
3312
- #: widgets/business-hours/business-hours.php:230 widgets/button/button.php:278
3313
- #: widgets/caldera-forms/caldera-forms.php:333
3314
- #: widgets/caldera-forms/caldera-forms.php:388
3315
- #: widgets/caldera-forms/caldera-forms.php:443
3316
- #: widgets/caldera-forms/caldera-forms.php:792
3317
- #: widgets/caldera-forms/caldera-forms.php:851
3318
- #: widgets/client-logo/client-logo.php:681
3319
- #: widgets/client-logo/client-logo.php:708
3320
- #: widgets/client-logo/client-logo.php:889
3321
- #: widgets/contact-form7/contact-form7.php:333
3322
- #: widgets/contact-form7/contact-form7.php:388
3323
- #: widgets/contact-form7/contact-form7.php:443
3324
- #: widgets/contact-form7/contact-form7.php:792
3325
- #: widgets/contact-form7/contact-form7.php:851
3326
- #: widgets/countdown-timer/countdown-timer.php:434
3327
- #: widgets/countdown-timer/countdown-timer.php:497
3328
- #: widgets/countdown-timer/countdown-timer.php:667
3329
- #: widgets/countdown-timer/countdown-timer.php:762
3330
- #: widgets/countdown-timer/countdown-timer.php:943
3331
- #: widgets/countdown-timer/countdown-timer.php:1035
3332
- #: widgets/countdown-timer/countdown-timer.php:1216
3333
- #: widgets/countdown-timer/countdown-timer.php:1308
3334
- #: widgets/countdown-timer/countdown-timer.php:1492
3335
- #: widgets/countdown-timer/countdown-timer.php:1583
3336
- #: widgets/creative-button/creative-button.php:509
3337
- #: widgets/creative-button/creative-button.php:518
3338
- #: widgets/drop-caps/drop-caps.php:212 widgets/dual-button/dual-button.php:463
3339
- #: widgets/dual-button/dual-button.php:582
3340
- #: widgets/dual-button/dual-button.php:684
3341
- #: widgets/dual-button/dual-button.php:801
3342
- #: widgets/dual-button/dual-button.php:882
3343
- #: widgets/facebook-feed/facebook-feed.php:295 widgets/faq/faq.php:131
3344
- #: widgets/funfact/funfact.php:428 widgets/funfact/funfact.php:465
3345
- #: widgets/funfact/funfact.php:559 widgets/funfact/funfact.php:614
3346
- #: widgets/funfact/funfact.php:1024 widgets/gallery/gallery.php:484
3347
- #: widgets/gallery/gallery.php:511 widgets/gallery/gallery.php:1133
3348
- #: widgets/gallery/gallery.php:1323 widgets/gallery/gallery.php:1512
3349
- #: widgets/gallery/gallery.php:1669 widgets/gallery/gallery.php:2691
3350
- #: widgets/gallery/gallery.php:2889 widgets/hotspot/hotspot.php:600
3351
- #: widgets/icon-box/icon-box.php:545 widgets/icon-box/icon-box.php:611
3352
- #: widgets/icon-box/icon-box.php:1084 widgets/icon-box/icon-box.php:1148
3353
- #: widgets/icon-box/icon-box.php:1246 widgets/icon-box/icon-box.php:1310
3354
- #: widgets/image-accordion/image-accordion.php:306
3355
- #: widgets/image-accordion/image-accordion.php:579
3356
- #: widgets/image-accordion/image-accordion.php:590
3357
- #: widgets/image-accordion/image-accordion.php:656
3358
- #: widgets/image-accordion/image-accordion.php:666
3359
- #: widgets/image-box/image-box.php:1048 widgets/image-box/image-box.php:1342
3360
- #: widgets/image-box/image-box.php:1406
3361
- #: widgets/image-comparison/image-comparison.php:193
3362
- #: widgets/instagram-feed/instagram-feed.php:330
3363
- #: widgets/instagram-feed/instagram-feed.php:1093
3364
- #: widgets/mail-chimp/mail-chimp.php:626 widgets/mail-chimp/mail-chimp.php:865
3365
- #: widgets/mail-chimp/mail-chimp.php:1164
3366
- #: widgets/mail-chimp/mail-chimp.php:1277
3367
- #: widgets/mail-chimp/mail-chimp.php:1313 widgets/nav-menu/nav-menu.php:672
3368
- #: widgets/nav-menu/nav-menu.php:961 widgets/nav-menu/nav-menu.php:1003
3369
- #: widgets/nav-menu/nav-menu.php:1167 widgets/nav-menu/nav-menu.php:1212
3370
- #: widgets/ninja-forms/ninja-forms.php:340
3371
- #: widgets/ninja-forms/ninja-forms.php:475
3372
- #: widgets/ninja-forms/ninja-forms.php:709 widgets/page-list/page-list.php:471
3373
- #: widgets/post-tab/post-tab.php:109 widgets/post-tab/post-tab.php:258
3374
- #: widgets/post-tab/post-tab.php:325 widgets/pricing/pricing.php:937
3375
- #: widgets/pricing/pricing.php:974 widgets/pricing/pricing.php:1065
3376
- #: widgets/pricing/pricing.php:1120 widgets/social-share/social-share.php:271
3377
- #: widgets/social-share/social-share.php:350 widgets/social/social.php:233
3378
- #: widgets/social/social.php:312 widgets/tab/tab.php:471
3379
- #: widgets/tab/tab.php:569 widgets/tab/tab.php:745 widgets/tab/tab.php:817
3380
- #: widgets/tab/tab.php:1301 widgets/tab/tab.php:1586 widgets/tab/tab.php:1985
3381
- #: widgets/table/table.php:801 widgets/table/table.php:851
3382
- #: widgets/table/table.php:1001 widgets/table/table.php:1023
3383
- #: widgets/table/table.php:1274 widgets/table/table.php:1686
3384
- #: widgets/table/table.php:1974 widgets/table/table.php:2049
3385
- #: widgets/table/table.php:2125 widgets/table/table.php:2617
3386
- #: widgets/tablepress/tablepress.php:644 widgets/team/team.php:268
3387
- #: widgets/team/team.php:347 widgets/team/team.php:677
3388
- #: widgets/team/team.php:839 widgets/team/team.php:1151
3389
- #: widgets/team/team.php:1190 widgets/team/team.php:2002
3390
- #: widgets/team/team.php:2065 widgets/testimonial/testimonial.php:665
3391
- #: widgets/testimonial/testimonial.php:1598
3392
- #: widgets/testimonial/testimonial.php:2159
3393
- #: widgets/testimonial/testimonial.php:2209 widgets/timeline/timeline.php:1041
3394
- #: widgets/timeline/timeline.php:1092 widgets/twitter-feed/twitter-feed.php:360
3395
- #: widgets/twitter-feed/twitter-feed.php:491
3396
- #: widgets/vertical-menu/vertical-menu.php:385
3397
- #: widgets/vertical-menu/vertical-menu.php:494
3398
- #: widgets/woo-mini-cart/woo-mini-cart.php:216
3399
- #: widgets/woo-mini-cart/woo-mini-cart.php:254
3400
- #: widgets/woo-mini-cart/woo-mini-cart.php:337
3401
- #: widgets/woo-mini-cart/woo-mini-cart.php:644
3402
- #: widgets/woo-mini-cart/woo-mini-cart.php:829
3403
- #: widgets/woo-mini-cart/woo-mini-cart.php:873
3404
- #: widgets/woo-mini-cart/woo-mini-cart.php:1078
3405
- #: widgets/woo-mini-cart/woo-mini-cart.php:1115
3406
- #: widgets/woo-product-carousel/woo-product-carousel.php:1142
3407
- #: widgets/woo-product-carousel/woo-product-carousel.php:1359
3408
- #: widgets/woo-product-carousel/woo-product-carousel.php:1677
3409
- #: widgets/woo-product-carousel/woo-product-carousel.php:1719
3410
- #: widgets/woo-product-carousel/woo-product-carousel.php:1790
3411
- #: widgets/woo-product-carousel/woo-product-carousel.php:2077
3412
- #: widgets/woo-product-carousel/woo-product-carousel.php:2628
3413
- #: widgets/woo-product-carousel/woo-product-carousel.php:2682
3414
- #: widgets/woo-product-carousel/woo-product-carousel.php:2815
3415
- #: widgets/woo-product-carousel/woo-product-carousel.php:2852
3416
- #: widgets/woo-product-list/woo-product-list.php:350
3417
- #: widgets/woo-product-list/woo-product-list.php:555
3418
- #: widgets/woo-product-list/woo-product-list.php:695
3419
- #: widgets/woo-product-list/woo-product-list.php:1305
3420
- #: widgets/woo-product-list/woo-product-list.php:1523
3421
- #: widgets/woo-product-list/woo-product-list.php:1801
3422
- #: widgets/woo-product-list/woo-product-list.php:1838
3423
- #: widgets/woo-product-list/woo-product-list.php:2011
3424
- #: widgets/woo-product-list/woo-product-list.php:2053
3425
- #: widgets/woo-product-list/woo-product-list.php:2416
3426
- #: widgets/woo-product-list/woo-product-list.php:2470
3427
- #: widgets/wp-forms/wp-forms.php:159 widgets/wp-forms/wp-forms.php:299
3428
- #: widgets/wp-forms/wp-forms.php:532 widgets/wp-forms/wp-forms.php:651
3429
- msgid "Border"
3430
- msgstr ""
3431
-
3432
- #: widgets/accordion/accordion.php:306 widgets/accordion/accordion.php:395
3433
- #: widgets/accordion/accordion.php:502 widgets/accordion/accordion.php:572
3434
- #: widgets/advanced-accordion/advanced-accordion.php:303
3435
- #: widgets/advanced-accordion/advanced-accordion.php:392
3436
- #: widgets/advanced-accordion/advanced-accordion.php:499
3437
- #: widgets/advanced-accordion/advanced-accordion.php:569
3438
- #: widgets/advanced-tab/advanced-tab.php:567
3439
- #: widgets/advanced-tab/advanced-tab.php:824
3440
- #: widgets/advanced-tab/advanced-tab.php:1698
3441
- #: widgets/advanced-tab/advanced-tab.php:1981
3442
- #: widgets/advanced-tab/advanced-tab.php:2038
3443
- #: widgets/advanced-toggle/advanced-toggle.php:256
3444
- #: widgets/advanced-toggle/advanced-toggle.php:292
3445
- #: widgets/blog-posts/blog-posts.php:1009
3446
- #: widgets/blog-posts/blog-posts.php:1080
3447
- #: widgets/blog-posts/blog-posts.php:1369
3448
- #: widgets/blog-posts/blog-posts.php:2396
3449
- #: widgets/business-hours/business-hours.php:217
3450
- #: widgets/business-hours/business-hours.php:278
3451
- #: widgets/business-hours/business-hours.php:342 widgets/button/button.php:358
3452
- #: widgets/caldera-forms/caldera-forms.php:319
3453
- #: widgets/caldera-forms/caldera-forms.php:374
3454
- #: widgets/caldera-forms/caldera-forms.php:429
3455
- #: widgets/caldera-forms/caldera-forms.php:608
3456
- #: widgets/client-logo/client-logo.php:576
3457
- #: widgets/client-logo/client-logo.php:897
3458
- #: widgets/contact-form7/contact-form7.php:319
3459
- #: widgets/contact-form7/contact-form7.php:374
3460
- #: widgets/contact-form7/contact-form7.php:429
3461
- #: widgets/contact-form7/contact-form7.php:608
3462
- #: widgets/countdown-timer/countdown-timer.php:441
3463
- #: widgets/countdown-timer/countdown-timer.php:506
3464
- #: widgets/countdown-timer/countdown-timer.php:680
3465
- #: widgets/countdown-timer/countdown-timer.php:774
3466
- #: widgets/countdown-timer/countdown-timer.php:956
3467
- #: widgets/countdown-timer/countdown-timer.php:1048
3468
- #: widgets/countdown-timer/countdown-timer.php:1229
3469
- #: widgets/countdown-timer/countdown-timer.php:1321
3470
- #: widgets/countdown-timer/countdown-timer.php:1505
3471
- #: widgets/countdown-timer/countdown-timer.php:1596
3472
- #: widgets/creative-button/creative-button.php:526
3473
- #: widgets/drop-caps/drop-caps.php:220 widgets/dual-button/dual-button.php:471
3474
- #: widgets/dual-button/dual-button.php:590
3475
- #: widgets/dual-button/dual-button.php:692
3476
- #: widgets/dual-button/dual-button.php:809
3477
- #: widgets/dual-button/dual-button.php:890
3478
- #: widgets/facebook-feed/facebook-feed.php:318 widgets/faq/faq.php:230
3479
- #: widgets/funfact/funfact.php:435 widgets/funfact/funfact.php:472
3480
- #: widgets/funfact/funfact.php:567 widgets/funfact/funfact.php:624
3481
- #: widgets/funfact/funfact.php:1032 widgets/gallery/gallery.php:453
3482
- #: widgets/gallery/gallery.php:1143 widgets/gallery/gallery.php:1333
3483
- #: widgets/gallery/gallery.php:1522 widgets/gallery/gallery.php:1679
3484
- #: widgets/gallery/gallery.php:2701 widgets/gallery/gallery.php:2861
3485
- #: widgets/heading/heading.php:447 widgets/hotspot/hotspot.php:578
3486
- #: widgets/icon-box/icon-box.php:555 widgets/icon-box/icon-box.php:626
3487
- #: widgets/icon-box/icon-box.php:1091 widgets/icon-box/icon-box.php:1155
3488
- #: widgets/icon-box/icon-box.php:1253 widgets/icon-box/icon-box.php:1317
3489
- #: widgets/icon-box/icon-box.php:1509
3490
- #: widgets/image-accordion/image-accordion.php:314
3491
- #: widgets/image-accordion/image-accordion.php:614
3492
- #: widgets/image-accordion/image-accordion.php:673
3493
- #: widgets/image-box/image-box.php:1349 widgets/image-box/image-box.php:1413
3494
- #: widgets/image-comparison/image-comparison.php:203
3495
- #: widgets/image-comparison/image-comparison.php:560
3496
- #: widgets/instagram-feed/instagram-feed.php:350
3497
- #: widgets/instagram-feed/instagram-feed.php:1063
3498
- #: widgets/mail-chimp/mail-chimp.php:613 widgets/mail-chimp/mail-chimp.php:825
3499
- #: widgets/mail-chimp/mail-chimp.php:1184
3500
- #: widgets/mail-chimp/mail-chimp.php:1230 widgets/nav-menu/nav-menu.php:745
3501
- #: widgets/nav-menu/nav-menu.php:882 widgets/nav-menu/nav-menu.php:1117
3502
- #: widgets/ninja-forms/ninja-forms.php:351
3503
- #: widgets/ninja-forms/ninja-forms.php:719 widgets/post-list/post-list.php:696
3504
- #: widgets/post-list/post-list.php:740 widgets/post-tab/post-tab.php:236
3505
- #: widgets/post-tab/post-tab.php:303 widgets/pricing/pricing.php:635
3506
- #: widgets/pricing/pricing.php:868 widgets/pricing/pricing.php:944
3507
- #: widgets/pricing/pricing.php:981 widgets/pricing/pricing.php:1073
3508
- #: widgets/pricing/pricing.php:1130 widgets/pricing/pricing.php:1640
3509
- #: widgets/pricing/pricing.php:2173 widgets/progressbar/progressbar.php:181
3510
- #: widgets/progressbar/progressbar.php:286 widgets/tab/tab.php:478
3511
- #: widgets/tab/tab.php:577 widgets/tab/tab.php:835 widgets/tab/tab.php:1709
3512
- #: widgets/tab/tab.php:1992 widgets/table/table.php:988
3513
- #: widgets/table/table.php:1261 widgets/table/table.php:1508
3514
- #: widgets/table/table.php:1694 widgets/table/table.php:2133
3515
- #: widgets/table/table.php:2278 widgets/table/table.php:2504
3516
- #: widgets/team/team.php:685 widgets/team/team.php:983
3517
- #: widgets/team/team.php:2012 widgets/team/team.php:2073
3518
- #: widgets/testimonial/testimonial.php:645
3519
- #: widgets/testimonial/testimonial.php:1119
3520
- #: widgets/testimonial/testimonial.php:1149
3521
- #: widgets/testimonial/testimonial.php:2032 widgets/timeline/timeline.php:470
3522
- #: widgets/timeline/timeline.php:1002 widgets/twitter-feed/twitter-feed.php:330
3523
- #: widgets/twitter-feed/twitter-feed.php:508
3524
- #: widgets/twitter-feed/twitter-feed.php:1184
3525
- #: widgets/vertical-menu/vertical-menu.php:228
3526
- #: widgets/vertical-menu/vertical-menu.php:305 widgets/video/video.php:651
3527
- #: widgets/we-forms/we-forms.php:123 widgets/we-forms/we-forms.php:462
3528
- #: widgets/woo-category-list/woo-category-list.php:287
3529
- #: widgets/woo-category-list/woo-category-list.php:338
3530
- #: widgets/woo-category-list/woo-category-list.php:455
3531
- #: widgets/woo-category-list/woo-category-list.php:490
3532
- #: widgets/woo-mini-cart/woo-mini-cart.php:167
3533
- #: widgets/woo-mini-cart/woo-mini-cart.php:347
3534
- #: widgets/woo-mini-cart/woo-mini-cart.php:652
3535
- #: widgets/woo-mini-cart/woo-mini-cart.php:746
3536
- #: widgets/woo-mini-cart/woo-mini-cart.php:1030
3537
- #: widgets/woo-product-carousel/woo-product-carousel.php:531
3538
- #: widgets/woo-product-carousel/woo-product-carousel.php:1037
3539
- #: widgets/woo-product-carousel/woo-product-carousel.php:1153
3540
- #: widgets/woo-product-carousel/woo-product-carousel.php:1372
3541
- #: widgets/woo-product-carousel/woo-product-carousel.php:1613
3542
- #: widgets/woo-product-carousel/woo-product-carousel.php:1801
3543
- #: widgets/woo-product-carousel/woo-product-carousel.php:2087
3544
- #: widgets/woo-product-carousel/woo-product-carousel.php:2282
3545
- #: widgets/woo-product-carousel/woo-product-carousel.php:2543
3546
- #: widgets/woo-product-carousel/woo-product-carousel.php:2761
3547
- #: widgets/woo-product-list/woo-product-list.php:361
3548
- #: widgets/woo-product-list/woo-product-list.php:566
3549
- #: widgets/woo-product-list/woo-product-list.php:706
3550
- #: widgets/woo-product-list/woo-product-list.php:1200
3551
- #: widgets/woo-product-list/woo-product-list.php:1316
3552
- #: widgets/woo-product-list/woo-product-list.php:1536
3553
- #: widgets/woo-product-list/woo-product-list.php:1747
3554
- #: widgets/woo-product-list/woo-product-list.php:1947
3555
- #: widgets/woo-product-list/woo-product-list.php:2331
3556
- #: widgets/wp-forms/wp-forms.php:170 widgets/wp-forms/wp-forms.php:542
3557
- msgid "Border Radius"
3558
- msgstr ""
3559
-
3560
- #: widgets/accordion/accordion.php:321 widgets/accordion/accordion.php:411
3561
- #: widgets/accordion/accordion.php:585
3562
- #: widgets/advanced-accordion/advanced-accordion.php:318
3563
- #: widgets/advanced-accordion/advanced-accordion.php:408
3564
- #: widgets/advanced-accordion/advanced-accordion.php:582
3565
- #: widgets/advanced-tab/advanced-tab.php:579
3566
- #: widgets/advanced-tab/advanced-tab.php:759
3567
- #: widgets/advanced-tab/advanced-tab.php:814
3568
- #: widgets/advanced-tab/advanced-tab.php:1993
3569
- #: widgets/advanced-tab/advanced-tab.php:2050
3570
- #: widgets/advanced-toggle/advanced-toggle.php:248
3571
- #: widgets/advanced-toggle/advanced-toggle.php:306
3572
- #: widgets/blog-posts/blog-posts.php:1022
3573
- #: widgets/blog-posts/blog-posts.php:1093
3574
- #: widgets/caldera-forms/caldera-forms.php:342
3575
- #: widgets/caldera-forms/caldera-forms.php:397
3576
- #: widgets/caldera-forms/caldera-forms.php:452
3577
- #: widgets/caldera-forms/caldera-forms.php:783
3578
- #: widgets/caldera-forms/caldera-forms.php:842
3579
- #: widgets/client-logo/client-logo.php:672
3580
- #: widgets/client-logo/client-logo.php:699
3581
- #: widgets/contact-form7/contact-form7.php:342
3582
- #: widgets/contact-form7/contact-form7.php:397
3583
- #: widgets/contact-form7/contact-form7.php:452
3584
- #: widgets/contact-form7/contact-form7.php:783
3585
- #: widgets/contact-form7/contact-form7.php:842
3586
- #: widgets/countdown-timer/countdown-timer.php:454
3587
- #: widgets/countdown-timer/countdown-timer.php:520
3588
- #: widgets/countdown-timer/countdown-timer.php:699
3589
- #: widgets/countdown-timer/countdown-timer.php:792
3590
- #: widgets/countdown-timer/countdown-timer.php:975
3591
- #: widgets/countdown-timer/countdown-timer.php:1065
3592
- #: widgets/countdown-timer/countdown-timer.php:1248
3593
- #: widgets/countdown-timer/countdown-timer.php:1338
3594
- #: widgets/countdown-timer/countdown-timer.php:1524
3595
- #: widgets/countdown-timer/countdown-timer.php:1613
3596
- #: widgets/dual-button/dual-button.php:495
3597
- #: widgets/dual-button/dual-button.php:614
3598
- #: widgets/dual-button/dual-button.php:716
3599
- #: widgets/dual-button/dual-button.php:833
3600
- #: widgets/dual-button/dual-button.php:914
3601
- #: widgets/facebook-feed/facebook-feed.php:357
3602
- #: widgets/facebook-feed/facebook-feed.php:392 widgets/funfact/funfact.php:447
3603
- #: widgets/funfact/funfact.php:484 widgets/funfact/funfact.php:1016
3604
- #: widgets/gallery/gallery.php:475 widgets/gallery/gallery.php:502
3605
- #: widgets/gallery/gallery.php:1165 widgets/gallery/gallery.php:1229
3606
- #: widgets/gallery/gallery.php:1355 widgets/gallery/gallery.php:1418
3607
- #: widgets/gallery/gallery.php:1544 widgets/gallery/gallery.php:1607
3608
- #: widgets/gallery/gallery.php:2877 widgets/hotspot/hotspot.php:591
3609
- #: widgets/icon-box/icon-box.php:1238 widgets/icon-box/icon-box.php:1302
3610
- #: widgets/icon-box/icon-box.php:1539 widgets/image-box/image-box.php:556
3611
- #: widgets/image-box/image-box.php:821 widgets/image-box/image-box.php:873
3612
- #: widgets/instagram-feed/instagram-feed.php:342
3613
- #: widgets/instagram-feed/instagram-feed.php:1135
3614
- #: widgets/instagram-feed/instagram-feed.php:1189
3615
- #: widgets/mail-chimp/mail-chimp.php:635 widgets/mail-chimp/mail-chimp.php:856
3616
- #: widgets/nav-menu/nav-menu.php:788 widgets/piechart/piechart.php:544
3617
- #: widgets/post-tab/post-tab.php:249 widgets/post-tab/post-tab.php:316
3618
- #: widgets/pricing/pricing.php:956 widgets/pricing/pricing.php:993
3619
- #: widgets/tab/tab.php:490 widgets/tab/tab.php:589 widgets/tab/tab.php:770
3620
- #: widgets/tab/tab.php:825 widgets/tab/tab.php:2004
3621
- #: widgets/table/table.php:2524 widgets/testimonial/testimonial.php:1610
3622
- #: widgets/testimonial/testimonial.php:2150
3623
- #: widgets/testimonial/testimonial.php:2200
3624
- #: widgets/twitter-feed/twitter-feed.php:402
3625
- #: widgets/twitter-feed/twitter-feed.php:456
3626
- #: widgets/twitter-feed/twitter-feed.php:500
3627
- #: widgets/vertical-menu/vertical-menu.php:297 widgets/video/video.php:679
3628
- msgid "Box Shadow"
3629
- msgstr ""
3630
-
3631
- #: widgets/accordion/accordion.php:331
3632
- #: widgets/advanced-accordion/advanced-accordion.php:328
3633
- #: widgets/header-offcanvas/header-offcanvas.php:91
3634
- #: widgets/header-offcanvas/header-offcanvas.php:324
3635
- msgid "Closed"
3636
- msgstr ""
3637
-
3638
- #: widgets/accordion/accordion.php:430 widgets/accordion/accordion.php:514
3639
- #: widgets/advanced-accordion/advanced-accordion.php:427
3640
- #: widgets/advanced-accordion/advanced-accordion.php:511
3641
- #: widgets/advanced-tab/advanced-tab.php:520
3642
- #: widgets/advanced-tab/advanced-tab.php:671
3643
- #: widgets/advanced-tab/advanced-tab.php:1946
3644
- #: widgets/advanced-tab/advanced-tab.php:2011
3645
- #: widgets/advanced-toggle/advanced-toggle.php:234
3646
- #: widgets/advanced-toggle/advanced-toggle.php:269
3647
- #: widgets/blog-posts/blog-posts.php:839 widgets/blog-posts/blog-posts.php:1344
3648
- #: widgets/blog-posts/blog-posts.php:2207
3649
- #: widgets/business-hours/business-hours.php:194
3650
- #: widgets/business-hours/business-hours.php:290
3651
- #: widgets/business-hours/business-hours.php:354 widgets/button/button.php:180
3652
- #: widgets/caldera-forms/caldera-forms.php:154
3653
- #: widgets/caldera-forms/caldera-forms.php:277
3654
- #: widgets/caldera-forms/caldera-forms.php:620 widgets/chart/chart.php:516
3655
- #: widgets/chart/chart.php:576 widgets/chart/chart.php:803
3656
- #: widgets/client-logo/client-logo.php:460
3657
- #: widgets/client-logo/client-logo.php:647
3658
- #: widgets/client-logo/client-logo.php:876
3659
- #: widgets/contact-form7/contact-form7.php:153
3660
- #: widgets/contact-form7/contact-form7.php:277
3661
- #: widgets/contact-form7/contact-form7.php:620
3662
- #: widgets/creative-button/creative-button.php:260
3663
- #: widgets/creative-button/creative-button.php:589
3664
- #: widgets/drop-caps/drop-caps.php:186 widgets/dual-button/dual-button.php:503
3665
- #: widgets/dual-button/dual-button.php:724
3666
- #: widgets/facebook-feed/facebook-feed.php:303
3667
- #: widgets/facebook-feed/facebook-feed.php:881 widgets/funfact/funfact.php:682
3668
- #: widgets/funfact/funfact.php:852 widgets/funfact/funfact.php:1003
3669
- #: widgets/gallery/gallery.php:1087 widgets/gallery/gallery.php:1277
3670
- #: widgets/gallery/gallery.php:1466 widgets/gallery/gallery.php:2713
3671
- #: widgets/gallery/gallery.php:2900 widgets/header-info/header-info.php:128
3672
- #: widgets/header-offcanvas/header-offcanvas.php:286
3673
- #: widgets/header-offcanvas/header-offcanvas.php:455
3674
- #: widgets/header-search/header-search.php:221 widgets/heading/heading.php:411
3675
- #: widgets/hotspot/hotspot.php:453 widgets/icon-box/icon-box.php:693
3676
- #: widgets/icon-box/icon-box.php:997 widgets/icon-box/icon-box.php:1219
3677
- #: widgets/icon-box/icon-box.php:1288 widgets/icon-box/icon-box.php:1490
3678
- #: widgets/image-accordion/image-accordion.php:281
3679
- #: widgets/image-accordion/image-accordion.php:461
3680
- #: widgets/image-accordion/image-accordion.php:512
3681
- #: widgets/image-box/image-box.php:919 widgets/image-box/image-box.php:1066
3682
- #: widgets/image-box/image-box.php:1269
3683
- #: widgets/image-comparison/image-comparison.php:215
3684
- #: widgets/image-comparison/image-comparison.php:303
3685
- #: widgets/image-comparison/image-comparison.php:363
3686
- #: widgets/instagram-feed/instagram-feed.php:500
3687
- #: widgets/instagram-feed/instagram-feed.php:671
3688
- #: widgets/instagram-feed/instagram-feed.php:1051
3689
- #: widgets/mail-chimp/mail-chimp.php:643 widgets/mail-chimp/mail-chimp.php:837
3690
- #: widgets/mail-chimp/mail-chimp.php:1172
3691
- #: widgets/mail-chimp/mail-chimp.php:1206 widgets/nav-menu/nav-menu.php:238
3692
- #: widgets/nav-menu/nav-menu.php:838 widgets/nav-menu/nav-menu.php:1053
3693
- #: widgets/nav-menu/nav-menu.php:1325 widgets/ninja-forms/ninja-forms.php:421
3694
- #: widgets/ninja-forms/ninja-forms.php:731 widgets/page-list/page-list.php:344
3695
- #: widgets/page-list/page-list.php:446 widgets/page-list/page-list.php:847
3696
- #: widgets/piechart/piechart.php:365 widgets/post-list/post-list.php:638
3697
- #: widgets/post-tab/post-tab.php:142 widgets/post-tab/post-tab.php:186
3698
- #: widgets/pricing/pricing.php:517 widgets/pricing/pricing.php:754
3699
- #: widgets/pricing/pricing.php:1195 widgets/pricing/pricing.php:1299
3700
- #: widgets/pricing/pricing.php:1935 widgets/pricing/pricing.php:2060
3701
- #: widgets/progressbar/progressbar.php:193
3702
- #: widgets/social-share/social-share.php:645 widgets/social/social.php:462
3703
- #: widgets/tab/tab.php:451 widgets/tab/tab.php:530 widgets/tab/tab.php:682
3704
- #: widgets/tab/tab.php:1957 widgets/table/table.php:762
3705
- #: widgets/table/table.php:859 widgets/table/table.php:1313
3706
- #: widgets/table/table.php:1604 widgets/table/table.php:1666
3707
- #: widgets/table/table.php:1949 widgets/table/table.php:2086
3708
- #: widgets/table/table.php:2466 widgets/tablepress/tablepress.php:389
3709
- #: widgets/tablepress/tablepress.php:631 widgets/team/team.php:652
3710
- #: widgets/team/team.php:971 widgets/team/team.php:1553
3711
- #: widgets/team/team.php:2117 widgets/testimonial/testimonial.php:438
3712
- #: widgets/testimonial/testimonial.php:599
3713
- #: widgets/testimonial/testimonial.php:768
3714
- #: widgets/testimonial/testimonial.php:1091 widgets/timeline/timeline.php:446
3715
- #: widgets/twitter-feed/twitter-feed.php:318
3716
- #: widgets/twitter-feed/twitter-feed.php:596
3717
- #: widgets/vertical-menu/vertical-menu.php:216
3718
- #: widgets/vertical-menu/vertical-menu.php:360
3719
- #: widgets/vertical-menu/vertical-menu.php:481 widgets/video/video.php:337
3720
- #: widgets/we-forms/we-forms.php:110 widgets/we-forms/we-forms.php:267
3721
- #: widgets/we-forms/we-forms.php:433
3722
- #: widgets/woo-category-list/woo-category-list.php:266
3723
- #: widgets/woo-category-list/woo-category-list.php:554
3724
- #: widgets/woo-category-list/woo-category-list.php:852
3725
- #: widgets/woo-mini-cart/woo-mini-cart.php:112
3726
- #: widgets/woo-mini-cart/woo-mini-cart.php:300
3727
- #: widgets/woo-mini-cart/woo-mini-cart.php:378
3728
- #: widgets/woo-mini-cart/woo-mini-cart.php:475
3729
- #: widgets/woo-mini-cart/woo-mini-cart.php:784
3730
- #: widgets/woo-mini-cart/woo-mini-cart.php:896
3731
- #: widgets/woo-mini-cart/woo-mini-cart.php:999
3732
- #: widgets/woo-product-carousel/woo-product-carousel.php:720
3733
- #: widgets/woo-product-carousel/woo-product-carousel.php:974
3734
- #: widgets/woo-product-carousel/woo-product-carousel.php:1171
3735
- #: widgets/woo-product-carousel/woo-product-carousel.php:1393
3736
- #: widgets/woo-product-carousel/woo-product-carousel.php:1588
3737
- #: widgets/woo-product-carousel/woo-product-carousel.php:1813
3738
- #: widgets/woo-product-carousel/woo-product-carousel.php:2052
3739
- #: widgets/woo-product-carousel/woo-product-carousel.php:2257
3740
- #: widgets/woo-product-carousel/woo-product-carousel.php:2561
3741
- #: widgets/woo-product-carousel/woo-product-carousel.php:2706
3742
- #: widgets/woo-product-list/woo-product-list.php:578
3743
- #: widgets/woo-product-list/woo-product-list.php:718
3744
- #: widgets/woo-product-list/woo-product-list.php:882
3745
- #: widgets/woo-product-list/woo-product-list.php:1137
3746
- #: widgets/woo-product-list/woo-product-list.php:1334
3747
- #: widgets/woo-product-list/woo-product-list.php:1557
3748
- #: widgets/woo-product-list/woo-product-list.php:1692
3749
- #: widgets/woo-product-list/woo-product-list.php:1922
3750
- #: widgets/woo-product-list/woo-product-list.php:2349
3751
- #: widgets/wp-forms/wp-forms.php:254 widgets/wp-forms/wp-forms.php:353
3752
- #: widgets/wp-forms/wp-forms.php:554
3753
- msgid "Padding"
3754
- msgstr ""
3755
-
3756
- #: widgets/accordion/accordion.php:443
3757
- #: widgets/advanced-accordion/advanced-accordion.php:440
3758
- #: widgets/advanced-tab/advanced-tab.php:650
3759
- #: widgets/caldera-forms/caldera-forms.php:218
3760
- #: widgets/contact-form7/contact-form7.php:217
3761
- #: widgets/countdown-timer/countdown-timer.php:295
3762
- #: widgets/countdown-timer/countdown-timer.php:368
3763
- #: widgets/countdown-timer/countdown-timer.php:578
3764
- #: widgets/countdown-timer/countdown-timer.php:851
3765
- #: widgets/countdown-timer/countdown-timer.php:1126
3766
- #: widgets/countdown-timer/countdown-timer.php:1402
3767
- #: widgets/facebook-feed/facebook-feed.php:260 widgets/funfact/funfact.php:397
3768
- #: widgets/funfact/funfact.php:661
3769
- #: widgets/instagram-feed/instagram-feed.php:362
3770
- #: widgets/instagram-feed/instagram-feed.php:683
3771
- #: widgets/mail-chimp/mail-chimp.php:703 widgets/pricing/pricing.php:906
3772
- #: widgets/pricing/pricing.php:1174 widgets/progressbar/progressbar.php:208
3773
- #: widgets/tab/tab.php:661 widgets/team/team.php:1264
3774
- #: widgets/team/team.php:1350 widgets/team/team.php:1783
3775
- #: widgets/team/team.php:1838 widgets/team/team.php:1889
3776
- #: widgets/testimonial/testimonial.php:1064
3777
- #: widgets/testimonial/testimonial.php:1397
3778
- #: widgets/testimonial/testimonial.php:1518
3779
- #: widgets/testimonial/testimonial.php:1634
3780
- msgid "Margin Bottom"
3781
- msgstr ""
3782
-
3783
- #: widgets/accordion/accordion.php:604
3784
- #: widgets/advanced-accordion/advanced-accordion.php:601
3785
- #: widgets/advanced-tab/advanced-tab.php:539
3786
- #: widgets/advanced-tab/advanced-tab.php:2075
3787
- #: widgets/blog-posts/blog-posts.php:827 widgets/blog-posts/blog-posts.php:1670
3788
- #: widgets/blog-posts/blog-posts.php:1776
3789
- #: widgets/blog-posts/blog-posts.php:1865
3790
- #: widgets/blog-posts/blog-posts.php:2160
3791
- #: widgets/business-hours/business-hours.php:181
3792
- #: widgets/caldera-forms/caldera-forms.php:100
3793
- #: widgets/caldera-forms/caldera-forms.php:632
3794
- #: widgets/client-logo/client-logo.php:471
3795
- #: widgets/client-logo/client-logo.php:634
3796
- #: widgets/contact-form7/contact-form7.php:99
3797
- #: widgets/contact-form7/contact-form7.php:632
3798
- #: widgets/countdown-timer/countdown-timer.php:463
3799
- #: widgets/countdown-timer/countdown-timer.php:713
3800
- #: widgets/countdown-timer/countdown-timer.php:990
3801
- #: widgets/countdown-timer/countdown-timer.php:1262
3802
- #: widgets/countdown-timer/countdown-timer.php:1538
3803
- #: widgets/drop-caps/drop-caps.php:199 widgets/dual-button/dual-button.php:516
3804
- #: widgets/dual-button/dual-button.php:737
3805
- #: widgets/facebook-feed/facebook-feed.php:739 widgets/gallery/gallery.php:1075
3806
- #: widgets/gallery/gallery.php:1265 widgets/gallery/gallery.php:1454
3807
- #: widgets/header-info/header-info.php:116
3808
- #: widgets/header-offcanvas/header-offcanvas.php:304
3809
- #: widgets/header-offcanvas/header-offcanvas.php:473
3810
- #: widgets/header-search/header-search.php:203 widgets/heading/heading.php:350
3811
- #: widgets/heading/heading.php:519 widgets/heading/heading.php:615
3812
- #: widgets/heading/heading.php:679 widgets/heading/heading.php:776
3813
- #: widgets/heading/heading.php:853 widgets/hotspot/hotspot.php:668
3814
- #: widgets/hotspot/hotspot.php:713 widgets/hotspot/hotspot.php:751
3815
- #: widgets/icon-box/icon-box.php:820 widgets/icon-box/icon-box.php:908
3816
- #: widgets/icon-box/icon-box.php:1008
3817
- #: widgets/image-accordion/image-accordion.php:294
3818
- #: widgets/image-box/image-box.php:601
3819
- #: widgets/image-comparison/image-comparison.php:291
3820
- #: widgets/image-comparison/image-comparison.php:351
3821
- #: widgets/image-comparison/image-comparison.php:547
3822
- #: widgets/mail-chimp/mail-chimp.php:568 widgets/mail-chimp/mail-chimp.php:924
3823
- #: widgets/mail-chimp/mail-chimp.php:1218 widgets/nav-menu/nav-menu.php:1073
3824
- #: widgets/nav-menu/nav-menu.php:1305 widgets/ninja-forms/ninja-forms.php:123
3825
- #: widgets/ninja-forms/ninja-forms.php:743 widgets/page-list/page-list.php:330
3826
- #: widgets/page-list/page-list.php:458 widgets/page-list/page-list.php:689
3827
- #: widgets/page-list/page-list.php:748 widgets/piechart/piechart.php:301
3828
- #: widgets/post-list/post-list.php:650 widgets/post-tab/post-tab.php:130
3829
- #: widgets/post-tab/post-tab.php:174 widgets/pricing/pricing.php:529
3830
- #: widgets/pricing/pricing.php:1317 widgets/pricing/pricing.php:1917
3831
- #: widgets/social-share/social-share.php:627 widgets/social/social.php:482
3832
- #: widgets/tab/tab.php:549 widgets/table/table.php:781
3833
- #: widgets/table/table.php:1325 widgets/table/table.php:1616
3834
- #: widgets/table/table.php:1961 widgets/table/table.php:2105
3835
- #: widgets/table/table.php:2209 widgets/table/table.php:2485
3836
- #: widgets/team/team.php:796 widgets/team/team.php:867
3837
- #: widgets/team/team.php:959 widgets/team/team.php:1439
3838
- #: widgets/team/team.php:1567 widgets/testimonial/testimonial.php:611
3839
- #: widgets/testimonial/testimonial.php:843
3840
- #: widgets/testimonial/testimonial.php:1300
3841
- #: widgets/testimonial/testimonial.php:1484
3842
- #: widgets/testimonial/testimonial.php:1620 widgets/timeline/timeline.php:514
3843
- #: widgets/timeline/timeline.php:562 widgets/timeline/timeline.php:601
3844
- #: widgets/timeline/timeline.php:649 widgets/timeline/timeline.php:721
3845
- #: widgets/timeline/timeline.php:795 widgets/twitter-feed/twitter-feed.php:520
3846
- #: widgets/twitter-feed/twitter-feed.php:838
3847
- #: widgets/twitter-feed/twitter-feed.php:873
3848
- #: widgets/twitter-feed/twitter-feed.php:955
3849
- #: widgets/twitter-feed/twitter-feed.php:1196 widgets/we-forms/we-forms.php:255
3850
- #: widgets/we-forms/we-forms.php:421
3851
- #: widgets/woo-category-list/woo-category-list.php:542
3852
- #: widgets/woo-category-list/woo-category-list.php:840
3853
- #: widgets/woo-mini-cart/woo-mini-cart.php:312
3854
- #: widgets/woo-mini-cart/woo-mini-cart.php:390
3855
- #: widgets/woo-mini-cart/woo-mini-cart.php:772
3856
- #: widgets/woo-mini-cart/woo-mini-cart.php:914
3857
- #: widgets/woo-product-carousel/woo-product-carousel.php:732
3858
- #: widgets/woo-product-carousel/woo-product-carousel.php:783
3859
- #: widgets/woo-product-carousel/woo-product-carousel.php:868
3860
- #: widgets/woo-product-carousel/woo-product-carousel.php:909
3861
- #: widgets/woo-product-carousel/woo-product-carousel.php:986
3862
- #: widgets/woo-product-carousel/woo-product-carousel.php:1189
3863
- #: widgets/woo-product-carousel/woo-product-carousel.php:1414
3864
- #: widgets/woo-product-carousel/woo-product-carousel.php:1601
3865
- #: widgets/woo-product-carousel/woo-product-carousel.php:2064
3866
- #: widgets/woo-product-carousel/woo-product-carousel.php:2269
3867
- #: widgets/woo-product-carousel/woo-product-carousel.php:2579
3868
- #: widgets/woo-product-carousel/woo-product-carousel.php:2724
3869
- #: widgets/woo-product-list/woo-product-list.php:894
3870
- #: widgets/woo-product-list/woo-product-list.php:945
3871
- #: widgets/woo-product-list/woo-product-list.php:1031
3872
- #: widgets/woo-product-list/woo-product-list.php:1072
3873
- #: widgets/woo-product-list/woo-product-list.php:1149
3874
- #: widgets/woo-product-list/woo-product-list.php:1352
3875
- #: widgets/woo-product-list/woo-product-list.php:1578
3876
- #: widgets/woo-product-list/woo-product-list.php:1710
3877
- #: widgets/woo-product-list/woo-product-list.php:1935
3878
- #: widgets/woo-product-list/woo-product-list.php:2116
3879
- #: widgets/woo-product-list/woo-product-list.php:2367
3880
- #: widgets/wp-forms/wp-forms.php:267 widgets/wp-forms/wp-forms.php:566
3881
- msgid "Margin"
3882
- msgstr ""
3883
-
3884
- #: widgets/accordion/accordion.php:619
3885
- #: widgets/advanced-accordion/advanced-accordion.php:616
3886
- msgid "Slide Closed Icon"
3887
- msgstr ""
3888
-
3889
- #: widgets/accordion/accordion.php:681
3890
- #: widgets/advanced-accordion/advanced-accordion.php:677
3891
- msgid " Slide Open icon"
3892
- msgstr ""
3893
-
3894
- #: widgets/advanced-accordion/advanced-accordion-handler.php:11
3895
- msgid "Advanced Accordion"
3896
- msgstr ""
3897
-
3898
- #: widgets/advanced-accordion/advanced-accordion.php:53
3899
- msgid "Keep this open?"
3900
- msgstr ""
3901
-
3902
- #: widgets/advanced-tab/advanced-tab-handler.php:11
3903
- #: widgets/advanced-tab/advanced-tab.php:34
3904
- msgid "Advanced Tab"
3905
- msgstr ""
3906
-
3907
- #: widgets/advanced-tab/advanced-tab.php:45
3908
- #: widgets/image-comparison/image-comparison.php:53 widgets/tab/tab.php:44
3909
- #: widgets/timeline/timeline.php:49
3910
- #: widgets/woo-product-carousel/woo-product-carousel.php:191
3911
- #: widgets/woo-product-list/woo-product-list.php:149
3912
- msgid "Horizontal"
3913
- msgstr ""
3914
-
3915
- #: widgets/advanced-tab/advanced-tab.php:46
3916
- #: widgets/image-comparison/image-comparison.php:54 widgets/tab/tab.php:45
3917
- #: widgets/timeline/timeline.php:48
3918
- #: widgets/woo-product-carousel/woo-product-carousel.php:190
3919
- #: widgets/woo-product-list/woo-product-list.php:148
3920
- msgid "Vertical"
3921
- msgstr ""
3922
-
3923
- #: widgets/advanced-tab/advanced-tab.php:54 widgets/tab/tab.php:53
3924
- msgid "Vertical Nav Width"
3925
- msgstr ""
3926
-
3927
- #: widgets/advanced-tab/advanced-tab.php:79 widgets/gallery/gallery.php:2143
3928
- #: widgets/hotspot/hotspot.php:513 widgets/tab/tab.php:78
3929
- msgid "Show Caret"
3930
- msgstr ""
3931
-
3932
- #: widgets/advanced-tab/advanced-tab.php:91
3933
- #: widgets/advanced-toggle/advanced-toggle.php:41
3934
- #: widgets/blog-posts/blog-posts.php:290
3935
- #: widgets/countdown-timer/countdown-timer.php:48
3936
- #: widgets/hotspot/hotspot.php:41 widgets/social-share/social-share.php:49
3937
- #: widgets/social/social.php:43 widgets/tab/tab.php:90
3938
- #: widgets/testimonial/testimonial.php:50
3939
- msgid "Choose Style"
3940
- msgstr ""
3941
-
3942
- #: widgets/advanced-tab/advanced-tab.php:96
3943
- #: widgets/countdown-timer/countdown-timer.php:53 widgets/tab/tab.php:95
3944
- msgid "image style 1"
3945
- msgstr ""
3946
-
3947
- #: widgets/advanced-tab/advanced-tab.php:102
3948
- #: widgets/countdown-timer/countdown-timer.php:59 widgets/tab/tab.php:101
3949
- msgid "image style 2"
3950
- msgstr ""
3951
-
3952
- #: widgets/advanced-tab/advanced-tab.php:108
3953
- #: widgets/countdown-timer/countdown-timer.php:65 widgets/tab/tab.php:107
3954
- msgid "image style 3"
3955
- msgstr ""
3956
-
3957
- #: widgets/advanced-tab/advanced-tab.php:114
3958
- #: widgets/countdown-timer/countdown-timer.php:71 widgets/tab/tab.php:113
3959
- #: widgets/testimonial/testimonial.php:73
3960
- msgid "image style 4"
3961
- msgstr ""
3962
-
3963
- #: widgets/advanced-tab/advanced-tab.php:120
3964
- #: widgets/countdown-timer/countdown-timer.php:77 widgets/tab/tab.php:119
3965
- #: widgets/testimonial/testimonial.php:79
3966
- msgid "image style 5"
3967
- msgstr ""
3968
-
3969
- #: widgets/advanced-tab/advanced-tab.php:135 widgets/tab/tab.php:134
3970
- msgid "Full Width Nav"
3971
- msgstr ""
3972
-
3973
- #: widgets/advanced-tab/advanced-tab.php:150 widgets/tab/tab.php:149
3974
- msgid "Nav Icon Position"
3975
- msgstr ""
3976
-
3977
- #: widgets/advanced-tab/advanced-tab.php:164
3978
- #: widgets/advanced-tab/advanced-tab.php:189
3979
- #: widgets/advanced-tab/advanced-tab.php:214
3980
- #: widgets/advanced-tab/advanced-tab.php:239
3981
- #: widgets/blog-posts/blog-posts.php:935
3982
- #: widgets/dual-button/dual-button.php:227
3983
- #: widgets/dual-button/dual-button.php:251
3984
- #: widgets/dual-button/dual-button.php:356
3985
- #: widgets/dual-button/dual-button.php:380
3986
- #: widgets/header-info/header-info.php:194
3987
- #: widgets/mail-chimp/mail-chimp.php:1019
3988
- #: widgets/mail-chimp/mail-chimp.php:1045 widgets/pricing/pricing.php:387
3989
- #: widgets/tab/tab.php:163 widgets/tab/tab.php:188 widgets/tab/tab.php:213
3990
- #: widgets/tab/tab.php:238 widgets/table/table.php:163
3991
- #: widgets/table/table.php:438 widgets/table/table.php:2357
3992
- #: widgets/vertical-menu/vertical-menu.php:372
3993
- msgid "Icon Spacing"
3994
- msgstr ""
3995
-
3996
- #: widgets/advanced-tab/advanced-tab.php:265 widgets/tab/tab.php:264
3997
- msgid "Nav Alignment"
3998
- msgstr ""
3999
-
4000
- #: widgets/advanced-tab/advanced-tab.php:273
4001
- #: widgets/advanced-tab/advanced-tab.php:303
4002
- #: widgets/advanced-tab/advanced-tab.php:329
4003
- #: widgets/advanced-toggle/advanced-toggle.php:85
4004
- #: widgets/blog-posts/blog-posts.php:513 widgets/blog-posts/blog-posts.php:881
4005
- #: widgets/blog-posts/blog-posts.php:1646
4006
- #: widgets/blog-posts/blog-posts.php:1841 widgets/button/button.php:133
4007
- #: widgets/caldera-forms/caldera-forms.php:580
4008
- #: widgets/category-list/category-list.php:154
4009
- #: widgets/contact-form7/contact-form7.php:580
4010
- #: widgets/creative-button/creative-button.php:130
4011
- #: widgets/dual-button/dual-button.php:74
4012
- #: widgets/dual-button/dual-button.php:536
4013
- #: widgets/dual-button/dual-button.php:757 widgets/funfact/funfact.php:231
4014
- #: widgets/gallery/gallery.php:182 widgets/gallery/gallery.php:208
4015
- #: widgets/gallery/gallery.php:2093 widgets/gallery/gallery.php:2126
4016
- #: widgets/header-offcanvas/header-offcanvas.php:240
4017
- #: widgets/header-search/header-search.php:314 widgets/heading/heading.php:302
4018
- #: widgets/hotspot/hotspot.php:494 widgets/icon-box/icon-box.php:396
4019
- #: widgets/image-accordion/image-accordion.php:444
4020
- #: widgets/image-accordion/image-accordion.php:482
4021
- #: widgets/image-box/image-box.php:236
4022
- #: widgets/instagram-feed/instagram-feed.php:259
4023
- #: widgets/motion-text/motion-text.php:96 widgets/nav-menu/nav-menu.php:122
4024
- #: widgets/ninja-forms/ninja-forms.php:75
4025
- #: widgets/ninja-forms/ninja-forms.php:244
4026
- #: widgets/ninja-forms/ninja-forms.php:607 widgets/page-list/page-list.php:197
4027
- #: widgets/page-list/page-list.php:404 widgets/page-list/page-list.php:528
4028
- #: widgets/piechart/piechart.php:321 widgets/post-list/post-list.php:321
4029
- #: widgets/pricing/pricing.php:454 widgets/pricing/pricing.php:682
4030
- #: widgets/pricing/pricing.php:1687 widgets/pricing/pricing.php:2260
4031
- #: widgets/social-share/social-share.php:141
4032
- #: widgets/social-share/social-share.php:424 widgets/social/social.php:135
4033
- #: widgets/social/social.php:386 widgets/tab/tab.php:272
4034
- #: widgets/tab/tab.php:302 widgets/table/table.php:270
4035
- #: widgets/table/table.php:519 widgets/tablepress/tablepress.php:143
4036
- #: widgets/tablepress/tablepress.php:169 widgets/team/team.php:504
4037
- #: widgets/team/team.php:636 widgets/team/team.php:1476
4038
- #: widgets/testimonial/testimonial.php:722
4039
- #: widgets/testimonial/testimonial.php:748
4040
- #: widgets/testimonial/testimonial.php:1579 widgets/timeline/timeline.php:425
4041
- #: widgets/video/video.php:297 widgets/we-forms/we-forms.php:399
4042
- #: widgets/woo-category-list/woo-category-list.php:575
4043
- #: widgets/woo-category-list/woo-category-list.php:873
4044
- #: widgets/woo-mini-cart/woo-mini-cart.php:83
4045
- #: widgets/woo-product-carousel/woo-product-carousel.php:40
4046
- #: widgets/woo-product-carousel/woo-product-carousel.php:642
4047
- #: widgets/woo-product-carousel/woo-product-carousel.php:1104
4048
- #: widgets/woo-product-carousel/woo-product-carousel.php:1551
4049
- #: widgets/woo-product-carousel/woo-product-carousel.php:2313
4050
- #: widgets/woo-product-carousel/woo-product-carousel.php:2506
4051
- #: widgets/woo-product-list/woo-product-list.php:801
4052
- #: widgets/woo-product-list/woo-product-list.php:1267
4053
- #: widgets/woo-product-list/woo-product-list.php:1885
4054
- #: widgets/woo-product-list/woo-product-list.php:2294
4055
- #: widgets/wp-forms/wp-forms.php:107 widgets/wp-forms/wp-forms.php:434
4056
- msgid "Center"
4057
- msgstr ""
4058
-
4059
- #: widgets/advanced-tab/advanced-tab.php:295
4060
- msgid "Nav Content Alignment"
4061
- msgstr ""
4062
-
4063
- #: widgets/advanced-tab/advanced-tab.php:321 widgets/tab/tab.php:294
4064
- msgid "Nav Item Alignment"
4065
- msgstr ""
4066
-
4067
- #: widgets/advanced-tab/advanced-tab.php:356 widgets/heading/heading.php:490
4068
- #: widgets/heading/heading.php:542 widgets/heading/heading.php:577
4069
- #: widgets/heading/heading.php:642 widgets/page-list/page-list.php:134
4070
- #: widgets/timeline/timeline.php:75
4071
- msgid "Sub Title"
4072
- msgstr ""
4073
-
4074
- #: widgets/advanced-tab/advanced-tab.php:365
4075
- msgid "Z-Index"
4076
- msgstr ""
4077
-
4078
- #: widgets/advanced-tab/advanced-tab.php:380
4079
- #: widgets/advanced-toggle/advanced-toggle.php:181 widgets/tab/tab.php:329
4080
- msgid "Keep this tab open? "
4081
- msgstr ""
4082
-
4083
- #: widgets/advanced-tab/advanced-tab.php:390 widgets/icon-box/icon-box.php:42
4084
- #: widgets/tab/tab.php:339 widgets/table/table.php:94
4085
- #: widgets/table/table.php:369
4086
- msgid "Icon Type"
4087
- msgstr ""
4088
-
4089
- #: widgets/advanced-tab/advanced-tab.php:403 widgets/funfact/funfact.php:57
4090
- #: widgets/hotspot/hotspot.php:728 widgets/icon-box/icon-box.php:55
4091
- #: widgets/image-box/image-box.php:37 widgets/image-box/image-box.php:899
4092
- #: widgets/piechart/piechart.php:95 widgets/pricing/pricing.php:91
4093
- #: widgets/tab/tab.php:352 widgets/table/table.php:107
4094
- #: widgets/table/table.php:134 widgets/table/table.php:382
4095
- #: widgets/table/table.php:408 widgets/team/team.php:746
4096
- #: widgets/team/team.php:1773
4097
- #: widgets/woo-category-list/woo-category-list.php:362
4098
- #: widgets/woo-product-carousel/woo-product-carousel.php:966
4099
- #: widgets/woo-product-list/woo-product-list.php:1129
4100
- msgid "Image"
4101
- msgstr ""
4102
-
4103
- #: widgets/advanced-tab/advanced-tab.php:412
4104
- #: widgets/image-box/image-box.php:155 widgets/tab/tab.php:361
4105
- #: widgets/timeline/timeline.php:121
4106
- msgid "Title Icon"
4107
- msgstr ""
4108
-
4109
- #: widgets/advanced-tab/advanced-tab.php:456 widgets/faq/faq.php:139
4110
- #: widgets/tab/tab.php:405
4111
- msgid "Title Border Radius"
4112
- msgstr ""
4113
-
4114
- #: widgets/advanced-tab/advanced-tab.php:467
4115
- #: widgets/advanced-toggle/advanced-toggle.php:192 widgets/faq/faq.php:66
4116
- #: widgets/tab/tab.php:416
4117
- msgid "Tab content"
4118
- msgstr ""
4119
-
4120
- #: widgets/advanced-tab/advanced-tab.php:490 widgets/tab/tab.php:500
4121
- msgid "Nav Wrapper "
4122
- msgstr ""
4123
-
4124
- #: widgets/advanced-tab/advanced-tab.php:498 widgets/tab/tab.php:508
4125
- msgid "Make Fluid"
4126
- msgstr ""
4127
-
4128
- #: widgets/advanced-tab/advanced-tab.php:588 widgets/tab/tab.php:598
4129
- msgid "Nav Items "
4130
- msgstr ""
4131
-
4132
- #: widgets/advanced-tab/advanced-tab.php:596
4133
- #: widgets/advanced-tab/advanced-tab.php:2067
4134
- #: widgets/advanced-toggle/advanced-toggle.php:401
4135
- #: widgets/blog-posts/blog-posts.php:2241 widgets/button/button.php:193
4136
- #: widgets/caldera-forms/caldera-forms.php:79
4137
- #: widgets/caldera-forms/caldera-forms.php:122
4138
- #: widgets/caldera-forms/caldera-forms.php:467
4139
- #: widgets/caldera-forms/caldera-forms.php:477
4140
- #: widgets/caldera-forms/caldera-forms.php:599
4141
- #: widgets/client-logo/client-logo.php:868
4142
- #: widgets/contact-form7/contact-form7.php:78
4143
- #: widgets/contact-form7/contact-form7.php:121
4144
- #: widgets/contact-form7/contact-form7.php:467
4145
- #: widgets/contact-form7/contact-form7.php:477
4146
- #: widgets/contact-form7/contact-form7.php:599
4147
- #: widgets/creative-button/creative-button.php:273
4148
- #: widgets/dual-button/dual-button.php:440
4149
- #: widgets/dual-button/dual-button.php:661
4150
- #: widgets/dual-button/dual-button.php:872 widgets/funfact/funfact.php:760
4151
- #: widgets/funfact/funfact.php:895 widgets/gallery/gallery.php:1067
4152
- #: widgets/gallery/gallery.php:1257 widgets/gallery/gallery.php:1446
4153
- #: widgets/gallery/gallery.php:2658 widgets/gallery/gallery.php:2749
4154
- #: widgets/header-info/header-info.php:153 widgets/hotspot/hotspot.php:648
4155
- #: widgets/hotspot/hotspot.php:692 widgets/icon-box/icon-box.php:1021
4156
- #: widgets/icon-box/icon-box.php:1548
4157
- #: widgets/image-accordion/image-accordion.php:533
4158
- #: widgets/image-box/image-box.php:1139 widgets/image-box/image-box.php:1222
4159
- #: widgets/image-box/image-box.php:1282
4160
- #: widgets/instagram-feed/instagram-feed.php:862
4161
- #: widgets/instagram-feed/instagram-feed.php:1076
4162
- #: widgets/mail-chimp/mail-chimp.php:547 widgets/mail-chimp/mail-chimp.php:592
4163
- #: widgets/mail-chimp/mail-chimp.php:816
4164
- #: widgets/motion-text/motion-text.php:306 widgets/nav-menu/nav-menu.php:297
4165
- #: widgets/nav-menu/nav-menu.php:517 widgets/nav-menu/nav-menu.php:911
4166
- #: widgets/nav-menu/nav-menu.php:1044 widgets/ninja-forms/ninja-forms.php:115
4167
- #: widgets/ninja-forms/ninja-forms.php:165
4168
- #: widgets/ninja-forms/ninja-forms.php:216
4169
- #: widgets/ninja-forms/ninja-forms.php:296
4170
- #: widgets/ninja-forms/ninja-forms.php:521
4171
- #: widgets/ninja-forms/ninja-forms.php:664
4172
- #: widgets/ninja-forms/ninja-forms.php:827 widgets/page-list/page-list.php:319
4173
- #: widgets/page-list/page-list.php:808 widgets/piechart/piechart.php:289
4174
- #: widgets/post-list/post-list.php:605 widgets/post-tab/post-tab.php:165
4175
- #: widgets/pricing/pricing.php:747 widgets/pricing/pricing.php:1337
4176
- #: widgets/pricing/pricing.php:1959 widgets/social-share/social-share.php:615
4177
- #: widgets/social/social.php:525 widgets/tab/tab.php:606
4178
- #: widgets/table/table.php:904 widgets/table/table.php:1076
4179
- #: widgets/table/table.php:1338 widgets/table/table.php:1715
4180
- #: widgets/table/table.php:1835 widgets/table/table.php:1870
4181
- #: widgets/table/table.php:2000 widgets/table/table.php:2029
4182
- #: widgets/team/team.php:1604 widgets/testimonial/testimonial.php:834
4183
- #: widgets/timeline/timeline.php:506 widgets/timeline/timeline.php:554
4184
- #: widgets/timeline/timeline.php:593 widgets/timeline/timeline.php:713
4185
- #: widgets/timeline/timeline.php:787 widgets/twitter-feed/twitter-feed.php:343
4186
- #: widgets/twitter-feed/twitter-feed.php:829
4187
- #: widgets/twitter-feed/twitter-feed.php:864
4188
- #: widgets/twitter-feed/twitter-feed.php:946
4189
- #: widgets/vertical-menu/vertical-menu.php:186
4190
- #: widgets/vertical-menu/vertical-menu.php:340
4191
- #: widgets/vertical-menu/vertical-menu.php:461 widgets/video/video.php:374
4192
- #: widgets/we-forms/we-forms.php:136
4193
- #: widgets/woo-category-list/woo-category-list.php:629
4194
- #: widgets/woo-category-list/woo-category-list.php:712
4195
- #: widgets/woo-category-list/woo-category-list.php:924
4196
- #: widgets/woo-category-list/woo-category-list.php:1006
4197
- #: widgets/woo-mini-cart/woo-mini-cart.php:149
4198
- #: widgets/woo-mini-cart/woo-mini-cart.php:687
4199
- #: widgets/woo-mini-cart/woo-mini-cart.php:936
4200
- #: widgets/woo-mini-cart/woo-mini-cart.php:966
4201
- #: widgets/woo-mini-cart/woo-mini-cart.php:1012
4202
- #: widgets/woo-product-carousel/woo-product-carousel.php:799
4203
- #: widgets/woo-product-carousel/woo-product-carousel.php:925
4204
- #: widgets/woo-product-carousel/woo-product-carousel.php:1216
4205
- #: widgets/woo-product-carousel/woo-product-carousel.php:1849
4206
- #: widgets/woo-product-carousel/woo-product-carousel.php:2448
4207
- #: widgets/woo-product-carousel/woo-product-carousel.php:2743
4208
- #: widgets/woo-product-list/woo-product-list.php:961
4209
- #: widgets/woo-product-list/woo-product-list.php:1088
4210
- #: widgets/woo-product-list/woo-product-list.php:1380
4211
- #: widgets/woo-product-list/woo-product-list.php:1729
4212
- #: widgets/woo-product-list/woo-product-list.php:2141
4213
- #: widgets/woo-product-list/woo-product-list.php:2186
4214
- #: widgets/woo-product-list/woo-product-list.php:2236
4215
- #: widgets/wp-forms/wp-forms.php:79 widgets/wp-forms/wp-forms.php:345
4216
- #: widgets/wp-forms/wp-forms.php:379 widgets/wp-forms/wp-forms.php:488
4217
- msgid "Typography"
4218
- msgstr ""
4219
-
4220
- #: widgets/advanced-tab/advanced-tab.php:604
4221
- #: widgets/blog-posts/blog-posts.php:947 widgets/gallery/gallery.php:1691
4222
- #: widgets/header-info/header-info.php:175
4223
- #: widgets/image-accordion/image-accordion.php:392
4224
- #: widgets/mail-chimp/mail-chimp.php:1071 widgets/post-list/post-list.php:614
4225
- #: widgets/pricing/pricing.php:255 widgets/pricing/pricing.php:1966
4226
- #: widgets/social-share/social-share.php:590 widgets/social/social.php:500
4227
- #: widgets/tab/tab.php:614 widgets/table/table.php:878
4228
- #: widgets/table/table.php:1051 widgets/team/team.php:1579
4229
- #: widgets/timeline/timeline.php:688 widgets/timeline/timeline.php:762
4230
- #: widgets/video/video.php:349 widgets/woo-mini-cart/woo-mini-cart.php:124
4231
- #: widgets/woo-product-carousel/woo-product-carousel.php:2469
4232
- #: widgets/woo-product-list/woo-product-list.php:2257
4233
- msgid "Icon Size"
4234
- msgstr ""
4235
-
4236
- #: widgets/advanced-tab/advanced-tab.php:629
4237
- #: widgets/instagram-feed/instagram-feed.php:706
4238
- #: widgets/mail-chimp/mail-chimp.php:729 widgets/tab/tab.php:639
4239
- #: widgets/testimonial/testimonial.php:1660
4240
- #: widgets/twitter-feed/twitter-feed.php:543
4241
- #: widgets/twitter-feed/twitter-feed.php:569
4242
- #: widgets/twitter-feed/twitter-feed.php:1069
4243
- msgid "Margin Right"
4244
- msgstr ""
4245
-
4246
- #: widgets/advanced-tab/advanced-tab.php:700
4247
- #: widgets/advanced-tab/advanced-tab.php:774
4248
- #: widgets/advanced-toggle/advanced-toggle.php:143
4249
- #: widgets/advanced-toggle/advanced-toggle.php:165 widgets/faq/faq.php:101
4250
- #: widgets/piechart/piechart.php:212 widgets/pricing/pricing.php:479
4251
- #: widgets/tab/tab.php:711 widgets/tab/tab.php:785
4252
- #: widgets/timeline/timeline.php:533 widgets/timeline/timeline.php:828
4253
- msgid "Title Color"
4254
- msgstr ""
4255
-
4256
- #: widgets/advanced-tab/advanced-tab.php:712
4257
- #: widgets/advanced-tab/advanced-tab.php:785
4258
- #: widgets/header-info/header-info.php:162 widgets/icon-box/icon-box.php:516
4259
- #: widgets/image-box/image-box.php:406 widgets/image-box/image-box.php:450
4260
- #: widgets/pricing/pricing.php:242 widgets/tab/tab.php:723
4261
- #: widgets/tab/tab.php:796 widgets/table/table.php:183
4262
- #: widgets/table/table.php:458 widgets/table/table.php:1572
4263
- #: widgets/table/table.php:2323 widgets/team/team.php:1976
4264
- #: widgets/timeline/timeline.php:271 widgets/timeline/timeline.php:1024
4265
- #: widgets/timeline/timeline.php:1075
4266
- #: widgets/woo-product-carousel/woo-product-carousel.php:1447
4267
- #: widgets/woo-product-carousel/woo-product-carousel.php:1486
4268
- #: widgets/woo-product-carousel/woo-product-carousel.php:2606
4269
- #: widgets/woo-product-carousel/woo-product-carousel.php:2662
4270
- #: widgets/woo-product-list/woo-product-list.php:1611
4271
- #: widgets/woo-product-list/woo-product-list.php:1650
4272
- #: widgets/woo-product-list/woo-product-list.php:2394
4273
- #: widgets/woo-product-list/woo-product-list.php:2450
4274
- msgid "Icon Color"
4275
- msgstr ""
4276
-
4277
- #: widgets/advanced-tab/advanced-tab.php:838 widgets/tab/tab.php:849
4278
- msgid "First and Last Child Border Radius"
4279
- msgstr ""
4280
-
4281
- #: widgets/advanced-tab/advanced-tab.php:847 widgets/tab/tab.php:858
4282
- msgid "First Child Border Radius"
4283
- msgstr ""
4284
-
4285
- #: widgets/advanced-tab/advanced-tab.php:859 widgets/tab/tab.php:870
4286
- msgid "First Child Border Width"
4287
- msgstr ""
4288
-
4289
- #: widgets/advanced-tab/advanced-tab.php:871 widgets/tab/tab.php:882
4290
- msgid "Last Child Border Radius"
4291
- msgstr ""
4292
-
4293
- #: widgets/advanced-tab/advanced-tab.php:883 widgets/tab/tab.php:894
4294
- msgid "Last Child Border Width"
4295
- msgstr ""
4296
-
4297
- #: widgets/advanced-tab/advanced-tab.php:899 widgets/tab/tab.php:910
4298
- msgid "Caret "
4299
- msgstr ""
4300
-
4301
- #: widgets/advanced-tab/advanced-tab.php:941
4302
- #: widgets/advanced-tab/advanced-tab.php:1066
4303
- #: widgets/advanced-tab/advanced-tab.php:1191
4304
- #: widgets/advanced-tab/advanced-tab.php:1444
4305
- #: widgets/advanced-tab/advanced-tab.php:1750
4306
- #: widgets/blog-posts/blog-posts.php:1125
4307
- #: widgets/blog-posts/blog-posts.php:1749
4308
- #: widgets/caldera-forms/caldera-forms.php:194
4309
- #: widgets/caldera-forms/caldera-forms.php:250
4310
- #: widgets/caldera-forms/caldera-forms.php:687
4311
- #: widgets/category-list/category-list.php:246
4312
- #: widgets/client-logo/client-logo.php:1159
4313
- #: widgets/client-logo/client-logo.php:1249
4314
- #: widgets/contact-form7/contact-form7.php:193
4315
- #: widgets/contact-form7/contact-form7.php:250
4316
- #: widgets/contact-form7/contact-form7.php:687
4317
- #: widgets/countdown-timer/countdown-timer.php:238
4318
- #: widgets/countdown-timer/countdown-timer.php:1639
4319
- #: widgets/dual-button/dual-button.php:960
4320
- #: widgets/facebook-feed/facebook-feed.php:577 widgets/funfact/funfact.php:1115
4321
- #: widgets/gallery/gallery.php:2189 widgets/gallery/gallery.php:2296
4322
- #: widgets/gallery/gallery.php:2450 widgets/gallery/gallery.php:2535
4323
- #: widgets/header-search/header-search.php:270 widgets/heading/heading.php:694
4324
- #: widgets/heading/heading.php:826 widgets/icon-box/icon-box.php:724
4325
- #: widgets/image-box/image-box.php:383
4326
- #: widgets/image-comparison/image-comparison.php:411
4327
- #: widgets/nav-menu/nav-menu.php:153 widgets/nav-menu/nav-menu.php:1278
4328
- #: widgets/page-list/page-list.php:620 widgets/post-list/post-list.php:413
4329
- #: widgets/progressbar/progressbar.php:150
4330
- #: widgets/social-share/social-share.php:535 widgets/social/social.php:577
4331
- #: widgets/tab/tab.php:952 widgets/tab/tab.php:1077 widgets/tab/tab.php:1202
4332
- #: widgets/tab/tab.php:1455 widgets/tab/tab.php:1761
4333
- #: widgets/table/table.php:934 widgets/table/table.php:1207
4334
- #: widgets/table/table.php:2430 widgets/team/team.php:775
4335
- #: widgets/team/team.php:1070 widgets/team/team.php:1655
4336
- #: widgets/team/team.php:2141 widgets/testimonial/testimonial.php:792
4337
- #: widgets/testimonial/testimonial.php:1277
4338
- #: widgets/testimonial/testimonial.php:1794
4339
- #: widgets/testimonial/testimonial.php:1904
4340
- #: widgets/testimonial/testimonial.php:2069 widgets/video/video.php:425
4341
- #: widgets/woo-category-list/woo-category-list.php:382
4342
- #: widgets/woo-category-list/woo-category-list.php:516
4343
- #: widgets/woo-category-list/woo-category-list.php:814
4344
- #: widgets/woo-mini-cart/woo-mini-cart.php:696
4345
- msgid "Height"
4346
- msgstr ""
4347
-
4348
- #: widgets/advanced-tab/advanced-tab.php:984
4349
- #: widgets/advanced-tab/advanced-tab.php:1638 widgets/tab/tab.php:995
4350
- #: widgets/tab/tab.php:1649
4351
- msgid "Bottom Icon Position"
4352
- msgstr ""
4353
-
4354
- #: widgets/advanced-tab/advanced-tab.php:1221 widgets/tab/tab.php:1232
4355
- msgid "Bottom Line"
4356
- msgstr ""
4357
-
4358
- #: widgets/advanced-tab/advanced-tab.php:1277 widgets/tab/tab.php:1288
4359
- msgid "Hear Symbol Background"
4360
- msgstr ""
4361
-
4362
- #: widgets/advanced-tab/advanced-tab.php:1301
4363
- #: widgets/advanced-tab/advanced-tab.php:1586
4364
- #: widgets/advanced-tab/advanced-tab.php:1813 widgets/tab/tab.php:1312
4365
- #: widgets/tab/tab.php:1597 widgets/tab/tab.php:1824
4366
- msgid "Caret Width"
4367
- msgstr ""
4368
-
4369
- #: widgets/advanced-tab/advanced-tab.php:1327
4370
- #: widgets/advanced-tab/advanced-tab.php:1612
4371
- #: widgets/advanced-tab/advanced-tab.php:1839 widgets/tab/tab.php:1338
4372
- #: widgets/tab/tab.php:1623 widgets/tab/tab.php:1850
4373
- msgid "Caret Height"
4374
- msgstr ""
4375
-
4376
- #: widgets/advanced-tab/advanced-tab.php:1353
4377
- #: widgets/advanced-tab/advanced-tab.php:1865 widgets/tab/tab.php:1364
4378
- #: widgets/tab/tab.php:1876
4379
- msgid "Bottom Position"
4380
- msgstr ""
4381
-
4382
- #: widgets/advanced-tab/advanced-tab.php:1383
4383
- #: widgets/advanced-tab/advanced-tab.php:1668
4384
- #: widgets/advanced-tab/advanced-tab.php:1895 widgets/tab/tab.php:1394
4385
- #: widgets/tab/tab.php:1679 widgets/tab/tab.php:1906
4386
- msgid "Left Position"
4387
- msgstr ""
4388
-
4389
- #: widgets/advanced-tab/advanced-tab.php:1928
4390
- #: widgets/image-box/image-box.php:119 widgets/image-box/image-box.php:1032
4391
- #: widgets/tab/tab.php:1939 widgets/table/table.php:1014
4392
- #: widgets/tablepress/tablepress.php:410
4393
- #: widgets/woo-mini-cart/woo-mini-cart.php:269
4394
- msgid "Body"
4395
- msgstr ""
4396
-
4397
- #: widgets/advanced-tab/advanced-tab.php:1935 widgets/tab/tab.php:1946
4398
- msgid "Body Color"
4399
- msgstr ""
4400
-
4401
- #: widgets/advanced-tab/advanced-tab.php:2004
4402
- #: widgets/blog-posts/blog-posts.php:554 widgets/tab/tab.php:444
4403
- #: widgets/table/table.php:746
4404
- msgid "Wrapper"
4405
- msgstr ""
4406
-
4407
- #: widgets/advanced-tab/advanced-tab.php:2059
4408
- msgid "Sub Title "
4409
- msgstr ""
4410
-
4411
- #: widgets/advanced-toggle/advanced-toggle-handler.php:11
4412
- msgid "Advanced Toggle"
4413
- msgstr ""
4414
-
4415
- #: widgets/advanced-toggle/advanced-toggle.php:34
4416
- msgid "Advanced Tooggle"
4417
- msgstr ""
4418
-
4419
- #: widgets/advanced-toggle/advanced-toggle.php:46
4420
- #: widgets/blog-posts/blog-posts.php:295 widgets/hotspot/hotspot.php:46
4421
- msgid "Image style 1"
4422
- msgstr ""
4423
-
4424
- #: widgets/advanced-toggle/advanced-toggle.php:52
4425
- #: widgets/blog-posts/blog-posts.php:301 widgets/hotspot/hotspot.php:52
4426
- msgid "Image style 2"
4427
- msgstr ""
4428
-
4429
- #: widgets/advanced-toggle/advanced-toggle.php:64
4430
- #: widgets/mail-chimp/mail-chimp.php:71
4431
- msgid "Please note!"
4432
- msgstr ""
4433
-
4434
- #: widgets/advanced-toggle/advanced-toggle.php:64
4435
- msgid "This style show's only first two tabs."
4436
- msgstr ""
4437
-
4438
- #: widgets/advanced-toggle/advanced-toggle.php:77
4439
- #: widgets/blog-posts/blog-posts.php:505 widgets/blog-posts/blog-posts.php:873
4440
- #: widgets/blog-posts/blog-posts.php:1638
4441
- #: widgets/blog-posts/blog-posts.php:1833 widgets/button/button.php:125
4442
- #: widgets/caldera-forms/caldera-forms.php:572
4443
- #: widgets/category-list/category-list.php:146
4444
- #: widgets/contact-form7/contact-form7.php:572
4445
- #: widgets/creative-button/creative-button.php:122
4446
- #: widgets/dual-button/dual-button.php:66
4447
- #: widgets/dual-button/dual-button.php:528
4448
- #: widgets/dual-button/dual-button.php:749 widgets/funfact/funfact.php:223
4449
- #: widgets/gallery/gallery.php:200
4450
- #: widgets/header-offcanvas/header-offcanvas.php:232
4451
- #: widgets/header-search/header-search.php:306 widgets/heading/heading.php:294
4452
- #: widgets/hotspot/hotspot.php:486
4453
- #: widgets/image-accordion/image-accordion.php:436
4454
- #: widgets/image-box/image-box.php:228
4455
- #: widgets/instagram-feed/instagram-feed.php:251
4456
- #: widgets/motion-text/motion-text.php:88
4457
- #: widgets/ninja-forms/ninja-forms.php:67
4458
- #: widgets/ninja-forms/ninja-forms.php:236
4459
- #: widgets/ninja-forms/ninja-forms.php:599 widgets/page-list/page-list.php:373
4460
- #: widgets/page-list/page-list.php:520 widgets/post-list/post-list.php:313
4461
- #: widgets/pricing/pricing.php:446 widgets/pricing/pricing.php:674
4462
- #: widgets/pricing/pricing.php:2252 widgets/social-share/social-share.php:133
4463
- #: widgets/social-share/social-share.php:416 widgets/social/social.php:127
4464
- #: widgets/social/social.php:378 widgets/team/team.php:628
4465
- #: widgets/team/team.php:932 widgets/team/team.php:1468
4466
- #: widgets/testimonial/testimonial.php:1571 widgets/timeline/timeline.php:417
4467
- #: widgets/video/video.php:288 widgets/woo-mini-cart/woo-mini-cart.php:75
4468
- #: widgets/woo-product-carousel/woo-product-carousel.php:2304
4469
- #: widgets/wp-forms/wp-forms.php:99 widgets/wp-forms/wp-forms.php:426
4470
- msgid "Alignment"
4471
- msgstr ""
4472
-
4473
- #: widgets/advanced-toggle/advanced-toggle.php:123
4474
- msgid "Indicator Background Color"
4475
- msgstr ""
4476
-
4477
- #: widgets/advanced-toggle/advanced-toggle.php:216
4478
- msgid "Switch Container"
4479
- msgstr ""
4480
-
4481
- #: widgets/advanced-toggle/advanced-toggle.php:283
4482
- msgid "Switch Toggle"
4483
- msgstr ""
4484
-
4485
- #: widgets/advanced-toggle/advanced-toggle.php:316
4486
- msgid "This control working only active side"
4487
- msgstr ""
4488
-
4489
- #: widgets/advanced-toggle/advanced-toggle.php:352
4490
- #: widgets/advanced-toggle/advanced-toggle.php:373
4491
- msgid "Toggle Color"
4492
- msgstr ""
4493
-
4494
- #: widgets/blog-posts/blog-posts-handler.php:11
4495
- msgid "Blog Posts"
4496
- msgstr ""
4497
-
4498
- #: widgets/blog-posts/blog-posts.php:40
4499
- #: widgets/category-list/category-list.php:45
4500
- #: widgets/facebook-feed/facebook-feed.php:199 widgets/gallery/gallery.php:91
4501
- #: widgets/gallery/gallery.php:348 widgets/page-list/page-list.php:45
4502
- #: widgets/post-list/post-list.php:120 widgets/testimonial/testimonial.php:40
4503
- #: widgets/testimonial/testimonial.php:568
4504
- #: widgets/woo-category-list/woo-category-list.php:116
4505
- #: widgets/woo-product-carousel/woo-product-carousel.php:179
4506
- #: widgets/woo-product-list/woo-product-list.php:134
4507
- msgid "Layout"
4508
- msgstr ""
4509
-
4510
- #: widgets/blog-posts/blog-posts.php:46
4511
- msgid "Layout Style"
4512
- msgstr ""
4513
-
4514
- #: widgets/blog-posts/blog-posts.php:49
4515
- #: widgets/social-share/social-share.php:449 widgets/social/social.php:411
4516
- #: widgets/team/team.php:1501
4517
- msgid "Block"
4518
- msgstr ""
4519
-
4520
- #: widgets/blog-posts/blog-posts.php:50
4521
- msgid "Grid With Thumb"
4522
- msgstr ""
4523
-
4524
- #: widgets/blog-posts/blog-posts.php:51
4525
- msgid "Grid Without Thumb"
4526
- msgstr ""
4527
-
4528
- #: widgets/blog-posts/blog-posts.php:60 widgets/post-list/post-list.php:143
4529
- msgid "Show Featured Image"
4530
- msgstr ""
4531
-
4532
- #: widgets/blog-posts/blog-posts.php:73
4533
- msgid "Featured image alignment"
4534
- msgstr ""
4535
-
4536
- #: widgets/blog-posts/blog-posts.php:95
4537
- msgid "Show Posts Per Row"
4538
- msgstr ""
4539
-
4540
- #: widgets/blog-posts/blog-posts.php:98 widgets/testimonial/testimonial.php:318
4541
- msgid "1"
4542
- msgstr ""
4543
-
4544
- #: widgets/blog-posts/blog-posts.php:100 widgets/post-grid/post-grid.php:60
4545
- #: widgets/post-tab/post-tab.php:62 widgets/testimonial/testimonial.php:316
4546
- msgid "3"
4547
- msgstr ""
4548
-
4549
- #: widgets/blog-posts/blog-posts.php:101
4550
- #: widgets/testimonial/testimonial.php:315
4551
- msgid "4"
4552
- msgstr ""
4553
-
4554
- #: widgets/blog-posts/blog-posts.php:102
4555
- msgid "6"
4556
- msgstr ""
4557
-
4558
- #: widgets/blog-posts/blog-posts.php:113 widgets/chart/chart.php:320
4559
- #: widgets/dual-button/dual-button.php:921
4560
- msgid "Show Title"
4561
- msgstr ""
4562
-
4563
- #: widgets/blog-posts/blog-posts.php:123
4564
- msgid "Crop title by word"
4565
- msgstr ""
4566
-
4567
- #: widgets/blog-posts/blog-posts.php:134
4568
- msgid "Show Content"
4569
- msgstr ""
4570
-
4571
- #: widgets/blog-posts/blog-posts.php:144
4572
- msgid "Crop content by word"
4573
- msgstr ""
4574
-
4575
- #: widgets/blog-posts/blog-posts.php:156
4576
- #: widgets/twitter-feed/twitter-feed.php:236
4577
- msgid "Show Read More"
4578
- msgstr ""
4579
-
4580
- #: widgets/blog-posts/blog-posts.php:170
4581
- msgid "Query"
4582
- msgstr ""
4583
-
4584
- #: widgets/blog-posts/blog-posts.php:177
4585
- msgid "Posts Count"
4586
- msgstr ""
4587
-
4588
- #: widgets/blog-posts/blog-posts.php:188
4589
- msgid "Select posts by:"
4590
- msgstr ""
4591
-
4592
- #: widgets/blog-posts/blog-posts.php:192 widgets/post-list/post-list.php:50
4593
- msgid "Recent Post"
4594
- msgstr ""
4595
-
4596
- #: widgets/blog-posts/blog-posts.php:193 widgets/post-list/post-list.php:52
4597
- msgid "Selected Post"
4598
- msgstr ""
4599
-
4600
- #: widgets/blog-posts/blog-posts.php:194
4601
- msgid "Category Post"
4602
- msgstr ""
4603
-
4604
- #: widgets/blog-posts/blog-posts.php:203
4605
- msgid "Search & Select"
4606
- msgstr ""
4607
-
4608
- #: widgets/blog-posts/blog-posts.php:214 widgets/post-grid/post-grid.php:47
4609
- #: widgets/post-tab/post-tab.php:49
4610
- msgid "Select Categories"
4611
- msgstr ""
4612
-
4613
- #: widgets/blog-posts/blog-posts.php:226
4614
- #: widgets/image-comparison/image-comparison.php:123
4615
- msgid "Offset"
4616
- msgstr ""
4617
-
4618
- #: widgets/blog-posts/blog-posts.php:237
4619
- #: widgets/woo-category-list/woo-category-list.php:86
4620
- #: widgets/woo-product-carousel/woo-product-carousel.php:149
4621
- #: widgets/woo-product-list/woo-product-list.php:104
4622
- msgid "Order by"
4623
- msgstr ""
4624
-
4625
- #: widgets/blog-posts/blog-posts.php:240 widgets/blog-posts/blog-posts.php:345
4626
- #: widgets/instagram-feed/instagram-feed.php:543
4627
- #: widgets/instagram-feed/instagram-feed.php:615
4628
- #: widgets/timeline/timeline.php:132 widgets/timeline/timeline.php:891
4629
- #: widgets/twitter-feed/twitter-feed.php:675
4630
- #: widgets/woo-product-carousel/woo-product-carousel.php:153
4631
- #: widgets/woo-product-list/woo-product-list.php:108
4632
- msgid "Date"
4633
- msgstr ""
4634
-
4635
- #: widgets/blog-posts/blog-posts.php:242 widgets/blog-posts/blog-posts.php:344
4636
- msgid "Author"
4637
- msgstr ""
4638
-
4639
- #: widgets/blog-posts/blog-posts.php:243
4640
- msgid "Modified"
4641
- msgstr ""
4642
-
4643
- #: widgets/blog-posts/blog-posts.php:244
4644
- #: widgets/facebook-feed/facebook-feed.php:1202
4645
- #: widgets/twitter-feed/twitter-feed.php:1101
4646
- msgid "Comments"
4647
- msgstr ""
4648
-
4649
- #: widgets/blog-posts/blog-posts.php:253
4650
- #: widgets/woo-category-list/woo-category-list.php:101
4651
- #: widgets/woo-product-carousel/woo-product-carousel.php:164
4652
- #: widgets/woo-product-list/woo-product-list.php:119
4653
- msgid "Order"
4654
- msgstr ""
4655
-
4656
- #: widgets/blog-posts/blog-posts.php:256
4657
- #: widgets/woo-category-list/woo-category-list.php:105
4658
- msgid "ASC"
4659
- msgstr ""
4660
-
4661
- #: widgets/blog-posts/blog-posts.php:257
4662
- #: widgets/woo-category-list/woo-category-list.php:106
4663
- msgid "DESC"
4664
- msgstr ""
4665
-
4666
- #: widgets/blog-posts/blog-posts.php:269 widgets/blog-posts/blog-posts.php:341
4667
- msgid "Meta Data"
4668
- msgstr ""
4669
-
4670
- #: widgets/blog-posts/blog-posts.php:277
4671
- msgid "Show Floating Date"
4672
- msgstr ""
4673
-
4674
- #: widgets/blog-posts/blog-posts.php:315
4675
- msgid "Show Meta Data"
4676
- msgstr ""
4677
-
4678
- #: widgets/blog-posts/blog-posts.php:325 widgets/post-list/post-list.php:264
4679
- msgid "Meta Position"
4680
- msgstr ""
4681
-
4682
- #: widgets/blog-posts/blog-posts.php:328 widgets/heading/heading.php:126
4683
- #: widgets/heading/heading.php:241
4684
- msgid "Before Title"
4685
- msgstr ""
4686
-
4687
- #: widgets/blog-posts/blog-posts.php:329 widgets/heading/heading.php:127
4688
- #: widgets/heading/heading.php:242
4689
- msgid "After Title"
4690
- msgstr ""
4691
-
4692
- #: widgets/blog-posts/blog-posts.php:330
4693
- msgid "After Content"
4694
- msgstr ""
4695
-
4696
- #: widgets/blog-posts/blog-posts.php:346
4697
- #: widgets/woo-product-carousel/woo-product-carousel.php:112
4698
- #: widgets/woo-product-carousel/woo-product-carousel.php:121
4699
- #: widgets/woo-product-carousel/woo-product-carousel.php:155
4700
- #: widgets/woo-product-list/woo-product-list.php:67
4701
- #: widgets/woo-product-list/woo-product-list.php:76
4702
- #: widgets/woo-product-list/woo-product-list.php:110
4703
- msgid "Category"
4704
- msgstr ""
4705
-
4706
- #: widgets/blog-posts/blog-posts.php:347
4707
- #: widgets/instagram-feed/instagram-feed.php:781
4708
- #: widgets/instagram-feed/instagram-feed.php:921
4709
- msgid "Comment"
4710
- msgstr ""
4711
-
4712
- #: widgets/blog-posts/blog-posts.php:362
4713
- msgid "Show Author Image"
4714
- msgstr ""
4715
-
4716
- #: widgets/blog-posts/blog-posts.php:376
4717
- msgid "Author Icon"
4718
- msgstr ""
4719
-
4720
- #: widgets/blog-posts/blog-posts.php:393 widgets/timeline/timeline.php:336
4721
- msgid "Date Icon"
4722
- msgstr ""
4723
-
4724
- #: widgets/blog-posts/blog-posts.php:409
4725
- msgid "Category Icon"
4726
- msgstr ""
4727
-
4728
- #: widgets/blog-posts/blog-posts.php:425
4729
- msgid "Comment Icon"
4730
- msgstr ""
4731
-
4732
- #: widgets/blog-posts/blog-posts.php:446
4733
- msgid "Read More Button"
4734
- msgstr ""
4735
-
4736
- #: widgets/blog-posts/blog-posts.php:454 widgets/button/button.php:44
4737
- #: widgets/caldera-forms/caldera-forms.php:70 widgets/chart/chart.php:74
4738
- #: widgets/chart/chart.php:182 widgets/contact-form7/contact-form7.php:69
4739
- #: widgets/countdown-timer/countdown-timer.php:389
4740
- #: widgets/countdown-timer/countdown-timer.php:601
4741
- #: widgets/countdown-timer/countdown-timer.php:877
4742
- #: widgets/countdown-timer/countdown-timer.php:1152
4743
- #: widgets/countdown-timer/countdown-timer.php:1428
4744
- #: widgets/creative-button/creative-button.php:44
4745
- #: widgets/gallery/gallery.php:1434 widgets/icon-box/icon-box.php:209
4746
- #: widgets/image-box/image-box.php:273
4747
- #: widgets/image-comparison/image-comparison.php:80
4748
- #: widgets/image-comparison/image-comparison.php:106
4749
- #: widgets/image-comparison/image-comparison.php:243
4750
- #: widgets/mail-chimp/mail-chimp.php:114 widgets/mail-chimp/mail-chimp.php:207
4751
- #: widgets/mail-chimp/mail-chimp.php:300 widgets/mail-chimp/mail-chimp.php:381
4752
- #: widgets/mail-chimp/mail-chimp.php:538 widgets/page-list/page-list.php:275
4753
- #: widgets/pricing/pricing.php:322 widgets/social-share/social-share.php:223
4754
- #: widgets/social/social.php:172 widgets/team/team.php:208
4755
- #: widgets/twitter-feed/twitter-feed.php:144 widgets/we-forms/we-forms.php:247
4756
- #: widgets/woo-category-list/woo-category-list.php:508
4757
- msgid "Label"
4758
- msgstr ""
4759
-
4760
- #: widgets/blog-posts/blog-posts.php:456 widgets/blog-posts/blog-posts.php:457
4761
- #: widgets/button/button.php:46 widgets/button/button.php:47
4762
- #: widgets/creative-button/creative-button.php:46
4763
- #: widgets/creative-button/creative-button.php:47
4764
- #: widgets/icon-box/icon-box.php:211 widgets/icon-box/icon-box.php:212
4765
- #: widgets/image-box/image-box.php:275 widgets/image-box/image-box.php:276
4766
- #: widgets/pricing/pricing.php:324 widgets/pricing/pricing.php:325
4767
- msgid "Learn more "
4768
- msgstr ""
4769
-
4770
- #: widgets/blog-posts/blog-posts.php:464 widgets/button/button.php:84
4771
- #: widgets/creative-button/creative-button.php:84
4772
- #: widgets/dual-button/dual-button.php:185
4773
- #: widgets/dual-button/dual-button.php:314 widgets/funfact/funfact.php:73
4774
- #: widgets/icon-box/icon-box.php:66 widgets/icon-box/icon-box.php:244
4775
- #: widgets/image-box/image-box.php:141 widgets/image-box/image-box.php:309
4776
- #: widgets/pricing/pricing.php:104 widgets/pricing/pricing.php:344
4777
- #: widgets/video/video.php:79
4778
- #: widgets/woo-product-carousel/woo-product-carousel.php:1315
4779
- #: widgets/woo-product-list/woo-product-list.php:1479
4780
- msgid "Add icon? "
4781
- msgstr ""
4782
-
4783
- #: widgets/blog-posts/blog-posts.php:494 widgets/button/button.php:114
4784
- #: widgets/creative-button/creative-button.php:111
4785
- #: widgets/dual-button/dual-button.php:215
4786
- #: widgets/dual-button/dual-button.php:344 widgets/icon-box/icon-box.php:278
4787
- #: widgets/image-accordion/image-accordion.php:106
4788
- #: widgets/image-box/image-box.php:176 widgets/image-box/image-box.php:342
4789
- #: widgets/image-comparison/image-comparison.php:62
4790
- #: widgets/image-comparison/image-comparison.php:255
4791
- #: widgets/mail-chimp/mail-chimp.php:172 widgets/mail-chimp/mail-chimp.php:266
4792
- #: widgets/mail-chimp/mail-chimp.php:358 widgets/mail-chimp/mail-chimp.php:431
4793
- #: widgets/mail-chimp/mail-chimp.php:498 widgets/pricing/pricing.php:375
4794
- #: widgets/pricing/pricing.php:1439 widgets/social-share/social-share.php:67
4795
- #: widgets/social/social.php:61 widgets/table/table.php:152
4796
- #: widgets/table/table.php:426 widgets/video/video.php:114
4797
- msgid "Before"
4798
- msgstr ""
4799
-
4800
- #: widgets/blog-posts/blog-posts.php:495 widgets/button/button.php:115
4801
- #: widgets/creative-button/creative-button.php:112
4802
- #: widgets/dual-button/dual-button.php:216
4803
- #: widgets/dual-button/dual-button.php:345 widgets/icon-box/icon-box.php:279
4804
- #: widgets/image-accordion/image-accordion.php:107
4805
- #: widgets/image-box/image-box.php:177 widgets/image-box/image-box.php:343
4806
- #: widgets/image-comparison/image-comparison.php:88
4807
- #: widgets/image-comparison/image-comparison.php:316
4808
- #: widgets/mail-chimp/mail-chimp.php:173 widgets/mail-chimp/mail-chimp.php:267
4809
- #: widgets/mail-chimp/mail-chimp.php:359 widgets/mail-chimp/mail-chimp.php:432
4810
- #: widgets/mail-chimp/mail-chimp.php:499 widgets/pricing/pricing.php:376
4811
- #: widgets/pricing/pricing.php:1443 widgets/social-share/social-share.php:68
4812
- #: widgets/social/social.php:62 widgets/table/table.php:153
4813
- #: widgets/table/table.php:427 widgets/video/video.php:115
4814
- msgid "After"
4815
- msgstr ""
4816
-
4817
- #: widgets/blog-posts/blog-posts.php:531 widgets/button/button.php:150
4818
- #: widgets/creative-button/creative-button.php:147
4819
- #: widgets/pricing/pricing.php:415
4820
- msgid "Class"
4821
- msgstr ""
4822
-
4823
- #: widgets/blog-posts/blog-posts.php:533 widgets/button/button.php:152
4824
- #: widgets/creative-button/creative-button.php:149
4825
- #: widgets/pricing/pricing.php:417
4826
- msgid "Class Name"
4827
- msgstr ""
4828
-
4829
- #: widgets/blog-posts/blog-posts.php:540 widgets/button/button.php:159
4830
- #: widgets/creative-button/creative-button.php:156
4831
- #: widgets/pricing/pricing.php:424
4832
- msgid "id"
4833
- msgstr ""
4834
-
4835
- #: widgets/blog-posts/blog-posts.php:542 widgets/button/button.php:161
4836
- #: widgets/creative-button/creative-button.php:158
4837
- #: widgets/pricing/pricing.php:426
4838
- msgid "ID"
4839
- msgstr ""
4840
-
4841
- #: widgets/blog-posts/blog-posts.php:579 widgets/page-list/page-list.php:189
4842
- #: widgets/page-list/page-list.php:396 widgets/testimonial/testimonial.php:714
4843
- #: widgets/woo-category-list/woo-category-list.php:592
4844
- #: widgets/woo-category-list/woo-category-list.php:890
4845
- #: widgets/woo-product-carousel/woo-product-carousel.php:656
4846
- #: widgets/woo-product-carousel/woo-product-carousel.php:682
4847
- #: widgets/woo-product-carousel/woo-product-carousel.php:1118
4848
- #: widgets/woo-product-carousel/woo-product-carousel.php:1565
4849
- #: widgets/woo-product-carousel/woo-product-carousel.php:2520
4850
- #: widgets/woo-product-list/woo-product-list.php:819
4851
- #: widgets/woo-product-list/woo-product-list.php:845
4852
- #: widgets/woo-product-list/woo-product-list.php:1281
4853
- #: widgets/woo-product-list/woo-product-list.php:1899
4854
- #: widgets/woo-product-list/woo-product-list.php:2308
4855
- msgid "Vertical Alignment"
4856
- msgstr ""
4857
-
4858
- #: widgets/blog-posts/blog-posts.php:587 widgets/funfact/funfact.php:959
4859
- #: widgets/nav-menu/nav-menu.php:824 widgets/pricing/pricing.php:1392
4860
- #: widgets/pricing/pricing.php:1462
4861
- #: widgets/woo-category-list/woo-category-list.php:600
4862
- #: widgets/woo-category-list/woo-category-list.php:898
4863
- #: widgets/woo-product-carousel/woo-product-carousel.php:665
4864
- #: widgets/woo-product-carousel/woo-product-carousel.php:691
4865
- #: widgets/woo-product-carousel/woo-product-carousel.php:1127
4866
- #: widgets/woo-product-carousel/woo-product-carousel.php:1574
4867
- #: widgets/woo-product-carousel/woo-product-carousel.php:2529
4868
- #: widgets/woo-product-list/woo-product-list.php:828
4869
- #: widgets/woo-product-list/woo-product-list.php:854
4870
- #: widgets/woo-product-list/woo-product-list.php:1290
4871
- #: widgets/woo-product-list/woo-product-list.php:1908
4872
- #: widgets/woo-product-list/woo-product-list.php:2317
4873
- msgid "Middle"
4874
- msgstr ""
4875
-
4876
- #: widgets/blog-posts/blog-posts.php:605
4877
- msgid "Container Border radius"
4878
- msgstr ""
4879
-
4880
- #: widgets/blog-posts/blog-posts.php:617
4881
- msgid "Container Padding"
4882
- msgstr ""
4883
-
4884
- #: widgets/blog-posts/blog-posts.php:629 widgets/blog-posts/blog-posts.php:899
4885
- #: widgets/faq/faq.php:273
4886
- msgid "Container Margin"
4887
- msgstr ""
4888
-
4889
- #: widgets/blog-posts/blog-posts.php:657 widgets/faq/faq.php:242
4890
- #: widgets/gallery/gallery.php:428 widgets/team/team.php:664
4891
- msgid "Content Padding"
4892
- msgstr ""
4893
-
4894
- #: widgets/blog-posts/blog-posts.php:670 widgets/blog-posts/blog-posts.php:680
4895
- msgid "Container Border"
4896
- msgstr ""
4897
-
4898
- #: widgets/blog-posts/blog-posts.php:688 widgets/faq/faq.php:222
4899
- msgid "Content Border"
4900
- msgstr ""
4901
-
4902
- #: widgets/blog-posts/blog-posts.php:701 widgets/blog-posts/blog-posts.php:2313
4903
- #: widgets/button/button.php:286 widgets/pricing/pricing.php:548
4904
- #: widgets/pricing/pricing.php:775 widgets/pricing/pricing.php:1562
4905
- #: widgets/pricing/pricing.php:2080 widgets/table/table.php:1428
4906
- #: widgets/table/table.php:2228 widgets/video/video.php:583
4907
- msgctxt "Border Control"
4908
- msgid "Border Type"
4909
- msgstr ""
4910
-
4911
- #: widgets/blog-posts/blog-posts.php:705 widgets/blog-posts/blog-posts.php:2317
4912
- #: widgets/button/button.php:290 widgets/pricing/pricing.php:552
4913
- #: widgets/pricing/pricing.php:779 widgets/pricing/pricing.php:1566
4914
- #: widgets/pricing/pricing.php:2084 widgets/table/table.php:1433
4915
- #: widgets/table/table.php:2233 widgets/video/video.php:587
4916
- msgctxt "Border Control"
4917
- msgid "Solid"
4918
- msgstr ""
4919
-
4920
- #: widgets/blog-posts/blog-posts.php:706 widgets/blog-posts/blog-posts.php:2318
4921
- #: widgets/button/button.php:291 widgets/pricing/pricing.php:553
4922
- #: widgets/pricing/pricing.php:780 widgets/pricing/pricing.php:1567
4923
- #: widgets/pricing/pricing.php:2085 widgets/table/table.php:1434
4924
- #: widgets/table/table.php:2234 widgets/video/video.php:588
4925
- msgctxt "Border Control"
4926
- msgid "Double"
4927
- msgstr ""
4928
-
4929
- #: widgets/blog-posts/blog-posts.php:707 widgets/blog-posts/blog-posts.php:2319
4930
- #: widgets/button/button.php:292 widgets/pricing/pricing.php:554
4931
- #: widgets/pricing/pricing.php:781 widgets/pricing/pricing.php:1568
4932
- #: widgets/pricing/pricing.php:2086 widgets/table/table.php:1435
4933
- #: widgets/table/table.php:2235 widgets/video/video.php:589
4934
- msgctxt "Border Control"
4935
- msgid "Dotted"
4936
- msgstr ""
4937
-
4938
- #: widgets/blog-posts/blog-posts.php:708 widgets/blog-posts/blog-posts.php:2320
4939
- #: widgets/button/button.php:293 widgets/pricing/pricing.php:555
4940
- #: widgets/pricing/pricing.php:782 widgets/pricing/pricing.php:1569
4941
- #: widgets/pricing/pricing.php:2087 widgets/table/table.php:1436
4942
- #: widgets/table/table.php:2236 widgets/video/video.php:590
4943
- msgctxt "Border Control"
4944
- msgid "Dashed"
4945
- msgstr ""
4946
-
4947
- #: widgets/blog-posts/blog-posts.php:709 widgets/blog-posts/blog-posts.php:2321
4948
- #: widgets/button/button.php:294 widgets/pricing/pricing.php:556
4949
- #: widgets/pricing/pricing.php:783 widgets/pricing/pricing.php:1570
4950
- #: widgets/pricing/pricing.php:2088 widgets/table/table.php:1437
4951
- #: widgets/table/table.php:2237 widgets/video/video.php:591
4952
- msgctxt "Border Control"
4953
- msgid "Groove"
4954
- msgstr ""
4955
-
4956
- #: widgets/blog-posts/blog-posts.php:723 widgets/blog-posts/blog-posts.php:2331
4957
- #: widgets/button/button.php:305 widgets/pricing/pricing.php:793
4958
- #: widgets/pricing/pricing.php:1580 widgets/pricing/pricing.php:2098
4959
- #: widgets/table/table.php:1447 widgets/table/table.php:2247
4960
- #: widgets/video/video.php:601
4961
- msgctxt "Border Control"
4962
- msgid "Width"
4963
- msgstr ""
4964
-
4965
- #: widgets/blog-posts/blog-posts.php:750 widgets/blog-posts/blog-posts.php:769
4966
- #: widgets/blog-posts/blog-posts.php:2355
4967
- #: widgets/blog-posts/blog-posts.php:2380 widgets/button/button.php:326
4968
- #: widgets/button/button.php:345 widgets/pricing/pricing.php:817
4969
- #: widgets/pricing/pricing.php:842 widgets/pricing/pricing.php:1598
4970
- #: widgets/pricing/pricing.php:1617 widgets/table/table.php:1475
4971
- #: widgets/table/table.php:1494 widgets/video/video.php:619
4972
- #: widgets/video/video.php:638
4973
- msgctxt "Border Control"
4974
- msgid "Color"
4975
- msgstr ""
4976
-
4977
- #: widgets/blog-posts/blog-posts.php:763 widgets/blog-posts/blog-posts.php:1039
4978
- #: widgets/blog-posts/blog-posts.php:1598
4979
- #: widgets/blog-posts/blog-posts.php:2028
4980
- #: widgets/blog-posts/blog-posts.php:2281
4981
- #: widgets/blog-posts/blog-posts.php:2371 widgets/button/button.php:242
4982
- #: widgets/button/button.php:339 widgets/caldera-forms/caldera-forms.php:354
4983
- #: widgets/caldera-forms/caldera-forms.php:809
4984
- #: widgets/category-list/category-list.php:321
4985
- #: widgets/category-list/category-list.php:380 widgets/chart/chart.php:127
4986
- #: widgets/chart/chart.php:235 widgets/client-logo/client-logo.php:540
4987
- #: widgets/client-logo/client-logo.php:691
4988
- #: widgets/client-logo/client-logo.php:757
4989
- #: widgets/client-logo/client-logo.php:999
4990
- #: widgets/client-logo/client-logo.php:1405
4991
- #: widgets/contact-form7/contact-form7.php:354
4992
- #: widgets/contact-form7/contact-form7.php:809
4993
- #: widgets/creative-button/creative-button.php:330
4994
- #: widgets/dual-button/dual-button.php:561
4995
- #: widgets/dual-button/dual-button.php:781
4996
- #: widgets/facebook-feed/facebook-feed.php:367
4997
- #: widgets/facebook-feed/facebook-feed.php:477
4998
- #: widgets/facebook-feed/facebook-feed.php:543
4999
- #: widgets/facebook-feed/facebook-feed.php:683
5000
- #: widgets/facebook-feed/facebook-feed.php:822 widgets/funfact/funfact.php:457
5001
- #: widgets/funfact/funfact.php:581 widgets/gallery/gallery.php:494
5002
- #: widgets/gallery/gallery.php:723 widgets/gallery/gallery.php:1176
5003
- #: widgets/gallery/gallery.php:1365 widgets/gallery/gallery.php:1554
5004
- #: widgets/gallery/gallery.php:1785 widgets/gallery/gallery.php:1966
5005
- #: widgets/header-offcanvas/header-offcanvas.php:160
5006
- #: widgets/header-offcanvas/header-offcanvas.php:355
5007
- #: widgets/header-search/header-search.php:134 widgets/hotspot/hotspot.php:88
5008
- #: widgets/icon-box/icon-box.php:575 widgets/icon-box/icon-box.php:1118
5009
- #: widgets/icon-box/icon-box.php:1273 widgets/icon-box/icon-box.php:1426
5010
- #: widgets/image-accordion/image-accordion.php:629
5011
- #: widgets/image-accordion/image-accordion.php:760
5012
- #: widgets/image-box/image-box.php:420 widgets/image-box/image-box.php:969
5013
- #: widgets/image-box/image-box.php:1150 widgets/image-box/image-box.php:1232
5014
- #: widgets/image-box/image-box.php:1376
5015
- #: widgets/image-comparison/image-comparison.php:488
5016
- #: widgets/instagram-feed/instagram-feed.php:587
5017
- #: widgets/instagram-feed/instagram-feed.php:873
5018
- #: widgets/instagram-feed/instagram-feed.php:1145
5019
- #: widgets/mail-chimp/mail-chimp.php:973 widgets/nav-menu/nav-menu.php:384
5020
- #: widgets/nav-menu/nav-menu.php:589 widgets/nav-menu/nav-menu.php:985
5021
- #: widgets/nav-menu/nav-menu.php:1194 widgets/ninja-forms/ninja-forms.php:757
5022
- #: widgets/page-list/page-list.php:491 widgets/page-list/page-list.php:677
5023
- #: widgets/page-list/page-list.php:760 widgets/piechart/piechart.php:576
5024
- #: widgets/post-list/post-list.php:491 widgets/post-list/post-list.php:551
5025
- #: widgets/post-list/post-list.php:710 widgets/pricing/pricing.php:491
5026
- #: widgets/pricing/pricing.php:608 widgets/pricing/pricing.php:728
5027
- #: widgets/pricing/pricing.php:833 widgets/pricing/pricing.php:966
5028
- #: widgets/pricing/pricing.php:1087 widgets/pricing/pricing.php:1523
5029
- #: widgets/pricing/pricing.php:1611 widgets/pricing/pricing.php:1771
5030
- #: widgets/pricing/pricing.php:2029 widgets/pricing/pricing.php:2138
5031
- #: widgets/pricing/pricing.php:2211 widgets/social-share/social-share.php:299
5032
- #: widgets/social/social.php:261 widgets/table/table.php:1119
5033
- #: widgets/table/table.php:1386 widgets/table/table.php:1488
5034
- #: widgets/table/table.php:1760 widgets/table/table.php:1902
5035
- #: widgets/team/team.php:296 widgets/team/team.php:567
5036
- #: widgets/team/team.php:1160 widgets/team/team.php:1241
5037
- #: widgets/team/team.php:1319 widgets/team/team.php:1416
5038
- #: widgets/team/team.php:2032 widgets/testimonial/testimonial.php:1002
5039
- #: widgets/testimonial/testimonial.php:1225
5040
- #: widgets/testimonial/testimonial.php:1358
5041
- #: widgets/testimonial/testimonial.php:1454
5042
- #: widgets/testimonial/testimonial.php:2169 widgets/timeline/timeline.php:229
5043
- #: widgets/timeline/timeline.php:809 widgets/timeline/timeline.php:1068
5044
- #: widgets/twitter-feed/twitter-feed.php:412
5045
- #: widgets/twitter-feed/twitter-feed.php:718
5046
- #: widgets/twitter-feed/twitter-feed.php:909
5047
- #: widgets/twitter-feed/twitter-feed.php:991
5048
- #: widgets/twitter-feed/twitter-feed.php:1094
5049
- #: widgets/twitter-feed/twitter-feed.php:1299
5050
- #: widgets/vertical-menu/vertical-menu.php:396
5051
- #: widgets/vertical-menu/vertical-menu.php:505 widgets/video/video.php:539
5052
- #: widgets/video/video.php:632 widgets/we-forms/we-forms.php:532
5053
- #: widgets/woo-category-list/woo-category-list.php:309
5054
- #: widgets/woo-category-list/woo-category-list.php:469
5055
- #: widgets/woo-category-list/woo-category-list.php:669
5056
- #: widgets/woo-category-list/woo-category-list.php:742
5057
- #: widgets/woo-category-list/woo-category-list.php:964
5058
- #: widgets/woo-category-list/woo-category-list.php:1036
5059
- #: widgets/woo-mini-cart/woo-mini-cart.php:66
5060
- #: widgets/woo-mini-cart/woo-mini-cart.php:226
5061
- #: widgets/woo-mini-cart/woo-mini-cart.php:431
5062
- #: widgets/woo-mini-cart/woo-mini-cart.php:552
5063
- #: widgets/woo-mini-cart/woo-mini-cart.php:613
5064
- #: widgets/woo-mini-cart/woo-mini-cart.php:841
5065
- #: widgets/woo-mini-cart/woo-mini-cart.php:1088
5066
- #: widgets/woo-product-carousel/woo-product-carousel.php:579
5067
- #: widgets/woo-product-carousel/woo-product-carousel.php:1260
5068
- #: widgets/woo-product-carousel/woo-product-carousel.php:1476
5069
- #: widgets/woo-product-carousel/woo-product-carousel.php:1689
5070
- #: widgets/woo-product-carousel/woo-product-carousel.php:1860
5071
- #: widgets/woo-product-carousel/woo-product-carousel.php:2127
5072
- #: widgets/woo-product-carousel/woo-product-carousel.php:2355
5073
- #: widgets/woo-product-carousel/woo-product-carousel.php:2655
5074
- #: widgets/woo-product-carousel/woo-product-carousel.php:2825
5075
- #: widgets/woo-product-list/woo-product-list.php:464
5076
- #: widgets/woo-product-list/woo-product-list.php:1424
5077
- #: widgets/woo-product-list/woo-product-list.php:1640
5078
- #: widgets/woo-product-list/woo-product-list.php:1811
5079
- #: widgets/woo-product-list/woo-product-list.php:2023
5080
- #: widgets/woo-product-list/woo-product-list.php:2443
5081
- #: widgets/wp-forms/wp-forms.php:580
5082
- msgid "Hover"
5083
- msgstr ""
5084
-
5085
- #: widgets/blog-posts/blog-posts.php:815
5086
- #: widgets/client-logo/client-logo.php:1182
5087
- #: widgets/header-offcanvas/header-offcanvas.php:267
5088
- #: widgets/header-offcanvas/header-offcanvas.php:436
5089
- #: widgets/header-search/header-search.php:184
5090
- #: widgets/image-box/image-box.php:907 widgets/nav-menu/nav-menu.php:188
5091
- #: widgets/page-list/page-list.php:358
5092
- #: widgets/social-share/social-share.php:479 widgets/social/social.php:441
5093
- #: widgets/team/team.php:847 widgets/team/team.php:1532
5094
- #: widgets/testimonial/testimonial.php:1817
5095
- msgid "Border radius"
5096
- msgstr ""
5097
-
5098
- #: widgets/blog-posts/blog-posts.php:855 widgets/post-list/post-list.php:593
5099
- msgid "Meta"
5100
- msgstr ""
5101
-
5102
- #: widgets/blog-posts/blog-posts.php:911
5103
- #: widgets/woo-product-list/woo-product-list.php:393
5104
- msgid "Item Margin"
5105
- msgstr ""
5106
-
5107
- #: widgets/blog-posts/blog-posts.php:923
5108
- #: widgets/woo-product-carousel/woo-product-carousel.php:551
5109
- #: widgets/woo-product-list/woo-product-list.php:381
5110
- msgid "Item Padding"
5111
- msgstr ""
5112
-
5113
- #: widgets/blog-posts/blog-posts.php:1115
5114
- msgid "Floating Date"
5115
- msgstr ""
5116
-
5117
- #: widgets/blog-posts/blog-posts.php:1284
5118
- msgid "Date Typography"
5119
- msgstr ""
5120
-
5121
- #: widgets/blog-posts/blog-posts.php:1309
5122
- msgid "Month Typography"
5123
- msgstr ""
5124
-
5125
- #: widgets/blog-posts/blog-posts.php:1398
5126
- msgid "Triangle"
5127
- msgstr ""
5128
-
5129
- #: widgets/blog-posts/blog-posts.php:1409
5130
- msgid "Triangle Background"
5131
- msgstr ""
5132
-
5133
- #: widgets/blog-posts/blog-posts.php:1426
5134
- msgid "Triangle Size"
5135
- msgstr ""
5136
-
5137
- #: widgets/blog-posts/blog-posts.php:1454
5138
- msgid "Triangle Position Left"
5139
- msgstr ""
5140
-
5141
- #: widgets/blog-posts/blog-posts.php:1482
5142
- msgid "Triangle Position Top"
5143
- msgstr ""
5144
-
5145
- #: widgets/blog-posts/blog-posts.php:1511
5146
- msgid "Triangle Direction"
5147
- msgstr ""
5148
-
5149
- #: widgets/blog-posts/blog-posts.php:1515
5150
- #: widgets/client-logo/client-logo.php:592 widgets/funfact/funfact.php:301
5151
- #: widgets/funfact/funfact.php:344 widgets/icon-box/icon-box.php:1449
5152
- #: widgets/image-box/image-box.php:681
5153
- msgid "From Left"
5154
- msgstr ""
5155
-
5156
- #: widgets/blog-posts/blog-posts.php:1519
5157
- #: widgets/client-logo/client-logo.php:604 widgets/funfact/funfact.php:305
5158
- #: widgets/funfact/funfact.php:348 widgets/icon-box/icon-box.php:1457
5159
- #: widgets/image-box/image-box.php:689
5160
- msgid "From Right"
5161
- msgstr ""
5162
-
5163
- #: widgets/blog-posts/blog-posts.php:1654
5164
- #: widgets/blog-posts/blog-posts.php:1849 widgets/timeline/timeline.php:433
5165
- msgid "justify"
5166
- msgstr ""
5167
-
5168
- #: widgets/blog-posts/blog-posts.php:1694
5169
- #: widgets/client-logo/client-logo.php:429
5170
- #: widgets/testimonial/testimonial.php:271
5171
- msgid "Show Separator"
5172
- msgstr ""
5173
-
5174
- #: widgets/blog-posts/blog-posts.php:1708
5175
- #: widgets/blog-posts/blog-posts.php:2017
5176
- #: widgets/blog-posts/blog-posts.php:2036
5177
- #: widgets/client-logo/client-logo.php:1394
5178
- #: widgets/client-logo/client-logo.php:1413
5179
- #: widgets/testimonial/testimonial.php:1212
5180
- #: widgets/testimonial/testimonial.php:1232
5181
- msgid "Separator Color"
5182
- msgstr ""
5183
-
5184
- #: widgets/blog-posts/blog-posts.php:1881
5185
- msgid "Show Highlight Border"
5186
- msgstr ""
5187
-
5188
- #: widgets/blog-posts/blog-posts.php:1894
5189
- #: widgets/client-logo/client-logo.php:1288
5190
- msgid "Hight"
5191
- msgstr ""
5192
-
5193
- #: widgets/blog-posts/blog-posts.php:1948
5194
- #: widgets/client-logo/client-logo.php:1336
5195
- msgid "Top Bottom Position"
5196
- msgstr ""
5197
-
5198
- #: widgets/blog-posts/blog-posts.php:1976
5199
- #: widgets/client-logo/client-logo.php:1360
5200
- msgid "Left Right Position"
5201
- msgstr ""
5202
-
5203
- #: widgets/blog-posts/blog-posts.php:2045
5204
- msgid "Transition"
5205
- msgstr ""
5206
-
5207
- #: widgets/blog-posts/blog-posts.php:2079
5208
- msgid "Author Image"
5209
- msgstr ""
5210
-
5211
- #: widgets/blog-posts/blog-posts.php:2090
5212
- msgid "Image Width"
5213
- msgstr ""
5214
-
5215
- #: widgets/blog-posts/blog-posts.php:2117
5216
- msgid "Image Height"
5217
- msgstr ""
5218
-
5219
- #: widgets/blog-posts/blog-posts.php:2179 widgets/tablepress/tablepress.php:654
5220
- msgid "Radius"
5221
- msgstr ""
5222
-
5223
- #: widgets/blog-posts/blog-posts.php:2198 widgets/button/button-handler.php:11
5224
- #: widgets/button/button.php:172 widgets/caldera-forms/caldera-forms.php:564
5225
- #: widgets/contact-form7/contact-form7.php:564
5226
- #: widgets/creative-button/creative-button.php:252
5227
- #: widgets/dual-button/dual-button.php:157
5228
- #: widgets/dual-button/dual-button.php:286 widgets/icon-box/icon-box.php:987
5229
- #: widgets/image-accordion/image-accordion.php:504
5230
- #: widgets/image-box/image-box.php:258 widgets/image-box/image-box.php:1259
5231
- #: widgets/instagram-feed/instagram-feed.php:1040
5232
- #: widgets/mail-chimp/mail-chimp.php:807 widgets/pricing/pricing.php:316
5233
- #: widgets/pricing/pricing.php:1951 widgets/pricing/pricing.php:2335
5234
- #: widgets/table/table.php:709 widgets/table/table.php:1289
5235
- #: widgets/twitter-feed/twitter-feed.php:309 widgets/we-forms/we-forms.php:342
5236
- #: widgets/woo-mini-cart/woo-mini-cart.php:991
5237
- #: widgets/woo-product-carousel/woo-product-carousel.php:1063
5238
- #: widgets/woo-product-list/woo-product-list.php:1226
5239
- msgid "Button"
5240
- msgstr ""
5241
-
5242
- #: widgets/blog-posts/blog-posts.php:2219 widgets/button/button.php:405
5243
- #: widgets/caldera-forms/caldera-forms.php:509 widgets/chart/chart.php:490
5244
- #: widgets/chart/chart.php:550 widgets/chart/chart.php:742
5245
- #: widgets/contact-form7/contact-form7.php:509
5246
- #: widgets/creative-button/creative-button.php:568
5247
- #: widgets/gallery/gallery.php:1759
5248
- #: widgets/header-offcanvas/header-offcanvas.php:204
5249
- #: widgets/header-offcanvas/header-offcanvas.php:399
5250
- #: widgets/header-search/header-search.php:75
5251
- #: widgets/mail-chimp/mail-chimp.php:779 widgets/mail-chimp/mail-chimp.php:1138
5252
- #: widgets/nav-menu/nav-menu.php:920 widgets/table/table.php:1584
5253
- #: widgets/team/team.php:1010 widgets/testimonial/testimonial.php:915
5254
- #: widgets/testimonial/testimonial.php:1037
5255
- #: widgets/testimonial/testimonial.php:1964
5256
- #: widgets/twitter-feed/twitter-feed.php:1046
5257
- #: widgets/woo-product-carousel/woo-product-carousel.php:853
5258
- #: widgets/woo-product-list/woo-product-list.php:1015
5259
- msgid "Font Size"
5260
- msgstr ""
5261
-
5262
- #: widgets/blog-posts/blog-posts.php:2258
5263
- #: widgets/blog-posts/blog-posts.php:2288 widgets/button/button.php:218
5264
- #: widgets/button/button.php:249 widgets/category-list/category-list.php:364
5265
- #: widgets/creative-button/creative-button.php:298
5266
- #: widgets/creative-button/creative-button.php:337
5267
- #: widgets/gallery/gallery.php:1120 widgets/gallery/gallery.php:1195
5268
- #: widgets/gallery/gallery.php:1310 widgets/gallery/gallery.php:1384
5269
- #: widgets/gallery/gallery.php:1499 widgets/gallery/gallery.php:1573
5270
- #: widgets/header-info/header-info.php:140 widgets/hotspot/hotspot.php:656
5271
- #: widgets/hotspot/hotspot.php:700 widgets/icon-box/icon-box.php:1060
5272
- #: widgets/icon-box/icon-box.php:1125
5273
- #: widgets/image-accordion/image-accordion.php:550
5274
- #: widgets/image-accordion/image-accordion.php:636
5275
- #: widgets/image-box/image-box.php:1318 widgets/image-box/image-box.php:1383
5276
- #: widgets/instagram-feed/instagram-feed.php:1110
5277
- #: widgets/instagram-feed/instagram-feed.php:1152
5278
- #: widgets/ninja-forms/ninja-forms.php:102
5279
- #: widgets/ninja-forms/ninja-forms.php:153
5280
- #: widgets/ninja-forms/ninja-forms.php:271
5281
- #: widgets/ninja-forms/ninja-forms.php:509
5282
- #: widgets/ninja-forms/ninja-forms.php:559
5283
- #: widgets/ninja-forms/ninja-forms.php:674
5284
- #: widgets/ninja-forms/ninja-forms.php:776
5285
- #: widgets/ninja-forms/ninja-forms.php:815
5286
- #: widgets/ninja-forms/ninja-forms.php:854 widgets/page-list/page-list.php:732
5287
- #: widgets/post-list/post-list.php:535 widgets/pricing/pricing.php:2006
5288
- #: widgets/pricing/pricing.php:2036 widgets/table/table.php:82
5289
- #: widgets/table/table.php:358 widgets/table/table.php:837
5290
- #: widgets/table/table.php:1105 widgets/table/table.php:1137
5291
- #: widgets/table/table.php:1169 widgets/table/table.php:1363
5292
- #: widgets/table/table.php:1393 widgets/tablepress/tablepress.php:323
5293
- #: widgets/tablepress/tablepress.php:498 widgets/tablepress/tablepress.php:545
5294
- #: widgets/twitter-feed/twitter-feed.php:285
5295
- #: widgets/twitter-feed/twitter-feed.php:377
5296
- #: widgets/twitter-feed/twitter-feed.php:419 widgets/video/video.php:516
5297
- #: widgets/video/video.php:546 widgets/we-forms/we-forms.php:507
5298
- #: widgets/we-forms/we-forms.php:539
5299
- #: widgets/woo-product-carousel/woo-product-carousel.php:1235
5300
- #: widgets/woo-product-carousel/woo-product-carousel.php:1267
5301
- #: widgets/woo-product-carousel/woo-product-carousel.php:1653
5302
- #: widgets/woo-product-carousel/woo-product-carousel.php:1696
5303
- #: widgets/woo-product-list/woo-product-list.php:532
5304
- #: widgets/woo-product-list/woo-product-list.php:590
5305
- #: widgets/woo-product-list/woo-product-list.php:672
5306
- #: widgets/woo-product-list/woo-product-list.php:1399
5307
- #: widgets/woo-product-list/woo-product-list.php:1431
5308
- #: widgets/woo-product-list/woo-product-list.php:1987
5309
- #: widgets/woo-product-list/woo-product-list.php:2030
5310
- #: widgets/wp-forms/wp-forms.php:67 widgets/wp-forms/wp-forms.php:146
5311
- #: widgets/wp-forms/wp-forms.php:333 widgets/wp-forms/wp-forms.php:389
5312
- #: widgets/wp-forms/wp-forms.php:510 widgets/wp-forms/wp-forms.php:599
5313
- #: widgets/wp-forms/wp-forms.php:638
5314
- msgid "Text Color"
5315
- msgstr ""
5316
-
5317
- #: widgets/business-hours/business-hours-handler.php:11
5318
- msgid "Business Hours"
5319
- msgstr ""
5320
-
5321
- #: widgets/business-hours/business-hours.php:46
5322
- #: widgets/business-hours/business-hours.php:241
5323
- msgid "Day"
5324
- msgstr ""
5325
-
5326
- #: widgets/business-hours/business-hours.php:48
5327
- #: widgets/business-hours/business-hours.php:132
5328
- msgid "Saturday"
5329
- msgstr ""
5330
-
5331
- #: widgets/business-hours/business-hours.php:55
5332
- #: widgets/business-hours/business-hours.php:305
5333
- msgid "Time"
5334
- msgstr ""
5335
-
5336
- #: widgets/business-hours/business-hours.php:57
5337
- msgid "9:00 AM - 6:00 PM"
5338
- msgstr ""
5339
-
5340
- #: widgets/business-hours/business-hours.php:64
5341
- msgid "Hight Light this day"
5342
- msgstr ""
5343
-
5344
- #: widgets/business-hours/business-hours.php:75
5345
- msgid "Day Color"
5346
- msgstr ""
5347
-
5348
- #: widgets/business-hours/business-hours.php:91
5349
- msgid "Time Color"
5350
- msgstr ""
5351
-
5352
- #: widgets/business-hours/business-hours.php:126
5353
- msgid "Sunday"
5354
- msgstr ""
5355
-
5356
- #: widgets/business-hours/business-hours.php:128
5357
- #: widgets/business-hours/business-hours.php:134
5358
- msgid "yes"
5359
- msgstr ""
5360
-
5361
- #: widgets/business-hours/business-hours.php:133
5362
- #: widgets/business-hours/business-hours.php:139
5363
- #: widgets/business-hours/business-hours.php:144
5364
- #: widgets/business-hours/business-hours.php:149
5365
- #: widgets/business-hours/business-hours.php:154
5366
- #: widgets/business-hours/business-hours.php:159
5367
- msgid "10:00 AM to 7:00 PM"
5368
- msgstr ""
5369
-
5370
- #: widgets/business-hours/business-hours.php:138
5371
- msgid "Monday"
5372
- msgstr ""
5373
-
5374
- #: widgets/business-hours/business-hours.php:143
5375
- msgid "Tues Day"
5376
- msgstr ""
5377
-
5378
- #: widgets/business-hours/business-hours.php:148
5379
- msgid "Wednesday"
5380
- msgstr ""
5381
-
5382
- #: widgets/business-hours/business-hours.php:153
5383
- msgid "Thursday"
5384
- msgstr ""
5385
-
5386
- #: widgets/business-hours/business-hours.php:158
5387
- msgid "Friday"
5388
- msgstr ""
5389
-
5390
- #: widgets/business-hours/business-hours.php:173
5391
- #: widgets/woo-category-list/woo-category-list.php:238
5392
- #: widgets/woo-mini-cart/woo-mini-cart.php:455
5393
- #: widgets/woo-product-carousel/woo-product-carousel.php:491
5394
- #: widgets/woo-product-list/woo-product-list.php:321
5395
- msgid "Item"
5396
- msgstr ""
5397
-
5398
- #: widgets/button/button.php:58 widgets/creative-button/creative-button.php:58
5399
- #: widgets/icon-box/icon-box.php:224 widgets/image-box/image-box.php:290
5400
- #: widgets/table/table.php:335
5401
- msgid "URL"
5402
- msgstr ""
5403
-
5404
- #: widgets/button/button.php:75 widgets/client-logo/client-logo.php:165
5405
- #: widgets/creative-button/creative-button.php:75
5406
- #: widgets/funfact/funfact.php:214 widgets/gallery/gallery.php:158
5407
- #: widgets/icon-box/icon-box.php:331
5408
- #: widgets/image-comparison/image-comparison.php:117
5409
- #: widgets/post-list/post-list.php:112 widgets/testimonial/testimonial.php:395
5410
- #: widgets/timeline/timeline.php:328
5411
- msgid "Settings"
5412
- msgstr ""
5413
-
5414
- #: widgets/button/button.php:377
5415
- #: widgets/creative-button/creative-button.php:540
5416
- #: widgets/progressbar/progressbar.php:173
5417
- #: widgets/progressbar/progressbar.php:278
5418
- msgid "Shadow"
5419
- msgstr ""
5420
-
5421
- #: widgets/button/button.php:425
5422
- msgid "Add space after icon"
5423
- msgstr ""
5424
-
5425
- #: widgets/button/button.php:451
5426
- msgid "Add space before icon"
5427
- msgstr ""
5428
-
5429
- #: widgets/button/button.php:478
5430
- msgid "Move icon Vertically"
5431
- msgstr ""
5432
-
5433
- #: widgets/caldera-forms/caldera-forms-handler.php:11
5434
- #: widgets/caldera-forms/caldera-forms.php:50
5435
- msgid "Caldera Forms"
5436
- msgstr ""
5437
-
5438
- #: widgets/caldera-forms/caldera-forms.php:42
5439
- msgid "Form Not Found!"
5440
- msgstr ""
5441
-
5442
- #: widgets/caldera-forms/caldera-forms.php:112
5443
- #: widgets/contact-form7/contact-form7.php:111
5444
- msgid "Hint"
5445
- msgstr ""
5446
-
5447
- #: widgets/caldera-forms/caldera-forms.php:146
5448
- #: widgets/contact-form7/contact-form7.php:145
5449
- #: widgets/mail-chimp/mail-chimp.php:583
5450
- msgid "Input"
5451
- msgstr ""
5452
-
5453
- #: widgets/caldera-forms/caldera-forms.php:241
5454
- #: widgets/contact-form7/contact-form7.php:241
5455
- msgid "Textarea"
5456
- msgstr ""
5457
-
5458
- #: widgets/caldera-forms/caldera-forms.php:409
5459
- #: widgets/contact-form7/contact-form7.php:409
5460
- #: widgets/ninja-forms/ninja-forms.php:455 widgets/table/table.php:1792
5461
- #: widgets/we-forms/we-forms.php:207
5462
- #: widgets/woo-product-list/woo-product-list.php:625
5463
- #: widgets/woo-product-list/woo-product-list.php:757
5464
- #: widgets/wp-forms/wp-forms.php:291
5465
- msgid "Focus"
5466
- msgstr ""
5467
-
5468
- #: widgets/caldera-forms/caldera-forms.php:500
5469
- #: widgets/contact-form7/contact-form7.php:500
5470
- #: widgets/mail-chimp/mail-chimp.php:126 widgets/mail-chimp/mail-chimp.php:219
5471
- #: widgets/mail-chimp/mail-chimp.php:312 widgets/mail-chimp/mail-chimp.php:391
5472
- #: widgets/mail-chimp/mail-chimp.php:755
5473
- #: widgets/ninja-forms/ninja-forms.php:551 widgets/wp-forms/wp-forms.php:370
5474
- msgid "Placeholder"
5475
- msgstr ""
5476
-
5477
- #: widgets/caldera-forms/caldera-forms.php:539
5478
- #: widgets/contact-form7/contact-form7.php:539
5479
- #: widgets/mail-chimp/mail-chimp.php:764
5480
- msgid "Placeholder Color"
5481
- msgstr ""
5482
-
5483
- #: widgets/caldera-forms/caldera-forms.php:645
5484
- #: widgets/contact-form7/contact-form7.php:645
5485
- #: widgets/header-search/header-search.php:240
5486
- #: widgets/social-share/social-share.php:498 widgets/social/social.php:534
5487
- #: widgets/table/table.php:922 widgets/table/table.php:1195
5488
- #: widgets/team/team.php:1032 widgets/team/team.php:1613
5489
- #: widgets/woo-category-list/woo-category-list.php:370
5490
- msgid "Use Height Width"
5491
- msgstr ""
5492
-
5493
- #: widgets/caldera-forms/caldera-forms.php:717 widgets/chart/chart.php:815
5494
- #: widgets/contact-form7/contact-form7.php:717
5495
- #: widgets/countdown-timer/countdown-timer.php:267
5496
- #: widgets/countdown-timer/countdown-timer.php:1668
5497
- #: widgets/header-search/header-search.php:288
5498
- #: widgets/icon-box/icon-box.php:761 widgets/social-share/social-share.php:560
5499
- #: widgets/social/social.php:607 widgets/team/team.php:1095
5500
- #: widgets/team/team.php:1685 widgets/team/team.php:2184
5501
- msgid "Line Height"
5502
- msgstr ""
5503
-
5504
- #: widgets/caldera-forms/caldera-forms.php:891
5505
- msgid "Please select a Contact Form From Setting!"
5506
- msgstr ""
5507
-
5508
- #: widgets/category-list/category-list-handler.php:11
5509
- msgid "Category List"
5510
- msgstr ""
5511
-
5512
- #: widgets/category-list/category-list.php:38
5513
- #: widgets/category-list/category-list.php:117
5514
- #: widgets/facebook-feed/facebook-feed.php:50
5515
- #: widgets/instagram-feed/instagram-feed.php:49
5516
- #: widgets/page-list/page-list.php:38 widgets/page-list/page-list.php:438
5517
- #: widgets/post-list/post-list.php:39 widgets/post-list/post-list.php:284
5518
- #: widgets/pricing/pricing.php:201 widgets/twitter-feed/twitter-feed.php:92
5519
- msgid "List"
5520
- msgstr ""
5521
-
5522
- #: widgets/category-list/category-list.php:50
5523
- #: widgets/client-logo/client-logo.php:1051 widgets/funfact/funfact.php:107
5524
- #: widgets/gallery/gallery.php:337 widgets/gallery/gallery.php:2055
5525
- #: widgets/page-list/page-list.php:50 widgets/post-list/post-list.php:125
5526
- #: widgets/progressbar/progressbar.php:50 widgets/team/team.php:53
5527
- #: widgets/testimonial/testimonial.php:55
5528
- msgid "Default"
5529
- msgstr ""
5530
-
5531
- #: widgets/category-list/category-list.php:54
5532
- #: widgets/mail-chimp/mail-chimp.php:515 widgets/page-list/page-list.php:54
5533
- #: widgets/post-list/post-list.php:129
5534
- msgid "Inline"
5535
- msgstr ""
5536
-
5537
- #: widgets/category-list/category-list.php:70
5538
- #: widgets/category-list/category-list.php:356
5539
- #: widgets/dual-button/dual-button.php:51
5540
- #: widgets/dual-button/dual-button.php:155
5541
- #: widgets/dual-button/dual-button.php:284
5542
- #: widgets/header-info/header-info.php:60 widgets/page-list/page-list.php:124
5543
- #: widgets/page-list/page-list.php:724 widgets/post-list/post-list.php:76
5544
- #: widgets/post-list/post-list.php:527 widgets/social-share/social-share.php:54
5545
- #: widgets/social/social.php:48 widgets/table/table.php:61
5546
- #: widgets/table/table.php:313 widgets/table/table.php:618
5547
- #: widgets/video/video.php:52
5548
- msgid "Text"
5549
- msgstr ""
5550
-
5551
- #: widgets/category-list/category-list.php:73
5552
- #: widgets/client-logo/client-logo.php:64 widgets/page-list/page-list.php:127
5553
- #: widgets/post-list/post-list.php:79
5554
- msgid "List Title"
5555
- msgstr ""
5556
-
5557
- #: widgets/category-list/category-list.php:94
5558
- msgid "Select Category"
5559
- msgstr ""
5560
-
5561
- #: widgets/category-list/category-list.php:125
5562
- #: widgets/post-list/post-list.php:292
5563
- msgid "Space Between"
5564
- msgstr ""
5565
-
5566
- #: widgets/category-list/category-list.php:169
5567
- #: widgets/page-list/page-list.php:543 widgets/post-list/post-list.php:336
5568
- #: widgets/pricing/pricing.php:1799
5569
- msgid "Divider"
5570
- msgstr ""
5571
-
5572
- #: widgets/category-list/category-list.php:186 widgets/heading/heading.php:222
5573
- #: widgets/image-box/image-box.php:757 widgets/page-list/page-list.php:560
5574
- #: widgets/post-list/post-list.php:353 widgets/pricing/pricing.php:1815
5575
- #: widgets/tablepress/tablepress.php:213 widgets/tablepress/tablepress.php:340
5576
- #: widgets/tablepress/tablepress.php:423
5577
- msgid "Solid"
5578
- msgstr ""
5579
-
5580
- #: widgets/category-list/category-list.php:187
5581
- #: widgets/client-logo/client-logo.php:1053 widgets/heading/heading.php:221
5582
- #: widgets/image-box/image-box.php:759 widgets/page-list/page-list.php:561
5583
- #: widgets/post-list/post-list.php:354 widgets/pricing/pricing.php:1817
5584
- #: widgets/tablepress/tablepress.php:215 widgets/tablepress/tablepress.php:342
5585
- #: widgets/tablepress/tablepress.php:425
5586
- msgid "Dotted"
5587
- msgstr ""
5588
-
5589
- #: widgets/category-list/category-list.php:188
5590
- #: widgets/client-logo/client-logo.php:1052 widgets/image-box/image-box.php:760
5591
- #: widgets/page-list/page-list.php:562 widgets/post-list/post-list.php:355
5592
- #: widgets/pricing/pricing.php:1818 widgets/tablepress/tablepress.php:216
5593
- #: widgets/tablepress/tablepress.php:343 widgets/tablepress/tablepress.php:426
5594
- msgid "Dashed"
5595
- msgstr ""
5596
-
5597
- #: widgets/category-list/category-list.php:204
5598
- #: widgets/page-list/page-list.php:578 widgets/post-list/post-list.php:371
5599
- #: widgets/pricing/pricing.php:1848
5600
- msgid "Weight"
5601
- msgstr ""
5602
-
5603
- #: widgets/category-list/category-list.php:392
5604
- msgid "Left Padding"
5605
- msgstr ""
5606
-
5607
- #: widgets/chart/chart-handler.php:11 widgets/chart/chart.php:400
5608
- #: widgets/piechart/piechart.php:382
5609
- msgid "Chart"
5610
- msgstr ""
5611
-
5612
- #: widgets/chart/chart.php:36
5613
- msgid "Data "
5614
- msgstr ""
5615
-
5616
- #: widgets/chart/chart.php:45 widgets/instagram-feed/instagram-feed.php:522
5617
- #: widgets/instagram-feed/instagram-feed.php:594 widgets/team/team.php:1203
5618
- #: widgets/team/team.php:1811 widgets/twitter-feed/twitter-feed.php:632
5619
- #: widgets/twitter-feed/twitter-feed.php:725
5620
- #: widgets/woo-category-list/woo-category-list.php:90
5621
- msgid "Name"
5622
- msgstr ""
5623
-
5624
- #: widgets/chart/chart.php:47 widgets/chart/chart.php:58
5625
- msgid "January"
5626
- msgstr ""
5627
-
5628
- #: widgets/chart/chart.php:55 widgets/chart/chart.php:473
5629
- #: widgets/woo-category-list/woo-category-list.php:57
5630
- #: widgets/woo-product-carousel/woo-product-carousel.php:323
5631
- #: widgets/woo-product-carousel/woo-product-carousel.php:2409
5632
- #: widgets/woo-product-list/woo-product-list.php:294
5633
- #: widgets/woo-product-list/woo-product-list.php:2197
5634
- msgid "Categories"
5635
- msgstr ""
5636
-
5637
- #: widgets/chart/chart.php:59
5638
- msgid "February"
5639
- msgstr ""
5640
-
5641
- #: widgets/chart/chart.php:60
5642
- msgid "March"
5643
- msgstr ""
5644
-
5645
- #: widgets/chart/chart.php:76 widgets/chart/chart.php:165
5646
- #: widgets/chart/chart.php:184 widgets/chart/chart.php:273
5647
- msgid "Label #1"
5648
- msgstr ""
5649
-
5650
- #: widgets/chart/chart.php:82 widgets/chart/chart.php:191
5651
- msgid "Data"
5652
- msgstr ""
5653
-
5654
- #: widgets/chart/chart.php:86
5655
- msgid "Enter data values by \",\" separated(1). Example: 2,4,8,16,32 etc"
5656
- msgstr ""
5657
-
5658
- #: widgets/chart/chart.php:152 widgets/chart/chart.php:260
5659
- #: widgets/chart/chart.php:460 widgets/image-box/image-box.php:729
5660
- #: widgets/tablepress/tablepress.php:231 widgets/tablepress/tablepress.php:355
5661
- #: widgets/tablepress/tablepress.php:438
5662
- #: widgets/woo-mini-cart/woo-mini-cart.php:493
5663
- msgid "Border Width"
5664
- msgstr ""
5665
-
5666
- #: widgets/chart/chart.php:162 widgets/chart/chart.php:270
5667
- msgid "Set Data"
5668
- msgstr ""
5669
-
5670
- #: widgets/chart/chart.php:166 widgets/chart/chart.php:274
5671
- msgid "Label #2"
5672
- msgstr ""
5673
-
5674
- #: widgets/chart/chart.php:167 widgets/chart/chart.php:275
5675
- msgid "Label #3"
5676
- msgstr ""
5677
-
5678
- #: widgets/chart/chart.php:292
5679
- msgid "Settings "
5680
- msgstr ""
5681
-
5682
- #: widgets/chart/chart.php:300
5683
- msgid "Chart Styles"
5684
- msgstr ""
5685
-
5686
- #: widgets/chart/chart.php:304
5687
- msgid "Bar (Vertical)"
5688
- msgstr ""
5689
-
5690
- #: widgets/chart/chart.php:305
5691
- msgid "Bar (Horozontal)"
5692
- msgstr ""
5693
-
5694
- #: widgets/chart/chart.php:307
5695
- msgid "Radar"
5696
- msgstr ""
5697
-
5698
- #: widgets/chart/chart.php:308
5699
- msgid "Doughnut"
5700
- msgstr ""
5701
-
5702
- #: widgets/chart/chart.php:309
5703
- msgid "Pie"
5704
- msgstr ""
5705
-
5706
- #: widgets/chart/chart.php:310
5707
- msgid "Polar Area"
5708
- msgstr ""
5709
-
5710
- #: widgets/chart/chart.php:342
5711
- msgid "Grid Lines"
5712
- msgstr ""
5713
-
5714
- #: widgets/chart/chart.php:351
5715
- msgid "Grid Color"
5716
- msgstr ""
5717
-
5718
- #: widgets/chart/chart.php:362
5719
- msgid "Enable Label"
5720
- msgstr ""
5721
-
5722
- #: widgets/chart/chart.php:373
5723
- msgid "Enable Legends"
5724
- msgstr ""
5725
-
5726
- #: widgets/chart/chart.php:383
5727
- msgid "Show Tooltip"
5728
- msgstr ""
5729
-
5730
- #: widgets/chart/chart.php:409 widgets/chart/chart.php:589
5731
- msgid "Point Style"
5732
- msgstr ""
5733
-
5734
- #: widgets/chart/chart.php:427
5735
- msgid "Stepped Line"
5736
- msgstr ""
5737
-
5738
- #: widgets/chart/chart.php:436
5739
- msgid "Tension"
5740
- msgstr ""
5741
-
5742
- #: widgets/chart/chart.php:446
5743
- msgid "Fill"
5744
- msgstr ""
5745
-
5746
- #: widgets/chart/chart.php:481 widgets/chart/chart.php:541
5747
- #: widgets/chart/chart.php:754
5748
- msgid "Font Color"
5749
- msgstr ""
5750
-
5751
- #: widgets/chart/chart.php:503 widgets/chart/chart.php:563
5752
- #: widgets/chart/chart.php:763
5753
- msgid "Font Style"
5754
- msgstr ""
5755
-
5756
- #: widgets/chart/chart.php:533
5757
- msgid "Legend"
5758
- msgstr ""
5759
-
5760
- #: widgets/chart/chart.php:598
5761
- msgid "Box Width"
5762
- msgstr ""
5763
-
5764
- #: widgets/chart/chart.php:641 widgets/progressbar/progressbar.php:53
5765
- msgid "Tooltip"
5766
- msgstr ""
5767
-
5768
- #: widgets/chart/chart.php:659
5769
- msgid "Title Font Color"
5770
- msgstr ""
5771
-
5772
- #: widgets/chart/chart.php:668
5773
- msgid "Title Font Size"
5774
- msgstr ""
5775
-
5776
- #: widgets/chart/chart.php:681
5777
- msgid "Title Font Style"
5778
- msgstr ""
5779
-
5780
- #: widgets/chart/chart.php:695
5781
- msgid "Body Font Color"
5782
- msgstr ""
5783
-
5784
- #: widgets/chart/chart.php:704
5785
- msgid "Body Font Size"
5786
- msgstr ""
5787
-
5788
- #: widgets/chart/chart.php:717
5789
- msgid "Body Font Style"
5790
- msgstr ""
5791
-
5792
- #: widgets/chart/chart.php:839 widgets/pricing/pricing.php:182
5793
- msgid "Duration"
5794
- msgstr ""
5795
-
5796
- #: widgets/client-logo/client-logo-handler.php:12
5797
- #: widgets/client-logo/client-logo.php:72
5798
- #: widgets/testimonial/style/style1.php:15
5799
- #: widgets/testimonial/style/style2.php:15
5800
- #: widgets/testimonial/style/style4-old.php:36
5801
- #: widgets/testimonial/style/style5.php:49
5802
- #: widgets/testimonial/style/style6.php:29
5803
- #: widgets/testimonial/testimonial.php:1505
5804
- msgid "Client Logo"
5805
- msgstr ""
5806
-
5807
- #: widgets/client-logo/client-logo.php:41
5808
- #: widgets/client-logo/client-logo.php:506
5809
- #: widgets/testimonial/testimonial.php:334
5810
- msgid "Logo"
5811
- msgstr ""
5812
-
5813
- #: widgets/client-logo/client-logo.php:48
5814
- msgid "Slide Style "
5815
- msgstr ""
5816
-
5817
- #: widgets/client-logo/client-logo.php:52 widgets/image-box/image-box.php:74
5818
- #: widgets/piechart/piechart.php:56
5819
- msgid "Simple"
5820
- msgstr ""
5821
-
5822
- #: widgets/client-logo/client-logo.php:53
5823
- msgid "Banner"
5824
- msgstr ""
5825
-
5826
- #: widgets/client-logo/client-logo.php:62
5827
- #: widgets/testimonial/testimonial.php:286
5828
- #: widgets/testimonial/testimonial.php:1324
5829
- msgid "Client Name"
5830
- msgstr ""
5831
-
5832
- #: widgets/client-logo/client-logo.php:83
5833
- msgid "Enable Hover Logo"
5834
- msgstr ""
5835
-
5836
- #: widgets/client-logo/client-logo.php:95
5837
- msgid "Hover Logo"
5838
- msgstr ""
5839
-
5840
- #: widgets/client-logo/client-logo.php:109 widgets/gallery/gallery.php:290
5841
- #: widgets/image-box/image-box.php:87
5842
- msgid "Enable Link"
5843
- msgstr ""
5844
-
5845
- #: widgets/client-logo/client-logo.php:120
5846
- #: widgets/dual-button/dual-button.php:167
5847
- #: widgets/dual-button/dual-button.php:296
5848
- #: widgets/facebook-feed/facebook-feed.php:870 widgets/gallery/gallery.php:304
5849
- #: widgets/header-info/header-info.php:72 widgets/icon-box/icon-box.php:306
5850
- #: widgets/image-box/image-box.php:98 widgets/motion-text/motion-text.php:73
5851
- #: widgets/nav-menu/nav-menu.php:91 widgets/nav-menu/nav-menu.php:104
5852
- #: widgets/page-list/page-list.php:245 widgets/pricing/pricing.php:332
5853
- #: widgets/social/social.php:182 widgets/team/team.php:217
5854
- msgid "Link"
5855
- msgstr ""
5856
-
5857
- #: widgets/client-logo/client-logo.php:122
5858
- #: widgets/dual-button/dual-button.php:169
5859
- #: widgets/dual-button/dual-button.php:298 widgets/gallery/gallery.php:306
5860
- #: widgets/header-info/header-info.php:74 widgets/icon-box/icon-box.php:308
5861
- #: widgets/image-accordion/image-accordion.php:177
5862
- #: widgets/image-box/image-box.php:100 widgets/motion-text/motion-text.php:75
5863
- #: widgets/page-list/page-list.php:247
5864
- msgid "https://your-link.com"
5865
- msgstr ""
5866
-
5867
- #: widgets/client-logo/client-logo.php:134 widgets/hotspot/hotspot.php:364
5868
- msgid "Repeater List"
5869
- msgstr ""
5870
-
5871
- #: widgets/client-logo/client-logo.php:139 widgets/timeline/timeline.php:304
5872
- #: widgets/timeline/timeline.php:308 widgets/timeline/timeline.php:312
5873
- msgid "Title #1"
5874
- msgstr ""
5875
-
5876
- #: widgets/client-logo/client-logo.php:142
5877
- msgid "Title #2"
5878
- msgstr ""
5879
-
5880
- #: widgets/client-logo/client-logo.php:145
5881
- msgid "Title #3"
5882
- msgstr ""
5883
-
5884
- #: widgets/client-logo/client-logo.php:148
5885
- msgid "Title #4"
5886
- msgstr ""
5887
-
5888
- #: widgets/client-logo/client-logo.php:151
5889
- msgid "Title #5"
5890
- msgstr ""
5891
-
5892
- #: widgets/client-logo/client-logo.php:172
5893
- #: widgets/client-logo/client-logo.php:1062
5894
- #: widgets/testimonial/testimonial.php:402
5895
- msgid "Spacing Left Right"
5896
- msgstr ""
5897
-
5898
- #: widgets/client-logo/client-logo.php:208
5899
- msgid "Spacing Top Bottom"
5900
- msgstr ""
5901
-
5902
- #: widgets/client-logo/client-logo.php:244
5903
- #: widgets/testimonial/testimonial.php:450
5904
- msgid "Slides To Show"
5905
- msgstr ""
5906
-
5907
- #: widgets/client-logo/client-logo.php:277
5908
- #: widgets/testimonial/testimonial.php:462
5909
- msgid "Slides To Scroll"
5910
- msgstr ""
5911
-
5912
- #: widgets/client-logo/client-logo.php:312
5913
- #: widgets/testimonial/testimonial.php:486
5914
- #: widgets/woo-product-carousel/woo-product-carousel.php:376
5915
- msgid "Autoplay"
5916
- msgstr ""
5917
-
5918
- #: widgets/client-logo/client-logo.php:323
5919
- msgid "Speed (ms)"
5920
- msgstr ""
5921
-
5922
- #: widgets/client-logo/client-logo.php:337
5923
- #: widgets/testimonial/testimonial.php:554
5924
- msgid "Pause on Hover"
5925
- msgstr ""
5926
-
5927
- #: widgets/client-logo/client-logo.php:351
5928
- #: widgets/testimonial/testimonial.php:498
5929
- msgid "Show arrow"
5930
- msgstr ""
5931
-
5932
- #: widgets/client-logo/client-logo.php:362
5933
- #: widgets/testimonial/testimonial.php:522
5934
- msgid "Left arrow Icon"
5935
- msgstr ""
5936
-
5937
- #: widgets/client-logo/client-logo.php:378
5938
- #: widgets/testimonial/testimonial.php:538
5939
- msgid "Right arrow Icon"
5940
- msgstr ""
5941
-
5942
- #: widgets/client-logo/client-logo.php:393
5943
- #: widgets/testimonial/testimonial.php:510
5944
- msgid "Show dots"
5945
- msgstr ""
5946
-
5947
- #: widgets/client-logo/client-logo.php:405
5948
- msgid "Additional Options"
5949
- msgstr ""
5950
-
5951
- #: widgets/client-logo/client-logo.php:414
5952
- msgid "Rows"
5953
- msgstr ""
5954
-
5955
- #: widgets/client-logo/client-logo.php:415
5956
- msgid ""
5957
- "Setting this to more than 1 initializes grid mode. Use slidesPerRow to set "
5958
- "how many slides should be in each row.\n"
5959
- "\t\t\t\t"
5960
- msgstr ""
5961
-
5962
- #: widgets/client-logo/client-logo.php:420
5963
- msgid "One row"
5964
- msgstr ""
5965
-
5966
- #: widgets/client-logo/client-logo.php:421
5967
- msgid "Two row"
5968
- msgstr ""
5969
-
5970
- #: widgets/client-logo/client-logo.php:422
5971
- msgid "Three row"
5972
- msgstr ""
5973
-
5974
- #: widgets/client-logo/client-logo.php:442
5975
- #: widgets/facebook-feed/facebook-feed.php:286
5976
- #: widgets/instagram-feed/instagram-feed.php:281
5977
- #: widgets/timeline/timeline.php:1122 widgets/twitter-feed/twitter-feed.php:469
5978
- msgid "Container"
5979
- msgstr ""
5980
-
5981
- #: widgets/client-logo/client-logo.php:483
5982
- #: widgets/image-accordion/image-accordion.php:223
5983
- msgid "Min Height"
5984
- msgstr ""
5985
-
5986
- #: widgets/client-logo/client-logo.php:596 widgets/funfact/funfact.php:1152
5987
- #: widgets/icon-box/icon-box.php:1453
5988
- msgid "From Top"
5989
- msgstr ""
5990
-
5991
- #: widgets/client-logo/client-logo.php:600 widgets/icon-box/icon-box.php:1461
5992
- msgid "From Bottom"
5993
- msgstr ""
5994
-
5995
- #: widgets/client-logo/client-logo.php:622
5996
- #: widgets/tablepress/tablepress.php:575
5997
- msgid "Hover Background"
5998
- msgstr ""
5999
-
6000
- #: widgets/client-logo/client-logo.php:787
6001
- msgid "Opacity Hover"
6002
- msgstr ""
6003
-
6004
- #: widgets/client-logo/client-logo.php:816
6005
- #: widgets/woo-product-carousel/woo-product-carousel.php:438
6006
- msgid "Arrows"
6007
- msgstr ""
6008
-
6009
- #: widgets/client-logo/client-logo.php:831
6010
- msgid "Outside"
6011
- msgstr ""
6012
-
6013
- #: widgets/client-logo/client-logo.php:832
6014
- msgid "Inside"
6015
- msgstr ""
6016
-
6017
- #: widgets/client-logo/client-logo.php:916
6018
- msgid "Left Arrow Position"
6019
- msgstr ""
6020
-
6021
- #: widgets/client-logo/client-logo.php:940
6022
- msgid "Right Arrow Position"
6023
- msgstr ""
6024
-
6025
- #: widgets/client-logo/client-logo.php:973
6026
- #: widgets/client-logo/client-logo.php:1006
6027
- #: widgets/image-comparison/image-comparison.php:446
6028
- #: widgets/image-comparison/image-comparison.php:462
6029
- #: widgets/image-comparison/image-comparison.php:503
6030
- #: widgets/image-comparison/image-comparison.php:519
6031
- msgid "Arrow Color"
6032
- msgstr ""
6033
-
6034
- #: widgets/client-logo/client-logo.php:984
6035
- #: widgets/client-logo/client-logo.php:1017
6036
- msgid "Arrow Background"
6037
- msgstr ""
6038
-
6039
- #: widgets/client-logo/client-logo.php:1036
6040
- #: widgets/woo-product-carousel/woo-product-carousel.php:439
6041
- #: widgets/woo-product-carousel/woo-product-carousel.php:2201
6042
- msgid "Dots"
6043
- msgstr ""
6044
-
6045
- #: widgets/client-logo/client-logo.php:1047
6046
- msgid "Dot Style"
6047
- msgstr ""
6048
-
6049
- #: widgets/client-logo/client-logo.php:1054
6050
- msgid "Paginate"
6051
- msgstr ""
6052
-
6053
- #: widgets/client-logo/client-logo.php:1098
6054
- msgid "Spacing Top To Bottom"
6055
- msgstr ""
6056
-
6057
- #: widgets/client-logo/client-logo.php:1122
6058
- msgid "Dot Color"
6059
- msgstr ""
6060
-
6061
- #: widgets/client-logo/client-logo.php:1278
6062
- msgid "Separator"
6063
- msgstr ""
6064
-
6065
- #: widgets/contact-form7/contact-form7-handler.php:11
6066
- #: widgets/contact-form7/contact-form7.php:47
6067
- msgid "Contact form 7"
6068
- msgstr ""
6069
-
6070
- #: widgets/countdown-timer/countdown-timer-handler.php:11
6071
- msgid "Countdown Timer"
6072
- msgstr ""
6073
-
6074
- #: widgets/countdown-timer/countdown-timer.php:40
6075
- msgid "Presets"
6076
- msgstr ""
6077
-
6078
- #: widgets/countdown-timer/countdown-timer.php:83
6079
- #: widgets/testimonial/testimonial.php:85
6080
- msgid "image style 6"
6081
- msgstr ""
6082
-
6083
- #: widgets/countdown-timer/countdown-timer.php:97
6084
- msgid "Timer Settings "
6085
- msgstr ""
6086
-
6087
- #: widgets/countdown-timer/countdown-timer.php:105
6088
- msgid "Countdown Due Date"
6089
- msgstr ""
6090
-
6091
- #: widgets/countdown-timer/countdown-timer.php:108
6092
- msgid "Set the due date and time"
6093
- msgstr ""
6094
-
6095
- #: widgets/countdown-timer/countdown-timer.php:114
6096
- msgid "Custom Labels"
6097
- msgstr ""
6098
-
6099
- #: widgets/countdown-timer/countdown-timer.php:123
6100
- #: widgets/countdown-timer/countdown-timer.php:125
6101
- #: widgets/countdown-timer/countdown-timer.php:331
6102
- msgid "Weeks"
6103
- msgstr ""
6104
-
6105
- #: widgets/countdown-timer/countdown-timer.php:134
6106
- #: widgets/countdown-timer/countdown-timer.php:136
6107
- #: widgets/countdown-timer/countdown-timer.php:534
6108
- msgid "Days"
6109
- msgstr ""
6110
-
6111
- #: widgets/countdown-timer/countdown-timer.php:143
6112
- #: widgets/countdown-timer/countdown-timer.php:145
6113
- #: widgets/countdown-timer/countdown-timer.php:810
6114
- msgid "Hours"
6115
- msgstr ""
6116
-
6117
- #: widgets/countdown-timer/countdown-timer.php:152
6118
- #: widgets/countdown-timer/countdown-timer.php:154
6119
- #: widgets/countdown-timer/countdown-timer.php:1082
6120
- msgid "Minutes"
6121
- msgstr ""
6122
-
6123
- #: widgets/countdown-timer/countdown-timer.php:161
6124
- #: widgets/countdown-timer/countdown-timer.php:163
6125
- #: widgets/countdown-timer/countdown-timer.php:1358
6126
- msgid "Seconds"
6127
- msgstr ""
6128
-
6129
- #: widgets/countdown-timer/countdown-timer.php:172
6130
- msgid "Expire Action"
6131
- msgstr ""
6132
-
6133
- #: widgets/countdown-timer/countdown-timer.php:179
6134
- msgid "On Expiry Title"
6135
- msgstr ""
6136
-
6137
- #: widgets/countdown-timer/countdown-timer.php:181
6138
- msgid "Countdown is finished!"
6139
- msgstr ""
6140
-
6141
- #: widgets/countdown-timer/countdown-timer.php:188
6142
- msgid "On Expiry Content"
6143
- msgstr ""
6144
-
6145
- #: widgets/countdown-timer/countdown-timer.php:190
6146
- msgid ""
6147
- "Lorem Ipsum is simply dummy text of the printing and typesetting industry. "
6148
- "Lorem Ipsum has been the industry's standard dummy text ever since the 1500s"
6149
- msgstr ""
6150
-
6151
- #: widgets/countdown-timer/countdown-timer.php:343
6152
- #: widgets/countdown-timer/countdown-timer.php:543
6153
- #: widgets/countdown-timer/countdown-timer.php:818
6154
- #: widgets/countdown-timer/countdown-timer.php:1091
6155
- #: widgets/countdown-timer/countdown-timer.php:1367
6156
- msgid "Digits"
6157
- msgstr ""
6158
-
6159
- #: widgets/countdown-timer/countdown-timer.php:478
6160
- #: widgets/countdown-timer/countdown-timer.php:732
6161
- #: widgets/countdown-timer/countdown-timer.php:1010
6162
- #: widgets/countdown-timer/countdown-timer.php:1283
6163
- #: widgets/countdown-timer/countdown-timer.php:1558
6164
- #: widgets/heading/heading.php:287
6165
- #: widgets/image-accordion/image-accordion.php:215
6166
- #: widgets/image-comparison/image-comparison.php:183
6167
- msgid "General"
6168
- msgstr ""
6169
-
6170
- #: widgets/countdown-timer/countdown-timer.php:1698
6171
- msgid "Outer Part"
6172
- msgstr ""
6173
-
6174
- #: widgets/countdown-timer/countdown-timer.php:1707
6175
- msgid "Outer Background"
6176
- msgstr ""
6177
-
6178
- #: widgets/countdown-timer/countdown-timer.php:1715
6179
- msgid "Inner Part"
6180
- msgstr ""
6181
-
6182
- #: widgets/countdown-timer/countdown-timer.php:1724
6183
- msgid "Inner Background"
6184
- msgstr ""
6185
-
6186
- #: widgets/creative-button/creative-button-handler.php:11
6187
- msgid "Creative Button"
6188
- msgstr ""
6189
-
6190
- #: widgets/creative-button/creative-button.php:165
6191
- msgid "Hover Style"
6192
- msgstr ""
6193
-
6194
- #: widgets/creative-button/creative-button.php:170
6195
- msgid "No Effect"
6196
- msgstr ""
6197
-
6198
- #: widgets/creative-button/creative-button.php:171
6199
- msgid "Left to right with hypen"
6200
- msgstr ""
6201
-
6202
- #: widgets/creative-button/creative-button.php:172
6203
- msgid "Left to right"
6204
- msgstr ""
6205
-
6206
- #: widgets/creative-button/creative-button.php:173
6207
- msgid "Left to right with icon"
6208
- msgstr ""
6209
-
6210
- #: widgets/creative-button/creative-button.php:174
6211
- msgid "Border left to right"
6212
- msgstr ""
6213
-
6214
- #: widgets/creative-button/creative-button.php:175
6215
- msgid "Center ripple effect"
6216
- msgstr ""
6217
-
6218
- #: widgets/creative-button/creative-button.php:176
6219
- msgid "Fade with icon"
6220
- msgstr ""
6221
-
6222
- #: widgets/creative-button/creative-button.php:177
6223
- msgid "Fade with icon skew"
6224
- msgstr ""
6225
-
6226
- #: widgets/creative-button/creative-button.php:178
6227
- msgid "Fade with icon on hover"
6228
- msgstr ""
6229
-
6230
- #: widgets/creative-button/creative-button.php:179
6231
- msgid "Border ripple"
6232
- msgstr ""
6233
-
6234
- #: widgets/creative-button/creative-button.php:180
6235
- msgid "Two side border"
6236
- msgstr ""
6237
-
6238
- #: widgets/creative-button/creative-button.php:181
6239
- msgid "Ripple position aware"
6240
- msgstr ""
6241
-
6242
- #: widgets/creative-button/creative-button.php:182
6243
- msgid "Two dot ripple"
6244
- msgstr ""
6245
-
6246
- #: widgets/creative-button/creative-button.php:183
6247
- msgid "Doors open"
6248
- msgstr ""
6249
-
6250
- #: widgets/creative-button/creative-button.php:184
6251
- msgid "Skew open"
6252
- msgstr ""
6253
-
6254
- #: widgets/creative-button/creative-button.php:185
6255
- msgid "Vertical text cut"
6256
- msgstr ""
6257
-
6258
- #: widgets/creative-button/creative-button.php:186
6259
- msgid "Zingle"
6260
- msgstr ""
6261
-
6262
- #: widgets/creative-button/creative-button.php:187
6263
- msgid "Two shade"
6264
- msgstr ""
6265
-
6266
- #: widgets/creative-button/creative-button.php:188
6267
- msgid "Outer dot click splash effect"
6268
- msgstr ""
6269
-
6270
- #: widgets/creative-button/creative-button.php:189
6271
- msgid "Water ripple click effect"
6272
- msgstr ""
6273
-
6274
- #: widgets/creative-button/creative-button.php:197
6275
- msgid "Ripple Border Color"
6276
- msgstr ""
6277
-
6278
- #: widgets/creative-button/creative-button.php:459
6279
- msgid "Background Color One"
6280
- msgstr ""
6281
-
6282
- #: widgets/creative-button/creative-button.php:472
6283
- msgid "Background Color Two"
6284
- msgstr ""
6285
-
6286
- #: widgets/creative-button/creative-button.php:601
6287
- msgid "Iocn Bg Normal"
6288
- msgstr ""
6289
-
6290
- #: widgets/creative-button/creative-button.php:615
6291
- msgid "Iocn Bg Hover"
6292
- msgstr ""
6293
-
6294
- #: widgets/drop-caps/drop-caps-handler.php:11
6295
- msgid "Drop Caps"
6296
- msgstr ""
6297
-
6298
- #: widgets/drop-caps/drop-caps.php:36
6299
- msgid "Dropcaps"
6300
- msgstr ""
6301
-
6302
- #: widgets/drop-caps/drop-caps.php:45
6303
- msgid ""
6304
- "Lorem ipsum dolor sit amet, consec adipisicing elit, sed do eiusmod tempor "
6305
- "incidid ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis "
6306
- "nostrud exercitation ullamco laboris nisi ut aliquip exl Lorem ipsum dolor "
6307
- "sit amet, consectetur adipisicing elit, sed do eiusmod tempor incidid ut "
6308
- "labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud "
6309
- "exercitation ullamco laboris nisi ut aliquip."
6310
- msgstr ""
6311
-
6312
- #: widgets/drop-caps/drop-caps.php:46
6313
- msgid "Enter Your Drop Caps Content."
6314
- msgstr ""
6315
-
6316
- #: widgets/drop-caps/drop-caps.php:147
6317
- msgid "Dropcap Latter"
6318
- msgstr ""
6319
-
6320
- #: widgets/dual-button/dual-button-handler.php:11
6321
- msgid "Dual Button"
6322
- msgstr ""
6323
-
6324
- #: widgets/dual-button/dual-button.php:36
6325
- msgid "Double Button"
6326
- msgstr ""
6327
-
6328
- #: widgets/dual-button/dual-button.php:43
6329
- #: widgets/dual-button/dual-button.php:848
6330
- msgid "Middle Text"
6331
- msgstr ""
6332
-
6333
- #: widgets/dual-button/dual-button.php:53
6334
- msgid "Or"
6335
- msgstr ""
6336
-
6337
- #: widgets/dual-button/dual-button.php:89 widgets/we-forms/we-forms.php:362
6338
- msgid "Button Width"
6339
- msgstr ""
6340
-
6341
- #: widgets/dual-button/dual-button.php:123
6342
- msgid "Button Gap"
6343
- msgstr ""
6344
-
6345
- #: widgets/dual-button/dual-button.php:149
6346
- #: widgets/dual-button/dual-button.php:408
6347
- msgid "Button One"
6348
- msgstr ""
6349
-
6350
- #: widgets/dual-button/dual-button.php:278
6351
- #: widgets/dual-button/dual-button.php:629
6352
- msgid "Button Two"
6353
- msgstr ""
6354
-
6355
- #: widgets/dual-button/dual-button.php:340 widgets/icon-box/icon-box.php:471
6356
- #: widgets/tablepress/tablepress.php:208 widgets/tablepress/tablepress.php:335
6357
- #: widgets/tablepress/tablepress.php:418 widgets/video/video.php:575
6358
- msgid "Border Style"
6359
- msgstr ""
6360
-
6361
- #: widgets/dual-button/dual-button.php:449
6362
- #: widgets/dual-button/dual-button.php:670
6363
- msgid "Icon font size"
6364
- msgstr ""
6365
-
6366
- #: widgets/dual-button/dual-button.php:544
6367
- #: widgets/dual-button/dual-button.php:765 widgets/nav-menu/nav-menu.php:124
6368
- #: widgets/video/video.php:305
6369
- msgid "Justified"
6370
- msgstr ""
6371
-
6372
- #: widgets/facebook-feed/facebook-feed-handler.php:15
6373
- msgid "Facebook Feed"
6374
- msgstr ""
6375
-
6376
- #: widgets/facebook-feed/facebook-feed.php:39
6377
- #: widgets/instagram-feed/instagram-feed.php:38
6378
- #: widgets/twitter-feed/twitter-feed.php:40
6379
- msgid "Layout Settings "
6380
- msgstr ""
6381
-
6382
- #: widgets/facebook-feed/facebook-feed.php:46
6383
- #: widgets/instagram-feed/instagram-feed.php:45
6384
- msgid "Grid Style"
6385
- msgstr ""
6386
-
6387
- #: widgets/facebook-feed/facebook-feed.php:51 widgets/gallery/gallery.php:103
6388
- #: widgets/instagram-feed/instagram-feed.php:50
6389
- #: widgets/twitter-feed/twitter-feed.php:93
6390
- msgid "Grid"
6391
- msgstr ""
6392
-
6393
- #: widgets/facebook-feed/facebook-feed.php:52
6394
- #: widgets/instagram-feed/instagram-feed.php:51
6395
- #: widgets/twitter-feed/twitter-feed.php:94
6396
- msgid "Masonary"
6397
- msgstr ""
6398
-
6399
- #: widgets/facebook-feed/facebook-feed.php:60
6400
- #: widgets/instagram-feed/instagram-feed.php:59
6401
- #: widgets/twitter-feed/twitter-feed.php:103
6402
- msgid "Columns Grid"
6403
- msgstr ""
6404
-
6405
- #: widgets/facebook-feed/facebook-feed.php:64
6406
- #: widgets/instagram-feed/instagram-feed.php:64
6407
- #: widgets/twitter-feed/twitter-feed.php:107
6408
- msgid "2 Columns"
6409
- msgstr ""
6410
-
6411
- #: widgets/facebook-feed/facebook-feed.php:65
6412
- #: widgets/instagram-feed/instagram-feed.php:65
6413
- #: widgets/twitter-feed/twitter-feed.php:108
6414
- msgid "3 Columns"
6415
- msgstr ""
6416
-
6417
- #: widgets/facebook-feed/facebook-feed.php:66
6418
- #: widgets/instagram-feed/instagram-feed.php:66
6419
- #: widgets/twitter-feed/twitter-feed.php:109
6420
- msgid "4 Columns"
6421
- msgstr ""
6422
-
6423
- #: widgets/facebook-feed/facebook-feed.php:75
6424
- #: widgets/instagram-feed/instagram-feed.php:76
6425
- #: widgets/twitter-feed/twitter-feed.php:88
6426
- msgid "Feed Style"
6427
- msgstr ""
6428
-
6429
- #: widgets/facebook-feed/facebook-feed.php:79
6430
- msgid "Classic"
6431
- msgstr ""
6432
-
6433
- #: widgets/facebook-feed/facebook-feed.php:80
6434
- msgid "Photos"
6435
- msgstr ""
6436
-
6437
- #: widgets/facebook-feed/facebook-feed.php:89
6438
- #: widgets/instagram-feed/instagram-feed.php:88
6439
- #: widgets/twitter-feed/twitter-feed.php:119
6440
- msgid "Show Post"
6441
- msgstr ""
6442
-
6443
- #: widgets/facebook-feed/facebook-feed.php:105
6444
- #: widgets/instagram-feed/instagram-feed.php:104
6445
- #: widgets/twitter-feed/twitter-feed.php:158
6446
- msgid "Display Settings "
6447
- msgstr ""
6448
-
6449
- #: widgets/facebook-feed/facebook-feed.php:116
6450
- #: widgets/twitter-feed/twitter-feed.php:166
6451
- msgid "Show Author"
6452
- msgstr ""
6453
-
6454
- #: widgets/facebook-feed/facebook-feed.php:127
6455
- #: widgets/twitter-feed/twitter-feed.php:177
6456
- msgid "Author Settings"
6457
- msgstr ""
6458
-
6459
- #: widgets/facebook-feed/facebook-feed.php:131
6460
- #: widgets/instagram-feed/instagram-feed.php:129
6461
- msgid "Only Profile Image"
6462
- msgstr ""
6463
-
6464
- #: widgets/facebook-feed/facebook-feed.php:132
6465
- #: widgets/instagram-feed/instagram-feed.php:130
6466
- #: widgets/twitter-feed/twitter-feed.php:182
6467
- msgid "Only Name"
6468
- msgstr ""
6469
-
6470
- #: widgets/facebook-feed/facebook-feed.php:133 widgets/gallery/gallery.php:910
6471
- #: widgets/instagram-feed/instagram-feed.php:131
6472
- #: widgets/social-share/social-share.php:55 widgets/social/social.php:49
6473
- #: widgets/table/table.php:616 widgets/video/video.php:54
6474
- msgid "Both"
6475
- msgstr ""
6476
-
6477
- #: widgets/facebook-feed/facebook-feed.php:143
6478
- msgid "Author Style"
6479
- msgstr ""
6480
-
6481
- #: widgets/facebook-feed/facebook-feed.php:158
6482
- #: widgets/instagram-feed/instagram-feed.php:160
6483
- #: widgets/twitter-feed/twitter-feed.php:207
6484
- msgid "Show Date"
6485
- msgstr ""
6486
-
6487
- #: widgets/facebook-feed/facebook-feed.php:171
6488
- msgid "Show Fotter"
6489
- msgstr ""
6490
-
6491
- #: widgets/facebook-feed/facebook-feed.php:183
6492
- msgid "Show Comments"
6493
- msgstr ""
6494
-
6495
- #: widgets/facebook-feed/facebook-feed.php:207
6496
- #: widgets/facebook-feed/facebook-feed.php:234
6497
- #: widgets/image-accordion/image-accordion.php:247
6498
- #: widgets/instagram-feed/instagram-feed.php:385
6499
- #: widgets/instagram-feed/instagram-feed.php:412
6500
- #: widgets/instagram-feed/instagram-feed.php:464
6501
- msgid "Gutter"
6502
- msgstr ""
6503
-
6504
- #: widgets/facebook-feed/facebook-feed.php:418
6505
- msgid "Header Margin"
6506
- msgstr ""
6507
-
6508
- #: widgets/facebook-feed/facebook-feed.php:430
6509
- msgid "Header Padding"
6510
- msgstr ""
6511
-
6512
- #: widgets/facebook-feed/facebook-feed.php:442
6513
- msgid "Date Color"
6514
- msgstr ""
6515
-
6516
- #: widgets/facebook-feed/facebook-feed.php:463
6517
- #: widgets/facebook-feed/facebook-feed.php:484
6518
- #: widgets/facebook-feed/facebook-feed.php:529
6519
- #: widgets/facebook-feed/facebook-feed.php:550
6520
- #: widgets/twitter-feed/twitter-feed.php:653
6521
- #: widgets/twitter-feed/twitter-feed.php:747
6522
- msgid "User Name"
6523
- msgstr ""
6524
-
6525
- #: widgets/facebook-feed/facebook-feed.php:508
6526
- #: widgets/piechart/piechart.php:273
6527
- msgid "Content Color"
6528
- msgstr ""
6529
-
6530
- #: widgets/facebook-feed/facebook-feed.php:569
6531
- #: widgets/instagram-feed/instagram-feed.php:968
6532
- #: widgets/twitter-feed/twitter-feed.php:1173
6533
- msgid "Media"
6534
- msgstr ""
6535
-
6536
- #: widgets/facebook-feed/facebook-feed.php:604 widgets/gallery/gallery.php:1856
6537
- #: widgets/gallery/gallery.php:1865 widgets/team/team.php:54
6538
- #: widgets/team/team.php:892 widgets/team/team.php:904
6539
- #: widgets/team/team.php:1718
6540
- #: widgets/woo-product-carousel/woo-product-carousel.php:1008
6541
- #: widgets/woo-product-list/woo-product-list.php:1171
6542
- msgid "Overlay"
6543
- msgstr ""
6544
-
6545
- #: widgets/facebook-feed/facebook-feed.php:785
6546
- #: widgets/facebook-feed/facebook-feed.php:829
6547
- msgid "Play Icon"
6548
- msgstr ""
6549
-
6550
- #: widgets/facebook-feed/facebook-feed.php:914
6551
- msgid "Source Color"
6552
- msgstr ""
6553
-
6554
- #: widgets/facebook-feed/facebook-feed.php:926
6555
- msgid "Caption Name Color"
6556
- msgstr ""
6557
-
6558
- #: widgets/facebook-feed/facebook-feed.php:938
6559
- msgid "Caption Color"
6560
- msgstr ""
6561
-
6562
- #: widgets/facebook-feed/facebook-feed.php:978
6563
- #: widgets/icon-box/icon-box.php:847 widgets/page-list/page-list.php:832
6564
- #: widgets/team/team.php:1943
6565
- msgid "Color Hover"
6566
- msgstr ""
6567
-
6568
- #: widgets/facebook-feed/facebook-feed.php:1206
6569
- msgid "Shares"
6570
- msgstr ""
6571
-
6572
- #: widgets/faq/faq.php:48
6573
- msgid "Title type here"
6574
- msgstr ""
6575
-
6576
- #: widgets/faq/faq.php:49
6577
- msgid "How to Change my Photo from Admin Dashboard?"
6578
- msgstr ""
6579
-
6580
- #: widgets/faq/faq.php:58
6581
- msgid "Description type here"
6582
- msgstr ""
6583
-
6584
- #: widgets/faq/faq.php:59
6585
- msgid ""
6586
- "Far far away, behind the word mountains, far from the countries Vokalia and "
6587
- "Consonantia, there live the blind texts. Separated they live in "
6588
- "Bookmarksgrove right at the coast"
6589
- msgstr ""
6590
-
6591
- #: widgets/faq/faq.php:151
6592
- msgid "Title Padding"
6593
- msgstr ""
6594
-
6595
- #: widgets/faq/faq.php:170
6596
- msgid "Title Margin"
6597
- msgstr ""
6598
-
6599
- #: widgets/faq/faq.php:212
6600
- msgid "Content Background"
6601
- msgstr ""
6602
-
6603
- #: widgets/faq/faq.php:261
6604
- msgid "Content Margin"
6605
- msgstr ""
6606
-
6607
- #: widgets/funfact/funfact-handler.php:11
6608
- msgid "Funfact"
6609
- msgstr ""
6610
-
6611
- #: widgets/funfact/funfact.php:49
6612
- msgid "Icon type "
6613
- msgstr ""
6614
-
6615
- #: widgets/funfact/funfact.php:104
6616
- msgid "View"
6617
- msgstr ""
6618
-
6619
- #: widgets/funfact/funfact.php:108
6620
- msgid "Stacked"
6621
- msgstr ""
6622
-
6623
- #: widgets/funfact/funfact.php:109
6624
- msgid "Framed"
6625
- msgstr ""
6626
-
6627
- #: widgets/funfact/funfact.php:160
6628
- msgid "Number "
6629
- msgstr ""
6630
-
6631
- #: widgets/funfact/funfact.php:163
6632
- msgid "Enter number"
6633
- msgstr ""
6634
-
6635
- #: widgets/funfact/funfact.php:170
6636
- msgid "Number Suffix "
6637
- msgstr ""
6638
-
6639
- #: widgets/funfact/funfact.php:173
6640
- msgid "M+"
6641
- msgstr ""
6642
-
6643
- #: widgets/funfact/funfact.php:180 widgets/icon-box/icon-box.php:115
6644
- #: widgets/image-box/image-box.php:126 widgets/piechart/piechart.php:201
6645
- msgid "Title "
6646
- msgstr ""
6647
-
6648
- #: widgets/funfact/funfact.php:182 widgets/icon-box/icon-box.php:120
6649
- #: widgets/image-box/image-box.php:131
6650
- msgid "This is the heading"
6651
- msgstr ""
6652
-
6653
- #: widgets/funfact/funfact.php:183 widgets/icon-box/icon-box.php:121
6654
- #: widgets/image-box/image-box.php:132
6655
- msgid "Enter your title"
6656
- msgstr ""
6657
-
6658
- #: widgets/funfact/funfact.php:191
6659
- msgid "Enable Super"
6660
- msgstr ""
6661
-
6662
- #: widgets/funfact/funfact.php:200 widgets/funfact/funfact.php:871
6663
- msgid "Super"
6664
- msgstr ""
6665
-
6666
- #: widgets/funfact/funfact.php:203
6667
- msgid "+"
6668
- msgstr ""
6669
-
6670
- #: widgets/funfact/funfact.php:246 widgets/heading/heading.php:58
6671
- #: widgets/icon-box/icon-box.php:417 widgets/image-box/image-box.php:190
6672
- #: widgets/motion-text/motion-text.php:53 widgets/pricing/pricing.php:51
6673
- msgid "Title HTML Tag"
6674
- msgstr ""
6675
-
6676
- #: widgets/funfact/funfact.php:274
6677
- msgid "Enable Hover Border Bottom"
6678
- msgstr ""
6679
-
6680
- #: widgets/funfact/funfact.php:283
6681
- msgid "Hover Border Bottom Color"
6682
- msgstr ""
6683
-
6684
- #: widgets/funfact/funfact.php:297 widgets/icon-box/icon-box.php:1445
6685
- #: widgets/image-box/image-box.php:677
6686
- msgid "Hover Direction"
6687
- msgstr ""
6688
-
6689
- #: widgets/funfact/funfact.php:331
6690
- msgid "Enable Vertical Border"
6691
- msgstr ""
6692
-
6693
- #: widgets/funfact/funfact.php:340 widgets/funfact/funfact.php:1148
6694
- msgid "Border Direction"
6695
- msgstr ""
6696
-
6697
- #: widgets/funfact/funfact.php:511
6698
- msgid "Icons"
6699
- msgstr ""
6700
-
6701
- #: widgets/funfact/funfact.php:546 widgets/pricing/pricing.php:1052
6702
- msgid "BG Color"
6703
- msgstr ""
6704
-
6705
- #: widgets/funfact/funfact.php:588 widgets/pricing/pricing.php:1094
6706
- msgid "Primary Color"
6707
- msgstr ""
6708
-
6709
- #: widgets/funfact/funfact.php:601 widgets/pricing/pricing.php:1107
6710
- msgid "Secondary Color"
6711
- msgstr ""
6712
-
6713
- #: widgets/funfact/funfact.php:738
6714
- msgid "Number Count"
6715
- msgstr ""
6716
-
6717
- #: widgets/funfact/funfact.php:747 widgets/funfact/funfact.php:882
6718
- msgid "Number Color"
6719
- msgstr ""
6720
-
6721
- #: widgets/funfact/funfact.php:770 widgets/funfact/funfact.php:814
6722
- #: widgets/icon-box/icon-box.php:673 widgets/image-box/image-box.php:1104
6723
- #: widgets/image-box/image-box.php:1189 widgets/nav-menu/nav-menu.php:318
6724
- #: widgets/nav-menu/nav-menu.php:526 widgets/ninja-forms/ninja-forms.php:196
6725
- #: widgets/ninja-forms/ninja-forms.php:434
6726
- #: widgets/ninja-forms/ninja-forms.php:529
6727
- #: widgets/woo-product-list/woo-product-list.php:601
6728
- #: widgets/woo-product-list/woo-product-list.php:2079
6729
- #: widgets/woo-product-list/woo-product-list.php:2163
6730
- msgid "Spacing"
6731
- msgstr ""
6732
-
6733
- #: widgets/funfact/funfact.php:787
6734
- msgid "Right Spacing"
6735
- msgstr ""
6736
-
6737
- #: widgets/funfact/funfact.php:927
6738
- msgid "Horizontal space"
6739
- msgstr ""
6740
-
6741
- #: widgets/funfact/funfact.php:950 widgets/heading/heading.php:720
6742
- #: widgets/image-accordion/image-accordion.php:473
6743
- #: widgets/pricing/pricing.php:1383 widgets/pricing/pricing.php:1453
6744
- msgid "Vertical Position"
6745
- msgstr ""
6746
-
6747
- #: widgets/funfact/funfact.php:1044 widgets/icon-box/icon-box.php:1264
6748
- msgid "Entrance Animation"
6749
- msgstr ""
6750
-
6751
- #: widgets/funfact/funfact.php:1054 widgets/icon-box/icon-box.php:1390
6752
- msgid "Enable Overlay"
6753
- msgstr ""
6754
-
6755
- #: widgets/funfact/funfact.php:1065
6756
- #: widgets/woo-product-carousel/woo-product-carousel.php:1836
6757
- msgid "Overlay Color"
6758
- msgstr ""
6759
-
6760
- #: widgets/funfact/funfact.php:1081
6761
- msgid "Devider"
6762
- msgstr ""
6763
-
6764
- #: widgets/funfact/funfact.php:1156 widgets/image-box/image-box.php:685
6765
- msgid "From Center"
6766
- msgstr ""
6767
-
6768
- #: widgets/funfact/funfact.php:1160
6769
- msgid "From Down"
6770
- msgstr ""
6771
-
6772
- #: widgets/gallery/gallery-handler.php:13
6773
- msgid "Gallery"
6774
- msgstr ""
6775
-
6776
- #: widgets/gallery/gallery.php:48
6777
- msgid "Gallery Content"
6778
- msgstr ""
6779
-
6780
- #: widgets/gallery/gallery.php:56
6781
- msgid "Filter Label"
6782
- msgstr ""
6783
-
6784
- #: widgets/gallery/gallery.php:66
6785
- msgid "Add Images"
6786
- msgstr ""
6787
-
6788
- #: widgets/gallery/gallery.php:104
6789
- msgid "Masonry"
6790
- msgstr ""
6791
-
6792
- #: widgets/gallery/gallery.php:113
6793
- #: widgets/woo-category-list/woo-category-list.php:165
6794
- #: widgets/woo-product-list/woo-product-list.php:187
6795
- msgid "Columns"
6796
- msgstr ""
6797
-
6798
- #: widgets/gallery/gallery.php:129
6799
- msgid "Image Aspect Ratio"
6800
- msgstr ""
6801
-
6802
- #: widgets/gallery/gallery.php:165
6803
- msgid "\"All\" Filter Label"
6804
- msgstr ""
6805
-
6806
- #: widgets/gallery/gallery.php:167 widgets/tablepress/tablepress.php:79
6807
- #: widgets/woo-category-list/woo-category-list.php:47
6808
- msgid "All"
6809
- msgstr ""
6810
-
6811
- #: widgets/gallery/gallery.php:174 widgets/icon-box/icon-box.php:388
6812
- #: widgets/piechart/piechart.php:313 widgets/pricing/pricing.php:1679
6813
- #: widgets/woo-product-carousel/woo-product-carousel.php:186
6814
- #: widgets/woo-product-list/woo-product-list.php:144
6815
- msgid "Content Alignment"
6816
- msgstr ""
6817
-
6818
- #: widgets/gallery/gallery.php:225
6819
- #: widgets/instagram-feed/instagram-feed.php:203
6820
- msgid "Show Caption"
6821
- msgstr ""
6822
-
6823
- #: widgets/gallery/gallery.php:237 widgets/heading/heading.php:170
6824
- #: widgets/team/team.php:144
6825
- msgid "Show Description"
6826
- msgstr ""
6827
-
6828
- #: widgets/gallery/gallery.php:250
6829
- msgid "Show Filter Label"
6830
- msgstr ""
6831
-
6832
- #: widgets/gallery/gallery.php:262
6833
- msgid "Show Lightbox"
6834
- msgstr ""
6835
-
6836
- #: widgets/gallery/gallery.php:274
6837
- msgid "Lightbox Icon"
6838
- msgstr ""
6839
-
6840
- #: widgets/gallery/gallery.php:318
6841
- msgid "Show Image Slideshow"
6842
- msgstr ""
6843
-
6844
- #: widgets/gallery/gallery.php:320
6845
- msgid "True"
6846
- msgstr ""
6847
-
6848
- #: widgets/gallery/gallery.php:321
6849
- msgid "Flase"
6850
- msgstr ""
6851
-
6852
- #: widgets/gallery/gallery.php:333 widgets/table/table.php:587
6853
- msgid "Ordering"
6854
- msgstr ""
6855
-
6856
- #: widgets/gallery/gallery.php:338
6857
- #: widgets/woo-product-carousel/woo-product-carousel.php:156
6858
- #: widgets/woo-product-list/woo-product-list.php:111
6859
- msgid "Random"
6860
- msgstr ""
6861
-
6862
- #: widgets/gallery/gallery.php:355
6863
- msgid "Columns Gap"
6864
- msgstr ""
6865
-
6866
- #: widgets/gallery/gallery.php:382
6867
- msgid "Rows Gap"
6868
- msgstr ""
6869
-
6870
- #: widgets/gallery/gallery.php:445
6871
- msgid "Thumbnails"
6872
- msgstr ""
6873
-
6874
- #: widgets/gallery/gallery.php:532 widgets/gallery/gallery.php:695
6875
- #: widgets/gallery/gallery.php:868
6876
- msgid "Gray Scale"
6877
- msgstr ""
6878
-
6879
- #: widgets/gallery/gallery.php:538
6880
- msgid "Image Filter"
6881
- msgstr ""
6882
-
6883
- #: widgets/gallery/gallery.php:906
6884
- msgid "Axis"
6885
- msgstr ""
6886
-
6887
- #: widgets/gallery/gallery.php:911
6888
- msgid "X Axis"
6889
- msgstr ""
6890
-
6891
- #: widgets/gallery/gallery.php:912
6892
- msgid "Y Axis"
6893
- msgstr ""
6894
-
6895
- #: widgets/gallery/gallery.php:923
6896
- msgid "Amount"
6897
- msgstr ""
6898
-
6899
- #: widgets/gallery/gallery.php:964
6900
- msgid "Depth"
6901
- msgstr ""
6902
-
6903
- #: widgets/gallery/gallery.php:987
6904
- msgid "Show Glare"
6905
- msgstr ""
6906
-
6907
- #: widgets/gallery/gallery.php:1002
6908
- msgid "Perspective"
6909
- msgstr ""
6910
-
6911
- #: widgets/gallery/gallery.php:1055
6912
- msgid "Caption"
6913
- msgstr ""
6914
-
6915
- #: widgets/gallery/gallery.php:1156 widgets/gallery/gallery.php:1220
6916
- #: widgets/gallery/gallery.php:1346 widgets/gallery/gallery.php:1409
6917
- #: widgets/gallery/gallery.php:1535 widgets/gallery/gallery.php:1598
6918
- #: widgets/motion-text/motion-text.php:316
6919
- #: widgets/social-share/social-share.php:280
6920
- #: widgets/social-share/social-share.php:334 widgets/social/social.php:242
6921
- #: widgets/social/social.php:296 widgets/team/team.php:277
6922
- #: widgets/team/team.php:331 widgets/video/video.php:688
6923
- #: widgets/woo-mini-cart/woo-mini-cart.php:159
6924
- #: widgets/woo-mini-cart/woo-mini-cart.php:1022
6925
- #: widgets/woo-product-carousel/woo-product-carousel.php:2753
6926
- #: widgets/woo-product-list/woo-product-list.php:1739
6927
- msgid "Text Shadow"
6928
- msgstr ""
6929
-
6930
- #: widgets/gallery/gallery.php:1623
6931
- msgid "Link Icon"
6932
- msgstr ""
6933
-
6934
- #: widgets/gallery/gallery.php:1863
6935
- msgid "Multiply"
6936
- msgstr ""
6937
-
6938
- #: widgets/gallery/gallery.php:1864
6939
- msgid "Screen"
6940
- msgstr ""
6941
-
6942
- #: widgets/gallery/gallery.php:1866
6943
- msgid "Darken"
6944
- msgstr ""
6945
-
6946
- #: widgets/gallery/gallery.php:1867
6947
- msgid "Lighten"
6948
- msgstr ""
6949
-
6950
- #: widgets/gallery/gallery.php:1868
6951
- msgid "Color-dodge"
6952
- msgstr ""
6953
-
6954
- #: widgets/gallery/gallery.php:1869
6955
- msgid "Color-burn"
6956
- msgstr ""
6957
-
6958
- #: widgets/gallery/gallery.php:1870
6959
- msgid "Difference"
6960
- msgstr ""
6961
-
6962
- #: widgets/gallery/gallery.php:1871
6963
- msgid "Exclusion"
6964
- msgstr ""
6965
-
6966
- #: widgets/gallery/gallery.php:1872
6967
- msgid "hue"
6968
- msgstr ""
6969
-
6970
- #: widgets/gallery/gallery.php:1873
6971
- msgid "Saturation"
6972
- msgstr ""
6973
-
6974
- #: widgets/gallery/gallery.php:1875
6975
- msgid "Luminosity"
6976
- msgstr ""
6977
-
6978
- #: widgets/gallery/gallery.php:1881
6979
- msgid "Show Overlay"
6980
- msgstr ""
6981
-
6982
- #: widgets/gallery/gallery.php:1905 widgets/gallery/gallery.php:1976
6983
- msgid "Blend Mode"
6984
- msgstr ""
6985
-
6986
- #: widgets/gallery/gallery.php:2044
6987
- #: widgets/woo-category-list/woo-category-list.php:35
6988
- #: widgets/woo-product-carousel/woo-product-carousel.php:92
6989
- #: widgets/woo-product-list/woo-product-list.php:39
6990
- msgid "Filter"
6991
- msgstr ""
6992
-
6993
- #: widgets/gallery/gallery.php:2051
6994
- msgid "Filter Style"
6995
- msgstr ""
6996
-
6997
- #: widgets/gallery/gallery.php:2056
6998
- msgid "Style One"
6999
- msgstr ""
7000
-
7001
- #: widgets/gallery/gallery.php:2057
7002
- msgid "Style Two"
7003
- msgstr ""
7004
-
7005
- #: widgets/gallery/gallery.php:2058
7006
- msgid "Style Three"
7007
- msgstr ""
7008
-
7009
- #: widgets/gallery/gallery.php:2059
7010
- msgid "Style Four"
7011
- msgstr ""
7012
-
7013
- #: widgets/gallery/gallery.php:2060
7014
- msgid "Style Five"
7015
- msgstr ""
7016
-
7017
- #: widgets/gallery/gallery.php:2061
7018
- msgid "Style Six"
7019
- msgstr ""
7020
-
7021
- #: widgets/gallery/gallery.php:2062
7022
- msgid "Style Seven"
7023
- msgstr ""
7024
-
7025
- #: widgets/gallery/gallery.php:2063
7026
- msgid "Style Eight"
7027
- msgstr ""
7028
-
7029
- #: widgets/gallery/gallery.php:2064
7030
- msgid "Style Nine"
7031
- msgstr ""
7032
-
7033
- #: widgets/gallery/gallery.php:2065
7034
- msgid "Style Ten"
7035
- msgstr ""
7036
-
7037
- #: widgets/gallery/gallery.php:2073
7038
- msgid "Nav Fill"
7039
- msgstr ""
7040
-
7041
- #: widgets/gallery/gallery.php:2085
7042
- msgid "Filter Items Alignment"
7043
- msgstr ""
7044
-
7045
- #: widgets/gallery/gallery.php:2097
7046
- msgid "Justify"
7047
- msgstr ""
7048
-
7049
- #: widgets/gallery/gallery.php:2118
7050
- msgid "Filter Alignment"
7051
- msgstr ""
7052
-
7053
- #: widgets/gallery/gallery.php:2386
7054
- msgid "Show Divider"
7055
- msgstr ""
7056
-
7057
- #: widgets/gallery/gallery.php:2625
7058
- msgid "Nav Bottom Spacing"
7059
- msgstr ""
7060
-
7061
- #: widgets/gallery/gallery.php:2833
7062
- #: widgets/image-comparison/image-comparison.php:50
7063
- msgid "Container Style"
7064
- msgstr ""
7065
-
7066
- #: widgets/header-info/header-info-handler.php:13
7067
- #: widgets/header-info/header-info.php:37
7068
- #: widgets/header-info/header-info.php:90
7069
- #: widgets/header-info/header-info.php:108
7070
- msgid "Header Info"
7071
- msgstr ""
7072
-
7073
- #: widgets/header-info/header-info.php:95
7074
- msgid "463 7th Ave, NY 10018, USA"
7075
- msgstr ""
7076
-
7077
- #: widgets/header-offcanvas/header-offcanvas-handler.php:13
7078
- #: widgets/header-offcanvas/header-offcanvas.php:38
7079
- msgid "Header Offcanvas"
7080
- msgstr ""
7081
-
7082
- #: widgets/header-offcanvas/header-offcanvas.php:53
7083
- msgid "Overlay color"
7084
- msgstr ""
7085
-
7086
- #: widgets/header-offcanvas/header-offcanvas.php:67
7087
- #: widgets/header-offcanvas/header-offcanvas.php:129
7088
- msgid "Hamburger"
7089
- msgstr ""
7090
-
7091
- #: widgets/header-offcanvas/header-offcanvas.php:98 widgets/team/team.php:478
7092
- #: widgets/team/team.php:1956
7093
- msgid "Close Icon"
7094
- msgstr ""
7095
-
7096
- #: widgets/header-offcanvas/header-offcanvas.php:120
7097
- msgid "Offcanvas"
7098
- msgstr ""
7099
-
7100
- #: widgets/header-offcanvas/header-offcanvas.php:498
7101
- msgid "Offcanvas Panel"
7102
- msgstr ""
7103
-
7104
- #: widgets/header-search/header-search-handler.php:13
7105
- #: widgets/header-search/header-search.php:43
7106
- #: widgets/header-search/header-search.php:168
7107
- msgid "Header Search"
7108
- msgstr ""
7109
-
7110
- #: widgets/header-search/header-search.php:49
7111
- msgid "Placeholder Text"
7112
- msgstr ""
7113
-
7114
- #: widgets/heading/heading-handler.php:11
7115
- msgid "Heading"
7116
- msgstr ""
7117
-
7118
- #: widgets/heading/heading.php:43
7119
- msgid "Heading Title"
7120
- msgstr ""
7121
-
7122
- #: widgets/heading/heading.php:45
7123
- msgid ""
7124
- "\"Focused Title\" Settings will be worked, If you use this {{something}} "
7125
- "format"
7126
- msgstr ""
7127
-
7128
- #: widgets/heading/heading.php:47 widgets/heading/heading.php:48
7129
- msgid "Grow your "
7130
- msgstr ""
7131
-
7132
- #: widgets/heading/heading.php:80 widgets/page-list/page-list.php:799
7133
- #: widgets/timeline/timeline.php:77
7134
- msgid "Subtitle"
7135
- msgstr ""
7136
-
7137
- #: widgets/heading/heading.php:87
7138
- msgid "Show Sub Title"
7139
- msgstr ""
7140
-
7141
- #: widgets/heading/heading.php:95
7142
- msgid "Border Sub Title"
7143
- msgstr ""
7144
-
7145
- #: widgets/heading/heading.php:106
7146
- msgid "Heading Sub Title"
7147
- msgstr ""
7148
-
7149
- #: widgets/heading/heading.php:109 widgets/heading/heading.php:110
7150
- msgid "Time has changed"
7151
- msgstr ""
7152
-
7153
- #: widgets/heading/heading.php:122
7154
- msgid "Sub Title Position"
7155
- msgstr ""
7156
-
7157
- #: widgets/heading/heading.php:138
7158
- msgid "Sub Title HTML Tag"
7159
- msgstr ""
7160
-
7161
- #: widgets/heading/heading.php:163 widgets/heading/heading.php:184
7162
- #: widgets/heading/heading.php:748
7163
- msgid "Title Description"
7164
- msgstr ""
7165
-
7166
- #: widgets/heading/heading.php:179
7167
- msgid "Heading Description"
7168
- msgstr ""
7169
-
7170
- #: widgets/heading/heading.php:183
7171
- msgid ""
7172
- "A small river named Duden flows by their place and supplies it with the "
7173
- "necessary regelialia. It is a paradise "
7174
- msgstr ""
7175
-
7176
- #: widgets/heading/heading.php:200 widgets/heading/heading.php:790
7177
- msgid "Seperator"
7178
- msgstr ""
7179
-
7180
- #: widgets/heading/heading.php:207
7181
- msgid "Show Seperator"
7182
- msgstr ""
7183
-
7184
- #: widgets/heading/heading.php:218
7185
- msgid "Seperator Style"
7186
- msgstr ""
7187
-
7188
- #: widgets/heading/heading.php:223
7189
- msgid "Solid with star"
7190
- msgstr ""
7191
-
7192
- #: widgets/heading/heading.php:224
7193
- msgid "Solid with bullet"
7194
- msgstr ""
7195
-
7196
- #: widgets/heading/heading.php:237
7197
- msgid "Seperator Position"
7198
- msgstr ""
7199
-
7200
- #: widgets/heading/heading.php:331 widgets/heading/heading.php:377
7201
- msgid "Title primary color"
7202
- msgstr ""
7203
-
7204
- #: widgets/heading/heading.php:370
7205
- msgid "Focused Title"
7206
- msgstr ""
7207
-
7208
- #: widgets/heading/heading.php:393
7209
- msgid "Text decoration color"
7210
- msgstr ""
7211
-
7212
- #: widgets/heading/heading.php:421
7213
- msgid "Use background color on text"
7214
- msgstr ""
7215
-
7216
- #: widgets/heading/heading.php:435 widgets/heading/heading.php:476
7217
- msgid "Focused Title Secondary BG"
7218
- msgstr ""
7219
-
7220
- #: widgets/heading/heading.php:461 widgets/heading/heading.php:530
7221
- msgid "Use text fill"
7222
- msgstr ""
7223
-
7224
- #: widgets/heading/heading.php:565
7225
- msgid "Subtitle Border Left"
7226
- msgstr ""
7227
-
7228
- #: widgets/heading/heading.php:630
7229
- msgid "Subtitle Border Right color"
7230
- msgstr ""
7231
-
7232
- #: widgets/heading/heading.php:759
7233
- msgid "Title Description color"
7234
- msgstr ""
7235
-
7236
- #: widgets/heading/heading.php:864
7237
- msgid "Seperator color"
7238
- msgstr ""
7239
-
7240
- #: widgets/hotspot/hotspot-handler.php:11 widgets/hotspot/hotspot.php:34
7241
- msgid "Hotspot"
7242
- msgstr ""
7243
-
7244
- #: widgets/hotspot/hotspot.php:63
7245
- msgid "Background Map Image"
7246
- msgstr ""
7247
-
7248
- #: widgets/hotspot/hotspot.php:74
7249
- msgid "Show Glow"
7250
- msgstr ""
7251
-
7252
- #: widgets/hotspot/hotspot.php:86
7253
- msgid "Click Or Hover"
7254
- msgstr ""
7255
-
7256
- #: widgets/hotspot/hotspot.php:89 widgets/woo-mini-cart/woo-mini-cart.php:65
7257
- msgid "Click"
7258
- msgstr ""
7259
-
7260
- #: widgets/hotspot/hotspot.php:101
7261
- msgid "Active Or Not"
7262
- msgstr ""
7263
-
7264
- #: widgets/hotspot/hotspot.php:118 widgets/hotspot/hotspot.php:370
7265
- #: widgets/hotspot/hotspot.php:383 widgets/hotspot/hotspot.php:396
7266
- #: widgets/hotspot/hotspot.php:409
7267
- msgid "South Carolina Data Center"
7268
- msgstr ""
7269
-
7270
- #: widgets/hotspot/hotspot.php:128 widgets/piechart/piechart.php:168
7271
- #: widgets/timeline/timeline.php:114
7272
- msgid "Type your description here"
7273
- msgstr ""
7274
-
7275
- #: widgets/hotspot/hotspot.php:135
7276
- msgid "Line Direction"
7277
- msgstr ""
7278
-
7279
- #: widgets/hotspot/hotspot.php:143
7280
- msgid "Left Top"
7281
- msgstr ""
7282
-
7283
- #: widgets/hotspot/hotspot.php:144
7284
- msgid "Left Bottom"
7285
- msgstr ""
7286
-
7287
- #: widgets/hotspot/hotspot.php:145
7288
- msgid "Right Top"
7289
- msgstr ""
7290
-
7291
- #: widgets/hotspot/hotspot.php:146
7292
- msgid "Right Bottom"
7293
- msgstr ""
7294
-
7295
- #: widgets/hotspot/hotspot.php:300
7296
- msgid "Right and bottom?"
7297
- msgstr ""
7298
-
7299
- #: widgets/hotspot/hotspot.php:371 widgets/hotspot/hotspot.php:384
7300
- #: widgets/hotspot/hotspot.php:397 widgets/hotspot/hotspot.php:410
7301
- #: widgets/timeline/timeline.php:305 widgets/timeline/timeline.php:309
7302
- #: widgets/timeline/timeline.php:313
7303
- msgid "Item content. Click the edit button to change this text."
7304
- msgstr ""
7305
-
7306
- #: widgets/hotspot/hotspot.php:525
7307
- msgid "Caret Background"
7308
- msgstr ""
7309
-
7310
- #: widgets/hotspot/hotspot.php:541
7311
- msgid "Pointer"
7312
- msgstr ""
7313
-
7314
- #: widgets/hotspot/hotspot.php:560
7315
- msgid "Pointer Size"
7316
- msgstr ""
7317
-
7318
- #: widgets/hotspot/hotspot.php:607
7319
- msgid "Point Color"
7320
- msgstr ""
7321
-
7322
- #: widgets/hotspot/hotspot.php:621 widgets/video/video.php:485
7323
- msgid "Glow Color"
7324
- msgstr ""
7325
-
7326
- #: widgets/hotspot/hotspot.php:736
7327
- msgid "Image Position"
7328
- msgstr ""
7329
-
7330
- #: widgets/icon-box/icon-box-handler.php:11 widgets/icon-box/icon-box.php:36
7331
- msgid "Icon Box"
7332
- msgstr ""
7333
-
7334
- #: widgets/icon-box/icon-box.php:80 widgets/pricing/pricing.php:1017
7335
- msgid "Header Icon"
7336
- msgstr ""
7337
-
7338
- #: widgets/icon-box/icon-box.php:135 widgets/image-box/image-box.php:215
7339
- msgid ""
7340
- "Click edit to change this text. Lorem ipsum dolor sit amet, cctetur "
7341
- "adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar "
7342
- "dapibus leo."
7343
- msgstr ""
7344
-
7345
- #: widgets/icon-box/icon-box.php:136 widgets/image-box/image-box.php:216
7346
- msgid "Enter your description"
7347
- msgstr ""
7348
-
7349
- #: widgets/icon-box/icon-box.php:150
7350
- #: widgets/image-accordion/image-accordion.php:51
7351
- #: widgets/image-accordion/image-accordion.php:129
7352
- #: widgets/twitter-feed/twitter-feed.php:852
7353
- msgid "Read More"
7354
- msgstr ""
7355
-
7356
- #: widgets/icon-box/icon-box.php:156
7357
- #: widgets/image-accordion/image-accordion.php:116
7358
- #: widgets/image-box/image-box.php:264
7359
- msgid "Enable Button"
7360
- msgstr ""
7361
-
7362
- #: widgets/icon-box/icon-box.php:168
7363
- msgid "Enable Hover Btn"
7364
- msgstr ""
7365
-
7366
- #: widgets/icon-box/icon-box.php:183
7367
- msgid "bottom position"
7368
- msgstr ""
7369
-
7370
- #: widgets/icon-box/icon-box.php:291
7371
- msgid "Global Link"
7372
- msgstr ""
7373
-
7374
- #: widgets/icon-box/icon-box.php:338
7375
- msgid "Enable Hover Water Mark "
7376
- msgstr ""
7377
-
7378
- #: widgets/icon-box/icon-box.php:350
7379
- msgid "Social Icons"
7380
- msgstr ""
7381
-
7382
- #: widgets/icon-box/icon-box.php:447
7383
- #: widgets/woo-product-carousel/woo-product-carousel.php:314
7384
- #: widgets/woo-product-list/woo-product-list.php:267
7385
- msgid "Show Badge"
7386
- msgstr ""
7387
-
7388
- #: widgets/icon-box/icon-box.php:460
7389
- msgid "EXCLUSIVE"
7390
- msgstr ""
7391
-
7392
- #: widgets/icon-box/icon-box.php:461 widgets/mail-chimp/mail-chimp.php:527
7393
- #: widgets/motion-text/motion-text.php:46 widgets/page-list/page-list.php:137
7394
- #: widgets/page-list/page-list.php:278 widgets/piechart/piechart.php:153
7395
- #: widgets/vertical-menu/vertical-menu.php:102
7396
- msgid "Type your title here"
7397
- msgstr ""
7398
-
7399
- #: widgets/icon-box/icon-box.php:475
7400
- #: widgets/woo-product-carousel/woo-product-carousel.php:37
7401
- #: widgets/woo-product-carousel/woo-product-carousel.php:52
7402
- msgid "Top Left"
7403
- msgstr ""
7404
-
7405
- #: widgets/icon-box/icon-box.php:476
7406
- #: widgets/woo-product-carousel/woo-product-carousel.php:38
7407
- #: widgets/woo-product-carousel/woo-product-carousel.php:53
7408
- msgid "Top Center"
7409
- msgstr ""
7410
-
7411
- #: widgets/icon-box/icon-box.php:478
7412
- msgid "Center Left"
7413
- msgstr ""
7414
-
7415
- #: widgets/icon-box/icon-box.php:479
7416
- #: widgets/woo-product-carousel/woo-product-carousel.php:41
7417
- #: widgets/woo-product-carousel/woo-product-carousel.php:55
7418
- msgid "Bottom Left"
7419
- msgstr ""
7420
-
7421
- #: widgets/icon-box/icon-box.php:480
7422
- #: widgets/woo-product-carousel/woo-product-carousel.php:42
7423
- #: widgets/woo-product-carousel/woo-product-carousel.php:56
7424
- msgid "Bottom Center"
7425
- msgstr ""
7426
-
7427
- #: widgets/icon-box/icon-box.php:481
7428
- #: widgets/woo-product-carousel/woo-product-carousel.php:43
7429
- #: widgets/woo-product-carousel/woo-product-carousel.php:57
7430
- msgid "Bottom Right"
7431
- msgstr ""
7432
-
7433
- #: widgets/icon-box/icon-box.php:532 widgets/team/team.php:1989
7434
- msgid "Icon BG Color"
7435
- msgstr ""
7436
-
7437
- #: widgets/icon-box/icon-box.php:582 widgets/team/team.php:2039
7438
- msgid "Icon Hover Color"
7439
- msgstr ""
7440
-
7441
- #: widgets/icon-box/icon-box.php:619 widgets/icon-box/icon-box.php:1328
7442
- #: widgets/piechart/piechart.php:593 widgets/pricing/pricing.php:1141
7443
- msgid "Hover Animation"
7444
- msgstr ""
7445
-
7446
- #: widgets/icon-box/icon-box.php:780 widgets/team/team.php:2205
7447
- msgid "Vertical Position "
7448
- msgstr ""
7449
-
7450
- #: widgets/icon-box/icon-box.php:887
7451
- msgid "Color Hover as"
7452
- msgstr ""
7453
-
7454
- #: widgets/icon-box/icon-box.php:928
7455
- msgid "Water Mark"
7456
- msgstr ""
7457
-
7458
- #: widgets/icon-box/icon-box.php:940
7459
- msgid "Water Mark Color"
7460
- msgstr ""
7461
-
7462
- #: widgets/icon-box/icon-box.php:956
7463
- msgid "Water Mark Font Size"
7464
- msgstr ""
7465
-
7466
- #: widgets/icon-box/icon-box.php:1028 widgets/image-box/image-box.php:474
7467
- #: widgets/image-box/image-box.php:1289 widgets/table/table.php:2334
7468
- msgid "Icon Font Size"
7469
- msgstr ""
7470
-
7471
- #: widgets/icon-box/icon-box.php:1196
7472
- msgid "Icon Box Container"
7473
- msgstr ""
7474
-
7475
- #: widgets/icon-box/icon-box.php:1340
7476
- msgid "Background Overlay "
7477
- msgstr ""
7478
-
7479
- #: widgets/icon-box/icon-box.php:1348
7480
- msgid "Enable Image Overlay"
7481
- msgstr ""
7482
-
7483
- #: widgets/icon-box/icon-box.php:1378 widgets/icon-box/icon-box.php:1417
7484
- #: widgets/icon-box/icon-box.php:1434
7485
- msgid "Background Overlay Color"
7486
- msgstr ""
7487
-
7488
- #: widgets/icon-hover/icon-hover-handler.php:11
7489
- #: widgets/icon-hover/icon-hover.php:34
7490
- msgid "Icon Hover"
7491
- msgstr ""
7492
-
7493
- #: widgets/image-accordion/image-accordion-handler.php:11
7494
- msgid "Image Accordion"
7495
- msgstr ""
7496
-
7497
- #: widgets/image-accordion/image-accordion.php:44
7498
- msgid "Accordion Items"
7499
- msgstr ""
7500
-
7501
- #: widgets/image-accordion/image-accordion.php:48
7502
- msgid "This is title"
7503
- msgstr ""
7504
-
7505
- #: widgets/image-accordion/image-accordion.php:57
7506
- msgid "Active ? "
7507
- msgstr ""
7508
-
7509
- #: widgets/image-accordion/image-accordion.php:65
7510
- msgid "Background Image"
7511
- msgstr ""
7512
-
7513
- #: widgets/image-accordion/image-accordion.php:78
7514
- msgid "Image accordion Title"
7515
- msgstr ""
7516
-
7517
- #: widgets/image-accordion/image-accordion.php:81
7518
- msgid "Enable Icon"
7519
- msgstr ""
7520
-
7521
- #: widgets/image-accordion/image-accordion.php:90
7522
- msgid "Icon for title"
7523
- msgstr ""
7524
-
7525
- #: widgets/image-accordion/image-accordion.php:126
7526
- msgid "Button Label"
7527
- msgstr ""
7528
-
7529
- #: widgets/image-accordion/image-accordion.php:136
7530
- msgid "Button URL"
7531
- msgstr ""
7532
-
7533
- #: widgets/image-accordion/image-accordion.php:143
7534
- msgid "Enable Popup"
7535
- msgstr ""
7536
-
7537
- #: widgets/image-accordion/image-accordion.php:153
7538
- msgid "Pupup Icon"
7539
- msgstr ""
7540
-
7541
- #: widgets/image-accordion/image-accordion.php:166
7542
- msgid "Enable Project Link"
7543
- msgstr ""
7544
-
7545
- #: widgets/image-accordion/image-accordion.php:175
7546
- msgid "Project Link"
7547
- msgstr ""
7548
-
7549
- #: widgets/image-accordion/image-accordion.php:191
7550
- msgid "Project Link Icon"
7551
- msgstr ""
7552
-
7553
- #: widgets/image-accordion/image-accordion.php:263
7554
- msgid "Active Item Background"
7555
- msgstr ""
7556
-
7557
- #: widgets/image-accordion/image-accordion.php:352
7558
- msgctxt "Border Control"
7559
- msgid "Margin"
7560
- msgstr ""
7561
-
7562
- #: widgets/image-accordion/image-accordion.php:369
7563
- msgctxt "Border Control"
7564
- msgid "Title Icon Spacing"
7565
- msgstr ""
7566
-
7567
- #: widgets/image-accordion/image-accordion.php:691
7568
- msgid "Action Icon"
7569
- msgstr ""
7570
-
7571
- #: widgets/image-accordion/image-accordion.php:699
7572
- msgid "Icon Left Spacing"
7573
- msgstr ""
7574
-
7575
- #: widgets/image-accordion/image-accordion.php:716
7576
- msgctxt "Border Control"
7577
- msgid "Icon Container Spacing"
7578
- msgstr ""
7579
-
7580
- #: widgets/image-accordion/image-accordion.php:734
7581
- #: widgets/image-accordion/image-accordion.php:767
7582
- msgid "Popup Icon color"
7583
- msgstr ""
7584
-
7585
- #: widgets/image-accordion/image-accordion.php:746
7586
- #: widgets/image-accordion/image-accordion.php:779
7587
- msgid "Link Icon color"
7588
- msgstr ""
7589
-
7590
- #: widgets/image-box/image-box-handler.php:11
7591
- msgid "Image Box"
7592
- msgstr ""
7593
-
7594
- #: widgets/image-box/image-box.php:70
7595
- msgid "Content Area"
7596
- msgstr ""
7597
-
7598
- #: widgets/image-box/image-box.php:75 widgets/image-box/image-box.php:567
7599
- msgid "Classic Curves"
7600
- msgstr ""
7601
-
7602
- #: widgets/image-box/image-box.php:76
7603
- msgid "Floating box"
7604
- msgstr ""
7605
-
7606
- #: widgets/image-box/image-box.php:77
7607
- msgid "Hover Border"
7608
- msgstr ""
7609
-
7610
- #: widgets/image-box/image-box.php:78 widgets/image-box/image-box.php:707
7611
- msgid "Side Line"
7612
- msgstr ""
7613
-
7614
- #: widgets/image-box/image-box.php:79
7615
- msgid "Shadow line"
7616
- msgstr ""
7617
-
7618
- #: widgets/image-box/image-box.php:172
7619
- msgid "Title Icon Position"
7620
- msgstr ""
7621
-
7622
- #: widgets/image-box/image-box.php:427
7623
- msgid "Hover Height"
7624
- msgstr ""
7625
-
7626
- #: widgets/image-box/image-box.php:499
7627
- msgid "Margin Top"
7628
- msgstr ""
7629
-
7630
- #: widgets/image-box/image-box.php:627
7631
- msgid "Hover Border Bottom"
7632
- msgstr ""
7633
-
7634
- #: widgets/image-box/image-box.php:638
7635
- msgid "Border Bottom Height"
7636
- msgstr ""
7637
-
7638
- #: widgets/image-box/image-box.php:752
7639
- msgid "Border Type"
7640
- msgstr ""
7641
-
7642
- #: widgets/image-box/image-box.php:758 widgets/pricing/pricing.php:1816
7643
- #: widgets/tablepress/tablepress.php:214 widgets/tablepress/tablepress.php:341
7644
- #: widgets/tablepress/tablepress.php:424
7645
- msgid "Double"
7646
- msgstr ""
7647
-
7648
- #: widgets/image-box/image-box.php:775
7649
- msgid "Shadow Line"
7650
- msgstr ""
7651
-
7652
- #: widgets/image-box/image-box.php:790
7653
- msgid "Left Line"
7654
- msgstr ""
7655
-
7656
- #: widgets/image-box/image-box.php:842
7657
- msgid "Right Line"
7658
- msgstr ""
7659
-
7660
- #: widgets/image-box/image-box.php:942 widgets/image-box/image-box.php:976
7661
- msgid "Image opacity"
7662
- msgstr ""
7663
-
7664
- #: widgets/image-box/image-box.php:1000
7665
- msgid "Image Scale on Hover"
7666
- msgstr ""
7667
-
7668
- #: widgets/image-box/image-box.php:1040
7669
- msgid "Genaral"
7670
- msgstr ""
7671
-
7672
- #: widgets/image-box/image-box.php:1157 widgets/image-box/image-box.php:1239
7673
- #: widgets/woo-product-carousel/woo-product-carousel.php:769
7674
- #: widgets/woo-product-carousel/woo-product-carousel.php:2436
7675
- #: widgets/woo-product-list/woo-product-list.php:931
7676
- #: widgets/woo-product-list/woo-product-list.php:2224
7677
- msgid "Hover Color"
7678
- msgstr ""
7679
-
7680
- #: widgets/image-comparison/image-comparison-handler.php:11
7681
- msgid "Image Comparison"
7682
- msgstr ""
7683
-
7684
- #: widgets/image-comparison/image-comparison.php:42
7685
- msgid "Items"
7686
- msgstr ""
7687
-
7688
- #: widgets/image-comparison/image-comparison.php:136
7689
- msgid "How much of the before image is visible when the page loads"
7690
- msgstr ""
7691
-
7692
- #: widgets/image-comparison/image-comparison.php:142
7693
- msgid "Remove overlay?"
7694
- msgstr ""
7695
-
7696
- #: widgets/image-comparison/image-comparison.php:148
7697
- msgid "Do not show the overlay with before and after"
7698
- msgstr ""
7699
-
7700
- #: widgets/image-comparison/image-comparison.php:154
7701
- msgid "Move slider on hover?"
7702
- msgstr ""
7703
-
7704
- #: widgets/image-comparison/image-comparison.php:160
7705
- msgid "Move slider on mouse hover?"
7706
- msgstr ""
7707
-
7708
- #: widgets/image-comparison/image-comparison.php:166
7709
- msgid "Click to move?"
7710
- msgstr ""
7711
-
7712
- #: widgets/image-comparison/image-comparison.php:172
7713
- msgid ""
7714
- "Allow a user to click (or tap) anywhere on the image to move the slider to "
7715
- "that location."
7716
- msgstr ""
7717
-
7718
- #: widgets/image-comparison/image-comparison.php:384
7719
- msgid "Handle"
7720
- msgstr ""
7721
-
7722
- #: widgets/image-comparison/image-comparison.php:393
7723
- msgid "Control Width"
7724
- msgstr ""
7725
-
7726
- #: widgets/image-comparison/image-comparison.php:572
7727
- msgid "Handle Divider"
7728
- msgstr ""
7729
-
7730
- #: widgets/image-comparison/image-comparison.php:581
7731
- msgid "Divider Thickness"
7732
- msgstr ""
7733
-
7734
- #: widgets/image-comparison/image-comparison.php:599
7735
- msgid "Divider Color"
7736
- msgstr ""
7737
-
7738
- #: widgets/instagram-feed/instagram-feed-handler.php:15
7739
- msgid "Instagram Feed"
7740
- msgstr ""
7741
-
7742
- #: widgets/instagram-feed/instagram-feed.php:63
7743
- msgid "1 Columns"
7744
- msgstr ""
7745
-
7746
- #: widgets/instagram-feed/instagram-feed.php:111
7747
- msgid "Profile Header"
7748
- msgstr ""
7749
-
7750
- #: widgets/instagram-feed/instagram-feed.php:125
7751
- msgid "Profile Settings"
7752
- msgstr ""
7753
-
7754
- #: widgets/instagram-feed/instagram-feed.php:142
7755
- msgid "Profile Style"
7756
- msgstr ""
7757
-
7758
- #: widgets/instagram-feed/instagram-feed.php:175
7759
- #: widgets/mail-chimp/mail-chimp.php:468 widgets/page-list/page-list.php:144
7760
- #: widgets/post-list/post-list.php:155 widgets/team/team.php:112
7761
- msgid "Show Icon"
7762
- msgstr ""
7763
-
7764
- #: widgets/instagram-feed/instagram-feed.php:191
7765
- msgid "Show Comment Box"
7766
- msgstr ""
7767
-
7768
- #: widgets/instagram-feed/instagram-feed.php:216
7769
- msgid "Enable Follow Button"
7770
- msgstr ""
7771
-
7772
- #: widgets/instagram-feed/instagram-feed.php:228
7773
- msgid "Follow Button Text"
7774
- msgstr ""
7775
-
7776
- #: widgets/instagram-feed/instagram-feed.php:230
7777
- msgid "Follow On Instagram"
7778
- msgstr ""
7779
-
7780
- #: widgets/instagram-feed/instagram-feed.php:231
7781
- msgid "Follow Text"
7782
- msgstr ""
7783
-
7784
- #: widgets/instagram-feed/instagram-feed.php:239
7785
- msgid "Follow link"
7786
- msgstr ""
7787
-
7788
- #: widgets/instagram-feed/instagram-feed.php:242
7789
- msgid "Follow Link"
7790
- msgstr ""
7791
-
7792
- #: widgets/instagram-feed/instagram-feed.php:289
7793
- msgid "Container margin Bottom"
7794
- msgstr ""
7795
-
7796
- #: widgets/instagram-feed/instagram-feed.php:438
7797
- msgid "Container Spacing"
7798
- msgstr ""
7799
-
7800
- #: widgets/instagram-feed/instagram-feed.php:740
7801
- #: widgets/instagram-feed/instagram-feed.php:880
7802
- msgid "Favourite"
7803
- msgstr ""
7804
-
7805
- #: widgets/instagram-feed/instagram-feed.php:1015
7806
- msgid "Grayscale"
7807
- msgstr ""
7808
-
7809
- #: widgets/mail-chimp/mail-chimp-api.php:35
7810
- msgid "Please set API Key into Dashboard User Data. "
7811
- msgstr ""
7812
-
7813
- #: widgets/mail-chimp/mail-chimp-handler.php:11
7814
- msgid "Mail Chimp"
7815
- msgstr ""
7816
-
7817
- #: widgets/mail-chimp/mail-chimp.php:64
7818
- msgid "Form "
7819
- msgstr ""
7820
-
7821
- #: widgets/mail-chimp/mail-chimp.php:71
7822
- msgid ""
7823
- "Please set API Key in ElementsKit_Lite Dashboard - User Data - MailChimp and "
7824
- "Create Campaign.."
7825
- msgstr ""
7826
-
7827
- #: widgets/mail-chimp/mail-chimp.php:83
7828
- msgid "Select List"
7829
- msgstr ""
7830
-
7831
- #: widgets/mail-chimp/mail-chimp.php:87
7832
- msgid ""
7833
- "Create a campaign in mailchimp account <a href=\"https://mailchimp.com/help/"
7834
- "create-a-regular-email-campaign/#Create_a_campaign\" target=\"_blank\"> "
7835
- "Create Campaign</a>"
7836
- msgstr ""
7837
-
7838
- #: widgets/mail-chimp/mail-chimp.php:95
7839
- msgid "Show Name"
7840
- msgstr ""
7841
-
7842
- #: widgets/mail-chimp/mail-chimp.php:104
7843
- msgid "First Name "
7844
- msgstr ""
7845
-
7846
- #: widgets/mail-chimp/mail-chimp.php:116
7847
- msgid "First name"
7848
- msgstr ""
7849
-
7850
- #: widgets/mail-chimp/mail-chimp.php:128
7851
- msgid "Your frist name"
7852
- msgstr ""
7853
-
7854
- #: widgets/mail-chimp/mail-chimp.php:138 widgets/mail-chimp/mail-chimp.php:232
7855
- #: widgets/mail-chimp/mail-chimp.php:324 widgets/mail-chimp/mail-chimp.php:401
7856
- msgid "Show Input Group Icon"
7857
- msgstr ""
7858
-
7859
- #: widgets/mail-chimp/mail-chimp.php:168 widgets/mail-chimp/mail-chimp.php:262
7860
- #: widgets/mail-chimp/mail-chimp.php:354 widgets/mail-chimp/mail-chimp.php:427
7861
- msgid "Before After"
7862
- msgstr ""
7863
-
7864
- #: widgets/mail-chimp/mail-chimp.php:197
7865
- msgid "Last Name : "
7866
- msgstr ""
7867
-
7868
- #: widgets/mail-chimp/mail-chimp.php:209
7869
- msgid "Last name:"
7870
- msgstr ""
7871
-
7872
- #: widgets/mail-chimp/mail-chimp.php:221
7873
- msgid "Your last name"
7874
- msgstr ""
7875
-
7876
- #: widgets/mail-chimp/mail-chimp.php:281
7877
- msgid "Show Phone :"
7878
- msgstr ""
7879
-
7880
- #: widgets/mail-chimp/mail-chimp.php:290
7881
- msgid "Phone : "
7882
- msgstr ""
7883
-
7884
- #: widgets/mail-chimp/mail-chimp.php:302 widgets/tablepress/tablepress.php:76
7885
- #: widgets/team/team.php:426 widgets/team/team.php:2547
7886
- #: widgets/team/team.php:2639
7887
- msgid "Phone"
7888
- msgstr ""
7889
-
7890
- #: widgets/mail-chimp/mail-chimp.php:314
7891
- msgid "Your phone No"
7892
- msgstr ""
7893
-
7894
- #: widgets/mail-chimp/mail-chimp.php:373
7895
- msgid "Email Address : "
7896
- msgstr ""
7897
-
7898
- #: widgets/mail-chimp/mail-chimp.php:383
7899
- msgid "Email address"
7900
- msgstr ""
7901
-
7902
- #: widgets/mail-chimp/mail-chimp.php:393
7903
- msgid "Your email address"
7904
- msgstr ""
7905
-
7906
- #: widgets/mail-chimp/mail-chimp.php:452
7907
- msgid "Submit Button Text"
7908
- msgstr ""
7909
-
7910
- #: widgets/mail-chimp/mail-chimp.php:454
7911
- msgid "Sign Up"
7912
- msgstr ""
7913
-
7914
- #: widgets/mail-chimp/mail-chimp.php:461
7915
- msgid "Submit Button : "
7916
- msgstr ""
7917
-
7918
- #: widgets/mail-chimp/mail-chimp.php:479
7919
- msgid "Button Icons"
7920
- msgstr ""
7921
-
7922
- #: widgets/mail-chimp/mail-chimp.php:511
7923
- msgid "Form Style"
7924
- msgstr ""
7925
-
7926
- #: widgets/mail-chimp/mail-chimp.php:516
7927
- #: widgets/ninja-forms/ninja-forms.php:589 widgets/wp-forms/wp-forms.php:416
7928
- msgid "Full Width"
7929
- msgstr ""
7930
-
7931
- #: widgets/mail-chimp/mail-chimp.php:524
7932
- #: widgets/ninja-forms/ninja-forms.php:807
7933
- msgid "Success Message"
7934
- msgstr ""
7935
-
7936
- #: widgets/mail-chimp/mail-chimp.php:526
7937
- msgid "Successfully listed this email"
7938
- msgstr ""
7939
-
7940
- #: widgets/mail-chimp/mail-chimp.php:661 widgets/mail-chimp/mail-chimp.php:881
7941
- msgid "Use Width"
7942
- msgstr ""
7943
-
7944
- #: widgets/mail-chimp/mail-chimp.php:1097
7945
- msgid "Input Icon"
7946
- msgstr ""
7947
-
7948
- #: widgets/mail-chimp/mail-chimp.php:1198
7949
- msgid "Sucess & Error message"
7950
- msgstr ""
7951
-
7952
- #: widgets/mail-chimp/mail-chimp.php:1249
7953
- msgid "Success:"
7954
- msgstr ""
7955
-
7956
- #: widgets/mail-chimp/mail-chimp.php:1285
7957
- msgid "Error:"
7958
- msgstr ""
7959
-
7960
- #: widgets/motion-text/motion-text-handler.php:11
7961
- msgid "Motion Text"
7962
- msgstr ""
7963
-
7964
- #: widgets/motion-text/motion-text.php:45 widgets/piechart/piechart.php:167
7965
- #: widgets/timeline/timeline.php:113
7966
- msgid "Default description"
7967
- msgstr ""
7968
-
7969
- #: widgets/motion-text/motion-text.php:114
7970
- msgid "Enable Animation"
7971
- msgstr ""
7972
-
7973
- #: widgets/motion-text/motion-text.php:125
7974
- msgid "Motion Animation"
7975
- msgstr ""
7976
-
7977
- #: widgets/motion-text/motion-text.php:157
7978
- msgid "Spilit Text Animation"
7979
- msgstr ""
7980
-
7981
- #: widgets/motion-text/motion-text.php:161
7982
- msgid "No Spilit"
7983
- msgstr ""
7984
-
7985
- #: widgets/motion-text/motion-text.php:162
7986
- msgid "Letter Based"
7987
- msgstr ""
7988
-
7989
- #: widgets/motion-text/motion-text.php:174
7990
- msgid "Animation Duration By Charecter (in s)"
7991
- msgstr ""
7992
-
7993
- #: widgets/motion-text/motion-text.php:201
7994
- msgid "Animation Delay By Charecter (in ms)"
7995
- msgstr ""
7996
-
7997
- #: widgets/motion-text/motion-text.php:225
7998
- msgid "Animation Duration (in s)"
7999
- msgstr ""
8000
-
8001
- #: widgets/motion-text/motion-text.php:252
8002
- msgid "Animation Duration Reveal (in s)"
8003
- msgstr ""
8004
-
8005
- #: widgets/nav-menu/nav-menu-handler.php:11
8006
- msgid "Nav menu"
8007
- msgstr ""
8008
-
8009
- #: widgets/nav-menu/nav-menu.php:51
8010
- msgid "Menu settings"
8011
- msgstr ""
8012
-
8013
- #: widgets/nav-menu/nav-menu.php:59
8014
- msgid "Enable one page? "
8015
- msgstr ""
8016
-
8017
- #: widgets/nav-menu/nav-menu.php:60
8018
- msgid "This works in the current page."
8019
- msgstr ""
8020
-
8021
- #: widgets/nav-menu/nav-menu.php:71 widgets/vertical-menu/vertical-menu.php:54
8022
- msgid "Select menu"
8023
- msgstr ""
8024
-
8025
- #: widgets/nav-menu/nav-menu.php:80
8026
- msgid "Choose Mobile Menu Logo"
8027
- msgstr ""
8028
-
8029
- #: widgets/nav-menu/nav-menu.php:95
8030
- msgid "Home"
8031
- msgstr ""
8032
-
8033
- #: widgets/nav-menu/nav-menu.php:96
8034
- msgid "Custom URL"
8035
- msgstr ""
8036
-
8037
- #: widgets/nav-menu/nav-menu.php:117
8038
- msgid "Horizontal main menu"
8039
- msgstr ""
8040
-
8041
- #: widgets/nav-menu/nav-menu.php:132
8042
- msgid "Hamburger Icon"
8043
- msgstr ""
8044
-
8045
- #: widgets/nav-menu/nav-menu.php:140 widgets/tablepress/tablepress.php:70
8046
- msgid "Responsive Breakpoint"
8047
- msgstr ""
8048
-
8049
- #: widgets/nav-menu/nav-menu.php:144 widgets/tablepress/tablepress.php:77
8050
- msgid "Tablet"
8051
- msgstr ""
8052
-
8053
- #: widgets/nav-menu/nav-menu.php:145
8054
- msgid "Mobile"
8055
- msgstr ""
8056
-
8057
- #: widgets/nav-menu/nav-menu.php:225 widgets/nav-menu/nav-menu.php:367
8058
- #: widgets/nav-menu/nav-menu.php:401 widgets/nav-menu/nav-menu.php:563
8059
- msgid "Item text color"
8060
- msgstr ""
8061
-
8062
- #: widgets/nav-menu/nav-menu.php:288
8063
- msgid "Menu item style"
8064
- msgstr ""
8065
-
8066
- #: widgets/nav-menu/nav-menu.php:306
8067
- msgid "Menu Icon Padding"
8068
- msgstr ""
8069
-
8070
- #: widgets/nav-menu/nav-menu.php:358 widgets/nav-menu/nav-menu.php:392
8071
- #: widgets/nav-menu/nav-menu.php:432 widgets/nav-menu/nav-menu.php:578
8072
- msgid "Item background"
8073
- msgstr ""
8074
-
8075
- #: widgets/nav-menu/nav-menu.php:441 widgets/nav-menu/nav-menu.php:635
8076
- msgid "Item text color (Active)"
8077
- msgstr ""
8078
-
8079
- #: widgets/nav-menu/nav-menu.php:463
8080
- msgid "Submenu item style"
8081
- msgstr ""
8082
-
8083
- #: widgets/nav-menu/nav-menu.php:471
8084
- msgid "Submenu Indicator"
8085
- msgstr ""
8086
-
8087
- #: widgets/nav-menu/nav-menu.php:475
8088
- msgid "Line Arrow"
8089
- msgstr ""
8090
-
8091
- #: widgets/nav-menu/nav-menu.php:476
8092
- msgid "Plus"
8093
- msgstr ""
8094
-
8095
- #: widgets/nav-menu/nav-menu.php:477
8096
- msgid "Fill Arrow"
8097
- msgstr ""
8098
-
8099
- #: widgets/nav-menu/nav-menu.php:486
8100
- msgid "Indicator color"
8101
- msgstr ""
8102
-
8103
- #: widgets/nav-menu/nav-menu.php:501
8104
- msgid "Indicator Margin"
8105
- msgstr ""
8106
-
8107
- #: widgets/nav-menu/nav-menu.php:596
8108
- msgid "Item text color (hover)"
8109
- msgstr ""
8110
-
8111
- #: widgets/nav-menu/nav-menu.php:613
8112
- msgid "Item background (hover)"
8113
- msgstr ""
8114
-
8115
- #: widgets/nav-menu/nav-menu.php:649
8116
- msgid "Item background (Active)"
8117
- msgstr ""
8118
-
8119
- #: widgets/nav-menu/nav-menu.php:662
8120
- msgid "Sub Menu Items Border"
8121
- msgstr ""
8122
-
8123
- #: widgets/nav-menu/nav-menu.php:680
8124
- msgid "Border Last Child"
8125
- msgstr ""
8126
-
8127
- #: widgets/nav-menu/nav-menu.php:690
8128
- msgid "Border last Child"
8129
- msgstr ""
8130
-
8131
- #: widgets/nav-menu/nav-menu.php:698 widgets/nav-menu/nav-menu.php:708
8132
- msgid "Border First Child"
8133
- msgstr ""
8134
-
8135
- #: widgets/nav-menu/nav-menu.php:718
8136
- msgid "Submenu panel style"
8137
- msgstr ""
8138
-
8139
- #: widgets/nav-menu/nav-menu.php:727
8140
- msgid "Panel Menu Border"
8141
- msgstr ""
8142
-
8143
- #: widgets/nav-menu/nav-menu.php:736
8144
- msgid "Container background"
8145
- msgstr ""
8146
-
8147
- #: widgets/nav-menu/nav-menu.php:772
8148
- msgid "Conatiner width"
8149
- msgstr ""
8150
-
8151
- #: widgets/nav-menu/nav-menu.php:798
8152
- msgid "Humburger Style"
8153
- msgstr ""
8154
-
8155
- #: widgets/nav-menu/nav-menu.php:806
8156
- msgid "Humburger Toggle"
8157
- msgstr ""
8158
-
8159
- #: widgets/nav-menu/nav-menu.php:970 widgets/nav-menu/nav-menu.php:1012
8160
- #: widgets/nav-menu/nav-menu.php:1176 widgets/nav-menu/nav-menu.php:1221
8161
- msgid "Humber Icon Color"
8162
- msgstr ""
8163
-
8164
- #: widgets/nav-menu/nav-menu.php:1034
8165
- msgid "Close Toggle"
8166
- msgstr ""
8167
-
8168
- #: widgets/nav-menu/nav-menu.php:1243
8169
- msgid "Mobile Menu Logo"
8170
- msgstr ""
8171
-
8172
- #: widgets/ninja-forms/ninja-forms-handler.php:11
8173
- msgid "Ninja Forms"
8174
- msgstr ""
8175
-
8176
- #: widgets/ninja-forms/ninja-forms.php:33
8177
- msgid "Ninja Form"
8178
- msgstr ""
8179
-
8180
- #: widgets/ninja-forms/ninja-forms.php:40 widgets/we-forms/we-forms.php:45
8181
- #: widgets/wp-forms/wp-forms.php:45
8182
- msgid "Select Your Form"
8183
- msgstr ""
8184
-
8185
- #: widgets/ninja-forms/ninja-forms.php:59
8186
- msgid "Title & Description"
8187
- msgstr ""
8188
-
8189
- #: widgets/ninja-forms/ninja-forms.php:145 widgets/wp-forms/wp-forms.php:59
8190
- msgid "Labels"
8191
- msgstr ""
8192
-
8193
- #: widgets/ninja-forms/ninja-forms.php:176
8194
- msgid "Required Fields Notice"
8195
- msgstr ""
8196
-
8197
- #: widgets/ninja-forms/ninja-forms.php:228 widgets/wp-forms/wp-forms.php:91
8198
- msgid "Input & Textarea"
8199
- msgstr ""
8200
-
8201
- #: widgets/ninja-forms/ninja-forms.php:305
8202
- msgid "Text Indent"
8203
- msgstr ""
8204
-
8205
- #: widgets/ninja-forms/ninja-forms.php:363 widgets/we-forms/we-forms.php:66
8206
- #: widgets/wp-forms/wp-forms.php:189
8207
- msgid "Input Width"
8208
- msgstr ""
8209
-
8210
- #: widgets/ninja-forms/ninja-forms.php:383 widgets/wp-forms/wp-forms.php:216
8211
- msgid "Textarea Width"
8212
- msgstr ""
8213
-
8214
- #: widgets/ninja-forms/ninja-forms.php:402 widgets/wp-forms/wp-forms.php:235
8215
- msgid "Textarea Height"
8216
- msgstr ""
8217
-
8218
- #: widgets/ninja-forms/ninja-forms.php:501 widgets/wp-forms/wp-forms.php:325
8219
- msgid "Field Description"
8220
- msgstr ""
8221
-
8222
- #: widgets/ninja-forms/ninja-forms.php:577 widgets/wp-forms/wp-forms.php:404
8223
- msgid "Submit Button"
8224
- msgstr ""
8225
-
8226
- #: widgets/ninja-forms/ninja-forms.php:838 widgets/wp-forms/wp-forms.php:630
8227
- msgid "Errors"
8228
- msgstr ""
8229
-
8230
- #: widgets/ninja-forms/ninja-forms.php:846
8231
- msgid "Error Messages"
8232
- msgstr ""
8233
-
8234
- #: widgets/ninja-forms/ninja-forms.php:866
8235
- msgid "Validation Errors"
8236
- msgstr ""
8237
-
8238
- #: widgets/ninja-forms/ninja-forms.php:875
8239
- msgid "Error Description Color"
8240
- msgstr ""
8241
-
8242
- #: widgets/ninja-forms/ninja-forms.php:887
8243
- msgid "Error Field Input Border Color"
8244
- msgstr ""
8245
-
8246
- #: widgets/page-list/page-list-handler.php:12
8247
- msgid "Page List"
8248
- msgstr ""
8249
-
8250
- #: widgets/page-list/page-list.php:97
8251
- msgid "Target"
8252
- msgstr ""
8253
-
8254
- #: widgets/page-list/page-list.php:101
8255
- msgid "Blank"
8256
- msgstr ""
8257
-
8258
- #: widgets/page-list/page-list.php:102
8259
- msgid "Self"
8260
- msgstr ""
8261
-
8262
- #: widgets/page-list/page-list.php:110
8263
- msgid "Rel"
8264
- msgstr ""
8265
-
8266
- #: widgets/page-list/page-list.php:219
8267
- msgid "Selct Page / Custom Link"
8268
- msgstr ""
8269
-
8270
- #: widgets/page-list/page-list.php:231
8271
- msgid "Select Page"
8272
- msgstr ""
8273
-
8274
- #: widgets/page-list/page-list.php:263
8275
- msgid "Show Label"
8276
- msgstr ""
8277
-
8278
- #: widgets/page-list/page-list.php:277 widgets/piechart/piechart.php:152
8279
- msgid "Default title"
8280
- msgstr ""
8281
-
8282
- #: widgets/page-list/page-list.php:500
8283
- msgid "Background Hover"
8284
- msgstr ""
8285
-
8286
- #: widgets/page-list/page-list.php:772 widgets/post-list/post-list.php:563
8287
- #: widgets/video/video.php:741
8288
- msgid "Padding Left"
8289
- msgstr ""
8290
-
8291
- #: widgets/piechart/piechart-handler.php:11
8292
- msgid "Pie Chart"
8293
- msgstr ""
8294
-
8295
- #: widgets/piechart/piechart.php:52
8296
- msgid "Pie Chart Style"
8297
- msgstr ""
8298
-
8299
- #: widgets/piechart/piechart.php:57
8300
- msgid "With Content"
8301
- msgstr ""
8302
-
8303
- #: widgets/piechart/piechart.php:65
8304
- msgid "Chart Content"
8305
- msgstr ""
8306
-
8307
- #: widgets/piechart/piechart.php:69 widgets/piechart/piechart.php:78
8308
- #: widgets/progressbar/progressbar.php:95
8309
- msgid "Percentage"
8310
- msgstr ""
8311
-
8312
- #: widgets/piechart/piechart.php:90
8313
- msgid "Icon type"
8314
- msgstr ""
8315
-
8316
- #: widgets/piechart/piechart.php:179
8317
- msgid "Content type"
8318
- msgstr ""
8319
-
8320
- #: widgets/piechart/piechart.php:183
8321
- msgid "Static"
8322
- msgstr ""
8323
-
8324
- #: widgets/piechart/piechart.php:184
8325
- msgid "Flip Card"
8326
- msgstr ""
8327
-
8328
- #: widgets/piechart/piechart.php:228 widgets/pricing/pricing.php:510
8329
- msgid "Title Typography"
8330
- msgstr ""
8331
-
8332
- #: widgets/piechart/piechart.php:239
8333
- msgid "Ttitle margin"
8334
- msgstr ""
8335
-
8336
- #: widgets/piechart/piechart.php:343
8337
- msgid "Flip Card "
8338
- msgstr ""
8339
-
8340
- #: widgets/piechart/piechart.php:390
8341
- msgid "Piechart Size"
8342
- msgstr ""
8343
-
8344
- #: widgets/piechart/piechart.php:408
8345
- msgid "Border Size"
8346
- msgstr ""
8347
-
8348
- #: widgets/piechart/piechart.php:428
8349
- msgid "Color Type"
8350
- msgstr ""
8351
-
8352
- #: widgets/piechart/piechart.php:433
8353
- msgid "Gradient"
8354
- msgstr ""
8355
-
8356
- #: widgets/piechart/piechart.php:441
8357
- msgid "Bar Color"
8358
- msgstr ""
8359
-
8360
- #: widgets/piechart/piechart.php:452
8361
- msgid "Bar Background Color"
8362
- msgstr ""
8363
-
8364
- #: widgets/piechart/piechart.php:460
8365
- msgid "Gradient Color1"
8366
- msgstr ""
8367
-
8368
- #: widgets/piechart/piechart.php:471
8369
- msgid "Gradient Color2"
8370
- msgstr ""
8371
-
8372
- #: widgets/piechart/piechart.php:482
8373
- msgid " Icon Color"
8374
- msgstr ""
8375
-
8376
- #: widgets/piechart/piechart.php:498
8377
- msgid " Number Color"
8378
- msgstr ""
8379
-
8380
- #: widgets/piechart/piechart.php:516
8381
- msgid "Background "
8382
- msgstr ""
8383
-
8384
- #: widgets/piechart/piechart.php:524
8385
- msgid "Wrapper Padding"
8386
- msgstr ""
8387
-
8388
- #: widgets/piechart/piechart.php:547
8389
- msgid "Eg: 0px 28px 40px 0px rgba(0, 0, 0, .1)"
8390
- msgstr ""
8391
-
8392
- #: widgets/post-grid/post-grid-handler.php:11
8393
- msgid "Post Grid"
8394
- msgstr ""
8395
-
8396
- #: widgets/post-grid/post-grid.php:39 widgets/post-tab/post-tab.php:41
8397
- msgid "Widget settings"
8398
- msgstr ""
8399
-
8400
- #: widgets/post-grid/post-grid.php:49 widgets/post-tab/post-tab.php:51
8401
- msgid "To avail this option you need to set/add a featured image to posts.."
8402
- msgstr ""
8403
-
8404
- #: widgets/post-grid/post-grid.php:58 widgets/post-tab/post-tab.php:60
8405
- msgid "Post count"
8406
- msgstr ""
8407
-
8408
- #: widgets/post-grid/post-grid.php:67 widgets/post-tab/post-tab.php:70
8409
- msgid "Select Column"
8410
- msgstr ""
8411
-
8412
- #: widgets/post-grid/post-grid.php:73 widgets/post-tab/post-tab.php:76
8413
- msgid "2 Column"
8414
- msgstr ""
8415
-
8416
- #: widgets/post-grid/post-grid.php:74 widgets/post-tab/post-tab.php:77
8417
- msgid "3 Column"
8418
- msgstr ""
8419
-
8420
- #: widgets/post-grid/post-grid.php:75 widgets/post-tab/post-tab.php:78
8421
- msgid "4 Column"
8422
- msgstr ""
8423
-
8424
- #: widgets/post-grid/post-grid.php:85
8425
- msgid "Grid Styles"
8426
- msgstr ""
8427
-
8428
- #: widgets/post-grid/post-grid.php:93 widgets/testimonial/testimonial.php:780
8429
- msgid "Use Fixed Height"
8430
- msgstr ""
8431
-
8432
- #: widgets/post-list/post-list-handler.php:40
8433
- msgid "Post List"
8434
- msgstr ""
8435
-
8436
- #: widgets/post-list/post-list.php:46
8437
- msgid "Show post by:"
8438
- msgstr ""
8439
-
8440
- #: widgets/post-list/post-list.php:51
8441
- msgid "Popular Post"
8442
- msgstr ""
8443
-
8444
- #: widgets/post-list/post-list.php:61
8445
- #: widgets/woo-product-carousel/woo-product-carousel.php:99
8446
- #: widgets/woo-product-list/woo-product-list.php:46
8447
- msgid "Product Limit"
8448
- msgstr ""
8449
-
8450
- #: widgets/post-list/post-list.php:86
8451
- msgid "Select Post"
8452
- msgstr ""
8453
-
8454
- #: widgets/post-list/post-list.php:188
8455
- msgid "Show Meta"
8456
- msgstr ""
8457
-
8458
- #: widgets/post-list/post-list.php:200
8459
- msgid "Show Date Meta"
8460
- msgstr ""
8461
-
8462
- #: widgets/post-list/post-list.php:215
8463
- msgid "Date Meta Icon"
8464
- msgstr ""
8465
-
8466
- #: widgets/post-list/post-list.php:232
8467
- msgid "Show Category Meta"
8468
- msgstr ""
8469
-
8470
- #: widgets/post-list/post-list.php:247
8471
- msgid "Category Meta Icon"
8472
- msgstr ""
8473
-
8474
- #: widgets/post-list/post-list.php:961
8475
- msgid "Opps, No posts were found."
8476
- msgstr ""
8477
-
8478
- #: widgets/post-tab/post-tab-handler.php:11
8479
- msgid "Post Tab"
8480
- msgstr ""
8481
-
8482
- #: widgets/post-tab/post-tab.php:86
8483
- msgid "On Click"
8484
- msgstr ""
8485
-
8486
- #: widgets/post-tab/post-tab.php:100
8487
- msgid "Tab Item Container"
8488
- msgstr ""
8489
-
8490
- #: widgets/post-tab/post-tab.php:156
8491
- msgid "Tab Item"
8492
- msgstr ""
8493
-
8494
- #: widgets/pricing/pricing-handler.php:11
8495
- msgid "Pricing Table"
8496
- msgstr ""
8497
-
8498
- #: widgets/pricing/pricing.php:43 widgets/pricing/pricing.php:439
8499
- msgid "Table Title"
8500
- msgstr ""
8501
-
8502
- #: widgets/pricing/pricing.php:44
8503
- msgid "Starter"
8504
- msgstr ""
8505
-
8506
- #: widgets/pricing/pricing.php:71 widgets/pricing/pricing.php:664
8507
- msgid "Table Subtitle"
8508
- msgstr ""
8509
-
8510
- #: widgets/pricing/pricing.php:72
8511
- msgid "A small river named Duden flows by their place and supplies"
8512
- msgstr ""
8513
-
8514
- #: widgets/pricing/pricing.php:79
8515
- msgid "Header Icon or Image? "
8516
- msgstr ""
8517
-
8518
- #: widgets/pricing/pricing.php:161 widgets/pricing/pricing.php:1241
8519
- #: widgets/pricing/pricing.php:2311
8520
- msgid "Price Tag"
8521
- msgstr ""
8522
-
8523
- #: widgets/pricing/pricing.php:168
8524
- msgid "Currency"
8525
- msgstr ""
8526
-
8527
- #: widgets/pricing/pricing.php:175
8528
- #: widgets/woo-product-carousel/woo-product-carousel.php:349
8529
- #: widgets/woo-product-list/woo-product-list.php:302
8530
- msgid "Price"
8531
- msgstr ""
8532
-
8533
- #: widgets/pricing/pricing.php:176
8534
- msgid "5.99"
8535
- msgstr ""
8536
-
8537
- #: widgets/pricing/pricing.php:183
8538
- msgid "Month"
8539
- msgstr ""
8540
-
8541
- #: widgets/pricing/pricing.php:190 widgets/pricing/pricing.php:1671
8542
- #: widgets/pricing/pricing.php:2323
8543
- msgid "Features"
8544
- msgstr ""
8545
-
8546
- #: widgets/pricing/pricing.php:196
8547
- msgid "Features style"
8548
- msgstr ""
8549
-
8550
- #: widgets/pricing/pricing.php:200
8551
- msgid "Paragraph"
8552
- msgstr ""
8553
-
8554
- #: widgets/pricing/pricing.php:209
8555
- msgid "Table Content"
8556
- msgstr ""
8557
-
8558
- #: widgets/pricing/pricing.php:211
8559
- msgid ""
8560
- "Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium "
8561
- "doloremque laudantium, totam rem aperiam"
8562
- msgstr ""
8563
-
8564
- #: widgets/pricing/pricing.php:221
8565
- msgid "List text"
8566
- msgstr ""
8567
-
8568
- #: widgets/pricing/pricing.php:223 widgets/pricing/pricing.php:293
8569
- msgid "15 Email Account"
8570
- msgstr ""
8571
-
8572
- #: widgets/pricing/pricing.php:287
8573
- msgid "Pricing Content List"
8574
- msgstr ""
8575
-
8576
- #: widgets/pricing/pricing.php:297
8577
- msgid "100 GB Space"
8578
- msgstr ""
8579
-
8580
- #: widgets/pricing/pricing.php:301
8581
- msgid "1 Domain Name"
8582
- msgstr ""
8583
-
8584
- #: widgets/pricing/pricing.php:566
8585
- msgctxt "Border Control"
8586
- msgid "Border Width"
8587
- msgstr ""
8588
-
8589
- #: widgets/pricing/pricing.php:591 widgets/pricing/pricing.php:618
8590
- #: widgets/pricing/pricing.php:2122 widgets/pricing/pricing.php:2147
8591
- #: widgets/table/table.php:2263
8592
- msgctxt "Border Control"
8593
- msgid "Border Color"
8594
- msgstr ""
8595
-
8596
- #: widgets/pricing/pricing.php:895 widgets/table/table.php:914
8597
- msgid "Header Image"
8598
- msgstr ""
8599
-
8600
- #: widgets/pricing/pricing.php:1344
8601
- msgid "Period Options"
8602
- msgstr ""
8603
-
8604
- #: widgets/pricing/pricing.php:1352
8605
- msgid "Period Color"
8606
- msgstr ""
8607
-
8608
- #: widgets/pricing/pricing.php:1363
8609
- msgid "Period Hover Color"
8610
- msgstr ""
8611
-
8612
- #: widgets/pricing/pricing.php:1376 widgets/pricing/pricing.php:1425
8613
- msgid "Period Typography"
8614
- msgstr ""
8615
-
8616
- #: widgets/pricing/pricing.php:1415
8617
- msgid "Currency Symbol Options"
8618
- msgstr ""
8619
-
8620
- #: widgets/pricing/pricing.php:1706
8621
- msgid "List Typography"
8622
- msgstr ""
8623
-
8624
- #: widgets/pricing/pricing.php:1714
8625
- msgid "List Type"
8626
- msgstr ""
8627
-
8628
- #: widgets/pricing/pricing.php:1719
8629
- msgid "Disc"
8630
- msgstr ""
8631
-
8632
- #: widgets/pricing/pricing.php:1720
8633
- msgid "Number"
8634
- msgstr ""
8635
-
8636
- #: widgets/pricing/pricing.php:1721
8637
- msgid "Alphabet"
8638
- msgstr ""
8639
-
8640
- #: widgets/pricing/pricing.php:1722
8641
- msgid "Roman"
8642
- msgstr ""
8643
-
8644
- #: widgets/pricing/pricing.php:1886
8645
- msgid "List Gap"
8646
- msgstr ""
8647
-
8648
- #: widgets/pricing/pricing.php:2233
8649
- msgid "Pricing Body"
8650
- msgstr ""
8651
-
8652
- #: widgets/pricing/pricing.php:2281
8653
- msgid "Custom Ordering"
8654
- msgstr ""
8655
-
8656
- #: widgets/pricing/pricing.php:2288
8657
- msgid "Enable Ordering"
8658
- msgstr ""
8659
-
8660
- #: widgets/progressbar/progressbar-handler.php:11
8661
- #: widgets/progressbar/progressbar.php:39
8662
- msgid "Progress Bar"
8663
- msgstr ""
8664
-
8665
- #: widgets/progressbar/progressbar.php:51
8666
- msgid "Inner Content"
8667
- msgstr ""
8668
-
8669
- #: widgets/progressbar/progressbar.php:52
8670
- msgid "Bar Shadow"
8671
- msgstr ""
8672
-
8673
- #: widgets/progressbar/progressbar.php:54
8674
- msgid "Tooltip Box"
8675
- msgstr ""
8676
-
8677
- #: widgets/progressbar/progressbar.php:55
8678
- msgid "Tooltip Rounded"
8679
- msgstr ""
8680
-
8681
- #: widgets/progressbar/progressbar.php:56
8682
- msgid "Tooltip Circle"
8683
- msgstr ""
8684
-
8685
- #: widgets/progressbar/progressbar.php:57
8686
- msgid "Switch"
8687
- msgstr ""
8688
-
8689
- #: widgets/progressbar/progressbar.php:58
8690
- msgid "Ribbon"
8691
- msgstr ""
8692
-
8693
- #: widgets/progressbar/progressbar.php:59 widgets/table/table.php:1151
8694
- #: widgets/tablepress/tablepress.php:526
8695
- msgid "Stripe"
8696
- msgstr ""
8697
-
8698
- #: widgets/progressbar/progressbar.php:67 widgets/team/team.php:360
8699
- msgid "Add Icon"
8700
- msgstr ""
8701
-
8702
- #: widgets/progressbar/progressbar.php:107
8703
- msgid "Animation Duration"
8704
- msgstr ""
8705
-
8706
- #: widgets/progressbar/progressbar.php:131
8707
- msgid "Bar"
8708
- msgstr ""
8709
-
8710
- #: widgets/progressbar/progressbar.php:227
8711
- msgid "Track"
8712
- msgstr ""
8713
-
8714
- #: widgets/progressbar/progressbar.php:236
8715
- msgid "Track Color"
8716
- msgstr ""
8717
-
8718
- #: widgets/progressbar/progressbar.php:248
8719
- msgid "Stripe Color"
8720
- msgstr ""
8721
-
8722
- #: widgets/progressbar/progressbar.php:262
8723
- msgid "Switch Color"
8724
- msgstr ""
8725
-
8726
- #: widgets/progressbar/progressbar.php:334
8727
- msgid "Percent"
8728
- msgstr ""
8729
-
8730
- #: widgets/social-share/social-share-handler.php:11
8731
- msgid "Social Share"
8732
- msgstr ""
8733
-
8734
- #: widgets/social-share/social-share.php:42
8735
- #: widgets/social-share/social-share.php:178
8736
- #: widgets/social-share/social-share.php:408
8737
- #: widgets/social/social-handler.php:11 widgets/social/social.php:36
8738
- #: widgets/social/social.php:370
8739
- msgid "Social Media"
8740
- msgstr ""
8741
-
8742
- #: widgets/social-share/social-share.php:79 widgets/social/social.php:73
8743
- msgid "Spacing Right"
8744
- msgstr ""
8745
-
8746
- #: widgets/social-share/social-share.php:106 widgets/social/social.php:100
8747
- msgid "Spacing Left"
8748
- msgstr ""
8749
-
8750
- #: widgets/social-share/social-share.php:182
8751
- msgid "Facebook"
8752
- msgstr ""
8753
-
8754
- #: widgets/social-share/social-share.php:183
8755
- msgid "Twitter"
8756
- msgstr ""
8757
-
8758
- #: widgets/social-share/social-share.php:184
8759
- msgid "Instagram"
8760
- msgstr ""
8761
-
8762
- #: widgets/social-share/social-share.php:185
8763
- msgid "Pinterest"
8764
- msgstr ""
8765
-
8766
- #: widgets/social-share/social-share.php:186
8767
- msgid "Linkedin"
8768
- msgstr ""
8769
-
8770
- #: widgets/social-share/social-share.php:187
8771
- msgid "Tumblr"
8772
- msgstr ""
8773
-
8774
- #: widgets/social-share/social-share.php:188
8775
- msgid "Snapchat"
8776
- msgstr ""
8777
-
8778
- #: widgets/social-share/social-share.php:189
8779
- msgid "Flicker"
8780
- msgstr ""
8781
-
8782
- #: widgets/social-share/social-share.php:190
8783
- msgid "Vkontakte"
8784
- msgstr ""
8785
-
8786
- #: widgets/social-share/social-share.php:191
8787
- msgid "Odnoklassniki"
8788
- msgstr ""
8789
-
8790
- #: widgets/social-share/social-share.php:192
8791
- msgid "Moimir"
8792
- msgstr ""
8793
-
8794
- #: widgets/social-share/social-share.php:193
8795
- msgid "Live journal"
8796
- msgstr ""
8797
-
8798
- #: widgets/social-share/social-share.php:194
8799
- msgid "Blogger"
8800
- msgstr ""
8801
-
8802
- #: widgets/social-share/social-share.php:195
8803
- msgid "Digg"
8804
- msgstr ""
8805
-
8806
- #: widgets/social-share/social-share.php:196
8807
- msgid "Evernote"
8808
- msgstr ""
8809
-
8810
- #: widgets/social-share/social-share.php:197
8811
- msgid "Reddit"
8812
- msgstr ""
8813
-
8814
- #: widgets/social-share/social-share.php:198
8815
- msgid "Delicious"
8816
- msgstr ""
8817
-
8818
- #: widgets/social-share/social-share.php:199
8819
- msgid "Stumbleupon"
8820
- msgstr ""
8821
-
8822
- #: widgets/social-share/social-share.php:200
8823
- msgid "Pocket"
8824
- msgstr ""
8825
-
8826
- #: widgets/social-share/social-share.php:201
8827
- msgid "Surfingbird"
8828
- msgstr ""
8829
-
8830
- #: widgets/social-share/social-share.php:202
8831
- msgid "Liveinternet"
8832
- msgstr ""
8833
-
8834
- #: widgets/social-share/social-share.php:203
8835
- msgid "Buffer"
8836
- msgstr ""
8837
-
8838
- #: widgets/social-share/social-share.php:204
8839
- msgid "Instapaper"
8840
- msgstr ""
8841
-
8842
- #: widgets/social-share/social-share.php:205
8843
- msgid "Xing"
8844
- msgstr ""
8845
-
8846
- #: widgets/social-share/social-share.php:206
8847
- msgid "WordPress"
8848
- msgstr ""
8849
-
8850
- #: widgets/social-share/social-share.php:207
8851
- msgid "Baidu"
8852
- msgstr ""
8853
-
8854
- #: widgets/social-share/social-share.php:208
8855
- msgid "Renren"
8856
- msgstr ""
8857
-
8858
- #: widgets/social-share/social-share.php:209
8859
- msgid "Weibo"
8860
- msgstr ""
8861
-
8862
- #: widgets/social-share/social-share.php:210
8863
- msgid "Skype"
8864
- msgstr ""
8865
-
8866
- #: widgets/social-share/social-share.php:211
8867
- msgid "Telegram"
8868
- msgstr ""
8869
-
8870
- #: widgets/social-share/social-share.php:212
8871
- msgid "Viber"
8872
- msgstr ""
8873
-
8874
- #: widgets/social-share/social-share.php:213
8875
- msgid "Whatsapp"
8876
- msgstr ""
8877
-
8878
- #: widgets/social-share/social-share.php:365 widgets/social/social.php:327
8879
- msgid "Add Social Media"
8880
- msgstr ""
8881
-
8882
- #: widgets/social-share/social-share.php:444 widgets/social/social.php:406
8883
- #: widgets/team/team.php:1496
8884
- msgid "Display"
8885
- msgstr ""
8886
-
8887
- #: widgets/social-share/social-share.php:448 widgets/social/social.php:410
8888
- #: widgets/team/team.php:1500
8889
- msgid "Inline Block"
8890
- msgstr ""
8891
-
8892
- #: widgets/social-share/social-share.php:461 widgets/social/social.php:423
8893
- #: widgets/team/team.php:1513
8894
- msgid "Decoration"
8895
- msgstr ""
8896
-
8897
- #: widgets/social-share/social-share.php:466 widgets/social/social.php:428
8898
- #: widgets/team/team.php:1518
8899
- msgid "Underline"
8900
- msgstr ""
8901
-
8902
- #: widgets/social-share/social-share.php:467 widgets/social/social.php:429
8903
- #: widgets/team/team.php:1519
8904
- msgid "Overline"
8905
- msgstr ""
8906
-
8907
- #: widgets/social-share/social-share.php:468 widgets/social/social.php:430
8908
- #: widgets/team/team.php:1520
8909
- msgid "Line Through"
8910
- msgstr ""
8911
-
8912
- #: widgets/tab/tab-handler.php:11 widgets/tab/tab.php:33
8913
- msgid "Tab"
8914
- msgstr ""
8915
-
8916
- #: widgets/table/table-handler.php:11 widgets/table/table.php:41
8917
- #: widgets/tablepress/tablepress.php:34 widgets/tablepress/tablepress.php:189
8918
- msgid "Table"
8919
- msgstr ""
8920
-
8921
- #: widgets/table/table.php:48
8922
- msgid "Data Type"
8923
- msgstr ""
8924
-
8925
- #: widgets/table/table.php:52
8926
- msgid " File"
8927
- msgstr ""
8928
-
8929
- #: widgets/table/table.php:63 widgets/table/table.php:64
8930
- msgid "Table Header"
8931
- msgstr ""
8932
-
8933
- #: widgets/table/table.php:201
8934
- msgid "Header col 1 "
8935
- msgstr ""
8936
-
8937
- #: widgets/table/table.php:204
8938
- msgid "Header col 2"
8939
- msgstr ""
8940
-
8941
- #: widgets/table/table.php:207
8942
- msgid "Header col 3"
8943
- msgstr ""
8944
-
8945
- #: widgets/table/table.php:220
8946
- msgid "File Type"
8947
- msgstr ""
8948
-
8949
- #: widgets/table/table.php:223
8950
- msgid "Upload File"
8951
- msgstr ""
8952
-
8953
- #: widgets/table/table.php:224
8954
- msgid "Remote File URL"
8955
- msgstr ""
8956
-
8957
- #: widgets/table/table.php:235
8958
- msgid "Upload CSV File"
8959
- msgstr ""
8960
-
8961
- #: widgets/table/table.php:246
8962
- msgid "Enter a CSV File URL"
8963
- msgstr ""
8964
-
8965
- #: widgets/table/table.php:262 widgets/tablepress/tablepress.php:135
8966
- msgid "Header Alignment"
8967
- msgstr ""
8968
-
8969
- #: widgets/table/table.php:291
8970
- msgid "Body Content"
8971
- msgstr ""
8972
-
8973
- #: widgets/table/table.php:302
8974
- msgid "New Row"
8975
- msgstr ""
8976
-
8977
- #: widgets/table/table.php:306
8978
- msgid "Row"
8979
- msgstr ""
8980
-
8981
- #: widgets/table/table.php:324
8982
- msgid "Add a url? "
8983
- msgstr ""
8984
-
8985
- #: widgets/table/table.php:428 widgets/testimonial/testimonial.php:222
8986
- msgid "top"
8987
- msgstr ""
8988
-
8989
- #: widgets/table/table.php:478 widgets/table/table.php:491
8990
- msgid "Column 1"
8991
- msgstr ""
8992
-
8993
- #: widgets/table/table.php:483 widgets/table/table.php:496
8994
- msgid "Column 2"
8995
- msgstr ""
8996
-
8997
- #: widgets/table/table.php:487 widgets/table/table.php:500
8998
- msgid "Column 3"
8999
- msgstr ""
9000
-
9001
- #: widgets/table/table.php:511 widgets/tablepress/tablepress.php:161
9002
- msgid "Body Alignment"
9003
- msgstr ""
9004
-
9005
- #: widgets/table/table.php:539
9006
- msgid "Table Settings"
9007
- msgstr ""
9008
-
9009
- #: widgets/table/table.php:547
9010
- msgid "Display Serial Number"
9011
- msgstr ""
9012
-
9013
- #: widgets/table/table.php:558
9014
- msgid "Serial Header Text"
9015
- msgstr ""
9016
-
9017
- #: widgets/table/table.php:570 widgets/table/table.php:1552
9018
- msgid "Search"
9019
- msgstr ""
9020
-
9021
- #: widgets/table/table.php:578
9022
- msgid "Fixed Header"
9023
- msgstr ""
9024
-
9025
- #: widgets/table/table.php:595 widgets/tablepress/tablepress.php:54
9026
- msgid "Responsive"
9027
- msgstr ""
9028
-
9029
- #: widgets/table/table.php:604 widgets/woo-product-list/woo-product-list.php:55
9030
- #: widgets/woo-product-list/woo-product-list.php:2068
9031
- msgid "Pagination"
9032
- msgstr ""
9033
-
9034
- #: widgets/table/table.php:612
9035
- msgid "Nav Style"
9036
- msgstr ""
9037
-
9038
- #: widgets/table/table.php:617
9039
- msgid "Arrow"
9040
- msgstr ""
9041
-
9042
- #: widgets/table/table.php:628
9043
- msgid "Prev Arrow Icon"
9044
- msgstr ""
9045
-
9046
- #: widgets/table/table.php:644
9047
- msgid "Next Arrow Icon"
9048
- msgstr ""
9049
-
9050
- #: widgets/table/table.php:661
9051
- msgid "Prev Text"
9052
- msgstr ""
9053
-
9054
- #: widgets/table/table.php:675
9055
- msgid "Next Text"
9056
- msgstr ""
9057
-
9058
- #: widgets/table/table.php:690 widgets/table/table.php:1858
9059
- #: widgets/woo-product-list/woo-product-list.php:2152
9060
- msgid "Info"
9061
- msgstr ""
9062
-
9063
- #: widgets/table/table.php:699 widgets/table/table.php:1928
9064
- msgid "Entries"
9065
- msgstr ""
9066
-
9067
- #: widgets/table/table.php:722
9068
- msgid "Show item per page"
9069
- msgstr ""
9070
-
9071
- #: widgets/table/table.php:1031 widgets/tablepress/tablepress.php:457
9072
- msgid "Cell Padding"
9073
- msgstr ""
9074
-
9075
- #: widgets/table/table.php:1187
9076
- msgid "Body Image"
9077
- msgstr ""
9078
-
9079
- #: widgets/table/table.php:1304
9080
- msgid "General Settings"
9081
- msgstr ""
9082
-
9083
- #: widgets/table/table.php:1419
9084
- msgid "Border Settings"
9085
- msgstr ""
9086
-
9087
- #: widgets/table/table.php:1528
9088
- msgid "Shadow Settings"
9089
- msgstr ""
9090
-
9091
- #: widgets/table/table.php:1563
9092
- msgid "Icon:"
9093
- msgstr ""
9094
-
9095
- #: widgets/table/table.php:1629
9096
- msgid "Input:"
9097
- msgstr ""
9098
-
9099
- #: widgets/table/table.php:1825
9100
- msgid "Input Placeholder:"
9101
- msgstr ""
9102
-
9103
- #: widgets/table/table.php:1990
9104
- #: widgets/woo-category-list/woo-category-list.php:805
9105
- msgid "Label:"
9106
- msgstr ""
9107
-
9108
- #: widgets/table/table.php:2019
9109
- msgid "Select:"
9110
- msgstr ""
9111
-
9112
- #: widgets/table/table.php:2061
9113
- #: widgets/woo-product-carousel/woo-product-carousel.php:426
9114
- #: widgets/woo-product-carousel/woo-product-carousel.php:433
9115
- #: widgets/woo-product-carousel/woo-product-carousel.php:1909
9116
- msgid "Navigation"
9117
- msgstr ""
9118
-
9119
- #: widgets/table/table.php:2069
9120
- msgid "General:"
9121
- msgstr ""
9122
-
9123
- #: widgets/table/table.php:2154
9124
- msgid "Next and Previous Button Settings:"
9125
- msgstr ""
9126
-
9127
- #: widgets/table/table.php:2171
9128
- msgid "Prev BTN Padding"
9129
- msgstr ""
9130
-
9131
- #: widgets/table/table.php:2190
9132
- msgid "Next BTN Padding"
9133
- msgstr ""
9134
-
9135
- #: widgets/table/table.php:2300
9136
- msgid "Button Text Color"
9137
- msgstr ""
9138
-
9139
- #: widgets/table/table.php:2314
9140
- msgid "Button Text Typography"
9141
- msgstr ""
9142
-
9143
- #: widgets/table/table.php:2380
9144
- msgid "Number:"
9145
- msgstr ""
9146
-
9147
- #: widgets/table/table.php:2389
9148
- msgid "Use Width and Height"
9149
- msgstr ""
9150
-
9151
- #: widgets/table/table.php:2667
9152
- msgid "Please provide an csv file"
9153
- msgstr ""
9154
-
9155
- #: widgets/tablepress/tablepress-handler.php:11
9156
- msgid "TablePress"
9157
- msgstr ""
9158
-
9159
- #: widgets/tablepress/tablepress.php:60
9160
- msgid "Flip"
9161
- msgstr ""
9162
-
9163
- #: widgets/tablepress/tablepress.php:61
9164
- msgid "Scroll"
9165
- msgstr ""
9166
-
9167
- #: widgets/tablepress/tablepress.php:62
9168
- msgid "Collapse"
9169
- msgstr ""
9170
-
9171
- #: widgets/tablepress/tablepress.php:63
9172
- msgid "Stack"
9173
- msgstr ""
9174
-
9175
- #: widgets/tablepress/tablepress.php:91
9176
- msgid "Nav Hide"
9177
- msgstr ""
9178
-
9179
- #: widgets/tablepress/tablepress.php:102
9180
- msgid "Search Hide"
9181
- msgstr ""
9182
-
9183
- #: widgets/tablepress/tablepress.php:113
9184
- msgid "Footer Info Hide"
9185
- msgstr ""
9186
-
9187
- #: widgets/tablepress/tablepress.php:124
9188
- msgid "Pagination Hide"
9189
- msgstr ""
9190
-
9191
- #: widgets/tablepress/tablepress.php:217 widgets/tablepress/tablepress.php:344
9192
- #: widgets/tablepress/tablepress.php:427
9193
- msgid "Groove"
9194
- msgstr ""
9195
-
9196
- #: widgets/tablepress/tablepress.php:265
9197
- msgid "Pagination And Serach Gap"
9198
- msgstr ""
9199
-
9200
- #: widgets/tablepress/tablepress.php:277
9201
- msgid "Footer Text And Navigation gap"
9202
- msgstr ""
9203
-
9204
- #: widgets/tablepress/tablepress.php:311
9205
- msgid "Hover And Active Background"
9206
- msgstr ""
9207
-
9208
- #: widgets/tablepress/tablepress.php:588
9209
- msgid "Filter And Search"
9210
- msgstr ""
9211
-
9212
- #: widgets/tablepress/tablepress.php:681
9213
- msgid "Please Select A Table From Setting!"
9214
- msgstr ""
9215
-
9216
- #: widgets/team/team-handler.php:11
9217
- msgid "Team"
9218
- msgstr ""
9219
-
9220
- #: widgets/team/team.php:42
9221
- msgid "Team Member Content"
9222
- msgstr ""
9223
-
9224
- #: widgets/team/team.php:55
9225
- msgid "Centered "
9226
- msgstr ""
9227
-
9228
- #: widgets/team/team.php:56
9229
- msgid "Hover on social"
9230
- msgstr ""
9231
-
9232
- #: widgets/team/team.php:57
9233
- msgid "Overlay with details"
9234
- msgstr ""
9235
-
9236
- #: widgets/team/team.php:58
9237
- msgid "Centered with details "
9238
- msgstr ""
9239
-
9240
- #: widgets/team/team.php:59
9241
- msgid "Long height with hover "
9242
- msgstr ""
9243
-
9244
- #: widgets/team/team.php:60
9245
- msgid "Long height with details "
9246
- msgstr ""
9247
-
9248
- #: widgets/team/team.php:61
9249
- msgid "Long height with details & hover"
9250
- msgstr ""
9251
-
9252
- #: widgets/team/team.php:62
9253
- msgid "Overlay with circle shape"
9254
- msgstr ""
9255
-
9256
- #: widgets/team/team.php:63
9257
- msgid "Overlay with circle shape & hover"
9258
- msgstr ""
9259
-
9260
- #: widgets/team/team.php:71
9261
- msgid "Choose Member Image"
9262
- msgstr ""
9263
-
9264
- #: widgets/team/team.php:90 widgets/team/team.php:93
9265
- msgid "Member Name"
9266
- msgstr ""
9267
-
9268
- #: widgets/team/team.php:92
9269
- msgid "Jane Doe"
9270
- msgstr ""
9271
-
9272
- #: widgets/team/team.php:100 widgets/team/team.php:103
9273
- msgid "Member Position"
9274
- msgstr ""
9275
-
9276
- #: widgets/team/team.php:102
9277
- msgid "Designer"
9278
- msgstr ""
9279
-
9280
- #: widgets/team/team.php:155 widgets/team/team.php:158
9281
- #: widgets/team/team.php:413 widgets/team/team.php:416
9282
- msgid "About Member"
9283
- msgstr ""
9284
-
9285
- #: widgets/team/team.php:157 widgets/team/team.php:415
9286
- msgid ""
9287
- "A small river named Duden flows by their place and supplies it with the "
9288
- "necessary"
9289
- msgstr ""
9290
-
9291
- #: widgets/team/team.php:173 widgets/team/team.php:1456
9292
- msgid "Social Profiles"
9293
- msgstr ""
9294
-
9295
- #: widgets/team/team.php:180
9296
- msgid "Display Social Profiles?"
9297
- msgstr ""
9298
-
9299
- #: widgets/team/team.php:381
9300
- msgid "Pop Up And Sidebar Details"
9301
- msgstr ""
9302
-
9303
- #: widgets/team/team.php:389
9304
- msgid "Show Popup"
9305
- msgstr ""
9306
-
9307
- #: widgets/team/team.php:398
9308
- msgid "Popup Style"
9309
- msgstr ""
9310
-
9311
- #: widgets/team/team.php:402
9312
- #: widgets/woo-product-carousel/woo-product-carousel.php:2458
9313
- #: widgets/woo-product-list/woo-product-list.php:2246
9314
- msgid "Popup"
9315
- msgstr ""
9316
-
9317
- #: widgets/team/team.php:429
9318
- msgid "Phone Number"
9319
- msgstr ""
9320
-
9321
- #: widgets/team/team.php:439 widgets/team/team.php:2551
9322
- #: widgets/team/team.php:2643
9323
- msgid "Email"
9324
- msgstr ""
9325
-
9326
- #: widgets/team/team.php:442
9327
- msgid "Email Address"
9328
- msgstr ""
9329
-
9330
- #: widgets/team/team.php:453
9331
- msgid "Sidebar Direction"
9332
- msgstr ""
9333
-
9334
- #: widgets/team/team.php:496
9335
- msgid "Close Icon Alignment"
9336
- msgstr ""
9337
-
9338
- #: widgets/team/team.php:596
9339
- msgid "Max Height"
9340
- msgstr ""
9341
-
9342
- #: widgets/team/team.php:704
9343
- msgid "Hover Overy Color"
9344
- msgstr ""
9345
-
9346
- #: widgets/team/team.php:729
9347
- msgid "Remove Gutter?"
9348
- msgstr ""
9349
-
9350
- #: widgets/team/team.php:754 widgets/testimonial/testimonial.php:1686
9351
- #: widgets/woo-product-carousel/woo-product-carousel.php:296
9352
- #: widgets/woo-product-list/woo-product-list.php:250
9353
- msgid "Image Size"
9354
- msgstr ""
9355
-
9356
- #: widgets/team/team.php:1033
9357
- msgid ""
9358
- "For svg icon, We don't need this. We will use font size and padding for "
9359
- "adjusting size."
9360
- msgstr ""
9361
-
9362
- #: widgets/team/team.php:1377
9363
- msgid "Text Content"
9364
- msgstr ""
9365
-
9366
- #: widgets/team/team.php:1742
9367
- msgid "Modal Controls"
9368
- msgstr ""
9369
-
9370
- #: widgets/team/team.php:1754
9371
- msgid "Modal"
9372
- msgstr ""
9373
-
9374
- #: widgets/team/team.php:1913
9375
- msgid "Phone and Email"
9376
- msgstr ""
9377
-
9378
- #: widgets/team/team.php:2129 widgets/video/video.php:383
9379
- msgid "Use height width"
9380
- msgstr ""
9381
-
9382
- #: widgets/testimonial/style/style1.php:35
9383
- #: widgets/testimonial/testimonial.php:1545
9384
- msgid "Client Image"
9385
- msgstr ""
9386
-
9387
- #: widgets/testimonial/style/style2.php:13
9388
- msgid "Client Hover Logo"
9389
- msgstr ""
9390
-
9391
- #: widgets/testimonial/style/style4.php:10
9392
- msgid "Client Photo"
9393
- msgstr ""
9394
-
9395
- #: widgets/testimonial/testimonial-handler.php:11
9396
- #: widgets/testimonial/testimonial.php:98
9397
- #: widgets/testimonial/testimonial.php:373
9398
- msgid "Testimonial"
9399
- msgstr ""
9400
-
9401
- #: widgets/testimonial/testimonial.php:61
9402
- msgid "Grid Style without image"
9403
- msgstr ""
9404
-
9405
- #: widgets/testimonial/testimonial.php:67
9406
- msgid "Image with Ratting"
9407
- msgstr ""
9408
-
9409
- #: widgets/testimonial/testimonial.php:106
9410
- msgid "Enable Quote Icon"
9411
- msgstr ""
9412
-
9413
- #: widgets/testimonial/testimonial.php:121
9414
- msgid "Quote Icon"
9415
- msgstr ""
9416
-
9417
- #: widgets/testimonial/testimonial.php:140
9418
- msgid "Quote Icon Position"
9419
- msgstr ""
9420
-
9421
- #: widgets/testimonial/testimonial.php:158
9422
- msgid "Show Quote Icon Badge"
9423
- msgstr ""
9424
-
9425
- #: widgets/testimonial/testimonial.php:175
9426
- msgid "Custom Position"
9427
- msgstr ""
9428
-
9429
- #: widgets/testimonial/testimonial.php:254
9430
- msgid "Enable Rating"
9431
- msgstr ""
9432
-
9433
- #: widgets/testimonial/testimonial.php:288
9434
- #: widgets/testimonial/testimonial.php:376
9435
- msgid "Testimonial #1"
9436
- msgstr ""
9437
-
9438
- #: widgets/testimonial/testimonial.php:294
9439
- #: widgets/testimonial/testimonial.php:297
9440
- msgid "Designation"
9441
- msgstr ""
9442
-
9443
- #: widgets/testimonial/testimonial.php:302
9444
- msgid "Testimonial Review"
9445
- msgstr ""
9446
-
9447
- #: widgets/testimonial/testimonial.php:305
9448
- msgid "Review Text"
9449
- msgstr ""
9450
-
9451
- #: widgets/testimonial/testimonial.php:310
9452
- msgid "Testimonial Rating"
9453
- msgstr ""
9454
-
9455
- #: widgets/testimonial/testimonial.php:314
9456
- msgid "5"
9457
- msgstr ""
9458
-
9459
- #: widgets/testimonial/testimonial.php:325
9460
- msgid "Client Avatar"
9461
- msgstr ""
9462
-
9463
- #: widgets/testimonial/testimonial.php:343
9464
- msgid "Display different logo on hover?"
9465
- msgstr ""
9466
-
9467
- #: widgets/testimonial/testimonial.php:353
9468
- msgid "Logo Active"
9469
- msgstr ""
9470
-
9471
- #: widgets/testimonial/testimonial.php:377
9472
- msgid "Testimonial #2"
9473
- msgstr ""
9474
-
9475
- #: widgets/testimonial/testimonial.php:378
9476
- msgid "Testimonial #3"
9477
- msgstr ""
9478
-
9479
- #: widgets/testimonial/testimonial.php:586
9480
- #: widgets/woo-product-carousel/woo-product-carousel.php:277
9481
- #: widgets/woo-product-list/woo-product-list.php:207
9482
- msgid "Column Gap"
9483
- msgstr ""
9484
-
9485
- #: widgets/testimonial/testimonial.php:705
9486
- msgid "Wraper content style"
9487
- msgstr ""
9488
-
9489
- #: widgets/testimonial/testimonial.php:740
9490
- #: widgets/woo-category-list/woo-category-list.php:566
9491
- #: widgets/woo-category-list/woo-category-list.php:864
9492
- #: widgets/woo-product-carousel/woo-product-carousel.php:633
9493
- #: widgets/woo-product-carousel/woo-product-carousel.php:1095
9494
- #: widgets/woo-product-carousel/woo-product-carousel.php:1542
9495
- #: widgets/woo-product-carousel/woo-product-carousel.php:2497
9496
- #: widgets/woo-product-list/woo-product-list.php:792
9497
- #: widgets/woo-product-list/woo-product-list.php:1258
9498
- #: widgets/woo-product-list/woo-product-list.php:1876
9499
- #: widgets/woo-product-list/woo-product-list.php:2285
9500
- msgid "Horizontal Alignment"
9501
- msgstr ""
9502
-
9503
- #: widgets/testimonial/testimonial.php:891
9504
- #: widgets/woo-product-carousel/woo-product-carousel.php:340
9505
- #: widgets/woo-product-list/woo-product-list.php:285
9506
- msgid "Rating"
9507
- msgstr ""
9508
-
9509
- #: widgets/testimonial/testimonial.php:927
9510
- msgid "Items Margin Right"
9511
- msgstr ""
9512
-
9513
- #: widgets/testimonial/testimonial.php:950
9514
- msgid "Review Margin"
9515
- msgstr ""
9516
-
9517
- #: widgets/testimonial/testimonial.php:963
9518
- msgid "Quote icon"
9519
- msgstr ""
9520
-
9521
- #: widgets/testimonial/testimonial.php:1190
9522
- msgid "Title Separetor"
9523
- msgstr ""
9524
-
9525
- #: widgets/testimonial/testimonial.php:1315
9526
- msgid "Client"
9527
- msgstr ""
9528
-
9529
- #: widgets/testimonial/testimonial.php:1421
9530
- msgid "Client Designation"
9531
- msgstr ""
9532
-
9533
- #: widgets/testimonial/testimonial.php:1737
9534
- msgid "Dot"
9535
- msgstr ""
9536
-
9537
- #: widgets/testimonial/testimonial.php:1748
9538
- msgid "Dot Top Spacing"
9539
- msgstr ""
9540
-
9541
- #: widgets/testimonial/testimonial.php:1829
9542
- msgid "Margin right"
9543
- msgstr ""
9544
-
9545
- #: widgets/testimonial/testimonial.php:1953
9546
- msgid "Nav"
9547
- msgstr ""
9548
-
9549
- #: widgets/testimonial/testimonial.php:1988
9550
- msgid "Prev"
9551
- msgstr ""
9552
-
9553
- #: widgets/testimonial/testimonial.php:2010
9554
- #: widgets/woo-product-carousel/woo-product-carousel.php:1946
9555
- msgid "Next"
9556
- msgstr ""
9557
-
9558
- #: widgets/testimonial/testimonial.php:2092
9559
- msgid "vertical_align"
9560
- msgstr ""
9561
-
9562
- #: widgets/timeline/timeline.php:44
9563
- msgid "Time line Style"
9564
- msgstr ""
9565
-
9566
- #: widgets/timeline/timeline.php:57
9567
- msgid "Content Style"
9568
- msgstr ""
9569
-
9570
- #: widgets/timeline/timeline.php:61
9571
- msgid "Same Side"
9572
- msgstr ""
9573
-
9574
- #: widgets/timeline/timeline.php:95
9575
- msgid "Title Link"
9576
- msgstr ""
9577
-
9578
- #: widgets/timeline/timeline.php:97
9579
- msgid "https://example.com"
9580
- msgstr ""
9581
-
9582
- #: widgets/timeline/timeline.php:134
9583
- msgid "01 February 2015"
9584
- msgstr ""
9585
-
9586
- #: widgets/timeline/timeline.php:142 widgets/timeline/timeline.php:736
9587
- #: widgets/timeline/timeline.php:903
9588
- msgid "Address"
9589
- msgstr ""
9590
-
9591
- #: widgets/timeline/timeline.php:144
9592
- msgid "New Office, CA"
9593
- msgstr ""
9594
-
9595
- #: widgets/timeline/timeline.php:155
9596
- msgid "Repeater Item Style"
9597
- msgstr ""
9598
-
9599
- #: widgets/timeline/timeline.php:172 widgets/timeline/timeline.php:236
9600
- msgid "Sub Title Color "
9601
- msgstr ""
9602
-
9603
- #: widgets/timeline/timeline.php:182 widgets/timeline/timeline.php:248
9604
- msgid "Content box Background"
9605
- msgstr ""
9606
-
9607
- #: widgets/timeline/timeline.php:194 widgets/timeline/timeline.php:262
9608
- msgid "Icon section"
9609
- msgstr ""
9610
-
9611
- #: widgets/timeline/timeline.php:203
9612
- msgid "Icon text Color"
9613
- msgstr ""
9614
-
9615
- #: widgets/timeline/timeline.php:214 widgets/timeline/timeline.php:282
9616
- msgid "Icon Background"
9617
- msgstr ""
9618
-
9619
- #: widgets/timeline/timeline.php:299
9620
- msgid "Time Line Content"
9621
- msgstr ""
9622
-
9623
- #: widgets/timeline/timeline.php:347
9624
- msgid " Address Icon"
9625
- msgstr ""
9626
-
9627
- #: widgets/timeline/timeline.php:359
9628
- msgid "Content box Entrance Animation"
9629
- msgstr ""
9630
-
9631
- #: widgets/timeline/timeline.php:368
9632
- msgid "Address, date Entrance Animation"
9633
- msgstr ""
9634
-
9635
- #: widgets/timeline/timeline.php:376
9636
- msgid "Pinpoint Style"
9637
- msgstr ""
9638
-
9639
- #: widgets/timeline/timeline.php:380
9640
- msgid "default"
9641
- msgstr ""
9642
-
9643
- #: widgets/timeline/timeline.php:392
9644
- msgid "Pinpoint Icon"
9645
- msgstr ""
9646
-
9647
- #: widgets/timeline/timeline.php:458
9648
- msgid "Inner Padding"
9649
- msgstr ""
9650
-
9651
- #: widgets/timeline/timeline.php:494 widgets/timeline/timeline.php:816
9652
- msgid "Sub Title Color"
9653
- msgstr ""
9654
-
9655
- #: widgets/timeline/timeline.php:543 widgets/timeline/timeline.php:838
9656
- msgid "Title Anchor Color"
9657
- msgstr ""
9658
-
9659
- #: widgets/timeline/timeline.php:581 widgets/timeline/timeline.php:849
9660
- msgid "Content Text Color"
9661
- msgstr ""
9662
-
9663
- #: widgets/timeline/timeline.php:619
9664
- msgid "Round icon"
9665
- msgstr ""
9666
-
9667
- #: widgets/timeline/timeline.php:627 widgets/timeline/timeline.php:860
9668
- msgid "Round Icon Color"
9669
- msgstr ""
9670
-
9671
- #: widgets/timeline/timeline.php:638 widgets/timeline/timeline.php:870
9672
- msgid "Round Icon Background"
9673
- msgstr ""
9674
-
9675
- #: widgets/timeline/timeline.php:664 widgets/timeline/timeline.php:882
9676
- msgid "Timeline info"
9677
- msgstr ""
9678
-
9679
- #: widgets/timeline/timeline.php:923
9680
- msgid "Line "
9681
- msgstr ""
9682
-
9683
- #: widgets/timeline/timeline.php:931
9684
- msgid "Line Color"
9685
- msgstr ""
9686
-
9687
- #: widgets/timeline/timeline.php:943
9688
- msgid "Pin Color"
9689
- msgstr ""
9690
-
9691
- #: widgets/timeline/timeline.php:960
9692
- msgid "Active Pin Color"
9693
- msgstr ""
9694
-
9695
- #: widgets/timeline/timeline.php:976
9696
- msgid "Pinpoint Color"
9697
- msgstr ""
9698
-
9699
- #: widgets/timeline/timeline.php:1132
9700
- msgid "Info (Address, date) Gap"
9701
- msgstr ""
9702
-
9703
- #: widgets/timeline/timeline.php:1166
9704
- msgid "Item Bottom Spacing"
9705
- msgstr ""
9706
-
9707
- #: widgets/twitter-feed/twitter-feed-handler.php:16
9708
- msgid "Twitter Feed"
9709
- msgstr ""
9710
-
9711
- #: widgets/twitter-feed/twitter-feed.php:46
9712
- msgid "Show Header"
9713
- msgstr ""
9714
-
9715
- #: widgets/twitter-feed/twitter-feed.php:58
9716
- msgid "Show Cover Photo"
9717
- msgstr ""
9718
-
9719
- #: widgets/twitter-feed/twitter-feed.php:73
9720
- msgid "Show Statics"
9721
- msgstr ""
9722
-
9723
- #: widgets/twitter-feed/twitter-feed.php:131
9724
- msgid "Show Media"
9725
- msgstr ""
9726
-
9727
- #: widgets/twitter-feed/twitter-feed.php:146
9728
- #: widgets/twitter-feed/twitter-feed.php:147
9729
- msgid "Follow"
9730
- msgstr ""
9731
-
9732
- #: widgets/twitter-feed/twitter-feed.php:181
9733
- msgid "Only Thumbnail Image"
9734
- msgstr ""
9735
-
9736
- #: widgets/twitter-feed/twitter-feed.php:183
9737
- msgid "Both Thumbnail & name"
9738
- msgstr ""
9739
-
9740
- #: widgets/twitter-feed/twitter-feed.php:191
9741
- msgid "Thumbnail Style"
9742
- msgstr ""
9743
-
9744
- #: widgets/twitter-feed/twitter-feed.php:225
9745
- msgid "Show Hash"
9746
- msgstr ""
9747
-
9748
- #: widgets/twitter-feed/twitter-feed.php:247
9749
- msgid "Comments Box"
9750
- msgstr ""
9751
-
9752
- #: widgets/twitter-feed/twitter-feed.php:266
9753
- msgid "Cover Photo"
9754
- msgstr ""
9755
-
9756
- #: widgets/twitter-feed/twitter-feed.php:277
9757
- msgid "Statics"
9758
- msgstr ""
9759
-
9760
- #: widgets/twitter-feed/twitter-feed.php:297
9761
- msgid "Count Color"
9762
- msgstr ""
9763
-
9764
- #: widgets/twitter-feed/twitter-feed.php:816
9765
- msgid "Permalink Color"
9766
- msgstr ""
9767
-
9768
- #: widgets/twitter-feed/twitter-feed.php:934
9769
- msgid "Hash Tag"
9770
- msgstr ""
9771
-
9772
- #: widgets/twitter-feed/twitter-feed.php:1016
9773
- msgid "Action"
9774
- msgstr ""
9775
-
9776
- #: widgets/twitter-feed/twitter-feed.php:1123
9777
- msgid "Retweet"
9778
- msgstr ""
9779
-
9780
- #: widgets/twitter-feed/twitter-feed.php:1145
9781
- msgid "Like"
9782
- msgstr ""
9783
-
9784
- #: widgets/twitter-feed/twitter-feed.php:1208
9785
- msgid "Play Button"
9786
- msgstr ""
9787
-
9788
- #: widgets/twitter-feed/twitter-feed.php:1227
9789
- #: widgets/twitter-feed/twitter-feed.php:1306
9790
- msgid "Circle Color"
9791
- msgstr ""
9792
-
9793
- #: widgets/twitter-feed/twitter-feed.php:1239
9794
- #: widgets/twitter-feed/twitter-feed.php:1318
9795
- msgid "Play Color"
9796
- msgstr ""
9797
-
9798
- #: widgets/twitter-feed/twitter-feed.php:1462
9799
- #: widgets/twitter-feed/twitter-feed.php:1468
9800
- msgid "Invalid author"
9801
- msgstr ""
9802
-
9803
- #: widgets/twitter-feed/twitter-feed.php:1524
9804
- msgid "Tweets"
9805
- msgstr ""
9806
-
9807
- #: widgets/twitter-feed/twitter-feed.php:1525
9808
- msgid "Following"
9809
- msgstr ""
9810
-
9811
- #: widgets/twitter-feed/twitter-feed.php:1526
9812
- msgid "Followers"
9813
- msgstr ""
9814
-
9815
- #: widgets/twitter-feed/twitter-feed.php:1527
9816
- msgid "Likes"
9817
- msgstr ""
9818
-
9819
- #: widgets/twitter-feed/twitter-feed.php:1640
9820
- msgid "More"
9821
- msgstr ""
9822
-
9823
- #: widgets/vertical-menu/vertical-menu-handler.php:11
9824
- msgid "Vertical menu"
9825
- msgstr ""
9826
-
9827
- #: widgets/vertical-menu/vertical-menu.php:46
9828
- msgid "Vertical menu settings"
9829
- msgstr ""
9830
-
9831
- #: widgets/vertical-menu/vertical-menu.php:63
9832
- msgid "Badge Position"
9833
- msgstr ""
9834
-
9835
- #: widgets/vertical-menu/vertical-menu.php:74
9836
- msgid "Toggle"
9837
- msgstr ""
9838
-
9839
- #: widgets/vertical-menu/vertical-menu.php:85
9840
- msgid "Show Toggle Menu"
9841
- msgstr ""
9842
-
9843
- #: widgets/vertical-menu/vertical-menu.php:101
9844
- #: widgets/woo-category-list/woo-category-list.php:1118
9845
- msgid "All Categories"
9846
- msgstr ""
9847
-
9848
- #: widgets/vertical-menu/vertical-menu.php:121
9849
- msgid "Icon Right"
9850
- msgstr ""
9851
-
9852
- #: widgets/vertical-menu/vertical-menu.php:128
9853
- msgid "Menu Icon Right"
9854
- msgstr ""
9855
-
9856
- #: widgets/vertical-menu/vertical-menu.php:139
9857
- msgid "Icon Left"
9858
- msgstr ""
9859
-
9860
- #: widgets/vertical-menu/vertical-menu.php:146
9861
- msgid "Menu Icon Left"
9862
- msgstr ""
9863
-
9864
- #: widgets/vertical-menu/vertical-menu.php:163
9865
- msgid "Toggle Button"
9866
- msgstr ""
9867
-
9868
- #: widgets/vertical-menu/vertical-menu.php:278
9869
- msgid "Menu Container"
9870
- msgstr ""
9871
-
9872
- #: widgets/vertical-menu/vertical-menu.php:320
9873
- msgid "Menu Items"
9874
- msgstr ""
9875
-
9876
- #: widgets/vertical-menu/vertical-menu.php:422
9877
- msgid "Sub Menu Items"
9878
- msgstr ""
9879
-
9880
- #: widgets/vertical-menu/vertical-menu.php:587
9881
- msgid "Please Select Menu"
9882
- msgstr ""
9883
-
9884
- #: widgets/video/video-handler.php:11 widgets/video/video.php:40
9885
- msgid "Video"
9886
- msgstr ""
9887
-
9888
- #: widgets/video/video.php:48 widgets/video/video.php:329
9889
- msgid "Button Style"
9890
- msgstr ""
9891
-
9892
- #: widgets/video/video.php:62
9893
- msgid "Button Title"
9894
- msgstr ""
9895
-
9896
- #: widgets/video/video.php:65 widgets/video/video.php:66
9897
- msgid "Play Video"
9898
- msgstr ""
9899
-
9900
- #: widgets/video/video.php:93
9901
- msgid "Button Icon"
9902
- msgstr ""
9903
-
9904
- #: widgets/video/video.php:127
9905
- msgid "Active Glow"
9906
- msgstr ""
9907
-
9908
- #: widgets/video/video.php:140
9909
- msgid "Video Type"
9910
- msgstr ""
9911
-
9912
- #: widgets/video/video.php:144
9913
- msgid "youtube"
9914
- msgstr ""
9915
-
9916
- #: widgets/video/video.php:145
9917
- msgid "vimeo"
9918
- msgstr ""
9919
-
9920
- #: widgets/video/video.php:153
9921
- msgid "URL to embed"
9922
- msgstr ""
9923
-
9924
- #: widgets/video/video.php:168
9925
- msgid "Start Time"
9926
- msgstr ""
9927
-
9928
- #: widgets/video/video.php:180
9929
- msgid "End TIme"
9930
- msgstr ""
9931
-
9932
- #: widgets/video/video.php:191
9933
- msgid "Auto Play"
9934
- msgstr ""
9935
-
9936
- #: widgets/video/video.php:203
9937
- msgid "Mute"
9938
- msgstr ""
9939
-
9940
- #: widgets/video/video.php:215
9941
- #: widgets/woo-product-carousel/woo-product-carousel.php:398
9942
- msgid "Loop"
9943
- msgstr ""
9944
-
9945
- #: widgets/video/video.php:227
9946
- msgid "Player Control"
9947
- msgstr ""
9948
-
9949
- #: widgets/video/video.php:239
9950
- msgid "Intro Title"
9951
- msgstr ""
9952
-
9953
- #: widgets/video/video.php:252
9954
- msgid "Intro Portrait"
9955
- msgstr ""
9956
-
9957
- #: widgets/video/video.php:265
9958
- msgid "Intro Byline"
9959
- msgstr ""
9960
-
9961
- #: widgets/video/video.php:455
9962
- msgid "Line height"
9963
- msgstr ""
9964
-
9965
- #: widgets/video/video.php:670
9966
- msgid "Shadow Style"
9967
- msgstr ""
9968
-
9969
- #: widgets/video/video.php:710
9970
- msgid "Padding Right"
9971
- msgstr ""
9972
-
9973
- #: widgets/we-forms/we-forms-handler.php:11
9974
- msgid "We Forms"
9975
- msgstr ""
9976
-
9977
- #: widgets/we-forms/we-forms.php:38
9978
- msgid "weForm"
9979
- msgstr ""
9980
-
9981
- #: widgets/we-forms/we-forms.php:58
9982
- msgid "Fields"
9983
- msgstr ""
9984
-
9985
- #: widgets/we-forms/we-forms.php:98
9986
- msgid "Input Spacing"
9987
- msgstr ""
9988
-
9989
- #: widgets/we-forms/we-forms.php:145
9990
- msgid "Input Text Color"
9991
- msgstr ""
9992
-
9993
- #: widgets/we-forms/we-forms.php:156
9994
- msgid "Input Placeholder Color"
9995
- msgstr ""
9996
-
9997
- #: widgets/we-forms/we-forms.php:288
9998
- msgid "Label Typography"
9999
- msgstr ""
10000
-
10001
- #: widgets/we-forms/we-forms.php:298
10002
- msgid "Help Text Typography"
10003
- msgstr ""
10004
-
10005
- #: widgets/we-forms/we-forms.php:307
10006
- msgid "Label Text Color"
10007
- msgstr ""
10008
-
10009
- #: widgets/we-forms/we-forms.php:318
10010
- msgid "Required Label Color"
10011
- msgstr ""
10012
-
10013
- #: widgets/we-forms/we-forms.php:329
10014
- msgid "Help Text Color"
10015
- msgstr ""
10016
-
10017
- #: widgets/we-forms/we-forms.php:350
10018
- msgid "Button Full Width?"
10019
- msgstr ""
10020
-
10021
- #: widgets/we-forms/we-forms.php:391
10022
- msgid "Button Position"
10023
- msgstr ""
10024
-
10025
- #: widgets/widget-notice.php:17
10026
- msgid "Go Premium for More Features"
10027
- msgstr ""
10028
-
10029
- #: widgets/woo-category-list/woo-category-list-handler.php:11
10030
- msgid "Woo Category List"
10031
- msgstr ""
10032
-
10033
- #: widgets/woo-category-list/woo-category-list.php:43
10034
- msgid "Filter by"
10035
- msgstr ""
10036
-
10037
- #: widgets/woo-category-list/woo-category-list.php:48
10038
- msgid "Manual Selection"
10039
- msgstr ""
10040
-
10041
- #: widgets/woo-category-list/woo-category-list.php:49
10042
- msgid "By Parent"
10043
- msgstr ""
10044
-
10045
- #: widgets/woo-category-list/woo-category-list.php:71
10046
- msgid "Parent"
10047
- msgstr ""
10048
-
10049
- #: widgets/woo-category-list/woo-category-list.php:91
10050
- msgid "Slug"
10051
- msgstr ""
10052
-
10053
- #: widgets/woo-category-list/woo-category-list.php:93
10054
- msgid "Count"
10055
- msgstr ""
10056
-
10057
- #: widgets/woo-category-list/woo-category-list.php:124
10058
- msgid "Label Postion"
10059
- msgstr ""
10060
-
10061
- #: widgets/woo-category-list/woo-category-list.php:128
10062
- #: widgets/woo-product-carousel/woo-product-carousel.php:217
10063
- #: widgets/woo-product-list/woo-product-list.php:175
10064
- msgid "Inside Thumb"
10065
- msgstr ""
10066
-
10067
- #: widgets/woo-category-list/woo-category-list.php:129
10068
- #: widgets/woo-product-carousel/woo-product-carousel.php:218
10069
- #: widgets/woo-product-list/woo-product-list.php:176
10070
- msgid "Outside Thumb"
10071
- msgstr ""
10072
-
10073
- #: widgets/woo-category-list/woo-category-list.php:137
10074
- msgid "Enable featured category?"
10075
- msgstr ""
10076
-
10077
- #: widgets/woo-category-list/woo-category-list.php:183
10078
- msgid "Item Gap"
10079
- msgstr ""
10080
-
10081
- #: widgets/woo-category-list/woo-category-list.php:209
10082
- msgid "Categories Count"
10083
- msgstr ""
10084
-
10085
- #: widgets/woo-category-list/woo-category-list.php:227
10086
- msgid "Product count"
10087
- msgstr ""
10088
-
10089
- #: widgets/woo-category-list/woo-category-list.php:279
10090
- msgid "Item Border"
10091
- msgstr ""
10092
-
10093
- #: widgets/woo-category-list/woo-category-list.php:619
10094
- #: widgets/woo-category-list/woo-category-list.php:914
10095
- msgid "Category Title:"
10096
- msgstr ""
10097
-
10098
- #: widgets/woo-category-list/woo-category-list.php:702
10099
- #: widgets/woo-category-list/woo-category-list.php:996
10100
- msgid "Product Count:"
10101
- msgstr ""
10102
-
10103
- #: widgets/woo-category-list/woo-category-list.php:768
10104
- msgid "Featured Category"
10105
- msgstr ""
10106
-
10107
- #: widgets/woo-category-list/woo-category-list.php:1118
10108
- msgid "Products"
10109
- msgstr ""
10110
-
10111
- #: widgets/woo-mini-cart/woo-mini-cart-handler.php:25
10112
- msgid "Woo Mini Cart"
10113
- msgstr ""
10114
-
10115
- #: widgets/woo-mini-cart/woo-mini-cart.php:61
10116
- msgid "Cart Visibility"
10117
- msgstr ""
10118
-
10119
- #: widgets/woo-mini-cart/woo-mini-cart.php:104
10120
- msgid "Cart Button"
10121
- msgstr ""
10122
-
10123
- #: widgets/woo-mini-cart/woo-mini-cart.php:576
10124
- msgid "Quantity:"
10125
- msgstr ""
10126
-
10127
- #: widgets/woo-mini-cart/woo-mini-cart.php:635
10128
- msgid "Image:"
10129
- msgstr ""
10130
-
10131
- #: widgets/woo-mini-cart/woo-mini-cart.php:678
10132
- msgid "Remove:"
10133
- msgstr ""
10134
-
10135
- #: widgets/woo-mini-cart/woo-mini-cart.php:888
10136
- msgid "Subtotal"
10137
- msgstr ""
10138
-
10139
- #: widgets/woo-mini-cart/woo-mini-cart.php:957
10140
- #: widgets/woo-product-carousel/woo-product-carousel.php:883
10141
- #: widgets/woo-product-list/woo-product-list.php:1046
10142
- msgid "Price:"
10143
- msgstr ""
10144
-
10145
- #: widgets/woo-mini-cart/woo-mini-cart.php:1171
10146
- msgid "items"
10147
- msgstr ""
10148
-
10149
- #: widgets/woo-mini-cart/woo-mini-cart.php:1172
10150
- msgid "view cart"
10151
- msgstr ""
10152
-
10153
- #: widgets/woo-product-carousel/woo-product-carousel-handler.php:11
10154
- msgid "Woo Product Carousel"
10155
- msgstr ""
10156
-
10157
- #: widgets/woo-product-carousel/woo-product-carousel.php:68
10158
- msgid "Scale Down"
10159
- msgstr ""
10160
-
10161
- #: widgets/woo-product-carousel/woo-product-carousel.php:69
10162
- msgid "Slide Top"
10163
- msgstr ""
10164
-
10165
- #: widgets/woo-product-carousel/woo-product-carousel.php:70
10166
- msgid "Slide Bottom"
10167
- msgstr ""
10168
-
10169
- #: widgets/woo-product-carousel/woo-product-carousel.php:71
10170
- msgid "Slide Left"
10171
- msgstr ""
10172
-
10173
- #: widgets/woo-product-carousel/woo-product-carousel.php:72
10174
- msgid "Slide Right"
10175
- msgstr ""
10176
-
10177
- #: widgets/woo-product-carousel/woo-product-carousel.php:73
10178
- msgid "Slide Top Small"
10179
- msgstr ""
10180
-
10181
- #: widgets/woo-product-carousel/woo-product-carousel.php:74
10182
- msgid "Slide Bottom Small"
10183
- msgstr ""
10184
-
10185
- #: widgets/woo-product-carousel/woo-product-carousel.php:75
10186
- msgid "Slide Left Small"
10187
- msgstr ""
10188
-
10189
- #: widgets/woo-product-carousel/woo-product-carousel.php:76
10190
- msgid "Slide Right Small"
10191
- msgstr ""
10192
-
10193
- #: widgets/woo-product-carousel/woo-product-carousel.php:77
10194
- msgid "Slide Top Medium"
10195
- msgstr ""
10196
-
10197
- #: widgets/woo-product-carousel/woo-product-carousel.php:78
10198
- msgid "Slide Bottom Medium"
10199
- msgstr ""
10200
-
10201
- #: widgets/woo-product-carousel/woo-product-carousel.php:79
10202
- msgid "Slide Left Medium"
10203
- msgstr ""
10204
-
10205
- #: widgets/woo-product-carousel/woo-product-carousel.php:80
10206
- msgid "Slide Right Medium"
10207
- msgstr ""
10208
-
10209
- #: widgets/woo-product-carousel/woo-product-carousel.php:108
10210
- #: widgets/woo-product-list/woo-product-list.php:63
10211
- msgid "Show product by "
10212
- msgstr ""
10213
-
10214
- #: widgets/woo-product-carousel/woo-product-carousel.php:113
10215
- #: widgets/woo-product-carousel/woo-product-carousel.php:135
10216
- #: widgets/woo-product-list/woo-product-list.php:68
10217
- #: widgets/woo-product-list/woo-product-list.php:90
10218
- msgid "Product"
10219
- msgstr ""
10220
-
10221
- #: widgets/woo-product-carousel/woo-product-carousel.php:168
10222
- #: widgets/woo-product-list/woo-product-list.php:123
10223
- msgid "Descending"
10224
- msgstr ""
10225
-
10226
- #: widgets/woo-product-carousel/woo-product-carousel.php:169
10227
- #: widgets/woo-product-list/woo-product-list.php:124
10228
- msgid "Ascending"
10229
- msgstr ""
10230
-
10231
- #: widgets/woo-product-carousel/woo-product-carousel.php:199
10232
- #: widgets/woo-product-list/woo-product-list.php:157
10233
- msgid "Flip Content? "
10234
- msgstr ""
10235
-
10236
- #: widgets/woo-product-carousel/woo-product-carousel.php:213
10237
- #: widgets/woo-product-list/woo-product-list.php:171
10238
- msgid "Content Postion"
10239
- msgstr ""
10240
-
10241
- #: widgets/woo-product-carousel/woo-product-carousel.php:229
10242
- msgid "Desktop Columns"
10243
- msgstr ""
10244
-
10245
- #: widgets/woo-product-carousel/woo-product-carousel.php:245
10246
- msgid "Tablet Columns"
10247
- msgstr ""
10248
-
10249
- #: widgets/woo-product-carousel/woo-product-carousel.php:261
10250
- msgid "Mobile Columns"
10251
- msgstr ""
10252
-
10253
- #: widgets/woo-product-carousel/woo-product-carousel.php:306
10254
- #: widgets/woo-product-list/woo-product-list.php:259
10255
- msgid "Open Thumb in Popup"
10256
- msgstr ""
10257
-
10258
- #: widgets/woo-product-carousel/woo-product-carousel.php:358
10259
- #: widgets/woo-product-list/woo-product-list.php:311
10260
- msgid "Add to Cart"
10261
- msgstr ""
10262
-
10263
- #: widgets/woo-product-carousel/woo-product-carousel.php:369
10264
- msgid "Carousel Settings"
10265
- msgstr ""
10266
-
10267
- #: widgets/woo-product-carousel/woo-product-carousel.php:386
10268
- msgid "Autoplay Speed"
10269
- msgstr ""
10270
-
10271
- #: widgets/woo-product-carousel/woo-product-carousel.php:408
10272
- msgid "Animation Speed"
10273
- msgstr ""
10274
-
10275
- #: widgets/woo-product-carousel/woo-product-carousel.php:437
10276
- msgid "Arrows and Dots"
10277
- msgstr ""
10278
-
10279
- #: widgets/woo-product-carousel/woo-product-carousel.php:450
10280
- msgid "Arrows and Dots Position"
10281
- msgstr ""
10282
-
10283
- #: widgets/woo-product-carousel/woo-product-carousel.php:463
10284
- msgid "Arrows Position"
10285
- msgstr ""
10286
-
10287
- #: widgets/woo-product-carousel/woo-product-carousel.php:476
10288
- msgid "Dots Position"
10289
- msgstr ""
10290
-
10291
- #: widgets/woo-product-carousel/woo-product-carousel.php:564
10292
- #: widgets/woo-product-list/woo-product-list.php:449
10293
- msgid "Description Padding"
10294
- msgstr ""
10295
-
10296
- #: widgets/woo-product-carousel/woo-product-carousel.php:811
10297
- #: widgets/woo-product-list/woo-product-list.php:973
10298
- msgid "Rating:"
10299
- msgstr ""
10300
-
10301
- #: widgets/woo-product-carousel/woo-product-carousel.php:838
10302
- #: widgets/woo-product-list/woo-product-list.php:1000
10303
- #: widgets/woo-product-list/woo-product-list.php:2104
10304
- msgid "Active Color"
10305
- msgstr ""
10306
-
10307
- #: widgets/woo-product-carousel/woo-product-carousel.php:937
10308
- #: widgets/woo-product-list/woo-product-list.php:1100
10309
- msgid "Sale Price"
10310
- msgstr ""
10311
-
10312
- #: widgets/woo-product-carousel/woo-product-carousel.php:1029
10313
- #: widgets/woo-product-list/woo-product-list.php:1192
10314
- msgid "Image Border"
10315
- msgstr ""
10316
-
10317
- #: widgets/woo-product-carousel/woo-product-carousel.php:1074
10318
- #: widgets/woo-product-list/woo-product-list.php:1237
10319
- msgid "Cart:"
10320
- msgstr ""
10321
-
10322
- #: widgets/woo-product-carousel/woo-product-carousel.php:1083
10323
- #: widgets/woo-product-list/woo-product-list.php:1246
10324
- msgid "Fullwidth Button"
10325
- msgstr ""
10326
-
10327
- #: widgets/woo-product-carousel/woo-product-carousel.php:1530
10328
- #: widgets/woo-product-list/woo-product-list.php:1864
10329
- msgid "Fullwidth Badge"
10330
- msgstr ""
10331
-
10332
- #: widgets/woo-product-carousel/woo-product-carousel.php:1626
10333
- #: widgets/woo-product-list/woo-product-list.php:613
10334
- #: widgets/woo-product-list/woo-product-list.php:745
10335
- #: widgets/woo-product-list/woo-product-list.php:1960
10336
- msgid "Text Typography"
10337
- msgstr ""
10338
-
10339
- #: widgets/woo-product-carousel/woo-product-carousel.php:1739
10340
- msgid "Add to Cart Button"
10341
- msgstr ""
10342
-
10343
- #: widgets/woo-product-carousel/woo-product-carousel.php:1825
10344
- msgid "Overlay Animation"
10345
- msgstr ""
10346
-
10347
- #: widgets/woo-product-carousel/woo-product-carousel.php:1921
10348
- msgid "Previous"
10349
- msgstr ""
10350
-
10351
- #: widgets/woo-product-carousel/woo-product-carousel.php:1972
10352
- msgid "Arrows Size"
10353
- msgstr ""
10354
-
10355
- #: widgets/woo-product-carousel/woo-product-carousel.php:2007
10356
- msgid "Hover Background Color"
10357
- msgstr ""
10358
-
10359
- #: widgets/woo-product-carousel/woo-product-carousel.php:2021
10360
- msgid "Space"
10361
- msgstr ""
10362
-
10363
- #: widgets/woo-product-carousel/woo-product-carousel.php:2110
10364
- msgid "Arrows Color"
10365
- msgstr ""
10366
-
10367
- #: widgets/woo-product-carousel/woo-product-carousel.php:2134
10368
- msgid "Arrows Hover Color"
10369
- msgstr ""
10370
-
10371
- #: widgets/woo-product-carousel/woo-product-carousel.php:2152
10372
- msgid "Horizontal Offset"
10373
- msgstr ""
10374
-
10375
- #: widgets/woo-product-carousel/woo-product-carousel.php:2176
10376
- msgid "Vertical Offset"
10377
- msgstr ""
10378
-
10379
- #: widgets/woo-product-carousel/woo-product-carousel.php:2212
10380
- msgid "Dots Size"
10381
- msgstr ""
10382
-
10383
- #: widgets/woo-product-carousel/woo-product-carousel.php:2233
10384
- msgid "Dots Space"
10385
- msgstr ""
10386
-
10387
- #: widgets/woo-product-carousel/woo-product-carousel.php:2338
10388
- #: widgets/woo-product-carousel/woo-product-carousel.php:2362
10389
- msgid "Dots Color"
10390
- msgstr ""
10391
-
10392
- #: widgets/woo-product-carousel/woo-product-carousel.php:2386
10393
- msgid "Active Dots Color"
10394
- msgstr ""
10395
-
10396
- #: widgets/woo-product-carousel/woo-product-carousel.php:2698
10397
- #: widgets/woo-product-list/woo-product-list.php:1684
10398
- msgid "View Cart Button"
10399
- msgstr ""
10400
-
10401
- #: widgets/woo-product-carousel/woo-product-carousel.php:3129
10402
- msgid "Oppps!! There is no product"
10403
- msgstr ""
10404
-
10405
- #: widgets/woo-product-list/woo-product-list-handler.php:11
10406
- msgid "Woo Product List"
10407
- msgstr ""
10408
-
10409
- #: widgets/woo-product-list/woo-product-list.php:228
10410
- msgid "Row Gap"
10411
- msgstr ""
10412
-
10413
- #: widgets/woo-product-list/woo-product-list.php:405
10414
- msgid "Last Child"
10415
- msgstr ""
10416
-
10417
- #: widgets/woo-product-list/woo-product-list.php:414
10418
- msgid "Item Padding Last Child"
10419
- msgstr ""
10420
-
10421
- #: widgets/woo-product-list/woo-product-list.php:426
10422
- msgid "Item Margin Last Child"
10423
- msgstr ""
10424
-
10425
- #: widgets/woo-product-list/woo-product-list.php:439
10426
- msgid "Item Border Last Child"
10427
- msgstr ""
10428
-
10429
- #: widgets/woo-product-list/woo-product-list.php:512
10430
- msgid "Search Field"
10431
- msgstr ""
10432
-
10433
- #: widgets/woo-product-list/woo-product-list.php:652
10434
- msgid "Select Field"
10435
- msgstr ""
10436
-
10437
- #: widgets/woo-product-list/woo-product-list.php:2129
10438
- msgid "Arrow Size"
10439
- msgstr ""
10440
-
10441
- #: widgets/woo-product-list/woo-product-list.php:2735
10442
- msgid "Oops! No products were found."
10443
- msgstr ""
10444
-
10445
- #: widgets/wp-forms/wp-forms-handler.php:11
10446
- msgid "Wp Forms"
10447
- msgstr ""
10448
-
10449
- #: widgets/wp-forms/wp-forms.php:38
10450
- msgid "wpForm"
10451
- msgstr ""
10452
-
10453
- #. Plugin URI of the plugin/theme
10454
- msgid "https://products.wpmet.com/elementskit"
10455
- msgstr ""
10456
-
10457
- #. Description of the plugin/theme
10458
- msgid ""
10459
- "The most advanced addons for Elementor with tons of widgets, Header builder, "
10460
- "Footer builder, Mega menu builder, layout pack and powerful custom controls."
10461
- msgstr ""
10462
-
10463
- #. Author of the plugin/theme
10464
- msgid "Wpmet"
10465
- msgstr ""
10466
-
10467
- #. Author URI of the plugin/theme
10468
- msgid "https://wpmet.com/"
10469
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
libs/banner/banner.php CHANGED
@@ -1,225 +1,225 @@
1
- <?php
2
- namespace Wpmet\Libs;
3
-
4
- defined( 'ABSPATH' ) || exit;
5
-
6
- if(!class_exists('\Wpmet\Libs\Banner')):
7
-
8
- class Banner {
9
-
10
- protected $script_version = '2.0.0';
11
-
12
- protected $key = 'wpmet_banner';
13
- protected $data;
14
- protected $last_check;
15
- protected $check_interval = (3600 * 6);
16
-
17
- protected $plugin_screens;
18
-
19
- protected $text_domain;
20
- protected $filter_string;
21
- protected $filter_array = [];
22
- protected $api_url;
23
-
24
-
25
- public function get_version(){
26
- return $this->script_version;
27
- }
28
-
29
- public function get_script_location(){
30
- return __FILE__;
31
- }
32
-
33
- public function call(){
34
- add_action( 'admin_head', [$this, 'show_banner'] );
35
- }
36
-
37
- public function show_banner(){
38
- $this->get_banner();
39
-
40
- if(!empty($this->data->error)) {
41
- return;
42
- }
43
-
44
- if(empty($this->data)) {
45
- return;
46
- }
47
-
48
- foreach($this->data as $banner) {
49
-
50
- if($banner->type != 'banner') {
51
- continue;
52
- }
53
-
54
- if(!empty($this->filter_array) && $this->in_blacklist($banner, $this->filter_array)) {
55
- continue;
56
- }
57
-
58
- if($banner->start <= time() && time() <= $banner->end) {
59
- $screen = get_current_screen();
60
- if($this->is_correct_screen_to_show($banner->screen, $screen->id) && class_exists('\Oxaim\Libs\Notice')) {
61
-
62
- $inline_css = '';
63
- $banner_unique_id = ((isset($banner->data->unique_key) && $banner->data->unique_key != '') ? $banner->data->unique_key : $banner->id );
64
-
65
- if(!empty($banner->data->style_css)) {
66
- $inline_css =' style="'.$banner->data->style_css.'"';
67
- }
68
-
69
- $contents = '<a target="_blank" '.$inline_css.' class="wpmet-jhanda-href" href="'.$banner->data->banner_link.'"><img style="display: block;margin: 0 auto;" src="'.$banner->data->banner_image.'" /></a>';
70
-
71
- \Oxaim\Libs\Notice::instance('wpmet-jhanda', $banner_unique_id)
72
- ->set_dismiss('global', (3600 * 24 * 15))
73
- ->set_gutter(false)
74
- ->set_html($contents)
75
- ->call();
76
- }
77
- }
78
- }
79
- }
80
-
81
-
82
- private function in_whitelist($conf, $list) {
83
-
84
- $match = $conf->data->whitelist;
85
-
86
- if(empty($match)) {
87
- return true;
88
- };
89
-
90
- $match_arr = explode(',', $match);
91
-
92
- foreach($list as $word) {
93
- if(in_array($word, $match_arr)) {
94
- return true;
95
- }
96
- }
97
-
98
- return false;
99
- }
100
-
101
-
102
- private function in_blacklist($conf, $list) {
103
-
104
- $match = $conf->data->blacklist;
105
-
106
- if(empty($match)) {
107
- return false;
108
- };
109
-
110
- $match_arr = explode(',', $match);
111
-
112
- foreach($match_arr as $idx => $item) {
113
-
114
- $match_arr[$idx] = trim($item);
115
- }
116
-
117
- foreach($list as $word) {
118
- if(in_array($word, $match_arr)) {
119
- return true;
120
- }
121
- }
122
-
123
- return false;
124
- }
125
-
126
-
127
- public function is_test($is_test = false) {
128
- if($is_test === true){
129
- $this->check_interval = 1;
130
- }
131
-
132
- return $this;
133
- }
134
-
135
-
136
- public function set_text_domain($text_domain) {
137
- $this->text_domain = $text_domain;
138
-
139
- return $this;
140
- }
141
-
142
-
143
- public function set_filter($filter_string) {
144
- $this->filter_string = $filter_string;
145
- if(!empty($filter_string)) {
146
-
147
- $filter = explode(',', $this->filter_string);
148
-
149
- foreach ($filter as $id => $item) {
150
- $this->filter_array[$id] = trim($item);
151
- }
152
- }
153
-
154
- return $this;
155
- }
156
-
157
-
158
- public function set_api_url($url) {
159
- $this->api_url = $url;
160
-
161
- return $this;
162
- }
163
-
164
- public function set_plugin_screens($screen) {
165
- $this->plugin_screens[] = $screen;
166
-
167
- return $this;
168
- }
169
-
170
-
171
- private function get_banner() {
172
- $this->data = get_option($this->text_domain . '__banner_data');
173
- $this->data = $this->data == '' ? [] : $this->data;
174
-
175
- $this->last_check = get_option($this->text_domain . '__banner_last_check');
176
- $this->last_check = $this->last_check == '' ? 0 : $this->last_check;
177
-
178
- if(($this->check_interval + $this->last_check) < time()){
179
- $response = wp_remote_get( $this->api_url . '/cache/'.$this->text_domain.'.json?nocache='.time(),
180
- [
181
- 'timeout' => 10,
182
- 'httpversion' => '1.1',
183
- ]
184
- );
185
- // print_r($response['body']); exit;
186
- if(!is_wp_error($response) && isset($response['body']) && $response['body'] != ''){
187
-
188
- $response = json_decode($response['body']);
189
-
190
- if(!empty($response)) {
191
- $this->data = $response;
192
- update_option($this->text_domain . '__banner_last_check', time());
193
- update_option($this->text_domain . '__banner_data', $this->data);
194
- }
195
-
196
- return;
197
- }
198
- }
199
- }
200
-
201
-
202
- public function is_correct_screen_to_show($b_screen, $screen_id) {
203
-
204
- if(in_array($b_screen, [$screen_id, 'all_page'])) {
205
- return true;
206
- }
207
-
208
-
209
- if($b_screen == 'plugin_page') {
210
- return in_array($screen_id, $this->plugin_screens);
211
- }
212
-
213
- return false;
214
- }
215
-
216
- private static $instance;
217
-
218
- public static function instance($text_domain = '') {
219
-
220
- self::$instance = new static();
221
- return self::$instance->set_text_domain($text_domain);
222
- }
223
- }
224
-
225
- endif;
1
+ <?php
2
+ namespace Wpmet\Libs;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+ if(!class_exists('\Wpmet\Libs\Banner')):
7
+
8
+ class Banner {
9
+
10
+ protected $script_version = '2.0.0';
11
+
12
+ protected $key = 'wpmet_banner';
13
+ protected $data;
14
+ protected $last_check;
15
+ protected $check_interval = (3600 * 6);
16
+
17
+ protected $plugin_screens;
18
+
19
+ protected $text_domain;
20
+ protected $filter_string;
21
+ protected $filter_array = [];
22
+ protected $api_url;
23
+
24
+
25
+ public function get_version(){
26
+ return $this->script_version;
27
+ }
28
+
29
+ public function get_script_location(){
30
+ return __FILE__;
31
+ }
32
+
33
+ public function call(){
34
+ add_action( 'admin_head', [$this, 'show_banner'] );
35
+ }
36
+
37
+ public function show_banner(){
38
+ $this->get_banner();
39
+
40
+ if(!empty($this->data->error)) {
41
+ return;
42
+ }
43
+
44
+ if(empty($this->data)) {
45
+ return;
46
+ }
47
+
48
+ foreach($this->data as $banner) {
49
+
50
+ if($banner->type != 'banner') {
51
+ continue;
52
+ }
53
+
54
+ if(!empty($this->filter_array) && $this->in_blacklist($banner, $this->filter_array)) {
55
+ continue;
56
+ }
57
+
58
+ if($banner->start <= time() && time() <= $banner->end) {
59
+ $screen = get_current_screen();
60
+ if($this->is_correct_screen_to_show($banner->screen, $screen->id) && class_exists('\Oxaim\Libs\Notice')) {
61
+
62
+ $inline_css = '';
63
+ $banner_unique_id = ((isset($banner->data->unique_key) && $banner->data->unique_key != '') ? $banner->data->unique_key : $banner->id );
64
+
65
+ if(!empty($banner->data->style_css)) {
66
+ $inline_css =' style="'.$banner->data->style_css.'"';
67
+ }
68
+
69
+ $contents = '<a target="_blank" '.$inline_css.' class="wpmet-jhanda-href" href="'.$banner->data->banner_link.'"><img style="display: block;margin: 0 auto;" src="'.$banner->data->banner_image.'" /></a>';
70
+
71
+ \Oxaim\Libs\Notice::instance('wpmet-jhanda', $banner_unique_id)
72
+ ->set_dismiss('global', (3600 * 24 * 15))
73
+ ->set_gutter(false)
74
+ ->set_html($contents)
75
+ ->call();
76
+ }
77
+ }
78
+ }
79
+ }
80
+
81
+
82
+ private function in_whitelist($conf, $list) {
83
+
84
+ $match = $conf->data->whitelist;
85
+
86
+ if(empty($match)) {
87
+ return true;
88
+ };
89
+
90
+ $match_arr = explode(',', $match);
91
+
92
+ foreach($list as $word) {
93
+ if(in_array($word, $match_arr)) {
94
+ return true;
95
+ }
96
+ }
97
+
98
+ return false;
99
+ }
100
+
101
+
102
+ private function in_blacklist($conf, $list) {
103
+
104
+ $match = $conf->data->blacklist;
105
+
106
+ if(empty($match)) {
107
+ return false;
108
+ };
109
+
110
+ $match_arr = explode(',', $match);
111
+
112
+ foreach($match_arr as $idx => $item) {
113
+
114
+ $match_arr[$idx] = trim($item);
115
+ }
116
+
117
+ foreach($list as $word) {
118
+ if(in_array($word, $match_arr)) {
119
+ return true;
120
+ }
121
+ }
122
+
123
+ return false;
124
+ }
125
+
126
+
127
+ public function is_test($is_test = false) {
128
+ if($is_test === true){
129
+ $this->check_interval = 1;
130
+ }
131
+
132
+ return $this;
133
+ }
134
+
135
+
136
+ public function set_text_domain($text_domain) {
137
+ $this->text_domain = $text_domain;
138
+
139
+ return $this;
140
+ }
141
+
142
+
143
+ public function set_filter($filter_string) {
144
+ $this->filter_string = $filter_string;
145
+ if(!empty($filter_string)) {
146
+
147
+ $filter = explode(',', $this->filter_string);
148
+
149
+ foreach ($filter as $id => $item) {
150
+ $this->filter_array[$id] = trim($item);
151
+ }
152
+ }
153
+
154
+ return $this;
155
+ }
156
+
157
+
158
+ public function set_api_url($url) {
159
+ $this->api_url = $url;
160
+
161
+ return $this;
162
+ }
163
+
164
+ public function set_plugin_screens($screen) {
165
+ $this->plugin_screens[] = $screen;
166
+
167
+ return $this;
168
+ }
169
+
170
+
171
+ private function get_banner() {
172
+ $this->data = get_option($this->text_domain . '__banner_data');
173
+ $this->data = $this->data == '' ? [] : $this->data;
174
+
175
+ $this->last_check = get_option($this->text_domain . '__banner_last_check');
176
+ $this->last_check = $this->last_check == '' ? 0 : $this->last_check;
177
+
178
+ if(($this->check_interval + $this->last_check) < time()){
179
+ $response = wp_remote_get( $this->api_url . '/cache/'.$this->text_domain.'.json?nocache='.time(),
180
+ [
181
+ 'timeout' => 10,
182
+ 'httpversion' => '1.1',
183
+ ]
184
+ );
185
+ // print_r($response['body']); exit;
186
+ if(!is_wp_error($response) && isset($response['body']) && $response['body'] != ''){
187
+
188
+ $response = json_decode($response['body']);
189
+
190
+ if(!empty($response)) {
191
+ $this->data = $response;
192
+ update_option($this->text_domain . '__banner_last_check', time());
193
+ update_option($this->text_domain . '__banner_data', $this->data);
194
+ }
195
+
196
+ return;
197
+ }
198
+ }
199
+ }
200
+
201
+
202
+ public function is_correct_screen_to_show($b_screen, $screen_id) {
203
+
204
+ if(in_array($b_screen, [$screen_id, 'all_page'])) {
205
+ return true;
206
+ }
207
+
208
+
209
+ if($b_screen == 'plugin_page') {
210
+ return in_array($screen_id, $this->plugin_screens);
211
+ }
212
+
213
+ return false;
214
+ }
215
+
216
+ private static $instance;
217
+
218
+ public static function instance($text_domain = '') {
219
+
220
+ self::$instance = new static();
221
+ return self::$instance->set_text_domain($text_domain);
222
+ }
223
+ }
224
+
225
+ endif;
libs/framework/assets/images/ekit_icon.svg CHANGED
@@ -1,8 +1,8 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="300.08" height="278.008" viewBox="0 0 300.08 278.008">
2
- <g id="ekit_icon-2" transform="translate(0 0.005)">
3
- <path id="Path_1" data-name="Path 1" d="M249.9,4.6A12.955,12.955,0,0,1,259.4,0a13.266,13.266,0,0,1,9.8,3.9l25,25.7a12.909,12.909,0,0,1,.6,17.4l-65.2,77.4a20.565,20.565,0,0,0-.1,26.5l67.6,81.2a13.068,13.068,0,0,1-.9,17.6l-24.4,24.1c-2.3,2.2-6.7,4.3-9.8,4.2h-.3a12.786,12.786,0,0,1-9.3-4.5L164,166.8a45.548,45.548,0,0,1,0-58Z" fill="#fff"/>
4
- <path id="Path_2" data-name="Path 2" d="M155.3,270.9H10.4A10.392,10.392,0,0,1,0,260.5v-37a10.392,10.392,0,0,1,10.4-10.4H155.3a10.392,10.392,0,0,1,10.4,10.4v37A10.328,10.328,0,0,1,155.3,270.9Z" fill="#fff"/>
5
- <path id="Path_3" data-name="Path 3" d="M155.3,64.9H10.4A10.478,10.478,0,0,1,0,54.4v-37A10.457,10.457,0,0,1,10.4,7H155.3a10.392,10.392,0,0,1,10.4,10.4v37A10.351,10.351,0,0,1,155.3,64.9Z" fill="#fff"/>
6
- <path id="Path_4" data-name="Path 4" d="M98.1,167.9H10.4A10.392,10.392,0,0,1,0,157.5v-37a10.392,10.392,0,0,1,10.4-10.4H98.1a10.392,10.392,0,0,1,10.4,10.4v37A10.329,10.329,0,0,1,98.1,167.9Z" fill="#fff"/>
7
- </g>
8
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="300.08" height="278.008" viewBox="0 0 300.08 278.008">
2
+ <g id="ekit_icon-2" transform="translate(0 0.005)">
3
+ <path id="Path_1" data-name="Path 1" d="M249.9,4.6A12.955,12.955,0,0,1,259.4,0a13.266,13.266,0,0,1,9.8,3.9l25,25.7a12.909,12.909,0,0,1,.6,17.4l-65.2,77.4a20.565,20.565,0,0,0-.1,26.5l67.6,81.2a13.068,13.068,0,0,1-.9,17.6l-24.4,24.1c-2.3,2.2-6.7,4.3-9.8,4.2h-.3a12.786,12.786,0,0,1-9.3-4.5L164,166.8a45.548,45.548,0,0,1,0-58Z" fill="#fff"/>
4
+ <path id="Path_2" data-name="Path 2" d="M155.3,270.9H10.4A10.392,10.392,0,0,1,0,260.5v-37a10.392,10.392,0,0,1,10.4-10.4H155.3a10.392,10.392,0,0,1,10.4,10.4v37A10.328,10.328,0,0,1,155.3,270.9Z" fill="#fff"/>
5
+ <path id="Path_3" data-name="Path 3" d="M155.3,64.9H10.4A10.478,10.478,0,0,1,0,54.4v-37A10.457,10.457,0,0,1,10.4,7H155.3a10.392,10.392,0,0,1,10.4,10.4v37A10.351,10.351,0,0,1,155.3,64.9Z" fill="#fff"/>
6
+ <path id="Path_4" data-name="Path 4" d="M98.1,167.9H10.4A10.392,10.392,0,0,1,0,157.5v-37a10.392,10.392,0,0,1,10.4-10.4H98.1a10.392,10.392,0,0,1,10.4,10.4v37A10.329,10.329,0,0,1,98.1,167.9Z" fill="#fff"/>
7
+ </g>
8
+ </svg>
libs/framework/assets/images/favicon.svg CHANGED
@@ -1,13 +1,13 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 23.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
- viewBox="0 0 18 16.7" enable-background="new 0 0 18 16.7" xml:space="preserve">
5
- <g>
6
- <path fill="#FFFFFF" d="M15,0.3C15.1,0.1,15.3,0,15.6,0c0.2,0,0.4,0.1,0.6,0.2l1.5,1.5c0.3,0.3,0.3,0.7,0,1l-3.9,4.6
7
- c-0.4,0.5-0.4,1.1,0,1.6l4.1,4.9c0.3,0.3,0.2,0.8,0,1.1l-1.5,1.4c-0.1,0.1-0.4,0.3-0.6,0.3h0c-0.2,0-0.4-0.1-0.6-0.3L9.8,10
8
- C9,9,9,7.5,9.8,6.5C9.8,6.5,15,0.3,15,0.3z M9.3,16.2H0.6C0.3,16.2,0,16,0,15.6v-2.2c0-0.3,0.3-0.6,0.6-0.6h8.7
9
- c0.3,0,0.6,0.3,0.6,0.6v2.2C9.9,16,9.7,16.2,9.3,16.2z M9.3,3.9H0.6C0.3,3.9,0,3.6,0,3.3V1c0-0.3,0.3-0.6,0.6-0.6h8.7
10
- c0.3,0,0.6,0.3,0.6,0.6v2.2C9.9,3.6,9.7,3.9,9.3,3.9z M5.9,10.1H0.6C0.3,10.1,0,9.8,0,9.4V7.2c0-0.3,0.3-0.6,0.6-0.6h5.3
11
- c0.3,0,0.6,0.3,0.6,0.6v2.2C6.5,9.8,6.2,10.1,5.9,10.1z"/>
12
- </g>
13
- </svg>
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 23.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 18 16.7" enable-background="new 0 0 18 16.7" xml:space="preserve">
5
+ <g>
6
+ <path fill="#FFFFFF" d="M15,0.3C15.1,0.1,15.3,0,15.6,0c0.2,0,0.4,0.1,0.6,0.2l1.5,1.5c0.3,0.3,0.3,0.7,0,1l-3.9,4.6
7
+ c-0.4,0.5-0.4,1.1,0,1.6l4.1,4.9c0.3,0.3,0.2,0.8,0,1.1l-1.5,1.4c-0.1,0.1-0.4,0.3-0.6,0.3h0c-0.2,0-0.4-0.1-0.6-0.3L9.8,10
8
+ C9,9,9,7.5,9.8,6.5C9.8,6.5,15,0.3,15,0.3z M9.3,16.2H0.6C0.3,16.2,0,16,0,15.6v-2.2c0-0.3,0.3-0.6,0.6-0.6h8.7
9
+ c0.3,0,0.6,0.3,0.6,0.6v2.2C9.9,16,9.7,16.2,9.3,16.2z M9.3,3.9H0.6C0.3,3.9,0,3.6,0,3.3V1c0-0.3,0.3-0.6,0.6-0.6h8.7
10
+ c0.3,0,0.6,0.3,0.6,0.6v2.2C9.9,3.6,9.7,3.9,9.3,3.9z M5.9,10.1H0.6C0.3,10.1,0,9.8,0,9.4V7.2c0-0.3,0.3-0.6,0.6-0.6h5.3
11
+ c0.3,0,0.6,0.3,0.6,0.6v2.2C6.5,9.8,6.2,10.1,5.9,10.1z"/>
12
+ </g>
13
+ </svg>
libs/framework/attr.php CHANGED
@@ -1,81 +1,81 @@
1
- <?php
2
- namespace ElementsKit_Lite\Libs\Framework;
3
- use ElementsKit_Lite\Libs\Framework\Classes\Utils;
4
-
5
- defined( 'ABSPATH' ) || exit;
6
-
7
- class Attr{
8
-
9
- use \ElementsKit_Lite\Traits\Singleton;
10
-
11
- public $utils;
12
-
13
- public static function get_dir(){
14
- return \ElementsKit_Lite::lib_dir() . 'framework/';
15
- }
16
-
17
- public static function get_url(){
18
- return \ElementsKit_Lite::lib_url() . 'framework/';
19
- }
20
-
21
- public static function key(){
22
- return 'elementskit';
23
- }
24
-
25
- public function __construct() {
26
- $this->utils = Classes\Utils::instance();
27
- new Classes\Ajax;
28
-
29
-
30
-
31
- // register admin menus
32
- add_action('admin_menu', [$this, 'register_settings_menus']);
33
- // add_action('admin_menu', [$this, 'register_support_menu'], 999);
34
-
35
- // register js/ css
36
- add_action( 'admin_enqueue_scripts', [$this, 'enqueue_scripts'] );
37
-
38
- // whitelist styles
39
- add_filter('mailpoet_conflict_resolver_whitelist_style', [$this, 'whitelisted_styles']);
40
-
41
- add_action('elementskit-lite/pro_awareness/before_grid_contents', [$this, 'user_consent_for_banner']);
42
- }
43
-
44
- public function whitelisted_styles($styles) {
45
- $styles[] = 'admin-global.css';
46
- return $styles;
47
- }
48
-
49
- public function include_files(){
50
-
51
- }
52
-
53
- public function enqueue_scripts(){
54
- wp_register_style( 'elementskit-admin-global', \ElementsKit_Lite::lib_url() . 'framework/assets/css/admin-global.css', \ElementsKit_Lite::version() );
55
- wp_enqueue_style( 'elementskit-admin-global' );
56
- }
57
-
58
- public function register_settings_menus(){
59
-
60
- // dashboard, main menu
61
- add_menu_page(
62
- esc_html__( 'ElementsKit Settings', 'elementskit-lite' ),
63
- esc_html__( 'ElementsKit', 'elementskit-lite' ),
64
- 'manage_options',
65
- self::key(),
66
- [$this, 'register_settings_contents__settings'],
67
- self::get_url() . 'assets/images/ekit_icon.svg',
68
- '58.6'
69
- );
70
- }
71
-
72
-
73
- public function register_settings_contents__settings(){
74
- include self::get_dir() . 'views/settings-init.php';
75
- }
76
-
77
- public function user_consent_for_banner(){
78
- include self::get_dir() . 'views/user-consent-for-banner.php';
79
- }
80
-
81
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Libs\Framework;
3
+ use ElementsKit_Lite\Libs\Framework\Classes\Utils;
4
+
5
+ defined( 'ABSPATH' ) || exit;
6
+
7
+ class Attr{
8
+
9
+ use \ElementsKit_Lite\Traits\Singleton;
10
+
11
+ public $utils;
12
+
13
+ public static function get_dir(){
14
+ return \ElementsKit_Lite::lib_dir() . 'framework/';
15
+ }
16
+
17
+ public static function get_url(){
18
+ return \ElementsKit_Lite::lib_url() . 'framework/';
19
+ }
20
+
21
+ public static function key(){
22
+ return 'elementskit';
23
+ }
24
+
25
+ public function __construct() {
26
+ $this->utils = Classes\Utils::instance();
27
+ new Classes\Ajax;
28
+
29
+
30
+
31
+ // register admin menus
32
+ add_action('admin_menu', [$this, 'register_settings_menus']);
33
+ // add_action('admin_menu', [$this, 'register_support_menu'], 999);
34
+
35
+ // register js/ css
36
+ add_action( 'admin_enqueue_scripts', [$this, 'enqueue_scripts'] );
37
+
38
+ // whitelist styles
39
+ add_filter('mailpoet_conflict_resolver_whitelist_style', [$this, 'whitelisted_styles']);
40
+
41
+ add_action('elementskit-lite/pro_awareness/before_grid_contents', [$this, 'user_consent_for_banner']);
42
+ }
43
+
44
+ public function whitelisted_styles($styles) {
45
+ $styles[] = 'admin-global.css';
46
+ return $styles;
47
+ }
48
+
49
+ public function include_files(){
50
+
51
+ }
52
+
53
+ public function enqueue_scripts(){
54
+ wp_register_style( 'elementskit-admin-global', \ElementsKit_Lite::lib_url() . 'framework/assets/css/admin-global.css', \ElementsKit_Lite::version() );
55
+ wp_enqueue_style( 'elementskit-admin-global' );
56
+ }
57
+
58
+ public function register_settings_menus(){
59
+
60
+ // dashboard, main menu
61
+ add_menu_page(
62
+ esc_html__( 'ElementsKit Settings', 'elementskit-lite' ),
63
+ esc_html__( 'ElementsKit', 'elementskit-lite' ),
64
+ 'manage_options',
65
+ self::key(),
66
+ [$this, 'register_settings_contents__settings'],
67
+ self::get_url() . 'assets/images/ekit_icon.svg',
68
+ '58.6'
69
+ );
70
+ }
71
+
72
+
73
+ public function register_settings_contents__settings(){
74
+ include self::get_dir() . 'views/settings-init.php';
75
+ }
76
+
77
+ public function user_consent_for_banner(){
78
+ include self::get_dir() . 'views/user-consent-for-banner.php';
79
+ }
80
+
81
+ }
libs/framework/classes/ajax.php CHANGED
@@ -1,41 +1,41 @@
1
- <?php
2
- namespace ElementsKit_Lite\Libs\Framework\Classes;
3
-
4
- defined( 'ABSPATH' ) || exit;
5
-
6
- class Ajax{
7
- private $utils;
8
-
9
- public function __construct() {
10
- add_action( 'wp_ajax_ekit_admin_action', [$this, 'elementskit_admin_action'] );
11
- $this->utils = Utils::instance();
12
- }
13
-
14
- public function elementskit_admin_action() {
15
-
16
- if(!current_user_can('manage_options')){
17
- return;
18
- }
19
-
20
-
21
- $this->utils->save_option('widget_list', !isset($_POST['widget_list']) ? [] : $_POST['widget_list']);
22
- $this->utils->save_option('module_list', !isset($_POST['module_list']) ? [] : $_POST['module_list']);
23
- $this->utils->save_option('user_data', $_POST['user_data']);
24
- $this->utils->save_option('settings', $_POST['settings']);
25
-
26
- print_r($_POST['settings']);
27
-
28
- do_action('elementskit/admin/after_save');
29
-
30
- wp_die(); // this is required to terminate immediately and return a proper response
31
- }
32
-
33
- public function return_json($data){
34
- if(is_array($data) || is_object($data)){
35
- return json_encode($data);
36
- }else{
37
- return $data;
38
- }
39
- }
40
-
41
  }
1
+ <?php
2
+ namespace ElementsKit_Lite\Libs\Framework\Classes;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+ class Ajax{
7
+ private $utils;
8
+
9
+ public function __construct() {
10
+ add_action( 'wp_ajax_ekit_admin_action', [$this, 'elementskit_admin_action'] );
11
+ $this->utils = Utils::instance();
12
+ }
13
+
14
+ public function elementskit_admin_action() {
15
+
16
+ if(!current_user_can('manage_options')){
17
+ return;
18
+ }
19
+
20
+
21
+ $this->utils->save_option('widget_list', !isset($_POST['widget_list']) ? [] : $_POST['widget_list']);
22
+ $this->utils->save_option('module_list', !isset($_POST['module_list']) ? [] : $_POST['module_list']);
23
+ $this->utils->save_option('user_data', $_POST['user_data']);
24
+ $this->utils->save_option('settings', $_POST['settings']);
25
+
26
+ print_r($_POST['settings']);
27
+
28
+ do_action('elementskit/admin/after_save');
29
+
30
+ wp_die(); // this is required to terminate immediately and return a proper response
31
+ }
32
+
33
+ public function return_json($data){
34
+ if(is_array($data) || is_object($data)){
35
+ return json_encode($data);
36
+ }else{
37
+ return $data;
38
+ }
39
+ }
40
+
41
  }
libs/framework/classes/utils.php CHANGED
@@ -1,82 +1,82 @@
1
- <?php
2
- namespace ElementsKit_Lite\Libs\Framework\Classes;
3
-
4
- defined( 'ABSPATH' ) || exit;
5
-
6
- class Utils{
7
-
8
- public static $instance = null;
9
- private static $key = 'elementskit_options';
10
-
11
- public static function get_dir(){
12
- return \ElementsKit_Lite::lib_dir() . 'framework/';
13
- }
14
-
15
- public static function get_url(){
16
- return \ElementsKit_Lite::lib_url() . 'framework/';
17
- }
18
-
19
- public function get_option($key, $default = ''){
20
- $data_all = get_option(self::$key);
21
- return (isset($data_all[$key]) && $data_all[$key] != '') ? $data_all[$key] : $default;
22
- }
23
-
24
- public function get_settings($key, $default = ''){
25
- $data_all = $this->get_option('settings', []);
26
- return (isset($data_all[$key]) && $data_all[$key] != '') ? $data_all[$key] : $default;
27
- }
28
-
29
- public function save_option($key, $value = ''){
30
- $data_all = get_option(self::$key);
31
- $data_all[$key] = $value;
32
- update_option('elementskit_options', $data_all);
33
- }
34
-
35
- /*
36
- -> this method used to check weather the widget active/deactive
37
- -> this method takes two paramitter 1. widget name 2. Active/deactive hook
38
- */
39
- public function is_widget_active_class( $widget_name, $pro_active ){
40
- if($pro_active){
41
- return 'label-'.$widget_name.' attr-panel-heading';
42
- }else{
43
- return 'label-'.$widget_name.' attr-panel-heading pro-disabled';
44
- }
45
- }
46
-
47
- public function input($input_options){
48
- $defaults = [
49
- 'type' => null,
50
- 'name' => '',
51
- 'value' => '',
52
- 'class' => '',
53
- 'label' => '',
54
- 'info' => '',
55
- 'disabled' => '',
56
- 'options' => [],
57
- ];
58
- $input_options = array_merge($defaults, $input_options);
59
-
60
- if(file_exists(self::get_dir() . 'controls/settings/' . $input_options['type'] . '.php')){
61
- extract($input_options);
62
- include self::get_dir() . 'controls/settings/' . $input_options['type'] . '.php';
63
- }
64
- }
65
-
66
- public static function strify($str){
67
- return strtolower(preg_replace("/[^A-Za-z0-9]/", "__", $str));
68
- }
69
-
70
-
71
-
72
-
73
- public static function instance() {
74
- if ( is_null( self::$instance ) ) {
75
-
76
- // Fire the class instance
77
- self::$instance = new self();
78
- }
79
-
80
- return self::$instance;
81
- }
82
  }
1
+ <?php
2
+ namespace ElementsKit_Lite\Libs\Framework\Classes;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+ class Utils{
7
+
8
+ public static $instance = null;
9
+ private static $key = 'elementskit_options';
10
+
11
+ public static function get_dir(){
12
+ return \ElementsKit_Lite::lib_dir() . 'framework/';
13
+ }
14
+
15
+ public static function get_url(){
16
+ return \ElementsKit_Lite::lib_url() . 'framework/';
17
+ }
18
+
19
+ public function get_option($key, $default = ''){
20
+ $data_all = get_option(self::$key);
21
+ return (isset($data_all[$key]) && $data_all[$key] != '') ? $data_all[$key] : $default;
22
+ }
23
+
24
+ public function get_settings($key, $default = ''){
25
+ $data_all = $this->get_option('settings', []);
26
+ return (isset($data_all[$key]) && $data_all[$key] != '') ? $data_all[$key] : $default;
27
+ }
28
+
29
+ public function save_option($key, $value = ''){
30
+ $data_all = get_option(self::$key);
31
+ $data_all[$key] = $value;
32
+ update_option('elementskit_options', $data_all);
33
+ }
34
+
35
+ /*
36
+ -> this method used to check weather the widget active/deactive
37
+ -> this method takes two paramitter 1. widget name 2. Active/deactive hook
38
+ */
39
+ public function is_widget_active_class( $widget_name, $pro_active ){
40
+ if($pro_active){
41
+ return 'label-'.$widget_name.' attr-panel-heading';
42
+ }else{
43
+ return 'label-'.$widget_name.' attr-panel-heading pro-disabled';
44
+ }
45
+ }
46
+
47
+ public function input($input_options){
48
+ $defaults = [
49
+ 'type' => null,
50
+ 'name' => '',
51
+ 'value' => '',
52
+ 'class' => '',
53
+ 'label' => '',
54
+ 'info' => '',
55
+ 'disabled' => '',
56
+ 'options' => [],
57
+ ];
58
+ $input_options = array_merge($defaults, $input_options);
59
+
60
+ if(file_exists(self::get_dir() . 'controls/settings/' . $input_options['type'] . '.php')){
61
+ extract($input_options);
62
+ include self::get_dir() . 'controls/settings/' . $input_options['type'] . '.php';
63
+ }
64
+ }
65
+
66
+ public static function strify($str){
67
+ return strtolower(preg_replace("/[^A-Za-z0-9]/", "__", $str));
68
+ }
69
+
70
+
71
+
72
+
73
+ public static function instance() {
74
+ if ( is_null( self::$instance ) ) {
75
+
76
+ // Fire the class instance
77
+ self::$instance = new self();
78
+ }
79
+
80
+ return self::$instance;
81
+ }
82
  }
libs/framework/controls/settings/color.php CHANGED
@@ -1,14 +1,14 @@
1
- <div class="form-group ekit-admin-input-text ekit-admin-input-text-<?php echo esc_attr(self::strify($name)); ?>">
2
- <label for="ekit-admin-option-text<?php echo esc_attr(self::strify($name)); ?>"><?php echo esc_html($label); ?></label>
3
- <input
4
- type="color"
5
- class="attr-form-control"
6
- id="ekit-admin-option-text<?php echo esc_attr(self::strify($name)); ?>"
7
- aria-describedby="ekit-admin-option-text-help<?php echo esc_attr(self::strify($name)); ?>"
8
- placeholder="<?php echo esc_attr($placeholder); ?>"
9
- name="<?php echo esc_attr($name); ?>"
10
- value="<?php echo esc_attr($value); ?>"
11
- <?php echo esc_attr($disabled) ?>
12
- >
13
- <small id="ekit-admin-option-text-help<?php echo esc_attr(self::strify($name)); ?>" class="form-text text-muted"><?php echo esc_html($info); ?></small>
14
  </div>
1
+ <div class="form-group ekit-admin-input-text ekit-admin-input-text-<?php echo esc_attr(self::strify($name)); ?>">
2
+ <label for="ekit-admin-option-text<?php echo esc_attr(self::strify($name)); ?>"><?php echo esc_html($label); ?></label>
3
+ <input
4
+ type="color"
5
+ class="attr-form-control"
6
+ id="ekit-admin-option-text<?php echo esc_attr(self::strify($name)); ?>"
7
+ aria-describedby="ekit-admin-option-text-help<?php echo esc_attr(self::strify($name)); ?>"
8
+ placeholder="<?php echo esc_attr($placeholder); ?>"
9
+ name="<?php echo esc_attr($name); ?>"
10
+ value="<?php echo esc_attr($value); ?>"
11
+ <?php echo esc_attr($disabled) ?>
12
+ >
13
+ <small id="ekit-admin-option-text-help<?php echo esc_attr(self::strify($name)); ?>" class="form-text text-muted"><?php echo esc_html($info); ?></small>
14
  </div>
libs/framework/controls/settings/hidden.php CHANGED
@@ -1,5 +1,5 @@
1
- <input
2
- type="hidden"
3
- id="ekit-admin-option-hidden<?php echo esc_attr(self::strify($name)); ?>"
4
- name="<?php echo esc_attr($name); ?>"
5
- value="<?php echo esc_attr($value); ?>" />
1
+ <input
2
+ type="hidden"
3
+ id="ekit-admin-option-hidden<?php echo esc_attr(self::strify($name)); ?>"
4
+ name="<?php echo esc_attr($name); ?>"
5
+ value="<?php echo esc_attr($value); ?>" />
libs/framework/controls/settings/switch.php CHANGED
@@ -1,44 +1,44 @@
1
- <div class="attr-input attr-input-switch <?php echo esc_attr($class); ?>">
2
- <?php
3
- // note:
4
- // $options['large_img'] $options['icon'] $options['small_img'] self::strify($name) $label $value
5
- // $options['checked'] true / false
6
- $no_demo = [
7
- 'sticky-content',
8
- 'nav-menu',
9
- 'header-info'
10
- ];
11
- ?>
12
- <div class="ekit-admin-input-switch ekit-admin-card-shadow attr-card-body">
13
- <input <?php echo esc_attr($options['checked'] === true ? 'checked' : ''); ?>
14
- type="checkbox" value="<?php echo esc_attr($value); ?>"
15
- class="ekit-admin-control-input"
16
- name="<?php echo esc_attr($name); ?>"
17
- id="ekit-admin-switch__<?php echo esc_attr(self::strify($name) . $value); ?>"
18
-
19
- <?php
20
- if(isset($attr)){
21
- foreach($attr as $k => $v){
22
- echo "$k='$v'";
23
- }
24
- }
25
- ?>
26
- >
27
-
28
- <label class="ekit-admin-control-label" for="ekit-admin-switch__<?php echo esc_attr(self::strify($name) . $value); ?>">
29
- <?php echo esc_html($label); ?>
30
- <span class="ekit-admin-control-label-switch" data-active="ON" data-inactive="OFF"></span>
31
- </label>
32
-
33
-
34
- </div>
35
- <?php
36
- $slug = 'elementskit/';
37
- if( !in_array($value, $no_demo) ) :
38
- if($value === 'parallax'){
39
- $value = 'effects';
40
- }
41
- ?>
42
- <a target="_blank" href="https://wpmet.com/plugin/<?php echo esc_attr($slug) . esc_attr($value); ?>/?utm_source=elementskit_lite&utm_medium=inplugin_campaign&utm_campaign=widgets_modules_demo_link" class="ekit-admin-demo-tooltip"><i class="fa fa-laptop"></i><?php esc_html_e('View Demo', 'elementskit-lite'); ?></a>
43
- <?php endif; ?>
44
  </div>
1
+ <div class="attr-input attr-input-switch <?php echo esc_attr($class); ?>">
2
+ <?php
3
+ // note:
4
+ // $options['large_img'] $options['icon'] $options['small_img'] self::strify($name) $label $value
5
+ // $options['checked'] true / false
6
+ $no_demo = [
7
+ 'sticky-content',
8
+ 'nav-menu',
9
+ 'header-info'
10
+ ];
11
+ ?>
12
+ <div class="ekit-admin-input-switch ekit-admin-card-shadow attr-card-body">
13
+ <input <?php echo esc_attr($options['checked'] === true ? 'checked' : ''); ?>
14
+ type="checkbox" value="<?php echo esc_attr($value); ?>"
15
+ class="ekit-admin-control-input"
16
+ name="<?php echo esc_attr($name); ?>"
17
+ id="ekit-admin-switch__<?php echo esc_attr(self::strify($name) . $value); ?>"
18
+
19
+ <?php
20
+ if(isset($attr)){
21
+ foreach($attr as $k => $v){
22
+ echo "$k='$v'";
23
+ }
24
+ }
25
+ ?>
26
+ >
27
+
28
+ <label class="ekit-admin-control-label" for="ekit-admin-switch__<?php echo esc_attr(self::strify($name) . $value); ?>">
29
+ <?php echo esc_html($label); ?>
30
+ <span class="ekit-admin-control-label-switch" data-active="ON" data-inactive="OFF"></span>
31
+ </label>
32
+
33
+
34
+ </div>
35
+ <?php
36
+ $slug = 'elementskit/';
37
+ if( !in_array($value, $no_demo) ) :
38
+ if($value === 'parallax'){
39
+ $value = 'effects';
40
+ }
41
+ ?>
42
+ <a target="_blank" href="https://wpmet.com/plugin/<?php echo esc_attr($slug) . esc_attr($value); ?>/?utm_source=elementskit_lite&utm_medium=inplugin_campaign&utm_campaign=widgets_modules_demo_link" class="ekit-admin-demo-tooltip"><i class="fa fa-laptop"></i><?php esc_html_e('View Demo', 'elementskit-lite'); ?></a>
43
+ <?php endif; ?>
44
  </div>
libs/framework/controls/settings/text.php CHANGED
@@ -1,14 +1,14 @@
1
- <div class="form-group ekit-admin-input-text ekit-admin-input-text-<?php echo esc_attr(self::strify($name)); ?>">
2
- <label for="ekit-admin-option-text<?php echo esc_attr(self::strify($name)); ?>"><?php echo esc_html($label); ?></label>
3
- <input
4
- type="text"
5
- class="attr-form-control"
6
- id="ekit-admin-option-text<?php echo esc_attr(self::strify($name)); ?>"
7
- aria-describedby="ekit-admin-option-text-help<?php echo esc_attr(self::strify($name)); ?>"
8
- placeholder="<?php echo esc_attr($placeholder); ?>"
9
- name="<?php echo esc_attr($name); ?>"
10
- value="<?php echo esc_attr($value); ?>"
11
- <?php echo esc_attr($disabled) ?>
12
- >
13
- <small id="ekit-admin-option-text-help<?php echo esc_attr(self::strify($name)); ?>" class="form-text text-muted"><?php echo esc_html($info); ?></small>
14
  </div>
1
+ <div class="form-group ekit-admin-input-text ekit-admin-input-text-<?php echo esc_attr(self::strify($name)); ?>">
2
+ <label for="ekit-admin-option-text<?php echo esc_attr(self::strify($name)); ?>"><?php echo esc_html($label); ?></label>
3
+ <input
4
+ type="text"
5
+ class="attr-form-control"
6
+ id="ekit-admin-option-text<?php echo esc_attr(self::strify($name)); ?>"
7
+ aria-describedby="ekit-admin-option-text-help<?php echo esc_attr(self::strify($name)); ?>"
8
+ placeholder="<?php echo esc_attr($placeholder); ?>"
9
+ name="<?php echo esc_attr($name); ?>"
10
+ value="<?php echo esc_attr($value); ?>"
11
+ <?php echo esc_attr($disabled) ?>
12
+ >
13
+ <small id="ekit-admin-option-text-help<?php echo esc_attr(self::strify($name)); ?>" class="form-text text-muted"><?php echo esc_html($info); ?></small>
14
  </div>
libs/framework/views/settings-dashboard.php CHANGED
@@ -1,161 +1,161 @@
1
- <div class="ekit-admin-card ekit-admin-card-shadow">
2
- <img src="<?php echo self::get_url() . 'assets/images/banner_dashboard.png'; ?>" class="ekit-admin-dashboard-banner" />
3
- </div>
4
-
5
- <!-- Documentation -->
6
- <div class="ekit-admin-section ekit-admin-dual-layout ekit-admin-documentation-section">
7
- <div class="ekit-admin-left-thumb">
8
- <img src="<?php echo self::get_url() . 'assets/images/documentation-thumb.png'; ?>" alt="<?php esc_attr_e('Documentation Thumb', 'elementskit-lite'); ?>">
9
- </div>
10
- <div class="ekit-admin-right-content">
11
- <div class="ekit-admin-right-content--heading">
12
- <h2><?php esc_html_e('Easy Documentation', 'elementskit-lite') ?></h2>
13
- <span class="ekit-admin-right-content--heading__sub-title"><?php esc_html_e('Docs', 'elementskit-lite') ?></span>
14
- </div>
15
- <p><?php esc_html_e('Get started by spending some time with the documentation to get familiar with ElementsKit Lite. Build awesome websites for you or your clients with ease.', 'elementskit-lite'); ?></p>
16
- <div class="ekit-admin-right-content--button">
17
- <a target="_blank" href="http://go.wpmet.com/ekitdoc" class="attr-btn attr-btn-primary ekit-admin-right-content--link"><i class="fa fa-newspaper-o"></i><?php esc_html_e('Get started', 'elementskit-lite'); ?></a>
18
- </div>
19
- </div>
20
- </div>
21
-
22
- <!-- Video tutorials -->
23
- <div class="ekit-admin-section ekit-admin-faq-section">
24
- <div class="ekit-admin-right-content attr-text-center">
25
- <div class="ekit-admin-right-content--heading">
26
- <h2><?php esc_html_e('Video Tutorials', 'elementskit-lite') ?></h2>
27
- <span class="ekit-admin-right-content--heading__sub-title"><?php esc_html_e('Tutorials', 'elementskit-lite') ?></span>
28
- </div>
29
- <p><?php esc_html_e('Get started by spending some time with the documentation to get familiar with ElementsKit Lite.', 'elementskit-lite'); ?></p>
30
- </div>
31
-
32
- <div class="ekit-admin-video-tutorial-list">
33
- <div class="ekit-admin-video-tutorial-item">
34
- <a target="_blank" href="https://wpmet.com/plugin/elementskit/parallax-landing/">
35
- <div class="tutorial-thumb">
36
- <img src="<?php echo self::get_url() . 'assets/images/suport-thumb.png'; ?>" alt="<?php esc_attr_e('Totorial Thumb', 'elementskit-lite'); ?>">
37
- </div>
38
- <h2><?php esc_html_e('Parallax Effects', 'elementskit-lite'); ?></h2>
39
- </a>
40
- </div>
41
- <div class="ekit-admin-video-tutorial-item">
42
- <a href="#" data-video_id="oV-7-NNiGZo">
43
- <div class="tutorial-thumb">
44
- <img src="<?php echo self::get_url() . 'assets/images/subscribed-thumb.png'; ?>" alt="<?php esc_attr_e('Totorial Thumb', 'elementskit-lite'); ?>">
45
- </div>
46
- <h2><?php esc_html_e('Advanced Accordions', 'elementskit-lite'); ?></h2>
47
- </a>
48
- </div>
49
- <div class="ekit-admin-video-tutorial-item">
50
- <a href="#" data-video_id="LfFN08Y9VQE">
51
- <div class="tutorial-thumb">
52
- <img src="<?php echo self::get_url() . 'assets/images/featured-request-thumb.png'; ?>" alt="<?php esc_attr_e('Totorial Thumb', 'elementskit-lite'); ?>">
53
- </div>
54
- <h2><?php esc_html_e('Mega Menu Builder', 'elementskit-lite'); ?></h2>
55
- </a>
56
- </div>
57
- </div>
58
- <div class="ekti-admin-video-tutorial-popup">
59
- <div class="ekti-admin-video-tutorial-popup-content">
60
- <div class="ekti-admin-video-tutorial-iframe"></div>
61
- <div class="ekti-admin-video-tutorial-close"><i class="fa fa-times"></i></div>
62
- </div>
63
- </div>
64
-
65
-
66
- <div class="ekit-admin-right-content--button attr-text-center">
67
- <a target="_blank" href="https://www.youtube.com/watch?v=ps7knxZpDFI&list=PL3t2OjZ6gY8MVnyA4OLB6qXb77-roJOuY" class="attr-btn attr-btn-primary ekit-admin-right-content--link"><i class="fa fa-check-circle"></i><?php esc_html_e('watch more videos', 'elementskit-lite'); ?></a>
68
- </div>
69
- </div>
70
-
71
- <!-- FAQ -->
72
- <div class="ekit-admin-section ekit-admin-faq-section" style="display: none">
73
- <div class="ekit-admin-right-content attr-text-center">
74
- <div class="ekit-admin-right-content--heading">
75
- <h2><?php esc_html_e('General Knowledge Base', 'elementskit-lite') ?></h2>
76
- <span class="ekit-admin-right-content--heading__sub-title"><?php esc_html_e('FAQ', 'elementskit-lite') ?></span>
77
- </div>
78
- <p><?php esc_html_e('Get started by spending some time with the documentation to get familiar with ElementsKit Lite.', 'elementskit-lite'); ?></p>
79
- </div>
80
-
81
- <div class="ekit-admin-accordion">
82
- <div class="ekit-admin-single-accordion">
83
- <h2 class="ekit-admin-single-accordion--heading"><?php esc_html_e('1. How to create a shop page in ElementsKit Lite?', 'elementskit-lite'); ?></h2>
84
- <div class="ekit-admin-single-accordion--body">
85
- <div class="ekit-admin-single-accordion--body__content">
86
- <p><?php esc_html_e('You will get 20+ complete homepages and total 450+ blocks in our layout library and we’re continuously updating the numbers there.', 'elementskit-lite'); ?></p>
87
- </div>
88
- </div>
89
- </div>
90
- <div class="ekit-admin-single-accordion">
91
- <h2 class="ekit-admin-single-accordion--heading"><?php esc_html_e('2. How to translate theme with WPML?', 'elementskit-lite'); ?></h2>
92
- <div class="ekit-admin-single-accordion--body">
93
- <div class="ekit-admin-single-accordion--body__content">
94
- <p><?php esc_html_e('You will get 20+ complete homepages and total 450+ blocks in our layout library and we’re continuously updating the numbers there.', 'elementskit-lite'); ?></p>
95
- </div>
96
- </div>
97
- </div>
98
- <div class="ekit-admin-single-accordion">
99
- <h2 class="ekit-admin-single-accordion--heading"><?php esc_html_e('3. How to add custom css in specific section shortcode?', 'elementskit-lite'); ?></h2>
100
- <div class="ekit-admin-single-accordion--body">
101
- <div class="ekit-admin-single-accordion--body__content">
102
- <p><?php esc_html_e('You will get 20+ complete homepages and total 450+ blocks in our layout library and we’re continuously updating the numbers there.', 'elementskit-lite'); ?></p>
103
- </div>
104
- </div>
105
- </div>
106
- </div>
107
-
108
-
109
- <div class="ekit-admin-right-content--button attr-text-center">
110
- <a target="_blank" href="https://www.youtube.com/channel/UCpsjAqTeTqwFTMV580D3YvQ" class="attr-btn attr-btn-primary ekit-admin-right-content--link"><i class="fa fa-question-circle"></i><?php esc_html_e('View all faq’s', 'elementskit-lite'); ?></a>
111
- </div>
112
- </div>
113
-
114
- <!-- Support -->
115
- <div class="ekit-admin-section ekit-admin-dual-layout ekit-admin-support-section">
116
- <div class="ekit-admin-right-content">
117
- <div class="ekit-admin-right-content--heading">
118
- <h2><?php esc_html_e('Top-notch Friendly Support', 'elementskit-lite') ?></h2>
119
- <span class="ekit-admin-right-content--heading__sub-title"><?php esc_html_e('Support', 'elementskit-lite') ?></span>
120
- </div>
121
- <p><?php esc_html_e('Get started by spending some time with the documentation to get familiar with ElementsKit Lite. Build awesome websites for you or your clients with ease.', 'elementskit-lite'); ?></p>
122
- <div class="ekit-admin-right-content--button">
123
- <a target="_blank" href="https://wpmet.com/support-ticket" class="attr-btn attr-btn-primary ekit-admin-right-content--link"><i class="fa fa-question-circle"></i><?php esc_html_e('Join support forum', 'elementskit-lite'); ?></a>
124
- </div>
125
- </div>
126
-
127
- <div class="ekit-admin-left-thumb">
128
- <img src="<?php echo self::get_url() . 'assets/images/suport-thumb.png'; ?>" alt="<?php esc_attr_e('Documentation Thumb', 'elementskit-lite'); ?>">
129
- </div>
130
-
131
- </div>
132
-
133
- <!-- Feature a Request -->
134
- <div class="ekit-admin-section ekit-admin-dual-layout ekit-admin-feature-request-section ekit-admin-except-title">
135
- <div class="ekit-admin-left-thumb">
136
- <img src="<?php echo self::get_url() . 'assets/images/featured-request-thumb.png'; ?>" alt="<?php esc_attr_e('Feature a Request Thumb', 'elementskit-lite'); ?>">
137
- </div>
138
- <div class="ekit-admin-right-content">
139
-
140
- <p><?php esc_html_e('Maybe we’re missing something you can’t live without.', 'elementskit-lite'); ?></p>
141
- <div class="ekit-admin-right-content--button">
142
- <a target="_blank" href="http://go.wpmet.com/ekit-feature-request" class="attr-btn attr-btn-primary ekit-admin-right-content--link"><i class="fa fa-check-circle"></i><?php esc_html_e('Feature a request', 'elementskit-lite'); ?></a>
143
- </div>
144
- </div>
145
- </div>
146
-
147
- <!-- Rate Now -->
148
- <div class="ekit-admin-section ekit-admin-dual-layout ekit-admin-rate-now-section ekit-admin-except-title">
149
-
150
- <div class="ekit-admin-right-content">
151
-
152
- <p><span><?php esc_html_e('Satisfied?', 'elementskit-lite'); ?></span><?php esc_html_e('Don’t forget to rate our item.', 'elementskit-lite'); ?></p>
153
- <div class="ekit-admin-right-content--button">
154
- <a target="_blank" href="https://wordpress.org/support/plugin/elementskit-lite/reviews/?rate=5#new-post" class="attr-btn attr-btn-primary ekit-admin-right-content--link"><i class="fa fa-star"></i><?php esc_html_e('Rate it now', 'elementskit-lite'); ?></a>
155
- </div>
156
- </div>
157
-
158
- <div class="ekit-admin-left-thumb">
159
- <img src="<?php echo self::get_url() . 'assets/images/rate-now-thumb.png'; ?>" alt="<?php esc_attr_e('Rate Now Thumb', 'elementskit-lite'); ?>">
160
- </div>
161
  </div>
1
+ <div class="ekit-admin-card ekit-admin-card-shadow">
2
+ <img src="<?php echo self::get_url() . 'assets/images/banner_dashboard.png'; ?>" class="ekit-admin-dashboard-banner" />
3
+ </div>
4
+
5
+ <!-- Documentation -->
6
+ <div class="ekit-admin-section ekit-admin-dual-layout ekit-admin-documentation-section">
7
+ <div class="ekit-admin-left-thumb">
8
+ <img src="<?php echo self::get_url() . 'assets/images/documentation-thumb.png'; ?>" alt="<?php esc_attr_e('Documentation Thumb', 'elementskit-lite'); ?>">
9
+ </div>
10
+ <div class="ekit-admin-right-content">
11
+ <div class="ekit-admin-right-content--heading">
12
+ <h2><?php esc_html_e('Easy Documentation', 'elementskit-lite') ?></h2>
13
+ <span class="ekit-admin-right-content--heading__sub-title"><?php esc_html_e('Docs', 'elementskit-lite') ?></span>
14
+ </div>
15
+ <p><?php esc_html_e('Get started by spending some time with the documentation to get familiar with ElementsKit Lite. Build awesome websites for you or your clients with ease.', 'elementskit-lite'); ?></p>
16
+ <div class="ekit-admin-right-content--button">
17
+ <a target="_blank" href="http://go.wpmet.com/ekitdoc" class="attr-btn attr-btn-primary ekit-admin-right-content--link"><i class="fa fa-newspaper-o"></i><?php esc_html_e('Get started', 'elementskit-lite'); ?></a>
18
+ </div>
19
+ </div>
20
+ </div>
21
+
22
+ <!-- Video tutorials -->
23
+ <div class="ekit-admin-section ekit-admin-faq-section">
24
+ <div class="ekit-admin-right-content attr-text-center">
25
+ <div class="ekit-admin-right-content--heading">
26
+ <h2><?php esc_html_e('Video Tutorials', 'elementskit-lite') ?></h2>
27
+ <span class="ekit-admin-right-content--heading__sub-title"><?php esc_html_e('Tutorials', 'elementskit-lite') ?></span>
28
+ </div>
29
+ <p><?php esc_html_e('Get started by spending some time with the documentation to get familiar with ElementsKit Lite.', 'elementskit-lite'); ?></p>
30
+ </div>
31
+
32
+ <div class="ekit-admin-video-tutorial-list">
33
+ <div class="ekit-admin-video-tutorial-item">
34
+ <a target="_blank" href="https://wpmet.com/plugin/elementskit/parallax-landing/">
35
+ <div class="tutorial-thumb">
36
+ <img src="<?php echo self::get_url() . 'assets/images/suport-thumb.png'; ?>" alt="<?php esc_attr_e('Totorial Thumb', 'elementskit-lite'); ?>">
37
+ </div>
38
+ <h2><?php esc_html_e('Parallax Effects', 'elementskit-lite'); ?></h2>
39
+ </a>
40
+ </div>
41
+ <div class="ekit-admin-video-tutorial-item">
42
+ <a href="#" data-video_id="oV-7-NNiGZo">
43
+ <div class="tutorial-thumb">
44
+ <img src="<?php echo self::get_url() . 'assets/images/subscribed-thumb.png'; ?>" alt="<?php esc_attr_e('Totorial Thumb', 'elementskit-lite'); ?>">
45
+ </div>
46
+ <h2><?php esc_html_e('Advanced Accordions', 'elementskit-lite'); ?></h2>
47
+ </a>
48
+ </div>
49
+ <div class="ekit-admin-video-tutorial-item">
50
+ <a href="#" data-video_id="LfFN08Y9VQE">
51
+ <div class="tutorial-thumb">
52
+ <img src="<?php echo self::get_url() . 'assets/images/featured-request-thumb.png'; ?>" alt="<?php esc_attr_e('Totorial Thumb', 'elementskit-lite'); ?>">
53
+ </div>
54
+ <h2><?php esc_html_e('Mega Menu Builder', 'elementskit-lite'); ?></h2>
55
+ </a>
56
+ </div>
57
+ </div>
58
+ <div class="ekti-admin-video-tutorial-popup">
59
+ <div class="ekti-admin-video-tutorial-popup-content">
60
+ <div class="ekti-admin-video-tutorial-iframe"></div>
61
+ <div class="ekti-admin-video-tutorial-close"><i class="fa fa-times"></i></div>
62
+ </div>
63
+ </div>
64
+
65
+
66
+ <div class="ekit-admin-right-content--button attr-text-center">
67
+ <a target="_blank" href="https://www.youtube.com/watch?v=ps7knxZpDFI&list=PL3t2OjZ6gY8MVnyA4OLB6qXb77-roJOuY" class="attr-btn attr-btn-primary ekit-admin-right-content--link"><i class="fa fa-check-circle"></i><?php esc_html_e('watch more videos', 'elementskit-lite'); ?></a>
68
+ </div>
69
+ </div>
70
+
71
+ <!-- FAQ -->
72
+ <div class="ekit-admin-section ekit-admin-faq-section" style="display: none">
73
+ <div class="ekit-admin-right-content attr-text-center">
74
+ <div class="ekit-admin-right-content--heading">
75
+ <h2><?php esc_html_e('General Knowledge Base', 'elementskit-lite') ?></h2>
76
+ <span class="ekit-admin-right-content--heading__sub-title"><?php esc_html_e('FAQ', 'elementskit-lite') ?></span>
77
+ </div>
78
+ <p><?php esc_html_e('Get started by spending some time with the documentation to get familiar with ElementsKit Lite.', 'elementskit-lite'); ?></p>
79
+ </div>
80
+
81
+ <div class="ekit-admin-accordion">
82
+ <div class="ekit-admin-single-accordion">
83
+ <h2 class="ekit-admin-single-accordion--heading"><?php esc_html_e('1. How to create a shop page in ElementsKit Lite?', 'elementskit-lite'); ?></h2>
84
+ <div class="ekit-admin-single-accordion--body">
85
+ <div class="ekit-admin-single-accordion--body__content">
86
+ <p><?php esc_html_e('You will get 20+ complete homepages and total 450+ blocks in our layout library and we’re continuously updating the numbers there.', 'elementskit-lite'); ?></p>
87
+ </div>
88
+ </div>
89
+ </div>
90
+ <div class="ekit-admin-single-accordion">
91
+ <h2 class="ekit-admin-single-accordion--heading"><?php esc_html_e('2. How to translate theme with WPML?', 'elementskit-lite'); ?></h2>
92
+ <div class="ekit-admin-single-accordion--body">
93
+ <div class="ekit-admin-single-accordion--body__content">
94
+ <p><?php esc_html_e('You will get 20+ complete homepages and total 450+ blocks in our layout library and we’re continuously updating the numbers there.', 'elementskit-lite'); ?></p>
95
+ </div>
96
+ </div>
97
+ </div>
98
+ <div class="ekit-admin-single-accordion">
99
+ <h2 class="ekit-admin-single-accordion--heading"><?php esc_html_e('3. How to add custom css in specific section shortcode?', 'elementskit-lite'); ?></h2>
100
+ <div class="ekit-admin-single-accordion--body">
101
+ <div class="ekit-admin-single-accordion--body__content">
102
+ <p><?php esc_html_e('You will get 20+ complete homepages and total 450+ blocks in our layout library and we’re continuously updating the numbers there.', 'elementskit-lite'); ?></p>
103
+ </div>
104
+ </div>
105
+ </div>
106
+ </div>
107
+
108
+
109
+ <div class="ekit-admin-right-content--button attr-text-center">
110
+ <a target="_blank" href="https://www.youtube.com/channel/UCpsjAqTeTqwFTMV580D3YvQ" class="attr-btn attr-btn-primary ekit-admin-right-content--link"><i class="fa fa-question-circle"></i><?php esc_html_e('View all faq’s', 'elementskit-lite'); ?></a>
111
+ </div>
112
+ </div>
113
+
114
+ <!-- Support -->
115
+ <div class="ekit-admin-section ekit-admin-dual-layout ekit-admin-support-section">
116
+ <div class="ekit-admin-right-content">
117
+ <div class="ekit-admin-right-content--heading">
118
+ <h2><?php esc_html_e('Top-notch Friendly Support', 'elementskit-lite') ?></h2>
119
+ <span class="ekit-admin-right-content--heading__sub-title"><?php esc_html_e('Support', 'elementskit-lite') ?></span>
120
+ </div>
121
+ <p><?php esc_html_e('Get started by spending some time with the documentation to get familiar with ElementsKit Lite. Build awesome websites for you or your clients with ease.', 'elementskit-lite'); ?></p>
122
+ <div class="ekit-admin-right-content--button">
123
+ <a target="_blank" href="https://wpmet.com/support-ticket" class="attr-btn attr-btn-primary ekit-admin-right-content--link"><i class="fa fa-question-circle"></i><?php esc_html_e('Join support forum', 'elementskit-lite'); ?></a>
124
+ </div>
125
+ </div>
126
+
127
+ <div class="ekit-admin-left-thumb">
128
+ <img src="<?php echo self::get_url() . 'assets/images/suport-thumb.png'; ?>" alt="<?php esc_attr_e('Documentation Thumb', 'elementskit-lite'); ?>">
129
+ </div>
130
+
131
+ </div>
132
+
133
+ <!-- Feature a Request -->
134
+ <div class="ekit-admin-section ekit-admin-dual-layout ekit-admin-feature-request-section ekit-admin-except-title">
135
+ <div class="ekit-admin-left-thumb">
136
+ <img src="<?php echo self::get_url() . 'assets/images/featured-request-thumb.png'; ?>" alt="<?php esc_attr_e('Feature a Request Thumb', 'elementskit-lite'); ?>">
137
+ </div>
138
+ <div class="ekit-admin-right-content">
139
+
140
+ <p><?php esc_html_e('Maybe we’re missing something you can’t live without.', 'elementskit-lite'); ?></p>
141
+ <div class="ekit-admin-right-content--button">
142
+ <a target="_blank" href="http://go.wpmet.com/ekit-feature-request" class="attr-btn attr-btn-primary ekit-admin-right-content--link"><i class="fa fa-check-circle"></i><?php esc_html_e('Feature a request', 'elementskit-lite'); ?></a>
143
+ </div>
144
+ </div>
145
+ </div>
146
+
147
+ <!-- Rate Now -->
148
+ <div class="ekit-admin-section ekit-admin-dual-layout ekit-admin-rate-now-section ekit-admin-except-title">
149
+
150
+ <div class="ekit-admin-right-content">
151
+
152
+ <p><span><?php esc_html_e('Satisfied?', 'elementskit-lite'); ?></span><?php esc_html_e('Don’t forget to rate our item.', 'elementskit-lite'); ?></p>
153
+ <div class="ekit-admin-right-content--button">
154
+ <a target="_blank" href="https://wordpress.org/support/plugin/elementskit-lite/reviews/?rate=5#new-post" class="attr-btn attr-btn-primary ekit-admin-right-content--link"><i class="fa fa-star"></i><?php esc_html_e('Rate it now', 'elementskit-lite'); ?></a>
155
+ </div>
156
+ </div>
157
+
158
+ <div class="ekit-admin-left-thumb">
159
+ <img src="<?php echo self::get_url() . 'assets/images/rate-now-thumb.png'; ?>" alt="<?php esc_attr_e('Rate Now Thumb', 'elementskit-lite'); ?>">
160
+ </div>
161
  </div>
libs/framework/views/settings-elements.php CHANGED
@@ -1,33 +1,33 @@
1
- <?php
2
- $widgets_all = \ElementsKit_Lite\Config\Widget_List::instance()->get_list();
3
- $widgets_active = $this->utils->get_option('widget_list', $widgets_all);
4
- $widgets_active = (!isset($widgets_active[0]) ? array_keys($widgets_active) : $widgets_active);
5
-
6
- ?>
7
-
8
- <div class="ekit-admin-fields-container">
9
- <span class="ekit-admin-fields-container-description"><?php esc_html_e('You can disable the elements you are not using on your site. That will disable all associated assets of those widgets to improve your site loading speed.', 'elementskit-lite'); ?></span>
10
-
11
- <div class="ekit-admin-fields-container-fieldset">
12
- <div class="attr-row">
13
- <?php foreach($widgets_all as $widget => $widget_config): ?>
14
- <div class="attr-col-md-6 attr-col-lg-4" <?php echo ($widget_config['package'] != 'pro-disabled' ? '' : 'data-attr-toggle="modal" data-target="#elementskit_go_pro_modal"'); ?>>
15
- <?php
16
- $this->utils->input([
17
- 'type' => 'switch',
18
- 'name' => 'widget_list[]',
19
- 'label' => $widget_config['title'],
20
- 'value' => $widget,
21
- 'attr' => ($widget_config['package'] != 'pro-disabled' ? [] : ['disabled' => 'disabled' ]),
22
- 'class' => 'ekit-content-type-' . $widget_config['package'],
23
- 'options' => [
24
- 'checked' => ((in_array($widget, $widgets_active) && $widget_config['package'] != 'pro-disabled') ? true : false),
25
- ]
26
- ]);
27
- ?>
28
- </div>
29
- <?php endforeach; ?>
30
- </div>
31
- </div>
32
- </div>
33
-
1
+ <?php
2
+ $widgets_all = \ElementsKit_Lite\Config\Widget_List::instance()->get_list();
3
+ $widgets_active = $this->utils->get_option('widget_list', $widgets_all);
4
+ $widgets_active = (!isset($widgets_active[0]) ? array_keys($widgets_active) : $widgets_active);
5
+
6
+ ?>
7
+
8
+ <div class="ekit-admin-fields-container">
9
+ <span class="ekit-admin-fields-container-description"><?php esc_html_e('You can disable the elements you are not using on your site. That will disable all associated assets of those widgets to improve your site loading speed.', 'elementskit-lite'); ?></span>
10
+
11
+ <div class="ekit-admin-fields-container-fieldset">
12
+ <div class="attr-row">
13
+ <?php foreach($widgets_all as $widget => $widget_config): ?>
14
+ <div class="attr-col-md-6 attr-col-lg-4" <?php echo ($widget_config['package'] != 'pro-disabled' ? '' : 'data-attr-toggle="modal" data-target="#elementskit_go_pro_modal"'); ?>>
15
+ <?php
16
+ $this->utils->input([
17
+ 'type' => 'switch',
18
+ 'name' => 'widget_list[]',
19
+ 'label' => $widget_config['title'],
20
+ 'value' => $widget,
21
+ 'attr' => ($widget_config['package'] != 'pro-disabled' ? [] : ['disabled' => 'disabled' ]),
22
+ 'class' => 'ekit-content-type-' . $widget_config['package'],
23
+ 'options' => [
24
+ 'checked' => ((in_array($widget, $widgets_active) && $widget_config['package'] != 'pro-disabled') ? true : false),
25
+ ]
26
+ ]);
27
+ ?>
28
+ </div>
29
+ <?php endforeach; ?>
30
+ </div>
31
+ </div>
32
+ </div>
33
+
libs/framework/views/settings-init.php CHANGED
@@ -1,117 +1,117 @@
1
- <?php
2
-
3
- $sections = [
4
- 'dashboard' => [
5
- 'title' => esc_html__('Dashboard', 'elementskit-lite'),
6
- 'sub-title' => esc_html__('General info', 'elementskit-lite'),
7
- 'icon' => 'icon icon-home',
8
- // 'view_path' => 'some path to the view file'
9
- ],
10
- 'elements' => [
11
- 'title' => esc_html__('Elements', 'elementskit-lite'),
12
- 'sub-title' => esc_html__('Enable disable widgets', 'elementskit-lite'),
13
- 'icon' => 'icon icon-magic-wand',
14
- ],
15
- 'modules' => [
16
- 'title' => esc_html__('Modules', 'elementskit-lite'),
17
- 'sub-title' => esc_html__('Enable disable modules', 'elementskit-lite'),
18
- 'icon' => 'icon icon-settings-2',
19
- ],
20
- 'userdata' => [
21
- 'title' => esc_html__('User Data', 'elementskit-lite'),
22
- 'sub-title' => esc_html__('Data for fb, mailchimp etc', 'elementskit-lite'),
23
- 'icon' => 'icon icon-settings1',
24
- ],
25
- ];
26
-
27
- $sections = apply_filters('elementskit/admin/sections/list', $sections);
28
-
29
- ?>
30
- <div class="ekit-wid-con">
31
- <div class="ekit_container">
32
- <form action="" method="POST" id="ekit-admin-settings-form">
33
- <div class="attr-row ekit_tab_wraper_group">
34
- <div class="attr-col-lg-3 attr-col-md-4">
35
- <div class="ekit_logo">
36
- <img src="<?php echo self::get_url() . 'assets/images/elements_kit_logo_black.svg'; ?>" height="40" />
37
- </div>
38
- <div class="ekit-admin-nav" id="v-elementskit-tab" role="tablist" aria-orientation="vertical">
39
- <ul class="attr-nav attr-nav-tabs">
40
- <li><a href="#" class="ekit-admin-nav-link ekit-admin-nav-hidden top"></a></li>
41
-
42
- <!-- sections nav begins -->
43
- <?php $count=0; foreach($sections as $section_key => $section): reset($sections);?>
44
- <li role="presentation" class="<?php echo ($section_key !== key($sections)) ? : 'attr-active'; ?>">
45
- <a class="ekit-admin-nav-link <?php echo $count == 1 ? 'bottom': ''; ?>" id="v-elementskit-<?php echo esc_attr($section_key); ?>-tab" data-attr-toggle="pill" href="#v-elementskit-<?php echo esc_attr($section_key); ?>" role="tab"
46
- aria-controls="v-elementskit-<?php echo esc_attr($section_key); ?>" data-attr-toggle="tab" role="tab">
47
- <div class="ekit-admin-tab-content">
48
- <span class="ekit-admin-title"><?php echo esc_html($section['title']); ?></span>
49
- <span class="ekit-admin-subtitle"><?php echo esc_html($section['sub-title']); ?></span>
50
- </div>
51
- <div class="ekit-admin-tab-icon">
52
- <i class="<?php echo esc_attr($section['icon']) ?>"></i>
53
- </div>
54
- </a>
55
- </li>
56
- <?php $count++; endforeach; ?>
57
- <!-- sections nav ends -->
58
-
59
- <?php if(\ElementsKit_Lite::package_type() == 'free'): ?>
60
- <li role="presentation" class="ekit-go-pro-nav-tab">
61
- <a class="ekit-admin-nav-link" id="v-elementskit-ekit-go-pro-nav-tab" href="https://go.wpmet.com/ekitpro" role="tab" target="_blank">
62
- <div class="ekit-admin-tab-content">
63
- <span class="ekit-admin-title"><?php echo esc_html__('Go Premium', 'elementskit-lite'); ?></span>
64
- <span class="ekit-admin-subtitle"><?php echo esc_html__('Get premium features', 'elementskit-lite'); ?></span>
65
- </div>
66
- <div class="ekit-admin-tab-icon">
67
- <img src="<?php echo self::get_url() . 'assets/images/loader-krasi.gif'; ?>" class="ekit-go-pro-gif" alt="elementskit go pro premium" />
68
- </div>
69
- </a>
70
- </li>
71
- <?php endif; ?>
72
-
73
- <li><a href="#" class="ekit-admin-nav-link ekit-admin-nav-hidden"></a></li>
74
- </ul>
75
- </div>
76
- </div>
77
- <div class="attr-col-lg-9 attr-col-md-8">
78
- <div class="attr-tab-content" id="v-elementskit-tabContent">
79
-
80
- <!-- sections content begins -->
81
- <?php foreach($sections as $section_key => $section): reset($sections); ?>
82
- <div class="attr-tab-pane <?php echo ($section_key !== key($sections)) ? : 'attr-active'; ?>" id="v-elementskit-<?php echo esc_attr($section_key); ?>" role="tabpanel" aria-labelledby="v-elementskit-tab-<?php echo esc_attr($section_key); ?>">
83
- <div class="ekit-admin-section-header">
84
- <h2 class="ekit-admin-section-heaer-title"><i class="<?php echo esc_attr($section['icon']) ?>"></i><?php echo esc_html($section['title']); ?></h2>
85
-
86
- <?php if ( in_array( $section_key, ['elements', 'modules']) ) : ?>
87
- <div class="attr-input attr-input-switch ekit-content-type-free ekit-all-element-switch">
88
- <div class="ekit-admin-input-switch attr-card-body">
89
- <input checked="" type="checkbox" value="image-accordion" class="ekit-admin-control-input ekit-all-control-input" name="ekit_all_activation_input_widget_<?php echo esc_attr($section_key); ?>" id="ekit_all_activation_input_widget_<?php echo esc_attr($section_key); ?>">
90
- <label class="ekit-admin-control-label" for="ekit_all_activation_input_widget_<?php echo esc_attr($section_key); ?>">
91
- Disable All
92
- <span class="ekit-admin-control-label-switch" data-active="ON"
93
- data-inactive="OFF"></span>
94
- Enable All
95
- </label>
96
- </div>
97
- </div>
98
- <?php endif; ?>
99
- <div class="ekit-admin-input-switch">
100
- <button class="attr-btn-primary attr-btn ekit-admin-settings-form-submit"><div class="ekit-spinner"></div><i class="ekit-admin-save-icon fa fa-check-circle"></i><?php esc_html_e('Save Changes', 'elementskit-lite'); ?></button>
101
- </div>
102
- </div>
103
- <?php include (
104
- isset($section['view_path'])
105
- ? $section['view_path']
106
- : self::get_dir() . 'views/settings-' . $section_key . '.php'
107
- ); ?>
108
- </div>
109
- <?php endforeach; ?>
110
- <!-- sections content ends -->
111
-
112
- </div>
113
- </div>
114
- </div>
115
- </form>
116
- </div>
117
  </div>
1
+ <?php
2
+
3
+ $sections = [
4
+ 'dashboard' => [
5
+ 'title' => esc_html__('Dashboard', 'elementskit-lite'),
6
+ 'sub-title' => esc_html__('General info', 'elementskit-lite'),
7
+ 'icon' => 'icon icon-home',
8
+ // 'view_path' => 'some path to the view file'
9
+ ],
10
+ 'elements' => [
11
+ 'title' => esc_html__('Elements', 'elementskit-lite'),
12
+ 'sub-title' => esc_html__('Enable disable widgets', 'elementskit-lite'),
13
+ 'icon' => 'icon icon-magic-wand',
14
+ ],
15
+ 'modules' => [
16
+ 'title' => esc_html__('Modules', 'elementskit-lite'),
17
+ 'sub-title' => esc_html__('Enable disable modules', 'elementskit-lite'),
18
+ 'icon' => 'icon icon-settings-2',
19
+ ],
20
+ 'userdata' => [
21
+ 'title' => esc_html__('User Data', 'elementskit-lite'),
22
+ 'sub-title' => esc_html__('Data for fb, mailchimp etc', 'elementskit-lite'),
23
+ 'icon' => 'icon icon-settings1',
24
+ ],
25
+ ];
26
+
27
+ $sections = apply_filters('elementskit/admin/sections/list', $sections);
28
+
29
+ ?>
30
+ <div class="ekit-wid-con">
31
+ <div class="ekit_container">
32
+ <form action="" method="POST" id="ekit-admin-settings-form">
33
+ <div class="attr-row ekit_tab_wraper_group">
34
+ <div class="attr-col-lg-3 attr-col-md-4">
35
+ <div class="ekit_logo">
36
+ <img src="<?php echo self::get_url() . 'assets/images/elements_kit_logo_black.svg'; ?>" height="40" />
37
+ </div>
38
+ <div class="ekit-admin-nav" id="v-elementskit-tab" role="tablist" aria-orientation="vertical">
39
+ <ul class="attr-nav attr-nav-tabs">
40
+ <li><a href="#" class="ekit-admin-nav-link ekit-admin-nav-hidden top"></a></li>
41
+
42
+ <!-- sections nav begins -->
43
+ <?php $count=0; foreach($sections as $section_key => $section): reset($sections);?>
44
+ <li role="presentation" class="<?php echo ($section_key !== key($sections)) ? : 'attr-active'; ?>">
45
+ <a class="ekit-admin-nav-link <?php echo $count == 1 ? 'bottom': ''; ?>" id="v-elementskit-<?php echo esc_attr($section_key); ?>-tab" data-attr-toggle="pill" href="#v-elementskit-<?php echo esc_attr($section_key); ?>" role="tab"
46
+ aria-controls="v-elementskit-<?php echo esc_attr($section_key); ?>" data-attr-toggle="tab" role="tab">
47
+ <div class="ekit-admin-tab-content">
48
+ <span class="ekit-admin-title"><?php echo esc_html($section['title']); ?></span>
49
+ <span class="ekit-admin-subtitle"><?php echo esc_html($section['sub-title']); ?></span>
50
+ </div>
51
+ <div class="ekit-admin-tab-icon">
52
+ <i class="<?php echo esc_attr($section['icon']) ?>"></i>
53
+ </div>
54
+ </a>
55
+ </li>
56
+ <?php $count++; endforeach; ?>
57
+ <!-- sections nav ends -->
58
+
59
+ <?php if(\ElementsKit_Lite::package_type() == 'free'): ?>
60
+ <li role="presentation" class="ekit-go-pro-nav-tab">
61
+ <a class="ekit-admin-nav-link" id="v-elementskit-ekit-go-pro-nav-tab" href="https://go.wpmet.com/ekitpro" role="tab" target="_blank">
62
+ <div class="ekit-admin-tab-content">
63
+ <span class="ekit-admin-title"><?php echo esc_html__('Go Premium', 'elementskit-lite'); ?></span>
64
+ <span class="ekit-admin-subtitle"><?php echo esc_html__('Get premium features', 'elementskit-lite'); ?></span>
65
+ </div>
66
+ <div class="ekit-admin-tab-icon">
67
+ <img src="<?php echo self::get_url() . 'assets/images/loader-krasi.gif'; ?>" class="ekit-go-pro-gif" alt="elementskit go pro premium" />
68
+ </div>
69
+ </a>
70
+ </li>
71
+ <?php endif; ?>
72
+
73
+ <li><a href="#" class="ekit-admin-nav-link ekit-admin-nav-hidden"></a></li>
74
+ </ul>
75
+ </div>
76
+ </div>
77
+ <div class="attr-col-lg-9 attr-col-md-8">
78
+ <div class="attr-tab-content" id="v-elementskit-tabContent">
79
+
80
+ <!-- sections content begins -->
81
+ <?php foreach($sections as $section_key => $section): reset($sections); ?>
82
+ <div class="attr-tab-pane <?php echo ($section_key !== key($sections)) ? : 'attr-active'; ?>" id="v-elementskit-<?php echo esc_attr($section_key); ?>" role="tabpanel" aria-labelledby="v-elementskit-tab-<?php echo esc_attr($section_key); ?>">
83
+ <div class="ekit-admin-section-header">
84
+ <h2 class="ekit-admin-section-heaer-title"><i class="<?php echo esc_attr($section['icon']) ?>"></i><?php echo esc_html($section['title']); ?></h2>
85
+
86
+ <?php if ( in_array( $section_key, ['elements', 'modules']) ) : ?>
87
+ <div class="attr-input attr-input-switch ekit-content-type-free ekit-all-element-switch">
88
+ <div class="ekit-admin-input-switch attr-card-body">
89
+ <input checked="" type="checkbox" value="image-accordion" class="ekit-admin-control-input ekit-all-control-input" name="ekit_all_activation_input_widget_<?php echo esc_attr($section_key); ?>" id="ekit_all_activation_input_widget_<?php echo esc_attr($section_key); ?>">
90
+ <label class="ekit-admin-control-label" for="ekit_all_activation_input_widget_<?php echo esc_attr($section_key); ?>">
91
+ Disable All
92
+ <span class="ekit-admin-control-label-switch" data-active="ON"
93
+ data-inactive="OFF"></span>
94
+ Enable All
95
+ </label>
96
+ </div>
97
+ </div>
98
+ <?php endif; ?>
99
+ <div class="ekit-admin-input-switch">
100
+ <button class="attr-btn-primary attr-btn ekit-admin-settings-form-submit"><div class="ekit-spinner"></div><i class="ekit-admin-save-icon fa fa-check-circle"></i><?php esc_html_e('Save Changes', 'elementskit-lite'); ?></button>
101
+ </div>
102
+ </div>
103
+ <?php include (
104
+ isset($section['view_path'])
105
+ ? $section['view_path']
106
+ : self::get_dir() . 'views/settings-' . $section_key . '.php'
107
+ ); ?>
108
+ </div>
109
+ <?php endforeach; ?>
110
+ <!-- sections content ends -->
111
+
112
+ </div>
113
+ </div>
114
+ </div>
115
+ </form>
116
+ </div>
117
  </div>
libs/framework/views/settings-modules.php CHANGED
@@ -1,38 +1,38 @@
1
- <?php
2
- $modules_all = \ElementsKit_Lite\Config\Module_List::instance()->get_list();
3
- $modules_active = $this->utils->get_option('module_list', $modules_all);
4
-
5
- $modules_active = (!isset($modules_active[0]) ? array_keys($modules_active) : $modules_active);
6
- ?>
7
-
8
- <div class="ekit-admin-fields-container">
9
- <span class="ekit-admin-fields-container-description"><?php esc_html_e('You can disable the modules you are not using on your site. That will disable all associated assets of those modules to improve your site loading speed.', 'elementskit-lite'); ?></span>
10
-
11
- <div class="ekit-admin-fields-container-fieldset">
12
- <div class="attr-hidden" id="elementskit-template-admin-menu">
13
- <li><a href="edit.php?post_type=elementskit_template"><?php esc_html_e('Header Footer', 'elementskit-lite'); ?></a></li>
14
- </div>
15
- <div class="attr-hidden" id="elementskit-template-widget-menu">
16
- <li><a href="edit.php?post_type=elementskit_widget"><?php esc_html_e('Widget Builder', 'elementskit-lite'); ?></a></li>
17
- </div>
18
- <div class="attr-row">
19
- <?php foreach($modules_all as $module => $module_config): if(isset($module_config['package'])): ?>
20
- <div class="attr-col-md-6 attr-col-lg-4" <?php echo ($module_config['package'] != 'pro-disabled' ? '' : 'data-attr-toggle="modal" data-target="#elementskit_go_pro_modal"'); ?>>
21
- <?php
22
- $this->utils->input([
23
- 'type' => 'switch',
24
- 'name' => 'module_list[]',
25
- 'value' => $module,
26
- 'class' => 'ekit-content-type-' . $module_config['package'],
27
- 'attr' => ($module_config['package'] != 'pro-disabled' ? [] : ['disabled' => 'disabled' ]),
28
- 'label' => $module_config['title'],
29
- 'options' => [
30
- 'checked' => (in_array($module, $modules_active) && $module_config['package'] != 'pro-disabled' ? true : false),
31
- ]
32
- ]);
33
- ?>
34
- </div>
35
- <?php endif; endforeach; ?>
36
- </div>
37
- </div>
38
  </div>
1
+ <?php
2
+ $modules_all = \ElementsKit_Lite\Config\Module_List::instance()->get_list();
3
+ $modules_active = $this->utils->get_option('module_list', $modules_all);
4
+
5
+ $modules_active = (!isset($modules_active[0]) ? array_keys($modules_active) : $modules_active);
6
+ ?>
7
+
8
+ <div class="ekit-admin-fields-container">
9
+ <span class="ekit-admin-fields-container-description"><?php esc_html_e('You can disable the modules you are not using on your site. That will disable all associated assets of those modules to improve your site loading speed.', 'elementskit-lite'); ?></span>
10
+
11
+ <div class="ekit-admin-fields-container-fieldset">
12
+ <div class="attr-hidden" id="elementskit-template-admin-menu">
13
+ <li><a href="edit.php?post_type=elementskit_template"><?php esc_html_e('Header Footer', 'elementskit-lite'); ?></a></li>
14
+ </div>
15
+ <div class="attr-hidden" id="elementskit-template-widget-menu">
16
+ <li><a href="edit.php?post_type=elementskit_widget"><?php esc_html_e('Widget Builder', 'elementskit-lite'); ?></a></li>
17
+ </div>
18
+ <div class="attr-row">
19
+ <?php foreach($modules_all as $module => $module_config): if(isset($module_config['package'])): ?>
20
+ <div class="attr-col-md-6 attr-col-lg-4" <?php echo ($module_config['package'] != 'pro-disabled' ? '' : 'data-attr-toggle="modal" data-target="#elementskit_go_pro_modal"'); ?>>
21
+ <?php
22
+ $this->utils->input([
23
+ 'type' => 'switch',
24
+ 'name' => 'module_list[]',
25
+ 'value' => $module,
26
+ 'class' => 'ekit-content-type-' . $module_config['package'],
27
+ 'attr' => ($module_config['package'] != 'pro-disabled' ? [] : ['disabled' => 'disabled' ]),
28
+ 'label' => $module_config['title'],
29
+ 'options' => [
30
+ 'checked' => (in_array($module, $modules_active) && $module_config['package'] != 'pro-disabled' ? true : false),
31
+ ]
32
+ ]);
33
+ ?>
34
+ </div>
35
+ <?php endif; endforeach; ?>
36
+ </div>
37
+ </div>
38
  </div>
libs/framework/views/settings-userdata.php CHANGED
@@ -1,587 +1,587 @@
1
- <?php
2
-
3
- $user_data = $this->utils->get_option('user_data', []);
4
- $pro_active = (in_array('elementskit/elementskit.php', apply_filters('active_plugins', get_option('active_plugins'))));
5
-
6
- ?>
7
-
8
- <div class="ekit-admin-fields-container">
9
- <div class="ekit-admin-fields-container-fieldset-- xx">
10
- <div class="panel-group attr-accordion" id="accordion" role="tablist" aria-multiselectable="true">
11
- <!-------------------
12
- Mail Champ
13
- -------------------->
14
- <div class="attr-panel ekit_accordion_card">
15
- <div class="attr-panel-heading label-mail-chimp" role="tab" id="mail_chimp_data_headeing">
16
- <a class="attr-btn attr-collapsed" role="button" data-attr-toggle="collapse" data-parent="#accordion"
17
- href="#mail_chimp_data_control" aria-expanded="true"
18
- aria-controls="mail_chimp_data_control">
19
- <span><?php esc_html_e('Mail Chimp Data', 'elementskit-lite'); ?></span>
20
- </a>
21
- </div>
22
-
23
-
24
-
25
- <div id="mail_chimp_data_control" class="attr-panel-collapse attr-collapse attr-in" role="tabpanel"
26
- aria-labelledby="mail_chimp_data_headeing">
27
- <div class="attr-panel-body">
28
- <div class="ekit-admin-user-data-separator"></div>
29
- <?php
30
- $this->utils->input([
31
- 'type' => 'text',
32
- 'name' => 'user_data[mail_chimp][token]',
33
- 'label' => esc_html__('Token', 'elementskit-lite'),
34
- 'placeholder' => '24550c8cb06076751a80274a52878-us20',
35
- 'value' => (!isset($user_data['mail_chimp']['token'])) ? '' : ($user_data['mail_chimp']['token'])
36
- ]);
37
- ?>
38
-
39
- </div>
40
- </div>
41
-
42
-
43
-
44
-
45
- </div>
46
-
47
- <!-------------------
48
- Facebook Page Feed
49
- -------------------->
50
- <div class="attr-panel ekit_accordion_card">
51
- <div
52
- class="<?php echo $this->utils->is_widget_active_class('facebook-feed', $pro_active);?>"
53
- data-attr-toggle="modal"
54
- data-target="#elementskit_go_pro_modal"
55
- role="tab" id="facebook_data_headeing">
56
-
57
-
58
- <a class="attr-btn" role="button" data-attr-toggle="collapse" data-parent="#accordion"
59
-
60
- href="#fbp_feed_control_data"
61
- aria-expanded="false" aria-controls="fbp_feed_control_data">
62
- <span><?php esc_html_e('Facebook Page Feed', 'elementskit-lite'); ?></span>
63
- </a>
64
- </div>
65
-
66
-
67
- <div id="fbp_feed_control_data" class="attr-panel-collapse attr-collapse" role="tabpanel"
68
- aria-labelledby="facebook_data_headeing">
69
- <div class="attr-panel-body">
70
- <div class="ekit-admin-user-data-separator"></div>
71
-
72
- <?php
73
- $this->utils->input([
74
- 'type' => 'text',
75
- 'name' => 'user_data[fb_feed][page_id]',
76
- 'label' => esc_html__('Facebook Page ID', 'elementskit-lite'),
77
- 'placeholder' => __('Facebook app id', 'elementskit-lite'),
78
- 'value' => (!isset($user_data['fb_feed']['page_id'])) ? '' : ($user_data['fb_feed']['page_id']),
79
- ]);
80
- ?>
81
-
82
- <?php
83
-
84
- $val = empty($user_data['fb_feed']['pg_token']) ? '' : $user_data['fb_feed']['pg_token'];
85
-
86
- $this->utils->input([
87
- 'type' => 'text',
88
- 'name' => 'user_data[fb_feed][pg_token]',
89
- 'label' => esc_html__('Page Access Token', 'elementskit-lite'),
90
- 'placeholder' => 'S8LGISx9wBAOx5oUnxpOceDbyD01DYNNUwoz8jTHpm2ZB9RmK6jKwm',
91
- 'value' => (!isset($user_data['fb_feed']['pg_token'])) ? '' : ($user_data['fb_feed']['pg_token']),
92
- ]);
93
-
94
- $dbg = '&app=105697909488869&sec=f64837dd6a129c23ab47bdfdc61cfe19'; //ElementsKit Plugin Review
95
- $dbg = '&app=2577123062406162&sec=a4656a1cae5e33ff0c18ee38efaa47ac'; //ElementsKit Plugin page feed
96
- $scopes = '&scope=pages_show_list,pages_read_engagement,pages_manage_engagement,pages_read_user_content'; ?>
97
-
98
- <a class="ekit-admin-access-token" href="https://token.wpmet.com/social_token.php?provider=facebook&_for=page<?php echo $dbg; ?><?php echo $scopes; ?>"
99
- target="_blank"> <?php echo esc_html__('Get access token', 'elementskit-lite') ?>
100
- </a>
101
-
102
- </div>
103
- </div>
104
-
105
- </div>
106
-
107
- <!-------------------
108
- Facebook page review
109
- -------------------->
110
-
111
- <div class="attr-panel ekit_accordion_card">
112
- <div
113
- class="<?php echo $this->utils->is_widget_active_class('facebook-review', $pro_active);?>"
114
- data-attr-toggle="modal"
115
- data-target="#elementskit_go_pro_modal"
116
- role="tab" id="facebook_data_headeing">
117
-
118
- <a class="attr-btn" role="button" data-attr-toggle="collapse" data-parent="#accordion" href="#fbp_review_control_data"
119
- aria-expanded="false" aria-controls="fbp_review_control_data">
120
- <span><?php esc_html_e('Facebook page review', 'elementskit-lite'); ?></span>
121
- </a>
122
-
123
- </div>
124
-
125
- <div id="fbp_review_control_data" class="attr-panel-collapse attr-collapse" role="tabpanel"
126
- aria-labelledby="facebook_data_headeing">
127
- <div class="attr-panel-body">
128
- <div class="ekit-admin-user-data-separator"></div>
129
- <?php
130
- $this->utils->input([
131
- 'type' => 'text',
132
- 'name' => 'user_data[fbp_review][pg_id]',
133
- 'label' => esc_html__('Page ID', 'elementskit-lite'),
134
- 'placeholder' => '109208590868891',
135
- 'value' => (!isset($user_data['fbp_review']['pg_id'])) ? '' : ($user_data['fbp_review']['pg_id'])
136
- ]);
137
- ?>
138
-
139
- <?php
140
-
141
- $val = (empty($user_data['fbp_review']['pg_token'])) ? '' : ($user_data['fbp_review']['pg_token']);
142
- $btn = (empty($user_data['fbp_review']['pg_token'])) ? __('Get access token', 'elementskit-lite') : __('Refresh access token', 'elementskit-lite');
143
-
144
- $this->utils->input([
145
- 'type' => 'text',
146
- 'name' => 'user_data[fbp_review][pg_token]',
147
- 'label' => esc_html__('Page Token', 'elementskit-lite'),
148
- 'placeholder' => 'S8LGISx9wBAOx5oUnxpOceDbyD01DYNNUwoz8jTHpm2ZB9RmK6jKwm',
149
- 'value' => $val
150
- ]);
151
-
152
- /**
153
- * App name : ElementsKit Plugin page feed
154
- * App id : 2577123062406162
155
- *
156
- * Just empty the string when done debugging :D
157
- *
158
- */
159
- $dbg = '&app=944119176079880&sec=03b20cdd9cf6f1d4d6e03522dc9caa2a';
160
- $dbg = '';
161
-
162
- ?>
163
-
164
- <a class="ekit-admin-access-token" href="https://token.wpmet.com/social_token.php?provider=facebook&_for=page<?php echo $dbg ?>" target="_blank">
165
- <?php echo $btn ?>
166
- </a>
167
- </div>
168
- </div>
169
-
170
- </div>
171
-
172
- <!-------------------
173
- trustpilot
174
- -------------------->
175
-
176
- <div class="attr-panel ekit_accordion_card">
177
- <div
178
- class="<?php echo $this->utils->is_widget_active_class('trustpilot', $pro_active);?>"
179
- data-target="#elementskit_go_pro_modal"
180
- data-attr-toggle="modal"
181
- role="tab" id="trustpilot_data_headeing">
182
-
183
- <a class="attr-btn attr-collapsed" role="button" data-attr-toggle="collapse"
184
- data-parent="#accordion"
185
- href="#trustpilot_data_control" aria-expanded="false" aria-controls="trustpilot_data_control">
186
- <?php esc_html_e('Trustpilot Settings', 'elementskit-lite'); ?>
187
- </a>
188
- </div>
189
-
190
- <div id="trustpilot_data_control" class="attr-panel-collapse attr-collapse" role="tabpanel"
191
- aria-labelledby="trustpilot_data_headeing">
192
- <div class="attr-panel-body">
193
- <div class="ekit-admin-user-data-separator"></div>
194
-
195
- <?php
196
- $this->utils->input([
197
- 'type' => 'text',
198
- 'name' => 'user_data[trustpilot][page]',
199
- 'label' => esc_html__('Trustpilot Page', 'elementskit-lite'),
200
- 'placeholder' => 'mysite.com',
201
- 'value' => (!isset($user_data['trustpilot']['page'])) ? '' : ($user_data['trustpilot']['page'])
202
- ]);
203
- ?>
204
- </div>
205
- </div>
206
-
207
- </div>
208
-
209
- <!-------------------
210
- yelp
211
- -------------------->
212
- <div class="attr-panel ekit_accordion_card">
213
- <div
214
- class="<?php echo $this->utils->is_widget_active_class('yelp', $pro_active);?>"
215
- data-attr-toggle="modal"
216
- data-target="#elementskit_go_pro_modal"
217
- role="tab" id="yelp_data_headeing">
218
-
219
- <a class="attr-btn attr-collapsed" role="button" data-attr-toggle="collapse"
220
- data-parent="#accordion"
221
- href="#yelp_data_control" aria-expanded="false" aria-controls="yelp_data_control">
222
- <?php esc_html_e('Yelp Settings', 'elementskit-lite'); ?>
223
- </a>
224
- </div>
225
-
226
-
227
- <div id="yelp_data_control" class="attr-panel-collapse attr-collapse" role="tabpanel"
228
- aria-labelledby="yelp_data_headeing">
229
- <div class="attr-panel-body">
230
- <div class="ekit-admin-user-data-separator"></div>
231
-
232
- <?php
233
- $this->utils->input([
234
- 'type' => 'text',
235
- 'name' => 'user_data[yelp][page]',
236
- 'label' => esc_html__('Yelp Page', 'elementskit-lite'),
237
- 'placeholder' => 'awesome-cuisine-san-francisco',
238
- 'value' => (!isset($user_data['yelp']['page'])) ? '' : ($user_data['yelp']['page'])
239
- ]);
240
- ?>
241
- </div>
242
- </div>
243
-
244
- </div>
245
-
246
- <!-------------------
247
- facebook messenger
248
- -------------------->
249
- <div class="attr-panel ekit_accordion_card">
250
- <div
251
- data-attr-toggle="modal"
252
- data-target="#elementskit_go_pro_modal"
253
- class="<?php echo $this->utils->is_widget_active_class('facebook-messenger', $pro_active);?>"
254
- role="tab" id="facebook_data_headeing">
255
- <a class="attr-btn" role="button" data-attr-toggle="collapse" data-parent="#accordion" href="#fbm_control_data"
256
- aria-expanded="false" aria-controls="fbm_control_data">
257
- <?php esc_html_e('Facebook Messenger', 'elementskit-lite'); ?>
258
- </a>
259
- </div>
260
-
261
- <div id="fbm_control_data" class="attr-panel-collapse attr-collapse" role="tabpanel"
262
- aria-labelledby="facebook_data_headeing">
263
- <div class="attr-panel-body">
264
- <div class="ekit-admin-user-data-separator"></div>
265
- <?php
266
- $this->utils->input([
267
- 'type' => 'text',
268
- 'name' => 'user_data[fbm_module][pg_id]',
269
- 'label' => esc_html__('Page ID', 'elementskit-lite'),
270
- 'placeholder' => '109208590868891',
271
- 'value' => (!isset($user_data['fbm_module']['pg_id'])) ? '' : ($user_data['fbm_module']['pg_id'])
272
- ]);
273
- ?>
274
-
275
- <?php
276
- $this->utils->input([
277
- 'type' => 'color',
278
- 'name' => 'user_data[fbm_module][txt_color]',
279
- 'label' => esc_html__('Color', 'elementskit-lite'),
280
- 'placeholder' => '#3b5998',
281
- 'value' => (!isset($user_data['fbm_module']['txt_color'])) ? '#3b5998' : ($user_data['fbm_module']['txt_color'])
282
- ]);
283
- ?>
284
-
285
- <?php
286
- $this->utils->input([
287
- 'type' => 'text',
288
- 'name' => 'user_data[fbm_module][l_in]',
289
- 'label' => esc_html__('Logged-in user greeting', 'elementskit-lite'),
290
- 'placeholder' => 'Hi! user',
291
- 'value' => (!isset($user_data['fbm_module']['l_in'])) ? 'Hi! user' : ($user_data['fbm_module']['l_in'])
292
- ]);
293
- ?>
294
-
295
- <?php
296
- $this->utils->input([
297
- 'type' => 'text',
298
- 'name' => 'user_data[fbm_module][l_out]',
299
- 'label' => esc_html__('Logged out user greeting', 'elementskit-lite'),
300
- 'placeholder' => 'Hi! guest',
301
- 'value' => (!isset($user_data['fbm_module']['l_out'])) ? 'Hi! guest' : ($user_data['fbm_module']['l_out'])
302
- ]);
303
- ?>
304
-
305
- <div>Please add below domain as white listed in page advance messaging option <a href="https://prnt.sc/u4zh96" target="_blank">how?</a></div>
306
- <div style="font-weight: bold;font-style: italic;color: blue;padding: 3px;"><?php echo site_url() ?></div>
307
- </div>
308
- </div>
309
-
310
- </div>
311
-
312
- <!-------------------
313
- dribble-feed
314
- -------------------->
315
-
316
- <div class="attr-panel ekit_accordion_card">
317
- <div
318
- class="<?php echo $this->utils->is_widget_active_class('dribble-feed', $pro_active);?>"
319
- data-attr-toggle="modal"
320
- data-target="#elementskit_go_pro_modal"
321
- role="tab" id="dribble_data_headeing">
322
- <a class="attr-btn" role="button" data-attr-toggle="collapse" data-parent="#accordion" href="#dribble_control_data"
323
- aria-expanded="false" aria-controls="dribble_control_data">
324
- <?php esc_html_e('Dribbble User Data', 'elementskit-lite'); ?>
325
- </a>
326
- </div>
327
-
328
- <div id="dribble_control_data" class="attr-panel-collapse attr-collapse" role="tabpanel"
329
- aria-labelledby="dribble_data_headeing">
330
- <div class="attr-panel-body">
331
- <div class="ekit-admin-user-data-separator"></div>
332
- <?php
333
- $this->utils->input([
334
- 'type' => 'text',
335
- 'name' => 'user_data[dribble][client_id]',
336
- 'label' => esc_html__('Client ID', 'elementskit-lite'),
337
- 'placeholder' => '60ed17852f0720210044a43713e91e7f141ff157dc3d95451d29a95e75e60b1b',
338
- 'value' => (!isset($user_data['dribble']['client_id'])) ? '' : ($user_data['dribble']['client_id'])
339
- ]);
340
-
341
-
342
- $this->utils->input([
343
- 'type' => 'text',
344
- 'name' => 'user_data[dribble][client_secret]',
345
- 'label' => esc_html__('Client Secret', 'elementskit-lite'),
346
- 'placeholder' => '94edbabf0feefcec83166f2dddeaa3a9f852785b6d6fb93f4a7a50412f2d3229',
347
- 'value' => (!isset($user_data['dribble']['client_secret'])) ? '' : ($user_data['dribble']['client_secret'])
348
- ]);
349
-
350
-
351
- $this->utils->input([
352
- 'type' => 'text',
353
- 'disabled' => (empty($user_data['dribble']['access_token']) ? 'disabled' : ''),
354
- 'name' => 'user_data[dribble][access_token]',
355
- 'label' => esc_html__('Access token', 'elementskit-lite'),
356
- 'placeholder' => 'Get a token....',
357
- 'value' => (empty($user_data['dribble']['access_token'])) ? '' : ($user_data['dribble']['access_token'])
358
- ]);
359
-
360
- ?>
361
- <div><?php echo __('Please add below redirect in your app settings', 'elementskit-lite') ?> <a href="https://i.imgur.com/mtOlSif.png" target="_blank"><?php esc_html_e('how?', 'elementskit-lite') ?></a></div>
362
- <div style="font-weight: bold;font-style: italic;color: blue;padding: 3px;"><?php echo site_url().'/wp-json/elementskit/v1/dribble/redirect_uri' ?></div>
363
- <?php
364
-
365
- if(empty($user_data['dribble']['access_token'])) : ?>
366
- <a style="cursor: pointer" class="ekit-admin-access-token" data-rest="<?php echo get_rest_url(); ?>" data-nonce="<?php echo wp_create_nonce('wp_rest'); ?>" id="dribble_access_btn" href="#" target="_blank"> <?php echo esc_html__('Get Access Token', 'elementskit-lite');?> </a>
367
- <?php
368
-
369
- else: ?>
370
-
371
- <a style="cursor: pointer" class="ekit-admin-access-token" data-rest="<?php echo get_rest_url(); ?>" data-nonce="<?php echo wp_create_nonce('wp_rest'); ?>" id="dribble_access_btn" href="#" target="_blank"> <?php echo esc_html__('Refresh Access Token', 'elementskit-lite');?> </a>
372
- <?php
373
-
374
- endif;
375
- ?>
376
-
377
- </div>
378
- </div>
379
-
380
- </div>
381
-
382
- <!-------------------
383
- twitter feed
384
- -------------------->
385
- <div class="attr-panel ekit_accordion_card">
386
- <div
387
- class="<?php echo $this->utils->is_widget_active_class('twitter-feed', $pro_active);?>"
388
- data-attr-toggle="modal"
389
- data-target="#elementskit_go_pro_modal"
390
- role="tab" id="twetter_data_headeing">
391
- <a class="attr-btn attr-collapsed" role="button" data-attr-toggle="collapse" data-parent="#accordion"
392
- href="#twitter_data_control" aria-expanded="false" aria-controls="twitter_data_control">
393
- <?php esc_html_e('Twitter User Data', 'elementskit-lite'); ?>
394
- </a>
395
- </div>
396
-
397
- <div id="twitter_data_control" class="attr-panel-collapse attr-collapse" role="tabpanel"
398
- aria-labelledby="twetter_data_headeing">
399
- <div class="attr-panel-body">
400
- <div class="ekit-admin-user-data-separator"></div>
401
- <?php
402
- $this->utils->input([
403
- 'type' => 'text',
404
- 'name' => 'user_data[twitter][name]',
405
- 'label' => esc_html__('Twitter Username', 'elementskit-lite'),
406
- 'placeholder' => 'gameofthrones',
407
- 'value' => (!isset($user_data['twitter']['name'])) ? '' : ($user_data['twitter']['name'])
408
-
409
- ]);
410
- ?>
411
- <?php
412
- $this->utils->input([
413
- 'type' => 'text',
414
- 'name' => 'user_data[twitter][access_token]',
415
- 'label' => esc_html__('Access Token', 'elementskit-lite'),
416
- 'placeholder' => '97174059-g10REWwVvI0Mk02DhoXbqpEhh4zQg6SBIP2k8',
417
- // 'info' => esc_html__('Yuour', 'elementsKit-lite')
418
- 'value' => (!isset($user_data['twitter']['access_token'])) ? '' : ($user_data['twitter']['access_token'])
419
- ]);
420
- ?>
421
- <a class="ekit-admin-access-token" href="https://token.wpmet.com/index.php?provider=twitter" target="_blank"> <?php echo esc_html__('Get Access Token', 'elementskit-lite');?> </a>
422
- </div>
423
- </div>
424
-
425
- </div>
426
-
427
- <!-------------------
428
- instagram-feed
429
- -------------------->
430
- <div class="attr-panel ekit_accordion_card">
431
- <div
432
- class="<?php echo $this->utils->is_widget_active_class('instagram-feed', $pro_active);?>"
433
- data-attr-toggle="modal"
434
- data-target="#elementskit_go_pro_modal"
435
- role="tab" id="instagram_data_headeing">
436
- <a class="attr-btn attr-collapsed" role="button" data-attr-toggle="collapse" data-parent="#accordion"
437
- href="#instagram_data_control" aria-expanded="false" aria-controls="instagram_data_control">
438
- <?php esc_html_e('Instragram User Data', 'elementskit-lite'); ?>
439
- </a>
440
- </div>
441
-
442
- <div id="instagram_data_control" class="attr-panel-collapse attr-collapse" role="tabpanel"
443
- aria-labelledby="instagram_data_headeing">
444
- <div class="attr-panel-body">
445
- <div class="ekit-admin-user-data-separator"></div>
446
-
447
- <?php
448
-
449
- // $this->utils->input([
450
- // 'type' => 'text',
451
- // 'name' => 'user_data[instragram][username]',
452
- // 'label' => esc_html__('Username', 'elementsKit-lite'),
453
- // 'placeholder' => 'my_username',
454
- // 'value' => (!isset($user_data['instragram']['username'])) ? '' : ($user_data['instragram']['username'])
455
- // ]);
456
-
457
- $insta_client_id = (!isset($user_data['instragram']['client_id'])) ? '' : ($user_data['instragram']['client_id']);
458
- $insta_client_secret = (!isset($user_data['instragram']['client_secret'])) ? '' : ($user_data['instragram']['client_secret']);
459
-
460
- $this->utils->input([
461
- 'type' => 'text',
462
- 'name' => 'user_data[instragram][client_id]',
463
- 'label' => esc_html__('Client ID', 'elementskit-lite'),
464
- 'placeholder' => '',
465
- 'value' => $insta_client_id
466
- ]);
467
-
468
- $this->utils->input([
469
- 'type' => 'text',
470
- 'name' => 'user_data[instragram][client_secret]',
471
- 'label' => esc_html__('Client Secret', 'elementskit-lite'),
472
- 'placeholder' => '',
473
- 'value' => $insta_client_secret
474
- ]);
475
-
476
-
477
-
478
-
479
- $redirect_url = get_site_url() . '/wp-json/elementskit/v1/widget/instagram-feed/token';
480
-
481
- echo '<small>Redirect URL : <br><code>'. $redirect_url . '</code></small>';
482
-
483
- $insta_login_url = '#';
484
- $scope = 'user_profile,user_media';
485
-
486
- if(!empty($insta_client_id)){
487
- $insta_login_url = 'https://api.instagram.com/oauth/authorize?client_id='.$insta_client_id.'&redirect_uri='.$redirect_url.'&scope='.$scope.'&response_type=code';
488
- }
489
-
490
-
491
-
492
- ?>
493
-
494
- <a class="ekit-admin-access-token" href="<?php echo $insta_login_url; ?>">
495
- <?php echo esc_html__('Connect with Instagram', 'elementskit-lite');?>
496
- </a>
497
-
498
- </div>
499
- </div>
500
-
501
- </div>
502
-
503
- <!-------------------
504
- zoom
505
- -------------------->
506
-
507
- <div class="attr-panel ekit_accordion_card">
508
- <div
509
- class="<?php echo $this->utils->is_widget_active_class('zoom', $pro_active);?>"
510
- data-attr-toggle="modal"
511
- data-target="#elementskit_go_pro_modal"
512
- role="tab" id="zoom_data_headeing">
513
- <a class="attr-btn attr-collapsed" role="button" data-attr-toggle="collapse" data-parent="#accordion"
514
- href="#zoom_data_control" aria-expanded="false" aria-controls="zoom_data_control">
515
- <?php esc_html_e('Zoom Data', 'elementskit-lite'); ?>
516
- </a>
517
- </div>
518
-
519
- <div id="zoom_data_control" class="attr-panel-collapse attr-collapse" role="tabpanel"
520
- aria-labelledby="zoom_data_headeing">
521
- <div class="attr-panel-body">
522
- <div class="ekit-admin-user-data-separator"></div>
523
- <?php
524
- $this->utils->input([
525
- 'type' => 'text',
526
- 'name' => 'user_data[zoom][api_key]',
527
- 'label' => esc_html__('Api key', 'elementskit-lite'),
528
- 'placeholder' => 'FmOUK_vdR-eepOExMhN7Kg',
529
- 'value' => (!isset($user_data['zoom']['api_key'])) ? '' : ($user_data['zoom']['api_key'])
530
- ]);
531
- ?>
532
- <?php
533
- $this->utils->input([
534
- 'type' => 'text',
535
- 'name' => 'user_data[zoom][secret_key]',
536
- 'label' => esc_html__('Secret Key', 'elementskit-lite'),
537
- 'placeholder' => 'OhDwAoNflUK6XkFB8ShCY5R7I8HxyWLMXR2SHK',
538
- 'value' => (!isset($user_data['zoom']['secret_key'])) ? '' : ($user_data['zoom']['secret_key'])
539
- ]);
540
- ?>
541
- <a class="ekit-admin-access-token ekit-zoom-connection" href="https://token.wpmet.com/index.php?provider=zoom" target="_blank"> <?php echo esc_html__('Check connection', 'elementskit-lite');?> </a>
542
- </div>
543
- </div>
544
-
545
- </div>
546
-
547
- <!-------------------
548
- google-map
549
- -------------------->
550
-
551
- <div class="attr-panel ekit_accordion_card">
552
- <div
553
- class="<?php echo $this->utils->is_widget_active_class('google-map', $pro_active);?>"
554
- data-attr-toggle="modal"
555
- data-target="#elementskit_go_pro_modal"
556
- role="tab" id="google_map_data_heading">
557
- <a class="attr-btn attr-collapsed" role="button" data-attr-toggle="collapse" data-parent="#accordion"
558
- href="#google_map_data_control" aria-expanded="false"
559
- aria-controls="google_map_data_control">
560
- <?php esc_html_e('Google Map', 'elementskit-lite'); ?>
561
- </a>
562
- </div>
563
-
564
- <div id="google_map_data_control" class="attr-panel-collapse attr-collapse" role="tabpanel"
565
- aria-labelledby="google_map_data_heading" aria-expanded='false'>
566
- <div class="attr-panel-body">
567
- <div class="ekit-admin-user-data-separator"></div>
568
- <?php
569
- $this->utils->input([
570
- 'type' => 'text',
571
- 'name' => 'user_data[google_map][api_key]',
572
- 'label' => esc_html__('Api Key', 'elementskit-lite'),
573
- 'placeholder' => 'AIzaSyA-10-OHpfss9XvUDWILmos62MnG_L4MYw',
574
- 'value' => (!isset($user_data['google_map']['api_key'])) ? '' : ($user_data['google_map']['api_key'])
575
- ]);
576
- ?>
577
-
578
- </div>
579
- </div>
580
-
581
- </div>
582
-
583
- <?php do_action('elementskit/admin/sections/userdata'); ?>
584
-
585
- </div>
586
- </div>
587
  </div>
1
+ <?php
2
+
3
+ $user_data = $this->utils->get_option('user_data', []);
4
+ $pro_active = (in_array('elementskit/elementskit.php', apply_filters('active_plugins', get_option('active_plugins'))));
5
+
6
+ ?>
7
+
8
+ <div class="ekit-admin-fields-container">
9
+ <div class="ekit-admin-fields-container-fieldset-- xx">
10
+ <div class="panel-group attr-accordion" id="accordion" role="tablist" aria-multiselectable="true">
11
+ <!-------------------
12
+ Mail Champ
13
+ -------------------->
14
+ <div class="attr-panel ekit_accordion_card">
15
+ <div class="attr-panel-heading label-mail-chimp" role="tab" id="mail_chimp_data_headeing">
16
+ <a class="attr-btn attr-collapsed" role="button" data-attr-toggle="collapse" data-parent="#accordion"
17
+ href="#mail_chimp_data_control" aria-expanded="true"
18
+ aria-controls="mail_chimp_data_control">
19
+ <span><?php esc_html_e('Mail Chimp Data', 'elementskit-lite'); ?></span>
20
+ </a>
21
+ </div>
22
+
23
+
24
+
25
+ <div id="mail_chimp_data_control" class="attr-panel-collapse attr-collapse attr-in" role="tabpanel"
26
+ aria-labelledby="mail_chimp_data_headeing">
27
+ <div class="attr-panel-body">
28
+ <div class="ekit-admin-user-data-separator"></div>
29
+ <?php
30
+ $this->utils->input([
31
+ 'type' => 'text',
32
+ 'name' => 'user_data[mail_chimp][token]',
33
+ 'label' => esc_html__('Token', 'elementskit-lite'),
34
+ 'placeholder' => '24550c8cb06076751a80274a52878-us20',
35
+ 'value' => (!isset($user_data['mail_chimp']['token'])) ? '' : ($user_data['mail_chimp']['token'])
36
+ ]);
37
+ ?>
38
+
39
+ </div>
40
+ </div>
41
+
42
+
43
+
44
+
45
+ </div>
46
+
47
+ <!-------------------
48
+ Facebook Page Feed
49
+ -------------------->
50
+ <div class="attr-panel ekit_accordion_card">
51
+ <div
52
+ class="<?php echo $this->utils->is_widget_active_class('facebook-feed', $pro_active);?>"
53
+ data-attr-toggle="modal"
54
+ data-target="#elementskit_go_pro_modal"
55
+ role="tab" id="facebook_data_headeing">
56
+
57
+
58
+ <a class="attr-btn" role="button" data-attr-toggle="collapse" data-parent="#accordion"
59
+
60
+ href="#fbp_feed_control_data"
61
+ aria-expanded="false" aria-controls="fbp_feed_control_data">
62
+ <span><?php esc_html_e('Facebook Page Feed', 'elementskit-lite'); ?></span>
63
+ </a>
64
+ </div>
65
+
66
+
67
+ <div id="fbp_feed_control_data" class="attr-panel-collapse attr-collapse" role="tabpanel"
68
+ aria-labelledby="facebook_data_headeing">
69
+ <div class="attr-panel-body">
70
+ <div class="ekit-admin-user-data-separator"></div>
71
+
72
+ <?php
73
+ $this->utils->input([
74
+ 'type' => 'text',
75
+ 'name' => 'user_data[fb_feed][page_id]',
76
+ 'label' => esc_html__('Facebook Page ID', 'elementskit-lite'),
77
+ 'placeholder' => __('Facebook app id', 'elementskit-lite'),
78
+ 'value' => (!isset($user_data['fb_feed']['page_id'])) ? '' : ($user_data['fb_feed']['page_id']),
79
+ ]);
80
+ ?>
81
+
82
+ <?php
83
+
84
+ $val = empty($user_data['fb_feed']['pg_token']) ? '' : $user_data['fb_feed']['pg_token'];
85
+
86
+ $this->utils->input([
87
+ 'type' => 'text',
88
+ 'name' => 'user_data[fb_feed][pg_token]',
89
+ 'label' => esc_html__('Page Access Token', 'elementskit-lite'),
90
+ 'placeholder' => 'S8LGISx9wBAOx5oUnxpOceDbyD01DYNNUwoz8jTHpm2ZB9RmK6jKwm',
91
+ 'value' => (!isset($user_data['fb_feed']['pg_token'])) ? '' : ($user_data['fb_feed']['pg_token']),
92
+ ]);
93
+
94
+ $dbg = '&app=105697909488869&sec=f64837dd6a129c23ab47bdfdc61cfe19'; //ElementsKit Plugin Review
95
+ $dbg = '&app=2577123062406162&sec=a4656a1cae5e33ff0c18ee38efaa47ac'; //ElementsKit Plugin page feed
96
+ $scopes = '&scope=pages_show_list,pages_read_engagement,pages_manage_engagement,pages_read_user_content'; ?>
97
+
98
+ <a class="ekit-admin-access-token" href="https://token.wpmet.com/social_token.php?provider=facebook&_for=page<?php echo $dbg; ?><?php echo $scopes; ?>"
99
+ target="_blank"> <?php echo esc_html__('Get access token', 'elementskit-lite') ?>
100
+ </a>
101
+
102
+ </div>
103
+ </div>
104
+
105
+ </div>
106
+
107
+ <!-------------------
108
+ Facebook page review
109
+ -------------------->
110
+
111
+ <div class="attr-panel ekit_accordion_card">
112
+ <div
113
+ class="<?php echo $this->utils->is_widget_active_class('facebook-review', $pro_active);?>"
114
+ data-attr-toggle="modal"
115
+ data-target="#elementskit_go_pro_modal"
116
+ role="tab" id="facebook_data_headeing">
117
+
118
+ <a class="attr-btn" role="button" data-attr-toggle="collapse" data-parent="#accordion" href="#fbp_review_control_data"
119
+ aria-expanded="false" aria-controls="fbp_review_control_data">
120
+ <span><?php esc_html_e('Facebook page review', 'elementskit-lite'); ?></span>
121
+ </a>
122
+
123
+ </div>
124
+
125
+ <div id="fbp_review_control_data" class="attr-panel-collapse attr-collapse" role="tabpanel"
126
+ aria-labelledby="facebook_data_headeing">
127
+ <div class="attr-panel-body">
128
+ <div class="ekit-admin-user-data-separator"></div>
129
+ <?php
130
+ $this->utils->input([
131
+ 'type' => 'text',
132
+ 'name' => 'user_data[fbp_review][pg_id]',
133
+ 'label' => esc_html__('Page ID', 'elementskit-lite'),
134
+ 'placeholder' => '109208590868891',
135
+ 'value' => (!isset($user_data['fbp_review']['pg_id'])) ? '' : ($user_data['fbp_review']['pg_id'])
136
+ ]);
137
+ ?>
138
+
139
+ <?php
140
+
141
+ $val = (empty($user_data['fbp_review']['pg_token'])) ? '' : ($user_data['fbp_review']['pg_token']);
142
+ $btn = (empty($user_data['fbp_review']['pg_token'])) ? __('Get access token', 'elementskit-lite') : __('Refresh access token', 'elementskit-lite');
143
+
144
+ $this->utils->input([
145
+ 'type' => 'text',
146
+ 'name' => 'user_data[fbp_review][pg_token]',
147
+ 'label' => esc_html__('Page Token', 'elementskit-lite'),
148
+ 'placeholder' => 'S8LGISx9wBAOx5oUnxpOceDbyD01DYNNUwoz8jTHpm2ZB9RmK6jKwm',
149
+ 'value' => $val
150
+ ]);
151
+
152
+ /**
153
+ * App name : ElementsKit Plugin page feed
154
+ * App id : 2577123062406162
155
+ *
156
+ * Just empty the string when done debugging :D
157
+ *
158
+ */
159
+ $dbg = '&app=944119176079880&sec=03b20cdd9cf6f1d4d6e03522dc9caa2a';
160
+ $dbg = '';
161
+
162
+ ?>
163
+
164
+ <a class="ekit-admin-access-token" href="https://token.wpmet.com/social_token.php?provider=facebook&_for=page<?php echo $dbg ?>" target="_blank">
165
+ <?php echo $btn ?>
166
+ </a>
167
+ </div>
168
+ </div>
169
+
170
+ </div>
171
+
172
+ <!-------------------
173
+ trustpilot
174
+ -------------------->
175
+
176
+ <div class="attr-panel ekit_accordion_card">
177
+ <div
178
+ class="<?php echo $this->utils->is_widget_active_class('trustpilot', $pro_active);?>"
179
+ data-target="#elementskit_go_pro_modal"
180
+ data-attr-toggle="modal"
181
+ role="tab" id="trustpilot_data_headeing">
182
+
183
+ <a class="attr-btn attr-collapsed" role="button" data-attr-toggle="collapse"
184
+ data-parent="#accordion"
185
+ href="#trustpilot_data_control" aria-expanded="false" aria-controls="trustpilot_data_control">
186
+ <?php esc_html_e('Trustpilot Settings', 'elementskit-lite'); ?>
187
+ </a>
188
+ </div>
189
+
190
+ <div id="trustpilot_data_control" class="attr-panel-collapse attr-collapse" role="tabpanel"
191
+ aria-labelledby="trustpilot_data_headeing">
192
+ <div class="attr-panel-body">
193
+ <div class="ekit-admin-user-data-separator"></div>
194
+
195
+ <?php
196
+ $this->utils->input([
197
+ 'type' => 'text',
198
+ 'name' => 'user_data[trustpilot][page]',
199
+ 'label' => esc_html__('Trustpilot Page', 'elementskit-lite'),
200
+ 'placeholder' => 'mysite.com',
201
+ 'value' => (!isset($user_data['trustpilot']['page'])) ? '' : ($user_data['trustpilot']['page'])
202
+ ]);
203
+ ?>
204
+ </div>
205
+ </div>
206
+
207
+ </div>
208
+
209
+ <!-------------------
210
+ yelp
211
+ -------------------->
212
+ <div class="attr-panel ekit_accordion_card">
213
+ <div
214
+ class="<?php echo $this->utils->is_widget_active_class('yelp', $pro_active);?>"
215
+ data-attr-toggle="modal"
216
+ data-target="#elementskit_go_pro_modal"
217
+ role="tab" id="yelp_data_headeing">
218
+
219
+ <a class="attr-btn attr-collapsed" role="button" data-attr-toggle="collapse"
220
+ data-parent="#accordion"
221
+ href="#yelp_data_control" aria-expanded="false" aria-controls="yelp_data_control">
222
+ <?php esc_html_e('Yelp Settings', 'elementskit-lite'); ?>
223
+ </a>
224
+ </div>
225
+
226
+
227
+ <div id="yelp_data_control" class="attr-panel-collapse attr-collapse" role="tabpanel"
228
+ aria-labelledby="yelp_data_headeing">
229
+ <div class="attr-panel-body">
230
+ <div class="ekit-admin-user-data-separator"></div>
231
+
232
+ <?php
233
+ $this->utils->input([
234
+ 'type' => 'text',
235
+ 'name' => 'user_data[yelp][page]',
236
+ 'label' => esc_html__('Yelp Page', 'elementskit-lite'),
237
+ 'placeholder' => 'awesome-cuisine-san-francisco',
238
+ 'value' => (!isset($user_data['yelp']['page'])) ? '' : ($user_data['yelp']['page'])
239
+ ]);
240
+ ?>
241
+ </div>
242
+ </div>
243
+
244
+ </div>
245
+
246
+ <!-------------------
247
+ facebook messenger
248
+ -------------------->
249
+ <div class="attr-panel ekit_accordion_card">
250
+ <div
251
+ data-attr-toggle="modal"
252
+ data-target="#elementskit_go_pro_modal"
253
+ class="<?php echo $this->utils->is_widget_active_class('facebook-messenger', $pro_active);?>"
254
+ role="tab" id="facebook_data_headeing">
255
+ <a class="attr-btn" role="button" data-attr-toggle="collapse" data-parent="#accordion" href="#fbm_control_data"
256
+ aria-expanded="false" aria-controls="fbm_control_data">
257
+ <?php esc_html_e('Facebook Messenger', 'elementskit-lite'); ?>
258
+ </a>
259
+ </div>
260
+
261
+ <div id="fbm_control_data" class="attr-panel-collapse attr-collapse" role="tabpanel"
262
+ aria-labelledby="facebook_data_headeing">
263
+ <div class="attr-panel-body">
264
+ <div class="ekit-admin-user-data-separator"></div>
265
+ <?php
266
+ $this->utils->input([
267
+ 'type' => 'text',
268
+ 'name' => 'user_data[fbm_module][pg_id]',
269
+ 'label' => esc_html__('Page ID', 'elementskit-lite'),
270
+ 'placeholder' => '109208590868891',
271
+ 'value' => (!isset($user_data['fbm_module']['pg_id'])) ? '' : ($user_data['fbm_module']['pg_id'])
272
+ ]);
273
+ ?>
274
+
275
+ <?php
276
+ $this->utils->input([
277
+ 'type' => 'color',
278
+ 'name' => 'user_data[fbm_module][txt_color]',
279
+ 'label' => esc_html__('Color', 'elementskit-lite'),
280
+ 'placeholder' => '#3b5998',
281
+ 'value' => (!isset($user_data['fbm_module']['txt_color'])) ? '#3b5998' : ($user_data['fbm_module']['txt_color'])
282
+ ]);
283
+ ?>
284
+
285
+ <?php
286
+ $this->utils->input([
287
+ 'type' => 'text',
288
+ 'name' => 'user_data[fbm_module][l_in]',
289
+ 'label' => esc_html__('Logged-in user greeting', 'elementskit-lite'),
290
+ 'placeholder' => 'Hi! user',
291
+ 'value' => (!isset($user_data['fbm_module']['l_in'])) ? 'Hi! user' : ($user_data['fbm_module']['l_in'])
292
+ ]);
293
+ ?>
294
+
295
+ <?php
296
+ $this->utils->input([
297
+ 'type' => 'text',
298
+ 'name' => 'user_data[fbm_module][l_out]',
299
+ 'label' => esc_html__('Logged out user greeting', 'elementskit-lite'),
300
+ 'placeholder' => 'Hi! guest',
301
+ 'value' => (!isset($user_data['fbm_module']['l_out'])) ? 'Hi! guest' : ($user_data['fbm_module']['l_out'])
302
+ ]);
303
+ ?>
304
+
305
+ <div>Please add below domain as white listed in page advance messaging option <a href="https://prnt.sc/u4zh96" target="_blank">how?</a></div>
306
+ <div style="font-weight: bold;font-style: italic;color: blue;padding: 3px;"><?php echo site_url() ?></div>
307
+ </div>
308
+ </div>
309
+
310
+ </div>
311
+
312
+ <!-------------------
313
+ dribble-feed
314
+ -------------------->
315
+
316
+ <div class="attr-panel ekit_accordion_card">
317
+ <div
318
+ class="<?php echo $this->utils->is_widget_active_class('dribble-feed', $pro_active);?>"
319
+ data-attr-toggle="modal"
320
+ data-target="#elementskit_go_pro_modal"
321
+ role="tab" id="dribble_data_headeing">
322
+ <a class="attr-btn" role="button" data-attr-toggle="collapse" data-parent="#accordion" href="#dribble_control_data"
323
+ aria-expanded="false" aria-controls="dribble_control_data">
324
+ <?php esc_html_e('Dribbble User Data', 'elementskit-lite'); ?>
325
+ </a>
326
+ </div>
327
+
328
+ <div id="dribble_control_data" class="attr-panel-collapse attr-collapse" role="tabpanel"
329
+ aria-labelledby="dribble_data_headeing">
330
+ <div class="attr-panel-body">
331
+ <div class="ekit-admin-user-data-separator"></div>
332
+ <?php
333
+ $this->utils->input([
334
+ 'type' => 'text',
335
+ 'name' => 'user_data[dribble][client_id]',
336
+ 'label' => esc_html__('Client ID', 'elementskit-lite'),
337
+ 'placeholder' => '60ed17852f0720210044a43713e91e7f141ff157dc3d95451d29a95e75e60b1b',
338
+ 'value' => (!isset($user_data['dribble']['client_id'])) ? '' : ($user_data['dribble']['client_id'])
339
+ ]);
340
+
341
+
342
+ $this->utils->input([
343
+ 'type' => 'text',
344
+ 'name' => 'user_data[dribble][client_secret]',
345
+ 'label' => esc_html__('Client Secret', 'elementskit-lite'),
346
+ 'placeholder' => '94edbabf0feefcec83166f2dddeaa3a9f852785b6d6fb93f4a7a50412f2d3229',
347
+ 'value' => (!isset($user_data['dribble']['client_secret'])) ? '' : ($user_data['dribble']['client_secret'])
348
+ ]);
349
+
350
+
351
+ $this->utils->input([
352
+ 'type' => 'text',
353
+ 'disabled' => (empty($user_data['dribble']['access_token']) ? 'disabled' : ''),
354
+ 'name' => 'user_data[dribble][access_token]',
355
+ 'label' => esc_html__('Access token', 'elementskit-lite'),
356
+ 'placeholder' => 'Get a token....',
357
+ 'value' => (empty($user_data['dribble']['access_token'])) ? '' : ($user_data['dribble']['access_token'])
358
+ ]);
359
+
360
+ ?>
361
+ <div><?php echo __('Please add below redirect in your app settings', 'elementskit-lite') ?> <a href="https://i.imgur.com/mtOlSif.png" target="_blank"><?php esc_html_e('how?', 'elementskit-lite') ?></a></div>
362
+ <div style="font-weight: bold;font-style: italic;color: blue;padding: 3px;"><?php echo site_url().'/wp-json/elementskit/v1/dribble/redirect_uri' ?></div>
363
+ <?php
364
+
365
+ if(empty($user_data['dribble']['access_token'])) : ?>
366
+ <a style="cursor: pointer" class="ekit-admin-access-token" data-rest="<?php echo get_rest_url(); ?>" data-nonce="<?php echo wp_create_nonce('wp_rest'); ?>" id="dribble_access_btn" href="#" target="_blank"> <?php echo esc_html__('Get Access Token', 'elementskit-lite');?> </a>
367
+ <?php
368
+
369
+ else: ?>
370
+
371
+ <a style="cursor: pointer" class="ekit-admin-access-token" data-rest="<?php echo get_rest_url(); ?>" data-nonce="<?php echo wp_create_nonce('wp_rest'); ?>" id="dribble_access_btn" href="#" target="_blank"> <?php echo esc_html__('Refresh Access Token', 'elementskit-lite');?> </a>
372
+ <?php
373
+
374
+ endif;
375
+ ?>
376
+
377
+ </div>
378
+ </div>
379
+
380
+ </div>
381
+
382
+ <!-------------------
383
+ twitter feed
384
+ -------------------->
385
+ <div class="attr-panel ekit_accordion_card">
386
+ <div
387
+ class="<?php echo $this->utils->is_widget_active_class('twitter-feed', $pro_active);?>"
388
+ data-attr-toggle="modal"
389
+ data-target="#elementskit_go_pro_modal"
390
+ role="tab" id="twetter_data_headeing">
391
+ <a class="attr-btn attr-collapsed" role="button" data-attr-toggle="collapse" data-parent="#accordion"
392
+ href="#twitter_data_control" aria-expanded="false" aria-controls="twitter_data_control">
393
+ <?php esc_html_e('Twitter User Data', 'elementskit-lite'); ?>
394
+ </a>
395
+ </div>
396
+
397
+ <div id="twitter_data_control" class="attr-panel-collapse attr-collapse" role="tabpanel"
398
+ aria-labelledby="twetter_data_headeing">
399
+ <div class="attr-panel-body">
400
+ <div class="ekit-admin-user-data-separator"></div>
401
+ <?php
402
+ $this->utils->input([
403
+ 'type' => 'text',
404
+ 'name' => 'user_data[twitter][name]',
405
+ 'label' => esc_html__('Twitter Username', 'elementskit-lite'),
406
+ 'placeholder' => 'gameofthrones',
407
+ 'value' => (!isset($user_data['twitter']['name'])) ? '' : ($user_data['twitter']['name'])
408
+
409
+ ]);
410
+ ?>
411
+ <?php
412
+ $this->utils->input([
413
+ 'type' => 'text',
414
+ 'name' => 'user_data[twitter][access_token]',
415
+ 'label' => esc_html__('Access Token', 'elementskit-lite'),
416
+ 'placeholder' => '97174059-g10REWwVvI0Mk02DhoXbqpEhh4zQg6SBIP2k8',
417
+ // 'info' => esc_html__('Yuour', 'elementsKit-lite')
418
+ 'value' => (!isset($user_data['twitter']['access_token'])) ? '' : ($user_data['twitter']['access_token'])
419
+ ]);
420
+ ?>
421
+ <a class="ekit-admin-access-token" href="https://token.wpmet.com/index.php?provider=twitter" target="_blank"> <?php echo esc_html__('Get Access Token', 'elementskit-lite');?> </a>
422
+ </div>
423
+ </div>
424
+
425
+ </div>
426
+
427
+ <!-------------------
428
+ instagram-feed
429
+ -------------------->
430
+ <div class="attr-panel ekit_accordion_card">
431
+ <div
432
+ class="<?php echo $this->utils->is_widget_active_class('instagram-feed', $pro_active);?>"
433
+ data-attr-toggle="modal"
434
+ data-target="#elementskit_go_pro_modal"
435
+ role="tab" id="instagram_data_headeing">
436
+ <a class="attr-btn attr-collapsed" role="button" data-attr-toggle="collapse" data-parent="#accordion"
437
+ href="#instagram_data_control" aria-expanded="false" aria-controls="instagram_data_control">
438
+ <?php esc_html_e('Instragram User Data', 'elementskit-lite'); ?>
439
+ </a>
440
+ </div>
441
+
442
+ <div id="instagram_data_control" class="attr-panel-collapse attr-collapse" role="tabpanel"
443
+ aria-labelledby="instagram_data_headeing">
444
+ <div class="attr-panel-body">
445
+ <div class="ekit-admin-user-data-separator"></div>
446
+
447
+ <?php
448
+
449
+ // $this->utils->input([
450
+ // 'type' => 'text',
451
+ // 'name' => 'user_data[instragram][username]',
452
+ // 'label' => esc_html__('Username', 'elementsKit-lite'),
453
+ // 'placeholder' => 'my_username',
454
+ // 'value' => (!isset($user_data['instragram']['username'])) ? '' : ($user_data['instragram']['username'])
455
+ // ]);
456
+
457
+ $insta_client_id = (!isset($user_data['instragram']['client_id'])) ? '' : ($user_data['instragram']['client_id']);
458
+ $insta_client_secret = (!isset($user_data['instragram']['client_secret'])) ? '' : ($user_data['instragram']['client_secret']);
459
+
460
+ $this->utils->input([
461
+ 'type' => 'text',
462
+ 'name' => 'user_data[instragram][client_id]',
463
+ 'label' => esc_html__('Client ID', 'elementskit-lite'),
464
+ 'placeholder' => '',
465
+ 'value' => $insta_client_id
466
+ ]);
467
+
468
+ $this->utils->input([
469
+ 'type' => 'text',
470
+ 'name' => 'user_data[instragram][client_secret]',
471
+ 'label' => esc_html__('Client Secret', 'elementskit-lite'),
472
+ 'placeholder' => '',
473
+ 'value' => $insta_client_secret
474
+ ]);
475
+
476
+
477
+
478
+
479
+ $redirect_url = get_site_url() . '/wp-json/elementskit/v1/widget/instagram-feed/token';
480
+
481
+ echo '<small>Redirect URL : <br><code>'. $redirect_url . '</code></small>';
482
+
483
+ $insta_login_url = '#';
484
+ $scope = 'user_profile,user_media';
485
+
486
+ if(!empty($insta_client_id)){
487
+ $insta_login_url = 'https://api.instagram.com/oauth/authorize?client_id='.$insta_client_id.'&redirect_uri='.$redirect_url.'&scope='.$scope.'&response_type=code';
488
+ }
489
+
490
+
491
+
492
+ ?>
493
+
494
+ <a class="ekit-admin-access-token" href="<?php echo $insta_login_url; ?>">
495
+ <?php echo esc_html__('Connect with Instagram', 'elementskit-lite');?>
496
+ </a>
497
+
498
+ </div>
499
+ </div>
500
+
501
+ </div>
502
+
503
+ <!-------------------
504
+ zoom
505
+ -------------------->
506
+
507
+ <div class="attr-panel ekit_accordion_card">
508
+ <div
509
+ class="<?php echo $this->utils->is_widget_active_class('zoom', $pro_active);?>"
510
+ data-attr-toggle="modal"
511
+ data-target="#elementskit_go_pro_modal"
512
+ role="tab" id="zoom_data_headeing">
513
+ <a class="attr-btn attr-collapsed" role="button" data-attr-toggle="collapse" data-parent="#accordion"
514
+ href="#zoom_data_control" aria-expanded="false" aria-controls="zoom_data_control">
515
+ <?php esc_html_e('Zoom Data', 'elementskit-lite'); ?>
516
+ </a>
517
+ </div>
518
+
519
+ <div id="zoom_data_control" class="attr-panel-collapse attr-collapse" role="tabpanel"
520
+ aria-labelledby="zoom_data_headeing">
521
+ <div class="attr-panel-body">
522
+ <div class="ekit-admin-user-data-separator"></div>
523
+ <?php
524
+ $this->utils->input([
525
+ 'type' => 'text',
526
+ 'name' => 'user_data[zoom][api_key]',
527
+ 'label' => esc_html__('Api key', 'elementskit-lite'),
528
+ 'placeholder' => 'FmOUK_vdR-eepOExMhN7Kg',
529
+ 'value' => (!isset($user_data['zoom']['api_key'])) ? '' : ($user_data['zoom']['api_key'])
530
+ ]);
531
+ ?>
532
+ <?php
533
+ $this->utils->input([
534
+ 'type' => 'text',
535
+ 'name' => 'user_data[zoom][secret_key]',
536
+ 'label' => esc_html__('Secret Key', 'elementskit-lite'),
537
+ 'placeholder' => 'OhDwAoNflUK6XkFB8ShCY5R7I8HxyWLMXR2SHK',
538
+ 'value' => (!isset($user_data['zoom']['secret_key'])) ? '' : ($user_data['zoom']['secret_key'])
539
+ ]);
540
+ ?>
541
+ <a class="ekit-admin-access-token ekit-zoom-connection" href="https://token.wpmet.com/index.php?provider=zoom" target="_blank"> <?php echo esc_html__('Check connection', 'elementskit-lite');?> </a>
542
+ </div>
543
+ </div>
544
+
545
+ </div>
546
+
547
+ <!-------------------
548
+ google-map
549
+ -------------------->
550
+
551
+ <div class="attr-panel ekit_accordion_card">
552
+ <div
553
+ class="<?php echo $this->utils->is_widget_active_class('google-map', $pro_active);?>"
554
+ data-attr-toggle="modal"
555
+ data-target="#elementskit_go_pro_modal"
556
+ role="tab" id="google_map_data_heading">
557
+ <a class="attr-btn attr-collapsed" role="button" data-attr-toggle="collapse" data-parent="#accordion"
558
+ href="#google_map_data_control" aria-expanded="false"
559
+ aria-controls="google_map_data_control">
560
+ <?php esc_html_e('Google Map', 'elementskit-lite'); ?>
561
+ </a>
562
+ </div>
563
+
564
+ <div id="google_map_data_control" class="attr-panel-collapse attr-collapse" role="tabpanel"
565
+ aria-labelledby="google_map_data_heading" aria-expanded='false'>
566
+ <div class="attr-panel-body">
567
+ <div class="ekit-admin-user-data-separator"></div>
568
+ <?php
569
+ $this->utils->input([
570
+ 'type' => 'text',
571
+ 'name' => 'user_data[google_map][api_key]',
572
+ 'label' => esc_html__('Api Key', 'elementskit-lite'),
573
+ 'placeholder' => 'AIzaSyA-10-OHpfss9XvUDWILmos62MnG_L4MYw',
574
+ 'value' => (!isset($user_data['google_map']['api_key'])) ? '' : ($user_data['google_map']['api_key'])
575
+ ]);
576
+ ?>
577
+
578
+ </div>
579
+ </div>
580
+
581
+ </div>
582
+
583
+ <?php do_action('elementskit/admin/sections/userdata'); ?>
584
+
585
+ </div>
586
+ </div>
587
  </div>
libs/framework/views/user-consent-for-banner.php CHANGED
@@ -1,28 +1,28 @@
1
- <style>
2
- .ekit-user-consent-for-banner{
3
- margin: 0 0 15px 0!important;
4
- max-width: 450px;
5
- }
6
- </style>
7
- <script>
8
- jQuery(document).ready(function ($) {
9
- "use strict";
10
- $('#ekit-admin-switch__ekit-user-consent-for-banner').on('change', function(){
11
- let val = ($(this).prop("checked") ? $(this).val() : 'no');
12
-
13
- $.post( ajaxurl + '?action=ekit_admin_action', {'settings' : {'ekit_user_consent_for_banner' : val}}, function( data ) {
14
- console.log(data);
15
- });
16
- });
17
- }); // end ready function
18
- </script>
19
-
20
-
21
-
22
- <div class="ekit-user-consent-for-banner notice notice-error">
23
- <p>
24
- <label for="ekit-admin-switch__ekit-user-consent-for-banner"><?php esc_html_e('Show update & fix related important messages, essential tutorials and promotional images on WP Dashboard', 'elementskit-lite'); ?></label>
25
-
26
- <input type="checkbox" <?php echo ($this->utils->get_settings('ekit_user_consent_for_banner', 'yes') == 'yes' ? 'checked' : '');?> value="yes" class="ekit-admin-control-input" name="ekit-user-consent-for-banner" id="ekit-admin-switch__ekit-user-consent-for-banner">
27
- </p>
28
  </div>
1
+ <style>
2
+ .ekit-user-consent-for-banner{
3
+ margin: 0 0 15px 0!important;
4
+ max-width: 450px;
5
+ }
6
+ </style>
7
+ <script>
8
+ jQuery(document).ready(function ($) {
9
+ "use strict";
10
+ $('#ekit-admin-switch__ekit-user-consent-for-banner').on('change', function(){
11
+ let val = ($(this).prop("checked") ? $(this).val() : 'no');
12
+
13
+ $.post( ajaxurl + '?action=ekit_admin_action', {'settings' : {'ekit_user_consent_for_banner' : val}}, function( data ) {
14
+ console.log(data);
15
+ });
16
+ });
17
+ }); // end ready function
18
+ </script>
19
+
20
+
21
+
22
+ <div class="ekit-user-consent-for-banner notice notice-error">
23
+ <p>
24
+ <label for="ekit-admin-switch__ekit-user-consent-for-banner"><?php esc_html_e('Show update & fix related important messages, essential tutorials and promotional images on WP Dashboard', 'elementskit-lite'); ?></label>
25
+
26
+ <input type="checkbox" <?php echo ($this->utils->get_settings('ekit_user_consent_for_banner', 'yes') == 'yes' ? 'checked' : '');?> value="yes" class="ekit-admin-control-input" name="ekit-user-consent-for-banner" id="ekit-admin-switch__ekit-user-consent-for-banner">
27
+ </p>
28
  </div>
libs/notice/notice.php CHANGED
@@ -1,493 +1,493 @@
1
- <?php
2
- namespace Oxaim\Libs;
3
-
4
- defined( 'ABSPATH' ) || exit;
5
-
6
- if(!class_exists('\Oxaim\Libs\Notice')):
7
-
8
- class Notice{
9
-
10
- /**
11
- * scripts version
12
- *
13
- * @var string
14
- */
15
- protected $script_version = '2.0.5';
16
-
17
- /**
18
- * Unique ID to identify each notice
19
- *
20
- * @var string
21
- */
22
- protected $notice_id;
23
-
24
- /**
25
- * Plugin text-domain
26
- *
27
- * @var string
28
- */
29
- protected $text_domain;
30
-
31
-
32
- /**
33
- * Unique ID
34
- *
35
- * @var string
36
- */
37
- protected $unique_id;
38
-
39
-
40
- /**
41
- * Notice div container's class
42
- *
43
- * @var string
44
- */
45
- protected $class;
46
-
47
-
48
- /**
49
- * Single button's data
50
- *
51
- * @var array
52
- */
53
- protected $button;
54
-
55
-
56
- /**
57
- * Size class
58
- *
59
- * @var array
60
- */
61
- protected $size;
62
-
63
-
64
- /**
65
- * List of all buttons with it's config data
66
- *
67
- * @var array
68
- */
69
- protected $buttons;
70
-
71
- /**
72
- * Notice title
73
- *
74
- * @var string
75
- */
76
- protected $title;
77
-
78
-
79
- /**
80
- * Notice message
81
- *
82
- * @var string
83
- */
84
- protected $message;
85
-
86
- /**
87
- * Left logo
88
- *
89
- * @var string
90
- */
91
- protected $logo;
92
- /**
93
- * Container gutter
94
- *
95
- * @var string
96
- */
97
- protected $gutter;
98
-
99
- /**
100
- * Left logo style
101
- *
102
- * @var string
103
- */
104
- protected $logo_style;
105
-
106
-
107
- /**
108
- * Left logo style
109
- *
110
- * @var string
111
- */
112
- protected $dismissible;
113
-
114
- protected $expired_time;
115
-
116
-
117
-
118
- /**
119
- * html markup for notice
120
- *
121
- * @var string
122
- */
123
- protected $html;
124
-
125
-
126
-
127
- /**
128
- * get_version
129
- *
130
- * @return string
131
- */
132
- public function get_version(){
133
- return $this->script_version;
134
- }
135
-
136
- /**
137
- * get_script_location
138
- *
139
- * @return string
140
- */
141
- public function get_script_location(){
142
- return __FILE__;
143
- }
144
-
145
- // config
146
-
147
- /**
148
- * Configures all setter variables
149
- *
150
- * @param string $prefix
151
- * @return void
152
- */
153
- public function config($text_domain = '', $unique_id = ''){
154
- $this->text_domain = $text_domain;
155
-
156
- $this->unique_id = $unique_id;
157
-
158
- $this->notice_id = $text_domain . '-' . $unique_id;
159
-
160
- $this->dismissible = false; // false, user, global
161
-
162
- $this->expired_time = 1;
163
-
164
- $this->html = '';
165
-
166
- $this->title = '';
167
-
168
- $this->message = '';
169
-
170
- $this->class = '';
171
-
172
- $this->gutter = true;
173
-
174
- $this->logo = '';
175
-
176
- $this->logo_style = '';
177
-
178
- $this->size = [ ];
179
-
180
- $this->button = [
181
- 'default_class' => 'button',
182
- 'class' => 'button-secondary ', // button-primary button-secondary button-small button-large button-link
183
- 'text' => 'Button',
184
- 'url' => '#',
185
- 'icon' => ''
186
- ];
187
-
188
- $this->buttons = [];
189
-
190
- return $this;
191
- }
192
-
193
- // setters begin
194
-
195
- /**
196
- * Adds classes to the container
197
- *
198
- * @param string $classname
199
- * @return void
200
- */
201
- public function set_class($classname = ''){
202
- $this->class .= $classname;
203
-
204
- return $this;
205
- }
206
-
207
- public function set_type($type = ''){
208
- $this->class .= ' notice-' . $type;
209
-
210
- return $this;
211
- }
212
-
213
- public function set_button($button = []){
214
- $button = array_merge($this->button, $button);
215
- $this->buttons[] = $button;
216
-
217
- return $this;
218
- }
219
-
220
- public function set_id($id){
221
- $this->notice_id = $id;
222
- return $this;
223
- }
224
-
225
- public function set_title($title = ''){
226
- $this->title .= $title;
227
-
228
- return $this;
229
- }
230
-
231
- public function set_message($message = ''){
232
- $this->message .= $message;
233
-
234
- return $this;
235
- }
236
-
237
- public function set_gutter($gutter = true){
238
- $this->gutter .= $gutter;
239
- $this->class .= ($gutter === true ? '' : ' no-gutter');
240
-
241
- return $this;
242
- }
243
-
244
- public function set_logo($logo = '', $logo_style = ""){
245
- $this->logo = $logo;
246
-
247
- $this->logo_style = $logo_style;
248
-
249
- return $this;
250
- }
251
-
252
- public function set_html($html = ''){
253
- $this->html .= $html;
254
-
255
- return $this;
256
- }
257
-
258
- // setters ends
259
-
260
-
261
- // group getter
262
- public function get_data(){
263
- return [
264
- 'message' => $this->message,
265
- 'title' => $this->title,
266
- 'buttons' => $this->buttons,
267
- 'class' => $this->class,
268
- 'html' => $this->html,
269
- ];
270
- }
271
-
272
-
273
-
274
-
275
- public function call(){
276
- add_action( 'admin_notices', [$this, 'get_notice'] );
277
- }
278
-
279
- public function get_notice(){
280
- // dismissible conditions
281
- if ( 'user' === $this->dismissible) {
282
- $expired = get_user_meta( get_current_user_id(), $this->notice_id, true );
283
- } elseif ( 'global' === $this->dismissible ) {
284
- $expired = get_transient( $this->notice_id );
285
- }else{
286
- $expired = '';
287
- }
288
- // echo $expired; exit;
289
-
290
- global $oxaim_lib_notice_list;
291
-
292
- if(!isset($oxaim_lib_notice_list[$this->notice_id])){
293
- $oxaim_lib_notice_list[$this->notice_id] = __FILE__;
294
-
295
- // is transient expired?
296
- if ( false === $expired || empty( $expired ) ) {
297
- $this->generate_html();
298
- }
299
- }
300
- }
301
-
302
- public function set_dismiss($scope = 'global', $time = (3600 * 24 * 7)){
303
- $this->dismissible = $scope;
304
- $this->expired_time = $time;
305
-
306
- return $this;
307
- }
308
-
309
- public function generate_html() {
310
-
311
- ?>
312
- <div
313
- id="<?php echo esc_attr($this->notice_id); ?>"
314
- class="notice wpmet-notice notice-<?php echo esc_attr($this->notice_id . ' ' .$this->class); ?> <?php echo (false === $this->dismissible ? '' : 'is-dismissible') ;?>"
315
-
316
- expired_time="<?php echo ($this->expired_time); ?>"
317
- dismissible="<?php echo ($this->dismissible); ?>"
318
- >
319
- <?php if(!empty($this->logo)):?>
320
- <div class="notice-left-container alignleft">
321
- <p><img style="margin-right:15px; <?php echo esc_attr($this->logo_style); ?>" src="<?php echo esc_url($this->logo);?>" /></p>
322
- </div>
323
- <?php endif; ?>
324
-
325
- <div class="notice-right-container">
326
-
327
- <?php if(empty($this->html)): ?>
328
- <div class="main-message">
329
- <?php echo (empty($this->title) ? '' : sprintf('<h3>%s</h3>', $this->title)); ?>
330
- <?php echo ( $this->message );?>
331
- </div>
332
-
333
- <?php if(!empty($this->buttons)): ?>
334
- <div class="submit">
335
- <?php foreach($this->buttons as $button): ?>
336
- <a id="<?php echo (!isset($button['id']) ? '' : $button['id']); ?>" href="<?php echo esc_url($button['url']); ?>" class="wpmet-notice-buttons <?php echo esc_attr($button['class']); ?>">
337
- <?php if(!empty($button['icon'])) :?>
338
- <i class="notice-icon <?php echo esc_attr($button['icon']); ?>"></i>
339
- <?php endif; ?>
340
- <?php echo esc_html($button['text']);?>
341
- </a>
342
- &nbsp;
343
- <?php endforeach; ?>
344
- </div>
345
- <?php endif;?>
346
-
347
- <?php else:?>
348
- <?php echo $this->html; ?>
349
- <?php endif;?>
350
-
351
- <?php if(false !== $this->dismissible): ?>
352
- <button type="button" class="notice-dismiss">
353
- <span class="screen-reader-text">x</span>
354
- </button>
355
- <?php endif;?>
356
-
357
- </div>
358
-
359
- <div style="clear:both"></div>
360
-
361
- </div>
362
- <?php
363
- }
364
-
365
- public static function init(){
366
- add_action( 'wp_ajax_wpmet-notices', [ __CLASS__, 'dismiss_ajax_call' ] );
367
- add_action( 'admin_head', [ __CLASS__, 'enqueue_scripts' ] );
368
- }
369
-
370
- public static function dismiss_ajax_call() {
371
- $notice_id = ( isset( $_POST['notice_id'] ) ) ? $_POST['notice_id'] : '';
372
- $dismissible = ( isset( $_POST['dismissible'] ) ) ? $_POST['dismissible'] : '';
373
- $expired_time = ( isset( $_POST['expired_time'] ) ) ? $_POST['expired_time'] : '';
374
- // print_r([$notice_id, $dismissible, $expired_time]);
375
-
376
- if ( ! empty( $notice_id ) ) {
377
- if ( 'user' === $dismissible ) {
378
- update_user_meta( get_current_user_id(), $notice_id, true );
379
- } else {
380
- set_transient( $notice_id, true, $expired_time );
381
- }
382
-
383
- wp_send_json_success();
384
- }
385
-
386
- wp_send_json_error();
387
- }
388
-
389
- public static function enqueue_scripts() {
390
- echo "
391
- <script>
392
- jQuery(document).ready(function ($) {
393
- $( '.wpmet-notice.is-dismissible' ).on( 'click', '.notice-dismiss', function() {
394
-
395
- _this = $( this ).parents('.wpmet-notice').eq(0);
396
- var notice_id = _this.attr( 'id' ) || '';
397
- var expired_time = _this.attr( 'expired_time' ) || '';
398
- var dismissible = _this.attr( 'dismissible' ) || '';
399
- var x = $( this ).attr('class');
400
-
401
- // console.log({
402
- // _this, x, notice_id, expired_time, dismissible
403
- // });
404
- // return;
405
-
406
- _this.addClass('hidden');
407
-
408
- $.ajax({
409
- url: ajaxurl,
410
- type: 'POST',
411
- data: {
412
- action : 'wpmet-notices',
413
- notice_id : notice_id,
414
- dismissible : dismissible,
415
- expired_time : expired_time,
416
- },
417
- });
418
- });
419
- });
420
- </script>
421
- <style>
422
- .wpmet-notice .notice-icon{
423
- display:inline-block;
424
- }
425
-
426
- .wpmet-notice .notice-icon:before{
427
- vertical-align: middle!important;
428
- margin-top: -1px;
429
- }
430
-
431
- .wpmet-notice .main-message{
432
- margin-bottom: 10px;
433
- }
434
-
435
- .wpmet-notice-buttons {
436
- text-decoration:none;
437
- }
438
-
439
- .wpmet-notice-buttons > i{
440
- margin-right: 3px;
441
- }
442
-
443
- .wpmet-notice .notice-right-container{
444
- /* padding-top: 10px; */
445
- }
446
- .wpmet-notice .notice-right-container .submit {
447
- padding-top: 0;
448
- margin-top: 0;
449
- margin-bottom: 15px;
450
- padding-bottom: 0;
451
- }
452
-
453
- .wpmet-notice img{
454
- max-width: 100%!important;
455
- max-height: 100%!important;
456
- }
457
-
458
- .wpmet-notice.no-gutter{
459
- padding: 0!important;
460
- border: 0!important;
461
- }
462
-
463
- .wpmet-notice.no-gutter .notice-right-container{
464
- padding: 0!important;
465
- margin: 0!important;
466
- }
467
-
468
- </style>
469
- ";
470
- }
471
-
472
-
473
- private static $instance;
474
-
475
- /**
476
- * Method: instance -> Return Notice module class instance
477
- *
478
- * @param string|null $text_domain
479
- * @param string|null $unique_id
480
- * @return mixed
481
- */
482
- public static function instance($text_domain = null, $unique_id = null) {
483
- if($text_domain == null){
484
- return false;
485
- }
486
-
487
- self::$instance = new self();
488
-
489
- return self::$instance->config($text_domain, (is_null($unique_id) ? uniqid() : $unique_id));
490
- }
491
- }
492
-
493
  endif;
1
+ <?php
2
+ namespace Oxaim\Libs;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+ if(!class_exists('\Oxaim\Libs\Notice')):
7
+
8
+ class Notice{
9
+
10
+ /**
11
+ * scripts version
12
+ *
13
+ * @var string
14
+ */
15
+ protected $script_version = '2.0.5';
16
+
17
+ /**
18
+ * Unique ID to identify each notice
19
+ *
20
+ * @var string
21
+ */
22
+ protected $notice_id;
23
+
24
+ /**
25
+ * Plugin text-domain
26
+ *
27
+ * @var string
28
+ */
29
+ protected $text_domain;
30
+
31
+
32
+ /**
33
+ * Unique ID
34
+ *
35
+ * @var string
36
+ */
37
+ protected $unique_id;
38
+
39
+
40
+ /**
41
+ * Notice div container's class
42
+ *
43
+ * @var string
44
+ */
45
+ protected $class;
46
+
47
+
48
+ /**
49
+ * Single button's data
50
+ *
51
+ * @var array
52
+ */
53
+ protected $button;
54
+
55
+
56
+ /**
57
+ * Size class
58
+ *
59
+ * @var array
60
+ */
61
+ protected $size;
62
+
63
+
64
+ /**
65
+ * List of all buttons with it's config data
66
+ *
67
+ * @var array
68
+ */
69
+ protected $buttons;
70
+
71
+ /**
72
+ * Notice title
73
+ *
74
+ * @var string
75
+ */
76
+ protected $title;
77
+
78
+
79
+ /**
80
+ * Notice message
81
+ *
82
+ * @var string
83
+ */
84
+ protected $message;
85
+
86
+ /**
87
+ * Left logo
88
+ *
89
+ * @var string
90
+ */
91
+ protected $logo;
92
+ /**
93
+ * Container gutter
94
+ *
95
+ * @var string
96
+ */
97
+ protected $gutter;
98
+
99
+ /**
100
+ * Left logo style
101
+ *
102
+ * @var string
103
+ */
104
+ protected $logo_style;
105
+
106
+
107
+ /**
108
+ * Left logo style
109
+ *
110
+ * @var string
111
+ */
112
+ protected $dismissible;
113
+
114
+ protected $expired_time;
115
+
116
+
117
+
118
+ /**
119
+ * html markup for notice
120
+ *
121
+ * @var string
122
+ */
123
+ protected $html;
124
+
125
+
126
+
127
+ /**
128
+ * get_version
129
+ *
130
+ * @return string
131
+ */
132
+ public function get_version(){
133
+ return $this->script_version;
134
+ }
135
+
136
+ /**
137
+ * get_script_location
138
+ *
139
+ * @return string
140
+ */
141
+ public function get_script_location(){
142
+ return __FILE__;
143
+ }
144
+
145
+ // config
146
+
147
+ /**
148
+ * Configures all setter variables
149
+ *
150
+ * @param string $prefix
151
+ * @return void
152
+ */
153
+ public function config($text_domain = '', $unique_id = ''){
154
+ $this->text_domain = $text_domain;
155
+
156
+ $this->unique_id = $unique_id;
157
+
158
+ $this->notice_id = $text_domain . '-' . $unique_id;
159
+
160
+ $this->dismissible = false; // false, user, global
161
+
162
+ $this->expired_time = 1;
163
+
164
+ $this->html = '';
165
+
166
+ $this->title = '';
167
+
168
+ $this->message = '';
169
+
170
+ $this->class = '';
171
+
172
+ $this->gutter = true;
173
+
174
+ $this->logo = '';
175
+
176
+ $this->logo_style = '';
177
+
178
+ $this->size = [ ];
179
+
180
+ $this->button = [
181
+ 'default_class' => 'button',
182
+ 'class' => 'button-secondary ', // button-primary button-secondary button-small button-large button-link
183
+ 'text' => 'Button',
184
+ 'url' => '#',
185
+ 'icon' => ''
186
+ ];
187
+
188
+ $this->buttons = [];
189
+
190
+ return $this;
191
+ }
192
+
193
+ // setters begin
194
+
195
+ /**
196
+ * Adds classes to the container
197
+ *
198
+ * @param string $classname
199
+ * @return void
200
+ */
201
+ public function set_class($classname = ''){
202
+ $this->class .= $classname;
203
+
204
+ return $this;
205
+ }
206
+
207
+ public function set_type($type = ''){
208
+ $this->class .= ' notice-' . $type;
209
+
210
+ return $this;
211
+ }
212
+
213
+ public function set_button($button = []){
214
+ $button = array_merge($this->button, $button);
215
+ $this->buttons[] = $button;
216
+
217
+ return $this;
218
+ }
219
+
220
+ public function set_id($id){
221
+ $this->notice_id = $id;
222
+ return $this;
223
+ }
224
+
225
+ public function set_title($title = ''){
226
+ $this->title .= $title;
227
+
228
+ return $this;
229
+ }
230
+
231
+ public function set_message($message = ''){
232
+ $this->message .= $message;
233
+
234
+ return $this;
235
+ }
236
+
237
+ public function set_gutter($gutter = true){
238
+ $this->gutter .= $gutter;
239
+ $this->class .= ($gutter === true ? '' : ' no-gutter');
240
+
241
+ return $this;
242
+ }
243
+
244
+ public function set_logo($logo = '', $logo_style = ""){
245
+ $this->logo = $logo;
246
+
247
+ $this->logo_style = $logo_style;
248
+
249
+ return $this;
250
+ }
251
+
252
+ public function set_html($html = ''){
253
+ $this->html .= $html;
254
+
255
+ return $this;
256
+ }
257
+
258
+ // setters ends
259
+
260
+
261
+ // group getter
262
+ public function get_data(){
263
+ return [
264
+ 'message' => $this->message,
265
+ 'title' => $this->title,
266
+ 'buttons' => $this->buttons,
267
+ 'class' => $this->class,
268
+ 'html' => $this->html,
269
+ ];
270
+ }
271
+
272
+
273
+
274
+
275
+ public function call(){
276
+ add_action( 'admin_notices', [$this, 'get_notice'] );
277
+ }
278
+
279
+ public function get_notice(){
280
+ // dismissible conditions
281
+ if ( 'user' === $this->dismissible) {
282
+ $expired = get_user_meta( get_current_user_id(), $this->notice_id, true );
283
+ } elseif ( 'global' === $this->dismissible ) {
284
+ $expired = get_transient( $this->notice_id );
285
+ }else{
286
+ $expired = '';
287
+ }
288
+ // echo $expired; exit;
289
+
290
+ global $oxaim_lib_notice_list;
291
+
292
+ if(!isset($oxaim_lib_notice_list[$this->notice_id])){
293
+ $oxaim_lib_notice_list[$this->notice_id] = __FILE__;
294
+
295
+ // is transient expired?
296
+ if ( false === $expired || empty( $expired ) ) {
297
+ $this->generate_html();
298
+ }
299
+ }
300
+ }
301
+
302
+ public function set_dismiss($scope = 'global', $time = (3600 * 24 * 7)){
303
+ $this->dismissible = $scope;
304
+ $this->expired_time = $time;
305
+
306
+ return $this;
307
+ }
308
+
309
+ public function generate_html() {
310
+
311
+ ?>
312
+ <div
313
+ id="<?php echo esc_attr($this->notice_id); ?>"
314
+ class="notice wpmet-notice notice-<?php echo esc_attr($this->notice_id . ' ' .$this->class); ?> <?php echo (false === $this->dismissible ? '' : 'is-dismissible') ;?>"
315
+
316
+ expired_time="<?php echo ($this->expired_time); ?>"
317
+ dismissible="<?php echo ($this->dismissible); ?>"
318
+ >
319
+ <?php if(!empty($this->logo)):?>
320
+ <div class="notice-left-container alignleft">
321
+ <p><img style="margin-right:15px; <?php echo esc_attr($this->logo_style); ?>" src="<?php echo esc_url($this->logo);?>" /></p>
322
+ </div>
323
+ <?php endif; ?>
324
+
325
+ <div class="notice-right-container">
326
+
327
+ <?php if(empty($this->html)): ?>
328
+ <div class="main-message">
329
+ <?php echo (empty($this->title) ? '' : sprintf('<h3>%s</h3>', $this->title)); ?>
330
+ <?php echo ( $this->message );?>
331
+ </div>
332
+
333
+ <?php if(!empty($this->buttons)): ?>
334
+ <div class="submit">
335
+ <?php foreach($this->buttons as $button): ?>
336
+ <a id="<?php echo (!isset($button['id']) ? '' : $button['id']); ?>" href="<?php echo esc_url($button['url']); ?>" class="wpmet-notice-buttons <?php echo esc_attr($button['class']); ?>">
337
+ <?php if(!empty($button['icon'])) :?>
338
+ <i class="notice-icon <?php echo esc_attr($button['icon']); ?>"></i>
339
+ <?php endif; ?>
340
+ <?php echo esc_html($button['text']);?>
341
+ </a>
342
+ &nbsp;
343
+ <?php endforeach; ?>
344
+ </div>
345
+ <?php endif;?>
346
+
347
+ <?php else:?>
348
+ <?php echo $this->html; ?>
349
+ <?php endif;?>
350
+
351
+ <?php if(false !== $this->dismissible): ?>
352
+ <button type="button" class="notice-dismiss">
353
+ <span class="screen-reader-text">x</span>
354
+ </button>
355
+ <?php endif;?>
356
+
357
+ </div>
358
+
359
+ <div style="clear:both"></div>
360
+
361
+ </div>
362
+ <?php
363
+ }
364
+
365
+ public static function init(){
366
+ add_action( 'wp_ajax_wpmet-notices', [ __CLASS__, 'dismiss_ajax_call' ] );
367
+ add_action( 'admin_head', [ __CLASS__, 'enqueue_scripts' ] );
368
+ }
369
+
370
+ public static function dismiss_ajax_call() {
371
+ $notice_id = ( isset( $_POST['notice_id'] ) ) ? $_POST['notice_id'] : '';
372
+ $dismissible = ( isset( $_POST['dismissible'] ) ) ? $_POST['dismissible'] : '';
373
+ $expired_time = ( isset( $_POST['expired_time'] ) ) ? $_POST['expired_time'] : '';
374
+ // print_r([$notice_id, $dismissible, $expired_time]);
375
+
376
+ if ( ! empty( $notice_id ) ) {
377
+ if ( 'user' === $dismissible ) {
378
+ update_user_meta( get_current_user_id(), $notice_id, true );
379
+ } else {
380
+ set_transient( $notice_id, true, $expired_time );
381
+ }
382
+
383
+ wp_send_json_success();
384
+ }
385
+
386
+ wp_send_json_error();
387
+ }
388
+
389
+ public static function enqueue_scripts() {
390
+ echo "
391
+ <script>
392
+ jQuery(document).ready(function ($) {
393
+ $( '.wpmet-notice.is-dismissible' ).on( 'click', '.notice-dismiss', function() {
394
+
395
+ _this = $( this ).parents('.wpmet-notice').eq(0);
396
+ var notice_id = _this.attr( 'id' ) || '';
397
+ var expired_time = _this.attr( 'expired_time' ) || '';
398
+ var dismissible = _this.attr( 'dismissible' ) || '';
399
+ var x = $( this ).attr('class');
400
+
401
+ // console.log({
402
+ // _this, x, notice_id, expired_time, dismissible
403
+ // });
404
+ // return;
405
+
406
+ _this.addClass('hidden');
407
+
408
+ $.ajax({
409
+ url: ajaxurl,
410
+ type: 'POST',
411
+ data: {
412
+ action : 'wpmet-notices',
413
+ notice_id : notice_id,
414
+ dismissible : dismissible,
415
+ expired_time : expired_time,
416
+ },
417
+ });
418
+ });
419
+ });
420
+ </script>
421
+ <style>
422
+ .wpmet-notice .notice-icon{
423
+ display:inline-block;
424
+ }
425
+
426
+ .wpmet-notice .notice-icon:before{
427
+ vertical-align: middle!important;
428
+ margin-top: -1px;
429
+ }
430
+
431
+ .wpmet-notice .main-message{
432
+ margin-bottom: 10px;
433
+ }
434
+
435
+ .wpmet-notice-buttons {
436
+ text-decoration:none;
437
+ }
438
+
439
+ .wpmet-notice-buttons > i{
440
+ margin-right: 3px;
441
+ }
442
+
443
+ .wpmet-notice .notice-right-container{
444
+ /* padding-top: 10px; */
445
+ }
446
+ .wpmet-notice .notice-right-container .submit {
447
+ padding-top: 0;
448
+ margin-top: 0;
449
+ margin-bottom: 15px;
450
+ padding-bottom: 0;
451
+ }
452
+
453
+ .wpmet-notice img{
454
+ max-width: 100%!important;
455
+ max-height: 100%!important;
456
+ }
457
+
458
+ .wpmet-notice.no-gutter{
459
+ padding: 0!important;
460
+ border: 0!important;
461
+ }
462
+
463
+ .wpmet-notice.no-gutter .notice-right-container{
464
+ padding: 0!important;
465
+ margin: 0!important;
466
+ }
467
+
468
+ </style>
469
+ ";
470
+ }
471
+
472
+
473
+ private static $instance;
474
+
475
+ /**
476
+ * Method: instance -> Return Notice module class instance
477
+ *
478
+ * @param string|null $text_domain
479
+ * @param string|null $unique_id
480
+ * @return mixed
481
+ */
482
+ public static function instance($text_domain = null, $unique_id = null) {
483
+ if($text_domain == null){
484
+ return false;
485
+ }
486
+
487
+ self::$instance = new self();
488
+
489
+ return self::$instance->config($text_domain, (is_null($unique_id) ? uniqid() : $unique_id));
490
+ }
491
+ }
492
+
493
  endif;
libs/pro-awareness/pro-awareness.php CHANGED
@@ -1,442 +1,442 @@
1
- <?php
2
-
3
- namespace Wpmet\Libs;
4
-
5
- defined('ABSPATH') || exit;
6
-
7
- if(!class_exists('\Wpmet\Libs\Pro_Awareness')) :
8
-
9
- class Pro_Awareness
10
- {
11
-
12
- private static $instance;
13
-
14
- private $text_domain;
15
- private $plugin_file;
16
- private $parent_menu_slug;
17
- private $menu_slug = '_get_help';
18
- private $default_grid_link = 'https://wpmet.com/support-ticket';
19
- private $default_grid_title = 'Support Center';
20
- private $default_grid_thumbnail = '';
21
- private $default_grid_desc = '';
22
- private $pro_link_conf = [];
23
-
24
- private $grids = [];
25
- private $action_links = [];
26
- private $row_meta_links = [];
27
- private $parent_menu_text = 'Get Help';
28
-
29
-
30
- protected $script_version = '1.0.3';
31
-
32
- /**
33
- * Get version of this script
34
- *
35
- * @return string Version name
36
- */
37
- public function get_version() {
38
- return $this->script_version;
39
- }
40
-
41
- /**
42
- * Get current directory path
43
- *
44
- * @return string
45
- */
46
- public function get_script_location() {
47
- return __FILE__;
48
- }
49
-
50
-
51
- public static function instance($text_domain) {
52
-
53
- self::$instance = new self();
54
-
55
- return self::$instance->set_text_domain($text_domain);
56
- }
57
-
58
- protected function set_text_domain($val) {
59
-
60
- $this->text_domain = $val;
61
-
62
- return $this;
63
- }
64
-
65
- private function default_grid() {
66
-
67
- return [
68
- 'url' => $this->default_grid_link,
69
- 'title' => $this->default_grid_title,
70
- 'thumbnail' => $this->default_grid_thumbnail,
71
- 'description' => $this->default_grid_desc,
72
- ];
73
- }
74
-
75
- public function set_parent_menu_text($text) {
76
-
77
- $this->parent_menu_text = $text;
78
-
79
- return $this;
80
- }
81
-
82
- public function set_default_grid_link($url) {
83
-
84
- $this->default_grid_link = $url;
85
-
86
- return $this;
87
- }
88
-
89
- public function set_default_grid_title($title) {
90
-
91
- $this->default_grid_title = $title;
92
-
93
- return $this;
94
- }
95
-
96
- public function set_default_grid_desc($title) {
97
-
98
- $this->default_grid_desc = $title;
99
-
100
- return $this;
101
- }
102
-
103
- public function set_default_grid_thumbnail($thumbnail) {
104
-
105
- $this->default_grid_thumbnail = $thumbnail;
106
-
107
- return $this;
108
- }
109
-
110
- public function set_parent_menu_slug($slug) {
111
-
112
- $this->parent_menu_slug = $slug;
113
-
114
- return $this;
115
- }
116
-
117
-
118
- public function set_menu_slug($slug) {
119
-
120
- $this->menu_slug = $slug;
121
-
122
- return $this;
123
- }
124
-
125
- public function set_plugin_file($plugin_file) {
126
-
127
- $this->plugin_file = $plugin_file;
128
-
129
- return $this;
130
- }
131
-
132
- public function set_pro_link($url, $conf = []) {
133
-
134
- if($url == '') {
135
- return $this;
136
- }
137
-
138
- $this->pro_link_conf[] = [
139
- 'url' => $url,
140
- 'anchor' => empty($conf['anchor']) ? '<span style="color: #FCB214;" class="pro_aware pro">Upgrade To Premium</span>' : $conf['anchor'],
141
- 'permission' => empty($conf['permission']) ? 'manage_options' : $conf['permission'],
142
- ];
143
-
144
- return $this;
145
- }
146
-
147
- /**
148
- * Set page grid
149
- */
150
- public function set_page_grid($conf = []) {
151
-
152
- if(!empty($conf['url'])) {
153
-
154
- $this->grids[] = [
155
- 'url' => $conf['url'],
156
- 'title' => empty($conf['title']) ? esc_html__('Default Title', 'elementskit-lite') : $conf['title'],
157
- 'thumbnail' => empty($conf['thumbnail']) ? '' : esc_url($conf['thumbnail']),
158
- 'description' => empty($conf['description']) ? '' : $conf['description'],
159
- ];
160
- }
161
-
162
- return $this;
163
- }
164
-
165
- /**
166
- * @deprecated This method will be removed
167
- */
168
- public function set_grid($conf = []) {
169
- $this->set_page_grid($conf);
170
-
171
- return $this;
172
- }
173
-
174
- protected function prepare_pro_links() {
175
-
176
- if(!empty($this->pro_link_conf)) {
177
-
178
- foreach($this->pro_link_conf as $conf) {
179
-
180
- add_submenu_page($this->parent_menu_slug, $conf['anchor'], $conf['anchor'], $conf['permission'], $conf['url'], '');
181
- }
182
- }
183
- }
184
-
185
- protected function prepare_grid_links() {
186
-
187
- if(!empty($this->grids)) {
188
-
189
- add_submenu_page($this->parent_menu_slug, $this->parent_menu_text, $this->parent_menu_text, 'manage_options', $this->text_domain . $this->menu_slug, [$this, 'generate_grids']);
190
- }
191
- }
192
-
193
-
194
- public function generate_grids() {
195
-
196
- /**
197
- * Adding default grid at first position
198
- */
199
- array_unshift($this->grids, $this->default_grid());
200
-
201
- ?>
202
-
203
-
204
- <div class="pro_aware grid_container wpmet_pro_a-grid-container">
205
-
206
- <?php do_action($this->text_domain.'/pro_awareness/before_grid_contents'); ?>
207
-
208
- <div class="wpmet_pro_a-row">
209
- <?php
210
- foreach($this->grids as $grid) {
211
- ?>
212
- <div class="grid wpmet_pro_a-grid">
213
- <div class="wpmet_pro_a-grid-inner">
214
- <a target="_blank" href="<?php echo esc_url($grid['url']); ?>"
215
- class="wpmet_pro_a_wrapper" title="<?php echo esc_attr($grid['title']); ?>"
216
- title="<?php echo esc_attr($grid['title']); ?>">
217
- <div class="wpmet_pro_a_thumb">
218
- <img src="<?php echo esc_attr($grid['thumbnail']); ?>" alt="Thumbnail">
219
- </div>
220
- <!-- // thumbnail -->
221
-
222
- <h4 class="wpmet_pro_a_grid_title"><?php echo esc_attr($grid['title']); ?></h4>
223
- <?php if(!empty($grid['description'])) { ?>
224
- <p class="wpmet_pro_a_description"><?php echo esc_html($grid['description']); ?></p>
225
- <!-- // description -->
226
- <?php } ?>
227
- <!-- // title -->
228
- </a>
229
- </div>
230
- </div>
231
- <?php
232
- } ?>
233
- </div>
234
-
235
- <?php do_action($this->text_domain.'/pro_awareness/after_grid_contents'); ?>
236
-
237
- </div>
238
-
239
- <?php
240
- }
241
-
242
- public static function enqueue_scripts() {
243
- echo "
244
- <script>
245
-
246
- </script>
247
-
248
- <style>
249
- .wpmet_pro_a-grid-container {
250
- max-width: 1140px;
251
- width: 100%;
252
- padding-right: 15px;
253
- padding-left: 15px;
254
- box-sizing: border-box;
255
- margin-top: 50px;
256
- }
257
-
258
- .wpmet_pro_a-grid-inner {
259
- margin-bottom: 20px;
260
- background-color: #fff;
261
- border-radius: 4px;
262
- box-shadow: 0px 2px 5px 10px rgba(0,0,0,.01);
263
- transition: all .4s ease;
264
- }
265
- .wpmet_pro_a-grid-inner .wpmet_pro_a_wrapper {
266
- padding: 35px 50px;
267
- display: block;
268
- }
269
-
270
- .wpmet_pro_a-grid-inner:hover {
271
- transform: translateY(-3px);
272
- box-shadow: 0px 10px 15px 15px rgba(0,0,0,.05);
273
- }
274
-
275
- .wpmet_pro_a-row {
276
- display: -webkit-box;
277
- display: -ms-flexbox;
278
- display: flex;
279
- -ms-flex-wrap: wrap;
280
- flex-wrap: wrap;
281
- margin-right: -15px;
282
- margin-left: -15px;
283
- box-sizing: border-box;
284
- }
285
-
286
- .wpmet_pro_a-grid {
287
- padding-right: 15px;
288
- padding-left: 15px;
289
- position: relative;
290
- width: 100%;
291
- min-height: 1px;
292
- box-sizing: border-box;
293
- }
294
-
295
- .wpmet_pro_a_thumb {
296
- min-height: 76px;
297
- margin-bottom: 10px;
298
- display: block;
299
- border-radius: inherit;
300
- }
301
-
302
- .wpmet_pro_a_grid_title {
303
- font-size:1.6rem;
304
- margin:0;
305
- color: #222;
306
- display: inline-block;
307
- line-height: normal;
308
- text-decoration: none;
309
- }
310
-
311
- .wpmet_pro_a_description {
312
- margin-bottom: 0;
313
- }
314
- .wp-submenu > li > a{
315
- position: relative;
316
- }
317
-
318
- @media (min-width: 991px) {
319
- .wpmet_pro_a-grid {
320
- -webkit-box-flex: 0;
321
- -ms-flex: 0 0 33.333333%;
322
- flex: 0 0 33.333333%;
323
- max-width: 33.333333%;
324
- }
325
- }
326
-
327
- @media (max-width: 991px) and (min-width: 768px) {
328
- .wpmet_pro_a-grid {
329
- -webkit-box-flex: 0;
330
- -ms-flex: 0 0 50%;
331
- flex: 0 0 50%;
332
- max-width: 50%;
333
- }
334
- }
335
-
336
- @media (max-width: 767px) {
337
- .wpmet_pro_a-grid {
338
- -webkit-box-flex: 0;
339
- -ms-flex: 0 0 100%;
340
- flex: 0 0 100%;
341
- max-width: 100%;
342
- }
343
- .wpmet_pro_a_grid_title {
344
- font-size: 1.2rem;
345
- }
346
- }
347
- </style>
348
- ";
349
- }
350
-
351
- public function insert_plugin_links($links) {
352
-
353
- foreach($this->action_links as $action_link) {
354
-
355
- if(!empty($action_link['link']) && !empty($action_link['text'])) {
356
-
357
- $attributes = '';
358
-
359
- if(!empty($action_link['attr'])) {
360
-
361
- foreach($action_link['attr'] as $key => $val) {
362
-
363
- $attributes .= $key.'="'.esc_attr($val).'" ';
364
- }
365
- }
366
-
367
- $links[] = sprintf('<a href="%s" ' . $attributes . ' > %s </a>', $action_link['link'], esc_html($action_link['text']));
368
- }
369
- }
370
-
371
-
372
- return $links;
373
- }
374
-
375
- public function insert_plugin_row_meta($links, $file) {
376
- if($file == $this->plugin_file) {
377
-
378
- foreach($this->row_meta_links as $meta) {
379
-
380
- if(!empty($meta['link']) && !empty($meta['text'])) {
381
-
382
- $attributes = '';
383
-
384
- if(!empty($meta['attr'])) {
385
-
386
- foreach($meta['attr'] as $key => $val) {
387
-
388
- $attributes .= $key.'="'.esc_attr($val).'" ';
389
- }
390
- }
391
-
392
- $links[] = sprintf('<a href="%s" %s > %s </a>', $meta['link'], $attributes, esc_html($meta['text']));
393
- }
394
- }
395
-
396
- }
397
-
398
- return $links;
399
- }
400
-
401
- public function set_plugin_action_link($text, $link, $attr = []) {
402
-
403
- $this->action_links[] = [
404
- 'text' => $text,
405
- 'link' => $link,
406
- 'attr' => $attr,
407
- ];
408
-
409
- return $this;
410
- }
411
-
412
- public function set_plugin_row_meta($text, $link, $attr = []) {
413
-
414
- $this->row_meta_links[] = [
415
- 'text' => $text,
416
- 'link' => $link,
417
- 'attr' => $attr,
418
- ];
419
-
420
- return $this;
421
- }
422
-
423
- public function generate_menus() {
424
- add_filter('plugin_action_links_' . $this->plugin_file, [$this, 'insert_plugin_links']);
425
- add_filter('plugin_row_meta', [$this, 'insert_plugin_row_meta'], 10, 2);
426
-
427
- if(!empty($this->parent_menu_slug)) {
428
- $this->prepare_grid_links();
429
- $this->prepare_pro_links();
430
- }
431
- }
432
-
433
- public static function init() {
434
- add_action('admin_head', [__CLASS__, 'enqueue_scripts']);
435
- }
436
-
437
- public function call() {
438
- add_action('admin_menu', [$this, 'generate_menus'], 99999);
439
- }
440
- }
441
-
442
- endif;
1
+ <?php
2
+
3
+ namespace Wpmet\Libs;
4
+
5
+ defined('ABSPATH') || exit;
6
+
7
+ if(!class_exists('\Wpmet\Libs\Pro_Awareness')) :
8
+
9
+ class Pro_Awareness
10
+ {
11
+
12
+ private static $instance;
13
+
14
+ private $text_domain;
15
+ private $plugin_file;
16
+ private $parent_menu_slug;
17
+ private $menu_slug = '_get_help';
18
+ private $default_grid_link = 'https://wpmet.com/support-ticket';
19
+ private $default_grid_title = 'Support Center';
20
+ private $default_grid_thumbnail = '';
21
+ private $default_grid_desc = '';
22
+ private $pro_link_conf = [];
23
+
24
+ private $grids = [];
25
+ private $action_links = [];
26
+ private $row_meta_links = [];
27
+ private $parent_menu_text = 'Get Help';
28
+
29
+
30
+ protected $script_version = '1.0.3';
31
+
32
+ /**
33
+ * Get version of this script
34
+ *
35
+ * @return string Version name
36
+ */
37
+ public function get_version() {
38
+ return $this->script_version;
39
+ }
40
+
41
+ /**
42
+ * Get current directory path
43
+ *
44
+ * @return string
45
+ */
46
+ public function get_script_location() {
47
+ return __FILE__;
48
+ }
49
+
50
+
51
+ public static function instance($text_domain) {
52
+
53
+ self::$instance = new self();
54
+
55
+ return self::$instance->set_text_domain($text_domain);
56
+ }
57
+
58
+ protected function set_text_domain($val) {
59
+
60
+ $this->text_domain = $val;
61
+
62
+ return $this;
63
+ }
64
+
65
+ private function default_grid() {
66
+
67
+ return [
68
+ 'url' => $this->default_grid_link,
69
+ 'title' => $this->default_grid_title,
70
+ 'thumbnail' => $this->default_grid_thumbnail,
71
+ 'description' => $this->default_grid_desc,
72
+ ];
73
+ }
74
+
75
+ public function set_parent_menu_text($text) {
76
+
77
+ $this->parent_menu_text = $text;
78
+
79
+ return $this;
80
+ }
81
+
82
+ public function set_default_grid_link($url) {
83
+
84
+ $this->default_grid_link = $url;
85
+
86
+ return $this;
87
+ }
88
+
89
+ public function set_default_grid_title($title) {
90
+
91
+ $this->default_grid_title = $title;
92
+
93
+ return $this;
94
+ }
95
+
96
+ public function set_default_grid_desc($title) {
97
+
98
+ $this->default_grid_desc = $title;
99
+
100
+ return $this;
101
+ }
102
+
103
+ public function set_default_grid_thumbnail($thumbnail) {
104
+
105
+ $this->default_grid_thumbnail = $thumbnail;
106
+
107
+ return $this;
108
+ }
109
+
110
+ public function set_parent_menu_slug($slug) {
111
+
112
+ $this->parent_menu_slug = $slug;
113
+
114
+ return $this;
115
+ }
116
+
117
+
118
+ public function set_menu_slug($slug) {
119
+
120
+ $this->menu_slug = $slug;
121
+
122
+ return $this;
123
+ }
124
+
125
+ public function set_plugin_file($plugin_file) {
126
+
127
+ $this->plugin_file = $plugin_file;
128
+
129
+ return $this;
130
+ }
131
+
132
+ public function set_pro_link($url, $conf = []) {
133
+
134
+ if($url == '') {
135
+ return $this;
136
+ }
137
+
138
+ $this->pro_link_conf[] = [
139
+ 'url' => $url,
140
+ 'anchor' => empty($conf['anchor']) ? '<span style="color: #FCB214;" class="pro_aware pro">Upgrade To Premium</span>' : $conf['anchor'],
141
+ 'permission' => empty($conf['permission']) ? 'manage_options' : $conf['permission'],
142
+ ];
143
+
144
+ return $this;
145
+ }
146
+
147
+ /**
148
+ * Set page grid
149
+ */
150
+ public function set_page_grid($conf = []) {
151
+
152
+ if(!empty($conf['url'])) {
153
+
154
+ $this->grids[] = [
155
+ 'url' => $conf['url'],
156
+ 'title' => empty($conf['title']) ? esc_html__('Default Title', 'elementskit-lite') : $conf['title'],
157
+ 'thumbnail' => empty($conf['thumbnail']) ? '' : esc_url($conf['thumbnail']),
158
+ 'description' => empty($conf['description']) ? '' : $conf['description'],
159
+ ];
160
+ }
161
+
162
+ return $this;
163
+ }
164
+
165
+ /**
166
+ * @deprecated This method will be removed
167
+ */
168
+ public function set_grid($conf = []) {
169
+ $this->set_page_grid($conf);
170
+
171
+ return $this;
172
+ }
173
+
174
+ protected function prepare_pro_links() {
175
+
176
+ if(!empty($this->pro_link_conf)) {
177
+
178
+ foreach($this->pro_link_conf as $conf) {
179
+
180
+ add_submenu_page($this->parent_menu_slug, $conf['anchor'], $conf['anchor'], $conf['permission'], $conf['url'], '');
181
+ }
182
+ }
183
+ }
184
+
185
+ protected function prepare_grid_links() {
186
+
187
+ if(!empty($this->grids)) {
188
+
189
+ add_submenu_page($this->parent_menu_slug, $this->parent_menu_text, $this->parent_menu_text, 'manage_options', $this->text_domain . $this->menu_slug, [$this, 'generate_grids']);
190
+ }
191
+ }
192
+
193
+
194
+ public function generate_grids() {
195
+
196
+ /**
197
+ * Adding default grid at first position
198
+ */
199
+ array_unshift($this->grids, $this->default_grid());
200
+
201
+ ?>
202
+
203
+
204
+ <div class="pro_aware grid_container wpmet_pro_a-grid-container">
205
+
206
+ <?php do_action($this->text_domain.'/pro_awareness/before_grid_contents'); ?>
207
+
208
+ <div class="wpmet_pro_a-row">
209
+ <?php
210
+ foreach($this->grids as $grid) {
211
+ ?>
212
+ <div class="grid wpmet_pro_a-grid">
213
+ <div class="wpmet_pro_a-grid-inner">
214
+ <a target="_blank" href="<?php echo esc_url($grid['url']); ?>"
215
+ class="wpmet_pro_a_wrapper" title="<?php echo esc_attr($grid['title']); ?>"
216
+ title="<?php echo esc_attr($grid['title']); ?>">
217
+ <div class="wpmet_pro_a_thumb">
218
+ <img src="<?php echo esc_attr($grid['thumbnail']); ?>" alt="Thumbnail">
219
+ </div>
220
+ <!-- // thumbnail -->
221
+
222
+ <h4 class="wpmet_pro_a_grid_title"><?php echo esc_attr($grid['title']); ?></h4>
223
+ <?php if(!empty($grid['description'])) { ?>
224
+ <p class="wpmet_pro_a_description"><?php echo esc_html($grid['description']); ?></p>
225
+ <!-- // description -->
226
+ <?php } ?>
227
+ <!-- // title -->
228
+ </a>
229
+ </div>
230
+ </div>
231
+ <?php
232
+ } ?>
233
+ </div>
234
+
235
+ <?php do_action($this->text_domain.'/pro_awareness/after_grid_contents'); ?>
236
+
237
+ </div>
238
+
239
+ <?php
240
+ }
241
+
242
+ public static function enqueue_scripts() {
243
+ echo "
244
+ <script>
245
+
246
+ </script>
247
+
248
+ <style>
249
+ .wpmet_pro_a-grid-container {
250
+ max-width: 1140px;
251
+ width: 100%;
252
+ padding-right: 15px;
253
+ padding-left: 15px;
254
+ box-sizing: border-box;
255
+ margin-top: 50px;
256
+ }
257
+
258
+ .wpmet_pro_a-grid-inner {
259
+ margin-bottom: 20px;
260
+ background-color: #fff;
261
+ border-radius: 4px;
262
+ box-shadow: 0px 2px 5px 10px rgba(0,0,0,.01);
263
+ transition: all .4s ease;
264
+ }
265
+ .wpmet_pro_a-grid-inner .wpmet_pro_a_wrapper {
266
+ padding: 35px 50px;
267
+ display: block;
268
+ }
269
+
270
+ .wpmet_pro_a-grid-inner:hover {
271
+ transform: translateY(-3px);
272
+ box-shadow: 0px 10px 15px 15px rgba(0,0,0,.05);
273
+ }
274
+
275
+ .wpmet_pro_a-row {
276
+ display: -webkit-box;
277
+ display: -ms-flexbox;
278
+ display: flex;
279
+ -ms-flex-wrap: wrap;
280
+ flex-wrap: wrap;
281
+ margin-right: -15px;
282
+ margin-left: -15px;
283
+ box-sizing: border-box;
284
+ }
285
+
286
+ .wpmet_pro_a-grid {
287
+ padding-right: 15px;
288
+ padding-left: 15px;
289
+ position: relative;
290
+ width: 100%;
291
+ min-height: 1px;
292
+ box-sizing: border-box;
293
+ }
294
+
295
+ .wpmet_pro_a_thumb {
296
+ min-height: 76px;
297
+ margin-bottom: 10px;
298
+ display: block;
299
+ border-radius: inherit;
300
+ }
301
+
302
+ .wpmet_pro_a_grid_title {
303
+ font-size:1.6rem;
304
+ margin:0;
305
+ color: #222;
306
+ display: inline-block;
307
+ line-height: normal;
308
+ text-decoration: none;
309
+ }
310
+
311
+ .wpmet_pro_a_description {
312
+ margin-bottom: 0;
313
+ }
314
+ .wp-submenu > li > a{
315
+ position: relative;
316
+ }
317
+
318
+ @media (min-width: 991px) {
319
+ .wpmet_pro_a-grid {
320
+ -webkit-box-flex: 0;
321
+ -ms-flex: 0 0 33.333333%;
322
+ flex: 0 0 33.333333%;
323
+ max-width: 33.333333%;
324
+ }
325
+ }
326
+
327
+ @media (max-width: 991px) and (min-width: 768px) {
328
+ .wpmet_pro_a-grid {
329
+ -webkit-box-flex: 0;
330
+ -ms-flex: 0 0 50%;
331
+ flex: 0 0 50%;
332
+ max-width: 50%;
333
+ }
334
+ }
335
+
336
+ @media (max-width: 767px) {
337
+ .wpmet_pro_a-grid {
338
+ -webkit-box-flex: 0;
339
+ -ms-flex: 0 0 100%;
340
+ flex: 0 0 100%;
341
+ max-width: 100%;
342
+ }
343
+ .wpmet_pro_a_grid_title {
344
+ font-size: 1.2rem;
345
+ }
346
+ }
347
+ </style>
348
+ ";
349
+ }
350
+
351
+ public function insert_plugin_links($links) {
352
+
353
+ foreach($this->action_links as $action_link) {
354
+
355
+ if(!empty($action_link['link']) && !empty($action_link['text'])) {
356
+
357
+ $attributes = '';
358
+
359
+ if(!empty($action_link['attr'])) {
360
+
361
+ foreach($action_link['attr'] as $key => $val) {
362
+
363
+ $attributes .= $key.'="'.esc_attr($val).'" ';
364
+ }
365
+ }
366
+
367
+ $links[] = sprintf('<a href="%s" ' . $attributes . ' > %s </a>', $action_link['link'], esc_html($action_link['text']));
368
+ }
369
+ }
370
+
371
+
372
+ return $links;
373
+ }
374
+
375
+ public function insert_plugin_row_meta($links, $file) {
376
+ if($file == $this->plugin_file) {
377
+
378
+ foreach($this->row_meta_links as $meta) {
379
+
380
+ if(!empty($meta['link']) && !empty($meta['text'])) {
381
+
382
+ $attributes = '';
383
+
384
+ if(!empty($meta['attr'])) {
385
+
386
+ foreach($meta['attr'] as $key => $val) {
387
+
388
+ $attributes .= $key.'="'.esc_attr($val).'" ';
389
+ }
390
+ }
391
+
392
+ $links[] = sprintf('<a href="%s" %s > %s </a>', $meta['link'], $attributes, esc_html($meta['text']));
393
+ }
394
+ }
395
+
396
+ }
397
+
398
+ return $links;
399
+ }
400
+
401
+ public function set_plugin_action_link($text, $link, $attr = []) {
402
+
403
+ $this->action_links[] = [
404
+ 'text' => $text,
405
+ 'link' => $link,
406
+ 'attr' => $attr,
407
+ ];
408
+
409
+ return $this;
410
+ }
411
+
412
+ public function set_plugin_row_meta($text, $link, $attr = []) {
413
+
414
+ $this->row_meta_links[] = [
415
+ 'text' => $text,
416
+ 'link' => $link,
417
+ 'attr' => $attr,
418
+ ];
419
+
420
+ return $this;
421
+ }
422
+
423
+ public function generate_menus() {
424
+ add_filter('plugin_action_links_' . $this->plugin_file, [$this, 'insert_plugin_links']);
425
+ add_filter('plugin_row_meta', [$this, 'insert_plugin_row_meta'], 10, 2);
426
+
427
+ if(!empty($this->parent_menu_slug)) {
428
+ $this->prepare_grid_links();
429
+ $this->prepare_pro_links();
430
+ }
431
+ }
432
+
433
+ public static function init() {
434
+ add_action('admin_head', [__CLASS__, 'enqueue_scripts']);
435
+ }
436
+
437
+ public function call() {
438
+ add_action('admin_menu', [$this, 'generate_menus'], 99999);
439
+ }
440
+ }
441
+
442
+ endif;
libs/pro-label/admin-notice.php CHANGED
@@ -1,31 +1,31 @@
1
- <?php
2
- namespace ElementsKit_Lite\Libs\Pro_Label;
3
- defined( 'ABSPATH' ) || exit;
4
-
5
- trait Admin_Notice{
6
-
7
- public function footer_alert_box(){
8
- include 'views/modal.php';
9
- }
10
-
11
- public function show_go_pro_notice(){
12
-
13
- $btn = [
14
- 'default_class' => 'button',
15
- 'class' => 'button-primary ', // button-primary button-secondary button-small button-large button-link
16
- ];
17
- $btn['text'] = esc_html__('Go Premium', 'elementskit-lite');
18
- $btn['url'] = 'https://go.wpmet.com/ekitpro';
19
-
20
- \Oxaim\Libs\Notice::instance('elementskit-lite', 'go-pro-noti2ce')
21
- ->set_dismiss('global', (3600 * 24 * 300))
22
- ->set_type('warning')
23
- ->set_message('
24
- <div class="ekit-go-pro-notice">
25
- <p><strong>Thank you for using ElementsKit Lite.</strong> To get more amaizing features and the outstanding pro readymade layouts, please get the <a style="color: #FCB214;" target="_blank" href="https://go.wpmet.com/ekitpro">Premium Version</a>.</p>
26
- </div>
27
- ')
28
- ->call();
29
-
30
- }
31
  }
1
+ <?php
2
+ namespace ElementsKit_Lite\Libs\Pro_Label;
3
+ defined( 'ABSPATH' ) || exit;
4
+
5
+ trait Admin_Notice{
6
+
7
+ public function footer_alert_box(){
8
+ include 'views/modal.php';
9
+ }
10
+
11
+ public function show_go_pro_notice(){
12
+
13
+ $btn = [
14
+ 'default_class' => 'button',
15
+ 'class' => 'button-primary ', // button-primary button-secondary button-small button-large button-link
16
+ ];
17
+ $btn['text'] = esc_html__('Go Premium', 'elementskit-lite');
18
+ $btn['url'] = 'https://go.wpmet.com/ekitpro';
19
+
20
+ \Oxaim\Libs\Notice::instance('elementskit-lite', 'go-pro-noti2ce')
21
+ ->set_dismiss('global', (3600 * 24 * 300))
22
+ ->set_type('warning')
23
+ ->set_message('
24
+ <div class="ekit-go-pro-notice">
25
+ <p><strong>Thank you for using ElementsKit Lite.</strong> To get more amaizing features and the outstanding pro readymade layouts, please get the <a style="color: #FCB214;" target="_blank" href="https://go.wpmet.com/ekitpro">Premium Version</a>.</p>
26
+ </div>
27
+ ')
28
+ ->call();
29
+
30
+ }
31
  }
libs/pro-label/init.php CHANGED
@@ -1,24 +1,24 @@
1
- <?php
2
- namespace ElementsKit_Lite\Libs\Pro_Label;
3
- defined( 'ABSPATH' ) || exit;
4
-
5
- class Init{
6
- use Admin_Notice;
7
-
8
- public function __construct(){
9
- add_action( 'current_screen', [$this, 'hook_current_screen'] );
10
- }
11
-
12
- public function hook_current_screen($screen){
13
- if(!in_array($screen->id, ['nav-menus', 'toplevel_page_elementskit', 'edit-elementskit_template', 'dashboard'])){
14
- return;
15
- }
16
-
17
- $activation_stamp = get_option('elementskit_lite_activation_stamp');
18
- if(date('d', (time() - $activation_stamp)) > 10){
19
- add_action( 'admin_head', [$this, 'show_go_pro_notice'] );
20
- }
21
-
22
- add_action('admin_footer', [$this, 'footer_alert_box']);
23
- }
24
  }
1
+ <?php
2
+ namespace ElementsKit_Lite\Libs\Pro_Label;
3
+ defined( 'ABSPATH' ) || exit;
4
+
5
+ class Init{
6
+ use Admin_Notice;
7
+
8
+ public function __construct(){
9
+ add_action( 'current_screen', [$this, 'hook_current_screen'] );
10
+ }
11
+
12
+ public function hook_current_screen($screen){
13
+ if(!in_array($screen->id, ['nav-menus', 'toplevel_page_elementskit', 'edit-elementskit_template', 'dashboard'])){
14
+ return;
15
+ }
16
+
17
+ $activation_stamp = get_option('elementskit_lite_activation_stamp');
18
+ if(date('d', (time() - $activation_stamp)) > 10){
19
+ add_action( 'admin_head', [$this, 'show_go_pro_notice'] );
20
+ }
21
+
22
+ add_action('admin_footer', [$this, 'footer_alert_box']);
23
+ }
24
  }
libs/pro-label/views/modal.php CHANGED
@@ -1,12 +1,12 @@
1
- <div class="attr-modal attr-fade ekit-wid-con" id="elementskit_go_pro_modal" tabindex="-1" role="dialog" aria-labelledby="elementskit_go_pro_modalLabel" style="display: none;">
2
- <div class="attr-modal-dialog attr-modal-dialog-centered ekit-go-pro-con" role="document">
3
- <div class="attr-modal-content">
4
- <button type="button" class="close attr-hidden" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
5
- <div class="attr-modal-body attr-text-center">
6
- <i class="icon icon-information"></i>
7
- <h2>Go Premium</h2>
8
- <p>Purchase our <a href="https://go.wpmet.com/ekitpro">pro version</a> to unlock these premium features!</p>
9
- </div>
10
- </div>
11
- </div>
12
  </div>
1
+ <div class="attr-modal attr-fade ekit-wid-con" id="elementskit_go_pro_modal" tabindex="-1" role="dialog" aria-labelledby="elementskit_go_pro_modalLabel" style="display: none;">
2
+ <div class="attr-modal-dialog attr-modal-dialog-centered ekit-go-pro-con" role="document">
3
+ <div class="attr-modal-content">
4
+ <button type="button" class="close attr-hidden" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
5
+ <div class="attr-modal-body attr-text-center">
6
+ <i class="icon icon-information"></i>
7
+ <h2>Go Premium</h2>
8
+ <p>Purchase our <a href="https://go.wpmet.com/ekitpro">pro version</a> to unlock these premium features!</p>
9
+ </div>
10
+ </div>
11
+ </div>
12
  </div>
libs/rating/rating.php CHANGED
@@ -1,515 +1,515 @@
1
- <?php
2
-
3
- namespace Wpmet\Libs;
4
-
5
- defined('ABSPATH') || exit;
6
-
7
- use DateTime;
8
- use Oxaim\Libs\Notice as LibsNotice;
9
-
10
- if (!class_exists('Wpmet\Libs\Rating')) {
11
-
12
- /**
13
- * Asking client for rating and
14
- * other stuffs
15
- * Class Rating
16
- * @package MetForm\Utils
17
- */
18
- class Rating
19
- {
20
- private $plugin_name;
21
- private $priority = 10;
22
- private $days;
23
- private $rating_url;
24
- private $version;
25
- private $condition_status = true;
26
- private $text_domain;
27
- private $plugin_logo;
28
- private $plugin_screens;
29
- private $duplication = false;
30
- private $never_show_triggered = false;
31
-
32
- /**
33
- * scripts version
34
- *
35
- * @var string
36
- */
37
- protected $script_version = '2.0.0';
38
-
39
- private static $instance;
40
-
41
- /**
42
- * Method: instance -> Return Notice module class instance
43
- *
44
- * @param string|null $text_domain
45
- * @param string|null $unique_id
46
- * @return mixed
47
- */
48
- public static function instance($text_domain = null, $unique_id = null)
49
- {
50
- if ($text_domain == null) {
51
- return false;
52
- }
53
-
54
- self::$instance = new self();
55
- self::$instance->config($text_domain, (is_null($unique_id) ? uniqid() : $unique_id));
56
- return self::$instance;
57
- }
58
-
59
- /**
60
- * Set Text domain
61
- *
62
- * @param string $text_domain
63
- * @param string $unique_id
64
- */
65
- public function config($text_domain, $unique_id)
66
- {
67
- $this->text_domain = $text_domain;
68
- }
69
-
70
- /**
71
- * Get vesrion of $this
72
- *
73
- * @return \Wpmet\Rating\Rating
74
- */
75
- public function get_version()
76
- {
77
- return $this->script_version;
78
- }
79
-
80
- /**
81
- * @return $this file location for debugging 🐛 purpose
82
- */
83
- public function get_script_location()
84
- {
85
- return __FILE__;
86
- }
87
-
88
- /**
89
- * @param
90
- */
91
- public function set_plugin($plugin_name, $plugin_url)
92
- {
93
- $this->plugin_name = $plugin_name;
94
- $this->rating_url = $plugin_url;
95
- return $this;
96
- }
97
-
98
- /**
99
- * @param
100
- */
101
- public function set_priority($priority)
102
- {
103
- $this->priority = $priority;
104
- return $this;
105
- }
106
-
107
- public function set_first_appear_day($days = 7)
108
- {
109
- $this->days = $days;
110
- return $this;
111
- }
112
-
113
- public function set_rating_url($url)
114
- {
115
- $this->rating_url = $url;
116
- return $this;
117
- }
118
-
119
- public function set_plugin_logo($logo_url)
120
- {
121
- $this->plugin_logo = $logo_url;
122
- return $this;
123
- }
124
-
125
- public function set_allowed_screens($screen)
126
- {
127
-
128
- $this->plugin_screens[] = $screen;
129
-
130
- return $this;
131
- }
132
-
133
- public function set_condition($result)
134
- {
135
- switch (gettype($result)) {
136
- case 'boolean':
137
- $this->condition_status = $result;
138
- break;
139
- case 'object':
140
- $this->condition_status = $result();
141
- break;
142
- default:
143
- $this->condition_status = false;
144
- }
145
-
146
- return $this;
147
- }
148
-
149
- public static function init()
150
- {
151
- add_action("wp_ajax_wpmet_rating_never_show_message", [__CLASS__, "never_show_message"]);
152
- add_action("wp_ajax_wpmet_rating_ask_me_later_message", [__CLASS__, "ask_me_later_message"]);
153
- }
154
-
155
- protected function is_current_screen_allowed($current_screen_id)
156
- {
157
- if (in_array($current_screen_id, array_merge($this->plugin_screens, ['dashboard', 'plugins']))) {
158
- return true;
159
- }
160
-
161
- return false;
162
- }
163
-
164
- /**
165
- * ------------------------------------------
166
- * 🚀 Rating class execution point
167
- * ------------------------------------------
168
- */
169
- public function call()
170
- {
171
-
172
- $this->init();
173
- add_action('admin_head', [$this, 'fire'], $this->priority);
174
- }
175
-
176
- /**
177
- * -------------------------------------------
178
- * 🔥 fire the rating functionality
179
- * -------------------------------------------
180
- */
181
- public function fire()
182
- {
183
-
184
- if (current_user_can('update_plugins')) {
185
-
186
- $current_screen = get_current_screen();
187
-
188
- if (!$this->is_current_screen_allowed($current_screen->id)) {
189
- return;
190
- }
191
-
192
- if ($this->condition_status === false) {
193
- return;
194
- }
195
-
196
- add_action('admin_footer', [$this, 'scripts'], 9999);
197
-
198
-
199
- if ($this->action_on_fire()) {
200
- if (!$this->is_installation_date_exists()) {
201
- $this->set_installation_date();
202
- }
203
-
204
-
205
- if (get_option($this->text_domain . '_never_show') == 'yes') {
206
-
207
- return;
208
- }
209
-
210
-
211
- // $this->display_message_box();
212
-
213
-
214
- if (get_option($this->text_domain . '_ask_me_later') == 'yes') {
215
-
216
- $this->days = '30';
217
- $this->duplication = true;
218
- $this->never_show_triggered = true;
219
- if($this->get_remaining_days() >= $this->days){
220
- $this->duplication = false;
221
- }
222
- }
223
-
224
- $this->display_message_box();
225
-
226
-
227
-
228
- }
229
- }
230
- }
231
-
232
-
233
-
234
- private function action_on_fire()
235
- {
236
- return true;
237
- }
238
-
239
-
240
- public function set_installation_date()
241
- {
242
- add_option($this->text_domain . '_install_date', date('Y-m-d h:i:s'));
243
- }
244
-
245
- public function is_installation_date_exists()
246
- {
247
- return (get_option($this->text_domain . '_install_date') == false) ? false : true;
248
- }
249
-
250
- public function get_installation_date()
251
- {
252
- return get_option($this->text_domain . '_install_date');
253
- }
254
-
255
- public function set_first_action_date()
256
- {
257
- add_option($this->text_domain . '_first_action_Date', date('Y-m-d h:i:s'));
258
- add_option($this->text_domain . '_first_action', 'yes');
259
- }
260
-
261
- public function get_days($from_date, $to_date)
262
- {
263
- return round(($to_date->format('U') - $from_date->format('U')) / (60 * 60 * 24));
264
- }
265
-
266
- public function is_first_use($in_days)
267
- {
268
- $install_date = get_option($this->text_domain . '_install_date');
269
- $display_date = date('Y-m-d h:i:s');
270
- $datetime1 = new DateTime($install_date);
271
- $datetime2 = new DateTime($display_date);
272
- $diff_interval = $this->get_days($datetime1, $datetime2);
273
-
274
- if (abs($diff_interval) >= $in_days && get_option($this->text_domain . '_first_action_Date') == "yes") {
275
-
276
- // action implementation here
277
-
278
- }
279
- }
280
-
281
- /**
282
- * ---------------------------------------------
283
- * Change the status of Rating notification
284
- * not to show the message again
285
- * ---------------------------------------------
286
- */
287
- public static function never_show_message()
288
- {
289
- $plugin_name = $_POST['plugin_name'];
290
- add_option($plugin_name . '_never_show', 'yes');
291
- }
292
-
293
- public function get_remaining_days(){
294
- $install_date = get_option($this->text_domain . '_install_date');
295
- $display_date = date('Y-m-d h:i:s');
296
- $datetime1 = new DateTime($install_date);
297
- $datetime2 = new DateTime($display_date);
298
- $diff_interval = $this->get_days($datetime1, $datetime2);
299
- return abs($diff_interval);
300
- }
301
-
302
- /**
303
- *----------------------------------
304
- * Ask me later functionality
305
- *----------------------------------
306
- */
307
- public function display_message_box()
308
- {
309
-
310
- if(!$this->duplication){
311
- global $wpmet_libs_execution_container;
312
-
313
- if(isset($wpmet_libs_execution_container['rating'])){
314
- return;
315
- }
316
-
317
- }
318
-
319
-
320
- $wpmet_libs_execution_container['rating'] = __FILE__;
321
-
322
- $install_date = get_option($this->text_domain . '_install_date');
323
- $display_date = date('Y-m-d h:i:s');
324
- $datetime1 = new DateTime($install_date);
325
- $datetime2 = new DateTime($display_date);
326
- $diff_interval = $this->get_days($datetime1, $datetime2);
327
- if (abs($diff_interval) >= $this->days) {
328
-
329
- $not_good_enough_btn_id = ($this->never_show_triggered) ? '_btn_never_show' : '_btn_not_good';
330
-
331
- $message = "Hello! Seems like you have used {$this->plugin_name} to build this website — Thanks a lot! <br>
332
- Could you please do us a <b>big favor</b> and give it a <b>5-star</b> rating on WordPress?
333
- This would boost our motivation and help other users make a comfortable decision while choosing the {$this->plugin_name}";
334
-
335
- LibsNotice::instance($this->text_domain, '_plugin_rating_msg_used_in_day')
336
- ->set_message($message)
337
- ->set_logo($this->plugin_logo, "max-height: 100px !important")
338
- ->set_button([
339
- 'url' => $this->rating_url,
340
- 'text' => 'Ok, you deserved it',
341
- 'class' => 'button-primary',
342
- 'id' => $this->text_domain . '_btn_deserved',
343
- ])
344
- ->set_button([
345
- 'url' => '#',
346
- 'text' => 'I already did',
347
- 'class' => 'button-default',
348
- 'id' => $this->text_domain. '_btn_already_did',
349
- 'icon' => 'dashicons-before dashicons-smiley'
350
- ])
351
- ->set_button([
352
- 'url' => 'https://wpmet.com/support-ticket',
353
- 'text' => 'I need support',
354
- 'class' => 'button-default',
355
- 'id' => '#',
356
- 'icon' => 'dashicons-before dashicons-sos',
357
- ])
358
- ->set_button([
359
- 'url' => '#',
360
- 'text' => 'No, not good enough',
361
- 'class' => 'button-default',
362
- 'id' => $this->text_domain . $not_good_enough_btn_id ,
363
- 'icon' => 'dashicons-before dashicons-thumbs-down',
364
- ])
365
- ->call();
366
- }
367
- }
368
-
369
-
370
- /**
371
- *---------------------------------------------------------
372
- * When user will click @notGoodEnough button
373
- * Then it will fire this function to change the status
374
- * for next asking time
375
- *---------------------------------------------------------
376
- */
377
-
378
-
379
- public static function ask_me_later_message()
380
- {
381
- $plugin_name = $_POST['plugin_name'];
382
- if (get_option($plugin_name . '_ask_me_later') == false) {
383
- add_option($plugin_name . '_ask_me_later', 'yes');
384
- } else {
385
- add_option($plugin_name . '_never_show', 'yes');
386
- }
387
- }
388
-
389
- /**
390
- *--------------------------------------
391
- * Get current version of the plugin
392
- *--------------------------------------
393
- */
394
-
395
- public function get_current_version()
396
- {
397
-
398
- return $this->version;
399
- }
400
-
401
- /**
402
- *-------------------------------------------
403
- * Get previous version of the plugin
404
- * that have been stored in database
405
- *-------------------------------------------
406
- */
407
-
408
-
409
- public function get_previous_version()
410
- {
411
-
412
- return get_option($this->text_domain . '_version');
413
- }
414
-
415
- /**
416
- *----------------------------------------
417
- * Set current version of the plugin
418
- *----------------------------------------
419
- */
420
-
421
- public function set_version($version)
422
- {
423
- if (!get_option($this->text_domain . '_version')) {
424
- add_option($this->text_domain . '_version');
425
- } else {
426
- update_option($this->text_domain . '_version', $version);
427
- }
428
- }
429
-
430
- /**
431
- *
432
- * JS Ajax script for updating
433
- * rating status from users
434
- *
435
- */
436
-
437
- public function scripts()
438
- {
439
-
440
- echo "
441
- <script>
442
- jQuery(document).ready(function ($) {
443
-
444
- $( '#".$this->text_domain."_btn_already_did' ).on( 'click', function() {
445
-
446
- $.ajax({
447
- url: ajaxurl,
448
- type: 'POST',
449
- data: {
450
- action : 'wpmet_rating_never_show_message',
451
- plugin_name : '" . $this->text_domain . "',
452
-
453
- },
454
- success:function(response){
455
- $('#" . $this->text_domain . "-_plugin_rating_msg_used_in_day').remove();
456
-
457
- }
458
- });
459
-
460
- });
461
-
462
- $('#".$this->text_domain."_btn_deserved').click(function(){
463
- $.ajax({
464
- url: ajaxurl,
465
- type: 'POST',
466
- data: {
467
- action : 'wpmet_rating_never_show_message',
468
- plugin_name : '" . $this->text_domain . "',
469
-
470
- },
471
- success:function(response){
472
- $('#" . $this->text_domain . "-_plugin_rating_msg_used_in_day').remove();
473
-
474
- }
475
- });
476
- });
477
-
478
- $('#".$this->text_domain."_btn_not_good').click(function(){
479
- $.ajax({
480
- url: ajaxurl,
481
- type: 'POST',
482
- data: {
483
- action : 'wpmet_rating_ask_me_later_message',
484
- plugin_name : '" . $this->text_domain . "',
485
-
486
- },
487
- success:function(response){
488
- $('#" . $this->text_domain . "-_plugin_rating_msg_used_in_day').remove();
489
-
490
- }
491
- });
492
- });
493
-
494
- $('#".$this->text_domain."_btn_never_show').click(function(){
495
- $.ajax({
496
- url: ajaxurl,
497
- type: 'POST',
498
- data: {
499
- action : 'wpmet_rating_never_show_message',
500
- plugin_name : '" . $this->text_domain . "',
501
-
502
- },
503
- success:function(response){
504
- $('#" . $this->text_domain . "-_plugin_rating_msg_used_in_day').remove();
505
-
506
- }
507
- });
508
- });
509
-
510
- });
511
- </script>
512
- ";
513
- }
514
- }
515
- }
1
+ <?php
2
+
3
+ namespace Wpmet\Libs;
4
+
5
+ defined('ABSPATH') || exit;
6
+
7
+ use DateTime;
8
+ use Oxaim\Libs\Notice as LibsNotice;
9
+
10
+ if (!class_exists('Wpmet\Libs\Rating')) {
11
+
12
+ /**
13
+ * Asking client for rating and
14
+ * other stuffs
15
+ * Class Rating
16
+ * @package MetForm\Utils
17
+ */
18
+ class Rating
19
+ {
20
+ private $plugin_name;
21
+ private $priority = 10;
22
+ private $days;
23
+ private $rating_url;
24
+ private $version;
25
+ private $condition_status = true;
26
+ private $text_domain;
27
+ private $plugin_logo;
28
+ private $plugin_screens;
29
+ private $duplication = false;
30
+ private $never_show_triggered = false;
31
+
32
+ /**
33
+ * scripts version
34
+ *
35
+ * @var string
36
+ */
37
+ protected $script_version = '2.0.0';
38
+
39
+ private static $instance;
40
+
41
+ /**
42
+ * Method: instance -> Return Notice module class instance
43
+ *
44
+ * @param string|null $text_domain
45
+ * @param string|null $unique_id
46
+ * @return mixed
47
+ */
48
+ public static function instance($text_domain = null, $unique_id = null)
49
+ {
50
+ if ($text_domain == null) {
51
+ return false;
52
+ }
53
+
54
+ self::$instance = new self();
55
+ self::$instance->config($text_domain, (is_null($unique_id) ? uniqid() : $unique_id));
56
+ return self::$instance;
57
+ }
58
+
59
+ /**
60
+ * Set Text domain
61
+ *
62
+ * @param string $text_domain
63
+ * @param string $unique_id
64
+ */
65
+ public function config($text_domain, $unique_id)
66
+ {
67
+ $this->text_domain = $text_domain;
68
+ }
69
+
70
+ /**
71
+ * Get vesrion of $this
72
+ *
73
+ * @return \Wpmet\Rating\Rating
74
+ */
75
+ public function get_version()
76
+ {
77
+ return $this->script_version;
78
+ }
79
+
80
+ /**
81
+ * @return $this file location for debugging 🐛 purpose
82
+ */
83
+ public function get_script_location()
84
+ {
85
+ return __FILE__;
86
+ }
87
+
88
+ /**
89
+ * @param
90
+ */
91
+ public function set_plugin($plugin_name, $plugin_url)
92
+ {
93
+ $this->plugin_name = $plugin_name;
94
+ $this->rating_url = $plugin_url;
95
+ return $this;
96
+ }
97
+
98
+ /**
99
+ * @param
100
+ */
101
+ public function set_priority($priority)
102
+ {
103
+ $this->priority = $priority;
104
+ return $this;
105
+ }
106
+
107
+ public function set_first_appear_day($days = 7)
108
+ {
109
+ $this->days = $days;
110
+ return $this;
111
+ }
112
+
113
+ public function set_rating_url($url)
114
+ {
115
+ $this->rating_url = $url;
116
+ return $this;
117
+ }
118
+
119
+ public function set_plugin_logo($logo_url)
120
+ {
121
+ $this->plugin_logo = $logo_url;
122
+ return $this;
123
+ }
124
+
125
+ public function set_allowed_screens($screen)
126
+ {
127
+
128
+ $this->plugin_screens[] = $screen;
129
+
130
+ return $this;
131
+ }
132
+
133
+ public function set_condition($result)
134
+ {
135
+ switch (gettype($result)) {
136
+ case 'boolean':
137
+ $this->condition_status = $result;
138
+ break;
139
+ case 'object':
140
+ $this->condition_status = $result();
141
+ break;
142
+ default:
143
+ $this->condition_status = false;
144
+ }
145
+
146
+ return $this;
147
+ }
148
+
149
+ public static function init()
150
+ {
151
+ add_action("wp_ajax_wpmet_rating_never_show_message", [__CLASS__, "never_show_message"]);
152
+ add_action("wp_ajax_wpmet_rating_ask_me_later_message", [__CLASS__, "ask_me_later_message"]);
153
+ }
154
+
155
+ protected function is_current_screen_allowed($current_screen_id)
156
+ {
157
+ if (in_array($current_screen_id, array_merge($this->plugin_screens, ['dashboard', 'plugins']))) {
158
+ return true;
159
+ }
160
+
161
+ return false;
162
+ }
163
+
164
+ /**
165
+ * ------------------------------------------
166
+ * 🚀 Rating class execution point
167
+ * ------------------------------------------
168
+ */
169
+ public function call()
170
+ {
171
+
172
+ $this->init();
173
+ add_action('admin_head', [$this, 'fire'], $this->priority);
174
+ }
175
+
176
+ /**
177
+ * -------------------------------------------
178
+ * 🔥 fire the rating functionality
179
+ * -------------------------------------------
180
+ */
181
+ public function fire()
182
+ {
183
+
184
+ if (current_user_can('update_plugins')) {
185
+
186
+ $current_screen = get_current_screen();
187
+
188
+ if (!$this->is_current_screen_allowed($current_screen->id)) {
189
+ return;
190
+ }
191
+
192
+ if ($this->condition_status === false) {
193
+ return;
194
+ }
195
+
196
+ add_action('admin_footer', [$this, 'scripts'], 9999);
197
+
198
+
199
+ if ($this->action_on_fire()) {
200
+ if (!$this->is_installation_date_exists()) {
201
+ $this->set_installation_date();
202
+ }
203
+
204
+
205
+ if (get_option($this->text_domain . '_never_show') == 'yes') {
206
+
207
+ return;
208
+ }
209
+
210
+
211
+ // $this->display_message_box();
212
+
213
+
214
+ if (get_option($this->text_domain . '_ask_me_later') == 'yes') {
215
+
216
+ $this->days = '30';
217
+ $this->duplication = true;
218
+ $this->never_show_triggered = true;
219
+ if($this->get_remaining_days() >= $this->days){
220
+ $this->duplication = false;
221
+ }
222
+ }
223
+
224
+ $this->display_message_box();
225
+
226
+
227
+
228
+ }
229
+ }
230
+ }
231
+
232
+
233
+
234
+ private function action_on_fire()
235
+ {
236
+ return true;
237
+ }
238
+
239
+
240
+ public function set_installation_date()
241
+ {
242
+ add_option($this->text_domain . '_install_date', date('Y-m-d h:i:s'));
243
+ }
244
+
245
+ public function is_installation_date_exists()
246
+ {
247
+ return (get_option($this->text_domain . '_install_date') == false) ? false : true;
248
+ }
249
+
250
+ public function get_installation_date()
251
+ {
252
+ return get_option($this->text_domain . '_install_date');
253
+ }
254
+
255
+ public function set_first_action_date()
256
+ {
257
+ add_option($this->text_domain . '_first_action_Date', date('Y-m-d h:i:s'));
258
+ add_option($this->text_domain . '_first_action', 'yes');
259
+ }
260
+
261
+ public function get_days($from_date, $to_date)
262
+ {
263
+ return round(($to_date->format('U') - $from_date->format('U')) / (60 * 60 * 24));
264
+ }
265
+
266
+ public function is_first_use($in_days)
267
+ {
268
+ $install_date = get_option($this->text_domain . '_install_date');
269
+ $display_date = date('Y-m-d h:i:s');
270
+ $datetime1 = new DateTime($install_date);
271
+ $datetime2 = new DateTime($display_date);
272
+ $diff_interval = $this->get_days($datetime1, $datetime2);
273
+
274
+ if (abs($diff_interval) >= $in_days && get_option($this->text_domain . '_first_action_Date') == "yes") {
275
+
276
+ // action implementation here
277
+
278
+ }
279
+ }
280
+
281
+ /**
282
+ * ---------------------------------------------
283
+ * Change the status of Rating notification
284
+ * not to show the message again
285
+ * ---------------------------------------------
286
+ */
287
+ public static function never_show_message()
288
+ {
289
+ $plugin_name = $_POST['plugin_name'];
290
+ add_option($plugin_name . '_never_show', 'yes');
291
+ }
292
+
293
+ public function get_remaining_days(){
294
+ $install_date = get_option($this->text_domain . '_install_date');
295
+ $display_date = date('Y-m-d h:i:s');
296
+ $datetime1 = new DateTime($install_date);
297
+ $datetime2 = new DateTime($display_date);
298
+ $diff_interval = $this->get_days($datetime1, $datetime2);
299
+ return abs($diff_interval);
300
+ }
301
+
302
+ /**
303
+ *----------------------------------
304
+ * Ask me later functionality
305
+ *----------------------------------
306
+ */
307
+ public function display_message_box()
308
+ {
309
+
310
+ if(!$this->duplication){
311
+ global $wpmet_libs_execution_container;
312
+
313
+ if(isset($wpmet_libs_execution_container['rating'])){
314
+ return;
315
+ }
316
+
317
+ }
318
+
319
+
320
+ $wpmet_libs_execution_container['rating'] = __FILE__;
321
+
322
+ $install_date = get_option($this->text_domain . '_install_date');
323
+ $display_date = date('Y-m-d h:i:s');
324
+ $datetime1 = new DateTime($install_date);
325
+ $datetime2 = new DateTime($display_date);
326
+ $diff_interval = $this->get_days($datetime1, $datetime2);
327
+ if (abs($diff_interval) >= $this->days) {
328
+
329
+ $not_good_enough_btn_id = ($this->never_show_triggered) ? '_btn_never_show' : '_btn_not_good';
330
+
331
+ $message = "Hello! Seems like you have used {$this->plugin_name} to build this website — Thanks a lot! <br>
332
+ Could you please do us a <b>big favor</b> and give it a <b>5-star</b> rating on WordPress?
333
+ This would boost our motivation and help other users make a comfortable decision while choosing the {$this->plugin_name}";
334
+
335
+ LibsNotice::instance($this->text_domain, '_plugin_rating_msg_used_in_day')
336
+ ->set_message($message)
337
+ ->set_logo($this->plugin_logo, "max-height: 100px !important")
338
+ ->set_button([
339
+ 'url' => $this->rating_url,
340
+ 'text' => 'Ok, you deserved it',
341
+ 'class' => 'button-primary',
342
+ 'id' => $this->text_domain . '_btn_deserved',
343
+ ])
344
+ ->set_button([
345
+ 'url' => '#',
346
+ 'text' => 'I already did',
347
+ 'class' => 'button-default',
348
+ 'id' => $this->text_domain. '_btn_already_did',
349
+ 'icon' => 'dashicons-before dashicons-smiley'
350
+ ])
351
+ ->set_button([
352
+ 'url' => 'https://wpmet.com/support-ticket',
353
+ 'text' => 'I need support',
354
+ 'class' => 'button-default',
355
+ 'id' => '#',
356
+ 'icon' => 'dashicons-before dashicons-sos',
357
+ ])
358
+ ->set_button([
359
+ 'url' => '#',
360
+ 'text' => 'No, not good enough',
361
+ 'class' => 'button-default',
362
+ 'id' => $this->text_domain . $not_good_enough_btn_id ,
363
+ 'icon' => 'dashicons-before dashicons-thumbs-down',
364
+ ])
365
+ ->call();
366
+ }
367
+ }
368
+
369
+
370
+ /**
371
+ *---------------------------------------------------------
372
+ * When user will click @notGoodEnough button
373
+ * Then it will fire this function to change the status
374
+ * for next asking time
375
+ *---------------------------------------------------------
376
+ */
377
+
378
+
379
+ public static function ask_me_later_message()
380
+ {
381
+ $plugin_name = $_POST['plugin_name'];
382
+ if (get_option($plugin_name . '_ask_me_later') == false) {
383
+ add_option($plugin_name . '_ask_me_later', 'yes');
384
+ } else {
385
+ add_option($plugin_name . '_never_show', 'yes');
386
+ }
387
+ }
388
+
389
+ /**
390
+ *--------------------------------------
391
+ * Get current version of the plugin
392
+ *--------------------------------------
393
+ */
394
+
395
+ public function get_current_version()
396
+ {
397
+
398
+ return $this->version;
399
+ }
400
+
401
+ /**
402
+ *-------------------------------------------
403
+ * Get previous version of the plugin
404
+ * that have been stored in database
405
+ *-------------------------------------------
406
+ */
407
+
408
+
409
+ public function get_previous_version()
410
+ {
411
+
412
+ return get_option($this->text_domain . '_version');
413
+ }
414
+
415
+ /**
416
+ *----------------------------------------
417
+ * Set current version of the plugin
418
+ *----------------------------------------
419
+ */
420
+
421
+ public function set_version($version)
422
+ {
423
+ if (!get_option($this->text_domain . '_version')) {
424
+ add_option($this->text_domain . '_version');
425
+ } else {
426
+ update_option($this->text_domain . '_version', $version);
427
+ }
428
+ }
429
+
430
+ /**
431
+ *
432
+ * JS Ajax script for updating
433
+ * rating status from users
434
+ *
435
+ */
436
+
437
+ public function scripts()
438
+ {
439
+
440
+ echo "
441
+ <script>
442
+ jQuery(document).ready(function ($) {
443
+
444
+ $( '#".$this->text_domain."_btn_already_did' ).on( 'click', function() {
445
+
446
+ $.ajax({
447
+ url: ajaxurl,
448
+ type: 'POST',
449
+ data: {
450
+ action : 'wpmet_rating_never_show_message',
451
+ plugin_name : '" . $this->text_domain . "',
452
+
453
+ },
454
+ success:function(response){
455
+ $('#" . $this->text_domain . "-_plugin_rating_msg_used_in_day').remove();
456
+
457
+ }
458
+ });
459
+
460
+ });
461
+
462
+ $('#".$this->text_domain."_btn_deserved').click(function(){
463
+ $.ajax({
464
+ url: ajaxurl,
465
+ type: 'POST',
466
+ data: {
467
+ action : 'wpmet_rating_never_show_message',
468
+ plugin_name : '" . $this->text_domain . "',
469
+
470
+ },
471
+ success:function(response){
472
+ $('#" . $this->text_domain . "-_plugin_rating_msg_used_in_day').remove();
473
+
474
+ }
475
+ });
476
+ });
477
+
478
+ $('#".$this->text_domain."_btn_not_good').click(function(){
479
+ $.ajax({
480
+ url: ajaxurl,
481
+ type: 'POST',
482
+ data: {
483
+ action : 'wpmet_rating_ask_me_later_message',
484
+ plugin_name : '" . $this->text_domain . "',
485
+
486
+ },
487
+ success:function(response){
488
+ $('#" . $this->text_domain . "-_plugin_rating_msg_used_in_day').remove();
489
+
490
+ }
491
+ });
492
+ });
493
+
494
+ $('#".$this->text_domain."_btn_never_show').click(function(){
495
+ $.ajax({
496
+ url: ajaxurl,
497
+ type: 'POST',
498
+ data: {
499
+ action : 'wpmet_rating_never_show_message',
500
+ plugin_name : '" . $this->text_domain . "',
501
+
502
+ },
503
+ success:function(response){
504
+ $('#" . $this->text_domain . "-_plugin_rating_msg_used_in_day').remove();
505
+
506
+ }
507
+ });
508
+ });
509
+
510
+ });
511
+ </script>
512
+ ";
513
+ }
514
+ }
515
+ }
libs/stories/stories.php CHANGED
@@ -1,319 +1,319 @@
1
- <?php
2
- namespace Wpmet\Libs;
3
-
4
- defined('ABSPATH') || exit;
5
-
6
- if (!class_exists('\Wpmet\Libs\Stories')):
7
-
8
- class Stories {
9
-
10
- protected $script_version = '1.1.1';
11
-
12
- protected $key = 'wpmet_stories';
13
- protected $data;
14
- protected $title;
15
- protected $plugin_link = [];
16
- protected $last_check;
17
- protected $check_interval = (3600 * 6);
18
-
19
- protected $plugin_screens;
20
-
21
- protected $text_domain;
22
- protected $filter_string;
23
- protected $api_url;
24
-
25
- private $stories;
26
-
27
- /**
28
- * Get version of this script
29
- *
30
- * @return string Version name
31
- */
32
- public function get_version() {
33
- return $this->script_version;
34
- }
35
-
36
- /**
37
- * Get current directory path
38
- *
39
- * @return string
40
- */
41
- public function get_script_location() {
42
- return __FILE__;
43
- }
44
-
45
- public function set_plugin($link_title, $weblink = 'https://wpmet.com/') {
46
- $this->plugin_link[] = [ $link_title, $weblink ];
47
-
48
- return $this;
49
- }
50
-
51
- public function call() {
52
- add_action('wp_dashboard_setup', [$this, 'show_story_widget'], 111);
53
- }
54
-
55
- private function in_whitelist($conf, $list) {
56
-
57
- $match = $conf->data->whitelist;
58
-
59
- if (empty($match)) {
60
-
61
- return true;
62
- };
63
-
64
- $match_arr = explode(',', $match);
65
-
66
- foreach ($list as $word) {
67
- if (in_array($word, $match_arr)) {
68
-
69
- return true;
70
- }
71
- }
72
-
73
- return false;
74
- }
75
-
76
- private function in_blacklist($conf, $list) {
77
-
78
- $match = $conf->data->blacklist;
79
-
80
- if (empty($match)) {
81
-
82
- return false;
83
- };
84
-
85
- $match_arr = explode(',', $match);
86
-
87
- foreach ($match_arr as $idx => $item) {
88
-
89
- $match_arr[$idx] = trim($item);
90
- }
91
-
92
- foreach ($list as $word) {
93
- if (in_array($word, $match_arr)) {
94
-
95
- return true;
96
- }
97
- }
98
-
99
- return false;
100
- }
101
-
102
- public function set_title($title = '') {
103
- $this->title = $title;
104
-
105
- return $this;
106
- }
107
-
108
- public function is_test($is_test = false) {
109
-
110
- if ($is_test === true) {
111
- $this->check_interval = 1;
112
- }
113
-
114
- return $this;
115
- }
116
-
117
- public function set_text_domain($text_domain) {
118
-
119
- $this->text_domain = $text_domain;
120
-
121
- return $this;
122
- }
123
-
124
- public function set_filter($filter_string) {
125
-
126
- $this->filter_string = $filter_string;
127
-
128
- return $this;
129
- }
130
-
131
- public function set_api_url($url) {
132
-
133
- $this->api_url = $url;
134
-
135
- return $this;
136
- }
137
-
138
- public function set_plugin_screens($screen) {
139
-
140
- $this->plugin_screens[] = $screen;
141
-
142
- return $this;
143
- }
144
-
145
- private function set_stories($story) {
146
- $filter = [$this->text_domain];
147
- foreach (get_option('active_plugins') as $plugin) {
148
- $temp = pathinfo($plugin);
149
- if(!empty($temp)) {
150
- $filter[] = trim($temp['filename']);
151
- }
152
- }
153
-
154
- if (isset($this->stories[$story->id])) {
155
- return;
156
- }
157
-
158
- // if start and endtime is set, check current time is inside the timeframe
159
- if ((!empty($story->start) && !empty($story->end)) && (intval($story->start) > time() || intval($story->end) < time())) {
160
- return;
161
- }
162
-
163
- if(empty(array_intersect($filter, $story->plugins))) {
164
- return;
165
- }
166
-
167
- $this->stories[$story->id] = [
168
- 'id' => $story->id,
169
- 'title' => $story->title,
170
- 'description' => $story->description,
171
- 'type' => $story->type,
172
- 'priority' => $story->priority,
173
- 'story_link' => $story->data->story_link,
174
- 'story_image' => $story->data->story_image,
175
- ];
176
- }
177
-
178
- private function get_stories() {
179
- $this->data = get_option($this->text_domain . '__stories_data');
180
- $this->data = $this->data == '' ? [] : $this->data;
181
-
182
- $this->last_check = get_option($this->text_domain . '__stories_last_check');
183
-
184
- $this->last_check = empty($this->last_check) ? 0 : $this->last_check;
185
-
186
- if (($this->check_interval + $this->last_check) < time()) {
187
- $response = wp_remote_get($this->api_url . 'cache/stories.json?nocache=' . time(),
188
- [
189
- 'timeout' => 10,
190
- 'httpversion' => '1.1',
191
- ]
192
- );
193
-
194
-
195
- if (!is_wp_error($response) && isset($response['body']) && $response['body'] != '') {
196
-
197
- $response = json_decode($response['body']);
198
-
199
- if (!empty($response)) {
200
- $this->data = $response;
201
-
202
- update_option($this->text_domain . '__stories_last_check', time());
203
- update_option($this->text_domain . '__stories_data', $this->data);
204
- }
205
-
206
- return;
207
- }
208
- }
209
- }
210
-
211
- public function show_story_widget() {
212
- $this->get_stories();
213
-
214
- if (!empty($this->data->error)) {
215
-
216
- return;
217
- }
218
-
219
- if (empty($this->data)) {
220
-
221
- return;
222
- }
223
-
224
- $list = [];
225
-
226
- if (!empty($this->filter_string)) {
227
-
228
- $list = explode(',', $this->filter_string);
229
-
230
- foreach ($list as $idx => $item) {
231
- $list[$idx] = trim($item);
232
- }
233
- $list = array_filter($list);
234
- }
235
-
236
-
237
- foreach ($this->data as $story) {
238
-
239
- if (!empty($list) && $this->in_blacklist($story, $list)) {
240
-
241
- continue;
242
- }
243
-
244
- $this->set_stories($story);
245
- }
246
-
247
- if(empty($this->stories)) {
248
- return;
249
- }
250
-
251
-
252
-
253
- $this->title = (isset($this->title) && !empty($this->title) ? $this->title . ' ' : '') . 'Stories';
254
-
255
- wp_add_dashboard_widget( 'wpmet-stories', __( 'Wpmet Stories', 'elementskit-lite' ), [ $this, 'show' ] );
256
-
257
- // Move our widget to top.
258
- global $wp_meta_boxes;
259
-
260
- $dashboard = $wp_meta_boxes['dashboard']['normal']['core'];
261
- $ours = [
262
- 'wpmet-stories' => $dashboard['wpmet-stories'],
263
- ];
264
-
265
- $wp_meta_boxes['dashboard']['normal']['core'] = array_merge( $ours, $dashboard );
266
- }
267
-
268
- public function show() {
269
- usort($this->stories, function ($a, $b) {
270
- if ($a['priority']==$b['priority']) {
271
- return 0;
272
- }
273
- return ($a['priority'] < $b['priority']) ? -1 : 1;
274
- });
275
- include_once 'views/template.php';
276
-
277
- }
278
-
279
- /**
280
- * Crosscheck if Story library will be shown at current WP admin page or not
281
- *
282
- * @param string $b_screen
283
- * @param string $screen_id
284
- *
285
- * @return boolean
286
- */
287
- public function is_correct_screen_to_show($b_screen, $screen_id) {
288
-
289
- if (in_array($b_screen, [$screen_id, 'all_page'])) {
290
-
291
- return true;
292
- }
293
-
294
- if ($b_screen == 'plugin_page') {
295
-
296
- return in_array($screen_id, $this->plugin_screens);
297
- }
298
-
299
- return false;
300
- }
301
-
302
- /**
303
- * Define singleton instance
304
- *
305
- * @var [type]
306
- */
307
- private static $instance;
308
-
309
- public static function instance($text_domain = '') {
310
-
311
- if(!self::$instance) {
312
- self::$instance = new static();
313
- }
314
-
315
- return self::$instance->set_text_domain($text_domain);
316
- }
317
- }
318
-
319
  endif;
1
+ <?php
2
+ namespace Wpmet\Libs;
3
+
4
+ defined('ABSPATH') || exit;
5
+
6
+ if (!class_exists('\Wpmet\Libs\Stories')):
7
+
8
+ class Stories {
9
+
10
+ protected $script_version = '1.1.1';
11
+
12
+ protected $key = 'wpmet_stories';
13
+ protected $data;
14
+ protected $title;
15
+ protected $plugin_link = [];
16
+ protected $last_check;
17
+ protected $check_interval = (3600 * 6);
18
+
19
+ protected $plugin_screens;
20
+
21
+ protected $text_domain;
22
+ protected $filter_string;
23
+ protected $api_url;
24
+
25
+ private $stories;
26
+
27
+ /**
28
+ * Get version of this script
29
+ *
30
+ * @return string Version name
31
+ */
32
+ public function get_version() {
33
+ return $this->script_version;
34
+ }
35
+
36
+ /**
37
+ * Get current directory path
38
+ *
39
+ * @return string
40
+ */
41
+ public function get_script_location() {
42
+ return __FILE__;
43
+ }
44
+
45
+ public function set_plugin($link_title, $weblink = 'https://wpmet.com/') {
46
+ $this->plugin_link[] = [ $link_title, $weblink ];
47
+
48
+ return $this;
49
+ }
50
+
51
+ public function call() {
52
+ add_action('wp_dashboard_setup', [$this, 'show_story_widget'], 111);
53
+ }
54
+
55
+ private function in_whitelist($conf, $list) {
56
+
57
+ $match = $conf->data->whitelist;
58
+
59
+ if (empty($match)) {
60
+
61
+ return true;
62
+ };
63
+
64
+ $match_arr = explode(',', $match);
65
+
66
+ foreach ($list as $word) {
67
+ if (in_array($word, $match_arr)) {
68
+
69
+ return true;
70
+ }
71
+ }
72
+
73
+ return false;
74
+ }
75
+
76
+ private function in_blacklist($conf, $list) {
77
+
78
+ $match = $conf->data->blacklist;
79
+
80
+ if (empty($match)) {
81
+
82
+ return false;
83
+ };
84
+
85
+ $match_arr = explode(',', $match);
86
+
87
+ foreach ($match_arr as $idx => $item) {
88
+
89
+ $match_arr[$idx] = trim($item);
90
+ }
91
+
92
+ foreach ($list as $word) {
93
+ if (in_array($word, $match_arr)) {
94
+
95
+ return true;
96
+ }
97
+ }
98
+
99
+ return false;
100
+ }
101
+
102
+ public function set_title($title = '') {
103
+ $this->title = $title;
104
+
105
+ return $this;
106
+ }
107
+
108
+ public function is_test($is_test = false) {
109
+
110
+ if ($is_test === true) {
111
+ $this->check_interval = 1;
112
+ }
113
+
114
+ return $this;
115
+ }
116
+
117
+ public function set_text_domain($text_domain) {
118
+
119
+ $this->text_domain = $text_domain;
120
+
121
+ return $this;
122
+ }
123
+
124
+ public function set_filter($filter_string) {
125
+
126
+ $this->filter_string = $filter_string;
127
+
128
+ return $this;
129
+ }
130
+
131
+ public function set_api_url($url) {
132
+
133
+ $this->api_url = $url;
134
+
135
+ return $this;
136
+ }
137
+
138
+ public function set_plugin_screens($screen) {
139
+
140
+ $this->plugin_screens[] = $screen;
141
+
142
+ return $this;
143
+ }
144
+
145
+ private function set_stories($story) {
146
+ $filter = [$this->text_domain];
147
+ foreach (get_option('active_plugins') as $plugin) {
148
+ $temp = pathinfo($plugin);
149
+ if(!empty($temp)) {
150
+ $filter[] = trim($temp['filename']);
151
+ }
152
+ }
153
+
154
+ if (isset($this->stories[$story->id])) {
155
+ return;
156
+ }
157
+
158
+ // if start and endtime is set, check current time is inside the timeframe
159
+ if ((!empty($story->start) && !empty($story->end)) && (intval($story->start) > time() || intval($story->end) < time())) {
160
+ return;
161
+ }
162
+
163
+ if(empty(array_intersect($filter, $story->plugins))) {
164
+ return;
165
+ }
166
+
167
+ $this->stories[$story->id] = [
168
+ 'id' => $story->id,
169
+ 'title' => $story->title,
170
+ 'description' => $story->description,
171
+ 'type' => $story->type,
172
+ 'priority' => $story->priority,
173
+ 'story_link' => $story->data->story_link,
174
+ 'story_image' => $story->data->story_image,
175
+ ];
176
+ }
177
+
178
+ private function get_stories() {
179
+ $this->data = get_option($this->text_domain . '__stories_data');
180
+ $this->data = $this->data == '' ? [] : $this->data;
181
+
182
+ $this->last_check = get_option($this->text_domain . '__stories_last_check');
183
+
184
+ $this->last_check = empty($this->last_check) ? 0 : $this->last_check;
185
+
186
+ if (($this->check_interval + $this->last_check) < time()) {
187
+ $response = wp_remote_get($this->api_url . 'cache/stories.json?nocache=' . time(),
188
+ [
189
+ 'timeout' => 10,
190
+ 'httpversion' => '1.1',
191
+ ]
192
+ );
193
+
194
+
195
+ if (!is_wp_error($response) && isset($response['body']) && $response['body'] != '') {
196
+
197
+ $response = json_decode($response['body']);
198
+
199
+ if (!empty($response)) {
200
+ $this->data = $response;
201
+
202
+ update_option($this->text_domain . '__stories_last_check', time());
203
+ update_option($this->text_domain . '__stories_data', $this->data);
204
+ }
205
+
206
+ return;
207
+ }
208
+ }
209
+ }
210
+
211
+ public function show_story_widget() {
212
+ $this->get_stories();
213
+
214
+ if (!empty($this->data->error)) {
215
+
216
+ return;
217
+ }
218
+
219
+ if (empty($this->data)) {
220
+
221
+ return;
222
+ }
223
+
224
+ $list = [];
225
+
226
+ if (!empty($this->filter_string)) {
227
+
228
+ $list = explode(',', $this->filter_string);
229
+
230
+ foreach ($list as $idx => $item) {
231
+ $list[$idx] = trim($item);
232
+ }
233
+ $list = array_filter($list);
234
+ }
235
+
236
+
237
+ foreach ($this->data as $story) {
238
+
239
+ if (!empty($list) && $this->in_blacklist($story, $list)) {
240
+
241
+ continue;
242
+ }
243
+
244
+ $this->set_stories($story);
245
+ }
246
+
247
+ if(empty($this->stories)) {
248
+ return;
249
+ }
250
+
251
+
252
+
253
+ $this->title = (isset($this->title) && !empty($this->title) ? $this->title . ' ' : '') . 'Stories';
254
+
255
+ wp_add_dashboard_widget( 'wpmet-stories', __( 'Wpmet Stories', 'elementskit-lite' ), [ $this, 'show' ] );
256
+
257
+ // Move our widget to top.
258
+ global $wp_meta_boxes;
259
+
260
+ $dashboard = $wp_meta_boxes['dashboard']['normal']['core'];
261
+ $ours = [
262
+ 'wpmet-stories' => $dashboard['wpmet-stories'],
263
+ ];
264
+
265
+ $wp_meta_boxes['dashboard']['normal']['core'] = array_merge( $ours, $dashboard );
266
+ }
267
+
268
+ public function show() {
269
+ usort($this->stories, function ($a, $b) {
270
+ if ($a['priority']==$b['priority']) {
271
+ return 0;
272
+ }
273
+ return ($a['priority'] < $b['priority']) ? -1 : 1;
274
+ });
275
+ include_once 'views/template.php';
276
+
277
+ }
278
+
279
+ /**
280
+ * Crosscheck if Story library will be shown at current WP admin page or not
281
+ *
282
+ * @param string $b_screen
283
+ * @param string $screen_id
284
+ *
285
+ * @return boolean
286
+ */
287
+ public function is_correct_screen_to_show($b_screen, $screen_id) {
288
+
289
+ if (in_array($b_screen, [$screen_id, 'all_page'])) {
290
+
291
+ return true;
292
+ }
293
+
294
+ if ($b_screen == 'plugin_page') {
295
+
296
+ return in_array($screen_id, $this->plugin_screens);
297
+ }
298
+
299
+ return false;
300
+ }
301
+
302
+ /**
303
+ * Define singleton instance
304
+ *
305
+ * @var [type]
306
+ */
307
+ private static $instance;
308
+
309
+ public static function instance($text_domain = '') {
310
+
311
+ if(!self::$instance) {
312
+ self::$instance = new static();
313
+ }
314
+
315
+ return self::$instance->set_text_domain($text_domain);
316
+ }
317
+ }
318
+
319
  endif;
libs/stories/views/template.php CHANGED
@@ -1,149 +1,149 @@
1
- <style>
2
- .wpmet-str {
3
- display: flex;
4
- flex-wrap: wrap;
5
- width: 100%;
6
- margin-bottom: 10px;
7
- }
8
- .wpmet-str-thumb {
9
- width: 75px;
10
- padding-right: 7px;
11
- box-sizing: border-box;
12
- align-self: flex-start;
13
- padding-top: 5px;
14
- }
15
- .wpmet-str-thumb img {
16
- width: 100%;
17
- display: block;
18
- min-height: 34px;
19
- }
20
- .wpmet-str-desc.with-image {
21
- width: calc(100% - 75px);
22
- font-weight: 400;
23
- line-height: 1.5;
24
- font-size: 13px;
25
- }
26
- .wpmet-str-desc a {
27
- font-weight: 500;
28
- color: #0073aa;
29
- text-decoration: none;
30
- padding-bottom: 5px;
31
- display: inline-block;
32
- }
33
- .wpmet-str:last-child {
34
- margin-bottom: 0;
35
- }
36
- .wpmet-str-desc span {
37
- display: block;
38
- }
39
- .wpmet-bullet-wall {
40
- width: 6px;
41
- height: 6px;
42
- border-radius: 50%;
43
- background-color: black;
44
- display: inline-block;
45
- margin: 0 5px;
46
- }
47
- .wpmet-dashboard-widget-block {
48
- width: 100%;
49
- }
50
- .wpmet-dashboard-widget-block .wpmet-title-bar a{
51
- color: #23282d;
52
- font-weight: 400;
53
- font-size: 12px;
54
- }
55
- .wpmet-dashboard-widget-block .wpmet-title-bar {
56
- display: table;
57
- width: 100%;
58
- -webkit-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.05);
59
- box-shadow: 0 5px 8px rgba(0, 0, 0, 0.05);
60
- margin: 0 -12px 8px;
61
- padding: 0 12px 12px;
62
- }
63
- .wpmet-dashboard-widget-block .wpmet-footer-bar {
64
- border-top: 1px solid #eee;
65
- padding-top: 1rem;
66
- }
67
- .wpmet-dashboard-widget-block .wpmet-footer-bar a {
68
- padding: 0 5px;
69
- }
70
- .wpmet-dashboard-widget-block a {
71
- text-decoration: none;
72
- font-size: 14px;
73
- color: #007cba;
74
- font-weight: 600;
75
- }
76
- .wpmet-str .wpmet-banner {
77
- width: 100%;
78
- }
79
- .wpmet-dashboard-widget-block .dashicons {
80
- vertical-align: middle;
81
- font-size: 17px;
82
- }
83
- </style>
84
-
85
- <div class="wpmet-dashboard-widget-block">
86
- <div class="wpmet-title-bar">
87
- <?php
88
- foreach ($this->plugin_link as $k => $link) {
89
- echo '<a target="_blank" href="' . $link[1] . '">' . $link[0] . '</a>';
90
- if (isset($this->plugin_link[$k + 1])) {
91
- echo '<div class="wpmet-bullet-wall"></div>';
92
- }
93
- }
94
- ?>
95
- </div>
96
- </div>
97
-
98
- <?php
99
- foreach ($this->stories as $story) :
100
- if($story['type'] === 'news' || $story['type'] === '') :
101
- ?>
102
- <div class="wpmet-str <?php echo ((isset($story['story_image']) && $story['story_image'] != '') ? 'with-image' : ''); ?>">
103
- <?php if(isset($story['story_image']) && $story['story_image'] != ''): ?>
104
- <div class="wpmet-str-thumb">
105
- <img src="<?php echo esc_url($story['story_image']); ?>" />
106
- </div>
107
- <?php endif; ?>
108
-
109
- <div class="wpmet-str-desc">
110
-
111
- <a target="_blank" href="<?php echo esc_url($story['story_link']) ?>">
112
- <?php echo esc_html($story['title']); ?>
113
- </a>
114
-
115
- <?php if(isset($story['description']) && $story['description'] != ''): ?>
116
- <span><?php echo esc_html($story['description']); ?> </span>
117
- <?php endif; ?>
118
-
119
- </div>
120
- </div>
121
- <?php
122
- elseif($story['type'] === 'banner') :
123
- ?>
124
- <div class="wpmet-str">
125
- <a target="_blank" href="<?php echo esc_url($story['story_link']) ?>">
126
- <img class="wpmet-banner" src="<?php echo isset($story['story_image']) && $story['story_image'] != '' ? $story['story_image'] : '#'; ?>" />
127
- </a>
128
- </div>
129
- <?php
130
- endif;
131
- endforeach;
132
- ?>
133
-
134
- <div class="wpmet-dashboard-widget-block">
135
- <div class="wpmet-footer-bar">
136
- <a href="https://wpmet.com/support-ticket" target="_blank">
137
- <?php echo esc_html__('Need Help?', 'elementskit-lite'); ?>
138
- <span aria-hidden="true" class="dashicons dashicons-external"></span>
139
- </a>
140
- <a href="https://wpmet.com/blog/?utm_source=wpmet_announcements&utm_medium=inplugin_campaign&utm_campaign=blog" target="_blank">
141
- <?php echo esc_html__('Blog', 'elementskit-lite') ;?>
142
- <span aria-hidden="true" class="dashicons dashicons-external"></span>
143
- </a>
144
- <a href="https://go.wpmet.com/facebook-group" target="_blank" style="color: #27ae60;">
145
- <?php echo esc_html__('Facebook Community', 'elementskit-lite'); ?>
146
- <span aria-hidden="true" class="dashicons dashicons-external"></span>
147
- </a>
148
- </div>
149
  </div>
1
+ <style>
2
+ .wpmet-str {
3
+ display: flex;
4
+ flex-wrap: wrap;
5
+ width: 100%;
6
+ margin-bottom: 10px;
7
+ }
8
+ .wpmet-str-thumb {
9
+ width: 75px;
10
+ padding-right: 7px;
11
+ box-sizing: border-box;
12
+ align-self: flex-start;
13
+ padding-top: 5px;
14
+ }
15
+ .wpmet-str-thumb img {
16
+ width: 100%;
17
+ display: block;
18
+ min-height: 34px;
19
+ }
20
+ .wpmet-str-desc.with-image {
21
+ width: calc(100% - 75px);
22
+ font-weight: 400;
23
+ line-height: 1.5;
24
+ font-size: 13px;
25
+ }
26
+ .wpmet-str-desc a {
27
+ font-weight: 500;
28
+ color: #0073aa;
29
+ text-decoration: none;
30
+ padding-bottom: 5px;
31
+ display: inline-block;
32
+ }
33
+ .wpmet-str:last-child {
34
+ margin-bottom: 0;
35
+ }
36
+ .wpmet-str-desc span {
37
+ display: block;
38
+ }
39
+ .wpmet-bullet-wall {
40
+ width: 6px;
41
+ height: 6px;
42
+ border-radius: 50%;
43
+ background-color: black;
44
+ display: inline-block;
45
+ margin: 0 5px;
46
+ }
47
+ .wpmet-dashboard-widget-block {
48
+ width: 100%;
49
+ }
50
+ .wpmet-dashboard-widget-block .wpmet-title-bar a{
51
+ color: #23282d;
52
+ font-weight: 400;
53
+ font-size: 12px;
54
+ }
55
+ .wpmet-dashboard-widget-block .wpmet-title-bar {
56
+ display: table;
57
+ width: 100%;
58
+ -webkit-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.05);
59
+ box-shadow: 0 5px 8px rgba(0, 0, 0, 0.05);
60
+ margin: 0 -12px 8px;
61
+ padding: 0 12px 12px;
62
+ }
63
+ .wpmet-dashboard-widget-block .wpmet-footer-bar {
64
+ border-top: 1px solid #eee;
65
+ padding-top: 1rem;
66
+ }
67
+ .wpmet-dashboard-widget-block .wpmet-footer-bar a {
68
+ padding: 0 5px;
69
+ }
70
+ .wpmet-dashboard-widget-block a {
71
+ text-decoration: none;
72
+ font-size: 14px;
73
+ color: #007cba;
74
+ font-weight: 600;
75
+ }
76
+ .wpmet-str .wpmet-banner {
77
+ width: 100%;
78
+ }
79
+ .wpmet-dashboard-widget-block .dashicons {
80
+ vertical-align: middle;
81
+ font-size: 17px;
82
+ }
83
+ </style>
84
+
85
+ <div class="wpmet-dashboard-widget-block">
86
+ <div class="wpmet-title-bar">
87
+ <?php
88
+ foreach ($this->plugin_link as $k => $link) {
89
+ echo '<a target="_blank" href="' . $link[1] . '">' . $link[0] . '</a>';
90
+ if (isset($this->plugin_link[$k + 1])) {
91
+ echo '<div class="wpmet-bullet-wall"></div>';
92
+ }
93
+ }
94
+ ?>
95
+ </div>
96
+ </div>
97
+
98
+ <?php
99
+ foreach ($this->stories as $story) :
100
+ if($story['type'] === 'news' || $story['type'] === '') :
101
+ ?>
102
+ <div class="wpmet-str <?php echo ((isset($story['story_image']) && $story['story_image'] != '') ? 'with-image' : ''); ?>">
103
+ <?php if(isset($story['story_image']) && $story['story_image'] != ''): ?>
104
+ <div class="wpmet-str-thumb">
105
+ <img src="<?php echo esc_url($story['story_image']); ?>" />
106
+ </div>
107
+ <?php endif; ?>
108
+
109
+ <div class="wpmet-str-desc">
110
+
111
+ <a target="_blank" href="<?php echo esc_url($story['story_link']) ?>">
112
+ <?php echo esc_html($story['title']); ?>
113
+ </a>
114
+
115
+ <?php if(isset($story['description']) && $story['description'] != ''): ?>
116
+ <span><?php echo esc_html($story['description']); ?> </span>
117
+ <?php endif; ?>
118
+
119
+ </div>
120
+ </div>
121
+ <?php
122
+ elseif($story['type'] === 'banner') :
123
+ ?>
124
+ <div class="wpmet-str">
125
+ <a target="_blank" href="<?php echo esc_url($story['story_link']) ?>">
126
+ <img class="wpmet-banner" src="<?php echo isset($story['story_image']) && $story['story_image'] != '' ? $story['story_image'] : '#'; ?>" />
127
+ </a>
128
+ </div>
129
+ <?php
130
+ endif;
131
+ endforeach;
132
+ ?>
133
+
134
+ <div class="wpmet-dashboard-widget-block">
135
+ <div class="wpmet-footer-bar">
136
+ <a href="https://wpmet.com/support-ticket" target="_blank">
137
+ <?php echo esc_html__('Need Help?', 'elementskit-lite'); ?>
138
+ <span aria-hidden="true" class="dashicons dashicons-external"></span>
139
+ </a>
140
+ <a href="https://wpmet.com/blog/?utm_source=wpmet_announcements&utm_medium=inplugin_campaign&utm_campaign=blog" target="_blank">
141
+ <?php echo esc_html__('Blog', 'elementskit-lite') ;?>
142
+ <span aria-hidden="true" class="dashicons dashicons-external"></span>
143
+ </a>
144
+ <a href="https://go.wpmet.com/facebook-group" target="_blank" style="color: #27ae60;">
145
+ <?php echo esc_html__('Facebook Community', 'elementskit-lite'); ?>
146
+ <span aria-hidden="true" class="dashicons dashicons-external"></span>
147
+ </a>
148
+ </div>
149
  </div>
libs/template/loader.php CHANGED
@@ -1,47 +1,47 @@
1
- <?php
2
- namespace ElementsKit_Lite\Libs\Template;
3
-
4
- defined( 'ABSPATH' ) || exit;
5
-
6
- include 'transformer.php';
7
-
8
- class Loader{
9
-
10
- private $transformer;
11
-
12
- function __construct(){
13
- $this->transformer = new Transformer();
14
- }
15
-
16
- public function replace_tags($string, $prefix, $force_lower = false){
17
- return preg_replace_callback('/\\{\\{([^{}]+)\}\\}/',
18
- function($matches) use ($force_lower, $prefix){
19
-
20
- return $this->transformer->render($matches[1], $prefix);
21
- }
22
- , $string);
23
- }
24
-
25
- private function tag_list(){
26
- return [
27
-
28
- ];
29
- }
30
-
31
-
32
-
33
-
34
- /**
35
- * Get the instance.
36
- */
37
- private static $instance = null;
38
-
39
- public static function instance() {
40
- if(self::$instance == null) {
41
- self::$instance = new self();
42
- }
43
-
44
- return self::$instance;
45
- }
46
-
47
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Libs\Template;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+ include 'transformer.php';
7
+
8
+ class Loader{
9
+
10
+ private $transformer;
11
+
12
+ function __construct(){
13
+ $this->transformer = new Transformer();
14
+ }
15
+
16
+ public function replace_tags($string, $prefix, $force_lower = false){
17
+ return preg_replace_callback('/\\{\\{([^{}]+)\}\\}/',
18
+ function($matches) use ($force_lower, $prefix){
19
+
20
+ return $this->transformer->render($matches[1], $prefix);
21
+ }
22
+ , $string);
23
+ }
24
+
25
+ private function tag_list(){
26
+ return [
27
+
28
+ ];
29
+ }
30
+
31
+
32
+
33
+
34
+ /**
35
+ * Get the instance.
36
+ */
37
+ private static $instance = null;
38
+
39
+ public static function instance() {
40
+ if(self::$instance == null) {
41
+ self::$instance = new self();
42
+ }
43
+
44
+ return self::$instance;
45
+ }
46
+
47
+ }
libs/template/transformer.php CHANGED
@@ -1,42 +1,42 @@
1
- <?php
2
- namespace ElementsKit_Lite\Libs\Template;
3
-
4
- defined( 'ABSPATH' ) || exit;
5
-
6
- class Transformer{
7
-
8
- private $prefix;
9
-
10
- public function render($str, $prefix){
11
- $str = trim($str);
12
- $this->prefix = $prefix;
13
-
14
- $fn_length = explode('(', $str);
15
- if(count($fn_length) == 2){
16
- $method = $fn_length[0]; // backward support
17
-
18
- if(method_exists($this, $method)){
19
- return $this->$method(rtrim($fn_length[1], ')'));
20
- }
21
- return $str;
22
- }
23
-
24
-
25
-
26
- return $this->variable($str);
27
- }
28
-
29
- private function variable($str){
30
- $str_var_set = explode('.', $str);
31
- $array_parts = '';
32
- foreach($str_var_set as $i => $var){
33
- $array_parts .= '["'. ($i > 0 ? '' : $this->prefix) . $var.'"]';
34
- }
35
-
36
- return '<?php echo isset($settings'.$array_parts.') ? $settings'.$array_parts.' : ""; ?>';
37
- }
38
-
39
- private function icon($str){
40
- return '<?php Icons_Manager::render_icon($settings["'.$this->prefix . trim($str).'"]); ?>';
41
- }
42
  }
1
+ <?php
2
+ namespace ElementsKit_Lite\Libs\Template;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+ class Transformer{
7
+
8
+ private $prefix;
9
+
10
+ public function render($str, $prefix){
11
+ $str = trim($str);
12
+ $this->prefix = $prefix;
13
+
14
+ $fn_length = explode('(', $str);
15
+ if(count($fn_length) == 2){
16
+ $method = $fn_length[0]; // backward support
17
+
18
+ if(method_exists($this, $method)){
19
+ return $this->$method(rtrim($fn_length[1], ')'));
20
+ }
21
+ return $str;
22
+ }
23
+
24
+
25
+
26
+ return $this->variable($str);
27
+ }
28
+
29
+ private function variable($str){
30
+ $str_var_set = explode('.', $str);
31
+ $array_parts = '';
32
+ foreach($str_var_set as $i => $var){
33
+ $array_parts .= '["'. ($i > 0 ? '' : $this->prefix) . $var.'"]';
34
+ }
35
+
36
+ return '<?php echo isset($settings'.$array_parts.') ? $settings'.$array_parts.' : ""; ?>';
37
+ }
38
+
39
+ private function icon($str){
40
+ return '<?php Icons_Manager::render_icon($settings["'.$this->prefix . trim($str).'"]); ?>';
41
+ }
42
  }
libs/xs-migration/data-migration.php CHANGED
@@ -1,420 +1,420 @@
1
- <?php
2
-
3
- namespace ElementsKit_Lite\Libs\Xs_Migration;
4
-
5
-
6
- abstract class Data_Migration implements Migration_Contract {
7
-
8
-
9
- const SUB_ROUTINE_STATUS_INCOMPLETE = '__incomplete';
10
- const SUB_ROUTINE_STATUS_DONE = '__done';
11
-
12
-
13
- const GENERIC_STATUS_YES = 'yes';
14
- const GENERIC_STATUS_NO = 'no';
15
-
16
- const STATUS_DONE = 'done';
17
- const STATUS_QUEUED = 'queued';
18
- const STATUS_RUNNING = 'running';
19
-
20
- const STATUS_FINISHED = 'finished';
21
- const STATUS_INITIATED = 'initiated';
22
-
23
- const STATUS_METHOD_PAUSED = 'paused';
24
- const STATUS_METHOD_EXECUTED = 'executed';
25
- const STATUS_METHOD_EXECUTING = 'executing';
26
-
27
- private $new_text_domain = 'elementskit-lite';
28
- private $text_domain = 'elementskit-lite';
29
- private $max_iteration = 10;
30
-
31
-
32
- /**
33
- * @param $txtDomain
34
- * @param $versionFrom
35
- * @param $versionTo
36
- *
37
- * @return mixed
38
- */
39
- public function input($txtDomain, $versionFrom, $versionTo) {
40
-
41
- #$versionFrom = '1.1.9';
42
- #$versionTo = '1.2.0';
43
- $optionKey = 'data_migration_' . $txtDomain . '_log';
44
-
45
- $from = str_replace('.', '_', trim($versionFrom));
46
- $to = str_replace('.', '_', trim($versionTo));
47
-
48
- $frm = $this->makeFullVersionKey($from);
49
- $trm = $this->makeFullVersionKey($to);
50
-
51
- $existingOption = get_option($optionKey);
52
-
53
-
54
- if(empty($existingOption)) {
55
-
56
- $log = [];
57
- $log[] = 'Migration never has been done for this domain.';
58
- $log[] = 'Initiating migration for version ' . $versionFrom . ' to ' . $versionTo . ' at ' . date('Y-m-d H:i:s') . ' .';
59
- $log[] = 'Scanning migration file for conversion methods.';
60
-
61
- $cStack = $this->getCallStacks([], $frm, $trm);
62
-
63
- $fn = [];
64
-
65
- foreach($cStack['stack'] as $item) {
66
-
67
- $fn[$item] = self::STATUS_QUEUED;
68
- }
69
-
70
- $log[] = 'Execution plan prepared.';
71
- $log[] = 'Execution plan saved into database.';
72
-
73
-
74
- $existingOption['_func'] = $fn;
75
- $existingOption['_log'] = $log;
76
- $existingOption['_status'] = self::STATUS_INITIATED;
77
-
78
- update_option($optionKey, $existingOption);
79
-
80
- return [
81
- 'status' => 'success',
82
- 'log' => $existingOption,
83
- 'log2' => $cStack,
84
- ];
85
- }
86
-
87
- /**
88
- * Now we have something saved into database
89
- * lets check the status first
90
- *
91
- */
92
-
93
- if($existingOption['_status'] == self::STATUS_FINISHED) {
94
-
95
- $log = $existingOption['_log'];
96
-
97
- /**
98
- * Now we have to check up-to which version this migration is done
99
- */
100
-
101
- $up_to = $this->makeFullVersionKey($existingOption['_last_version_scanned']);
102
-
103
- if($up_to < $trm) {
104
-
105
- /**
106
- * New version released of this plugin
107
- * check if anything new need to migrate
108
- */
109
-
110
- $cStack = $this->getCallStacks([], $frm, $trm);
111
- $fn = $existingOption['_func'];
112
-
113
- $log[] = 'A new version update detected.';
114
- $log[] = 'Scanning for new migration method.';
115
-
116
- $found = false;
117
-
118
- foreach($cStack['stack'] as $item) {
119
-
120
- if(isset($fn[$item])) {
121
- continue;
122
- }
123
-
124
- $fn[$item] = self::STATUS_QUEUED;
125
-
126
- $found = true;
127
- }
128
-
129
- if($found) {
130
-
131
- $log[] = 'New conversion method detected.';
132
- $log[] = 'Preparing execution plan.';
133
- $log[] = 'Execution plan saved into database.';
134
-
135
- $existingOption['_func'] = $fn;
136
- $existingOption['_log'] = $log;
137
- $existingOption['_status'] = self::STATUS_INITIATED;
138
-
139
- update_option($optionKey, $existingOption);
140
-
141
- return [
142
- 'status' => 'success',
143
- 'log' => $existingOption,
144
- 'log2' => $cStack,
145
- ];
146
-
147
- } else {
148
-
149
- $log[] = 'No new conversion method detected.';
150
- $log[] = 'Updating the migration plan as finished for version ' . $versionTo . ' at ' . date('Y-m-d H:i:s') . '.';
151
-
152
- $existingOption['_func'] = $fn;
153
- $existingOption['_log'] = $log;
154
- $existingOption['_status'] = self::STATUS_FINISHED;
155
- $existingOption['_last_version_scanned'] = $versionTo;
156
- $existingOption['_plan_up_to'] = $trm;
157
-
158
- update_option($optionKey, $existingOption);
159
-
160
- return [
161
- 'status' => 'success',
162
- 'log' => $existingOption,
163
- 'log2' => $cStack,
164
- ];
165
- }
166
-
167
- }
168
-
169
- /**
170
- * As status is finished and last scanned version is same as the current plugin version
171
- * code execution should not come here
172
- * If any case it come to this point we are updating the settings
173
- */
174
-
175
- $log[] = 'In no scenario, execution pointer should not come here [something is wrong...].';
176
-
177
- $existingOption['_log'] = $log;
178
- $existingOption['_last_version_scanned'] = $versionTo;
179
- $existingOption['_plan_up_to'] = $trm;
180
-
181
- update_option($optionKey, $existingOption);
182
-
183
- return [
184
- 'status' => 'success',
185
- 'log' => $existingOption,
186
- ];
187
- }
188
-
189
- /**
190
- * At this point status of the execution plan is not finished
191
- * lets do the work
192
- *
193
- */
194
- $curExecMethod = '';
195
- $mtdStat = '';
196
-
197
- foreach($existingOption['_func'] as $mtd => $stat) {
198
-
199
- if($stat == self::STATUS_METHOD_EXECUTED) {
200
- continue;
201
- }
202
-
203
- $curExecMethod = $mtd;
204
- $mtdStat = $stat;
205
-
206
- break;
207
- }
208
-
209
- if(empty($curExecMethod)) {
210
-
211
- /**
212
- * All methods has been executed
213
- */
214
-
215
- $log = $existingOption['_log'];
216
-
217
- $log[] = 'All conversion method has been executed.';
218
- $log[] = 'Setting the migration plan as finished for version ' . $versionTo . ' at ' . date('Y-m-d H:i:s') . '.';
219
-
220
-
221
- $existingOption['_log'] = $log;
222
- $existingOption['_status'] = self::STATUS_FINISHED;
223
- $existingOption['_last_version_scanned'] = $versionTo;
224
- $existingOption['_plan_up_to'] = $trm;
225
-
226
- update_option($optionKey, $existingOption);
227
-
228
- return [
229
- 'status' => 'success',
230
- 'log' => $existingOption,
231
- ];
232
- }
233
-
234
- /**
235
- * We have a conversion method to run whose status is not executed
236
- *
237
- */
238
-
239
- if($mtdStat == self::STATUS_QUEUED) {
240
-
241
- $log = $existingOption['_log'];
242
-
243
- $log[] = 'Conversion method ' . $curExecMethod . ' entered into queue at ' . date('Y-m-d H:i:s') . '.';
244
- $log[] = '- Conversion method ' . $curExecMethod . ' has entered into execution phase at ' . date('Y-m-d H:i:s');
245
-
246
- $fn = $existingOption['_func'];
247
-
248
- $fn[$curExecMethod] = self::STATUS_METHOD_EXECUTING;
249
-
250
- $existingOption['_func'] = $fn;
251
- $existingOption['_log'] = $log;
252
-
253
- update_option($optionKey, $existingOption);
254
-
255
- return $this->$curExecMethod($optionKey, $existingOption);
256
- }
257
-
258
- if($mtdStat == self::STATUS_METHOD_EXECUTING) {
259
-
260
- return [
261
- 'status' => 'failed',
262
- 'msg' => 'Another person already initiated the execution.',
263
- 'log' => $existingOption['_log'],
264
- ];
265
- }
266
-
267
- if($mtdStat == self::STATUS_METHOD_PAUSED) {
268
-
269
- $log = $existingOption['_log'];
270
-
271
- $log[] = '- Conversion method ' . $curExecMethod . ' has entered into executing phase at ' . date('Y-m-d H:i:s');
272
-
273
- $fn = $existingOption['_func'];
274
-
275
- $fn[$curExecMethod] = self::STATUS_METHOD_EXECUTING;
276
-
277
- $existingOption['_func'] = $fn;
278
- $existingOption['_log'] = $log;
279
-
280
- update_option($optionKey, $existingOption);
281
-
282
- return $this->$curExecMethod($optionKey, $existingOption);
283
- }
284
-
285
-
286
- /**
287
- * This is the scenario that never ever should occur
288
- */
289
- return [
290
- 'status' => 'failed',
291
- 'msg' => 'Overflow',
292
- 'log' => [
293
- 'Exiting...data is corrupted.',
294
- ],
295
- ];
296
- }
297
-
298
-
299
- /**
300
- *
301
- * @param array $data
302
- */
303
- public function output(array $data) {
304
-
305
- if(!empty($data['option'])) {
306
-
307
- foreach($data['option'] as $opKey => $opVal) {
308
-
309
- update_option($opKey, $opVal);
310
- }
311
- }
312
- }
313
-
314
-
315
- /**
316
- *
317
- * @param $versionMap
318
- * @param $frm
319
- * @param $trm
320
- *
321
- * @return array
322
- */
323
- private function getCallStacks($versionMap, $frm, $trm) {
324
-
325
- $callStack = [];
326
- $conversionMethods = [];
327
- $methods = get_class_methods($this);
328
-
329
- foreach($methods as $method) {
330
-
331
- if(substr($method, 0, 13) === 'convert_from_') {
332
-
333
- $conversionMethods[] = $method;
334
-
335
- $tmp = str_replace('convert_from_', '', $method);
336
- $tmp = explode('_to_', $tmp);
337
-
338
- $vl = $this->makeFullVersionKey($tmp[0]);
339
- $vh = $this->makeFullVersionKey($tmp[1]);
340
-
341
- $versionMap[$vl] = $tmp[0];
342
- $versionMap[$vh] = $tmp[1];
343
- }
344
- }
345
-
346
-
347
- ksort($versionMap);
348
-
349
- foreach($versionMap as $k => $v) {
350
-
351
- if($k >= $frm && $k < $trm) {
352
-
353
- $fnc = '';
354
-
355
- foreach($conversionMethods as $conversionMethod) {
356
-
357
- if(strpos($conversionMethod, 'convert_from_' . $v) !== false) {
358
-
359
- $fnc = $conversionMethod;
360
-
361
- break;
362
- }
363
- }
364
-
365
- if(!empty($fnc)) {
366
- $callStack[] = $fnc;
367
- }
368
- }
369
- }
370
-
371
- return [
372
- 'map' => $versionMap,
373
- 'func' => $conversionMethods,
374
- 'stack' => $callStack,
375
- ];
376
- }
377
-
378
-
379
- /**
380
- *
381
- * @param $string
382
- *
383
- * @return string
384
- */
385
- public function makeFullVersionKey($string) {
386
-
387
- $fr = explode('_', $string);
388
-
389
- $frm = array_map(function($item) {
390
- return str_pad($item, 3, '0', STR_PAD_LEFT);
391
- }, $fr);
392
-
393
- return implode('', $frm);
394
- }
395
-
396
-
397
- /**
398
- * @return string
399
- */
400
- public function getNewTextDomain() {
401
- return $this->new_text_domain;
402
- }
403
-
404
-
405
- /**
406
- * @return string
407
- */
408
- public function getTextDomain() {
409
- return $this->text_domain;
410
- }
411
-
412
-
413
- /**
414
- * @return int
415
- */
416
- public function getMaxIteration() {
417
- return $this->max_iteration;
418
- }
419
-
420
  }
1
+ <?php
2
+
3
+ namespace ElementsKit_Lite\Libs\Xs_Migration;
4
+
5
+
6
+ abstract class Data_Migration implements Migration_Contract {
7
+
8
+
9
+ const SUB_ROUTINE_STATUS_INCOMPLETE = '__incomplete';
10
+ const SUB_ROUTINE_STATUS_DONE = '__done';
11
+
12
+
13
+ const GENERIC_STATUS_YES = 'yes';
14
+ const GENERIC_STATUS_NO = 'no';
15
+
16
+ const STATUS_DONE = 'done';
17
+ const STATUS_QUEUED = 'queued';
18
+ const STATUS_RUNNING = 'running';
19
+
20
+ const STATUS_FINISHED = 'finished';
21
+ const STATUS_INITIATED = 'initiated';
22
+
23
+ const STATUS_METHOD_PAUSED = 'paused';
24
+ const STATUS_METHOD_EXECUTED = 'executed';
25
+ const STATUS_METHOD_EXECUTING = 'executing';
26
+
27
+ private $new_text_domain = 'elementskit-lite';
28
+ private $text_domain = 'elementskit-lite';
29
+ private $max_iteration = 10;
30
+
31
+
32
+ /**
33
+ * @param $txtDomain
34
+ * @param $versionFrom
35
+ * @param $versionTo
36
+ *
37
+ * @return mixed
38
+ */
39
+ public function input($txtDomain, $versionFrom, $versionTo) {
40
+
41
+ #$versionFrom = '1.1.9';
42
+ #$versionTo = '1.2.0';
43
+ $optionKey = 'data_migration_' . $txtDomain . '_log';
44
+
45
+ $from = str_replace('.', '_', trim($versionFrom));
46
+ $to = str_replace('.', '_', trim($versionTo));
47
+
48
+ $frm = $this->makeFullVersionKey($from);
49
+ $trm = $this->makeFullVersionKey($to);
50
+
51
+ $existingOption = get_option($optionKey);
52
+
53
+
54
+ if(empty($existingOption)) {
55
+
56
+ $log = [];
57
+ $log[] = 'Migration never has been done for this domain.';
58
+ $log[] = 'Initiating migration for version ' . $versionFrom . ' to ' . $versionTo . ' at ' . date('Y-m-d H:i:s') . ' .';
59
+ $log[] = 'Scanning migration file for conversion methods.';
60
+
61
+ $cStack = $this->getCallStacks([], $frm, $trm);
62
+
63
+ $fn = [];
64
+
65
+ foreach($cStack['stack'] as $item) {
66
+
67
+ $fn[$item] = self::STATUS_QUEUED;
68
+ }
69
+
70
+ $log[] = 'Execution plan prepared.';
71
+ $log[] = 'Execution plan saved into database.';
72
+
73
+
74
+ $existingOption['_func'] = $fn;
75
+ $existingOption['_log'] = $log;
76
+ $existingOption['_status'] = self::STATUS_INITIATED;
77
+
78
+ update_option($optionKey, $existingOption);
79
+
80
+ return [
81
+ 'status' => 'success',
82
+ 'log' => $existingOption,
83
+ 'log2' => $cStack,
84
+ ];
85
+ }
86
+
87
+ /**
88
+ * Now we have something saved into database
89
+ * lets check the status first
90
+ *
91
+ */
92
+
93
+ if($existingOption['_status'] == self::STATUS_FINISHED) {
94
+
95
+ $log = $existingOption['_log'];
96
+
97
+ /**
98
+ * Now we have to check up-to which version this migration is done
99
+ */
100
+
101
+ $up_to = $this->makeFullVersionKey($existingOption['_last_version_scanned']);
102
+
103
+ if($up_to < $trm) {
104
+
105
+ /**
106
+ * New version released of this plugin
107
+ * check if anything new need to migrate
108
+ */
109
+
110
+ $cStack = $this->getCallStacks([], $frm, $trm);
111
+ $fn = $existingOption['_func'];
112
+
113
+ $log[] = 'A new version update detected.';
114
+ $log[] = 'Scanning for new migration method.';
115
+
116
+ $found = false;
117
+
118
+ foreach($cStack['stack'] as $item) {
119
+
120
+ if(isset($fn[$item])) {
121
+ continue;
122
+ }
123
+
124
+ $fn[$item] = self::STATUS_QUEUED;
125
+
126
+ $found = true;
127
+ }
128
+
129
+ if($found) {
130
+
131
+ $log[] = 'New conversion method detected.';
132
+ $log[] = 'Preparing execution plan.';
133
+ $log[] = 'Execution plan saved into database.';
134
+
135
+ $existingOption['_func'] = $fn;
136
+ $existingOption['_log'] = $log;
137
+ $existingOption['_status'] = self::STATUS_INITIATED;
138
+
139
+ update_option($optionKey, $existingOption);
140
+
141
+ return [
142
+ 'status' => 'success',
143
+ 'log' => $existingOption,
144
+ 'log2' => $cStack,
145
+ ];
146
+
147
+ } else {
148
+
149
+ $log[] = 'No new conversion method detected.';
150
+ $log[] = 'Updating the migration plan as finished for version ' . $versionTo . ' at ' . date('Y-m-d H:i:s') . '.';
151
+
152
+ $existingOption['_func'] = $fn;
153
+ $existingOption['_log'] = $log;
154
+ $existingOption['_status'] = self::STATUS_FINISHED;
155
+ $existingOption['_last_version_scanned'] = $versionTo;
156
+ $existingOption['_plan_up_to'] = $trm;
157
+
158
+ update_option($optionKey, $existingOption);
159
+
160
+ return [
161
+ 'status' => 'success',
162
+ 'log' => $existingOption,
163
+ 'log2' => $cStack,
164
+ ];
165
+ }
166
+
167
+ }
168
+
169
+ /**
170
+ * As status is finished and last scanned version is same as the current plugin version
171
+ * code execution should not come here
172
+ * If any case it come to this point we are updating the settings
173
+ */
174
+
175
+ $log[] = 'In no scenario, execution pointer should not come here [something is wrong...].';
176
+
177
+ $existingOption['_log'] = $log;
178
+ $existingOption['_last_version_scanned'] = $versionTo;
179
+ $existingOption['_plan_up_to'] = $trm;
180
+
181
+ update_option($optionKey, $existingOption);
182
+
183
+ return [
184
+ 'status' => 'success',
185
+ 'log' => $existingOption,
186
+ ];
187
+ }
188
+
189
+ /**
190
+ * At this point status of the execution plan is not finished
191
+ * lets do the work
192
+ *
193
+ */
194
+ $curExecMethod = '';
195
+ $mtdStat = '';
196
+
197
+ foreach($existingOption['_func'] as $mtd => $stat) {
198
+
199
+ if($stat == self::STATUS_METHOD_EXECUTED) {
200
+ continue;
201
+ }
202
+
203
+ $curExecMethod = $mtd;
204
+ $mtdStat = $stat;
205
+
206
+ break;
207
+ }
208
+
209
+ if(empty($curExecMethod)) {
210
+
211
+ /**
212
+ * All methods has been executed
213
+ */
214
+
215
+ $log = $existingOption['_log'];
216
+
217
+ $log[] = 'All conversion method has been executed.';
218
+ $log[] = 'Setting the migration plan as finished for version ' . $versionTo . ' at ' . date('Y-m-d H:i:s') . '.';
219
+
220
+
221
+ $existingOption['_log'] = $log;
222
+ $existingOption['_status'] = self::STATUS_FINISHED;
223
+ $existingOption['_last_version_scanned'] = $versionTo;
224
+ $existingOption['_plan_up_to'] = $trm;
225
+
226
+ update_option($optionKey, $existingOption);
227
+
228
+ return [
229
+ 'status' => 'success',
230
+ 'log' => $existingOption,
231
+ ];
232
+ }
233
+
234
+ /**
235
+ * We have a conversion method to run whose status is not executed
236
+ *
237
+ */
238
+
239
+ if($mtdStat == self::STATUS_QUEUED) {
240
+
241
+ $log = $existingOption['_log'];
242
+
243
+ $log[] = 'Conversion method ' . $curExecMethod . ' entered into queue at ' . date('Y-m-d H:i:s') . '.';
244
+ $log[] = '- Conversion method ' . $curExecMethod . ' has entered into execution phase at ' . date('Y-m-d H:i:s');
245
+
246
+ $fn = $existingOption['_func'];
247
+
248
+ $fn[$curExecMethod] = self::STATUS_METHOD_EXECUTING;
249
+
250
+ $existingOption['_func'] = $fn;
251
+ $existingOption['_log'] = $log;
252
+
253
+ update_option($optionKey, $existingOption);
254
+
255
+ return $this->$curExecMethod($optionKey, $existingOption);
256
+ }
257
+
258
+ if($mtdStat == self::STATUS_METHOD_EXECUTING) {
259
+
260
+ return [
261
+ 'status' => 'failed',
262
+ 'msg' => 'Another person already initiated the execution.',
263
+ 'log' => $existingOption['_log'],
264
+ ];
265
+ }
266
+
267
+ if($mtdStat == self::STATUS_METHOD_PAUSED) {
268
+
269
+ $log = $existingOption['_log'];
270
+
271
+ $log[] = '- Conversion method ' . $curExecMethod . ' has entered into executing phase at ' . date('Y-m-d H:i:s');
272
+
273
+ $fn = $existingOption['_func'];
274
+
275
+ $fn[$curExecMethod] = self::STATUS_METHOD_EXECUTING;
276
+
277
+ $existingOption['_func'] = $fn;
278
+ $existingOption['_log'] = $log;
279
+
280
+ update_option($optionKey, $existingOption);
281
+
282
+ return $this->$curExecMethod($optionKey, $existingOption);
283
+ }
284
+
285
+
286
+ /**
287
+ * This is the scenario that never ever should occur
288
+ */
289
+ return [
290
+ 'status' => 'failed',
291
+ 'msg' => 'Overflow',
292
+ 'log' => [
293
+ 'Exiting...data is corrupted.',
294
+ ],
295
+ ];
296
+ }
297
+
298
+
299
+ /**
300
+ *
301
+ * @param array $data
302
+ */
303
+ public function output(array $data) {
304
+
305
+ if(!empty($data['option'])) {
306
+
307
+ foreach($data['option'] as $opKey => $opVal) {
308
+
309
+ update_option($opKey, $opVal);
310
+ }
311
+ }
312
+ }
313
+
314
+
315
+ /**
316
+ *
317
+ * @param $versionMap
318
+ * @param $frm
319
+ * @param $trm
320
+ *
321
+ * @return array
322
+ */
323
+ private function getCallStacks($versionMap, $frm, $trm) {
324
+
325
+ $callStack = [];
326
+ $conversionMethods = [];
327
+ $methods = get_class_methods($this);
328
+
329
+ foreach($methods as $method) {
330
+
331
+ if(substr($method, 0, 13) === 'convert_from_') {
332
+
333
+ $conversionMethods[] = $method;
334
+
335
+ $tmp = str_replace('convert_from_', '', $method);
336
+ $tmp = explode('_to_', $tmp);
337
+
338
+ $vl = $this->makeFullVersionKey($tmp[0]);
339
+ $vh = $this->makeFullVersionKey($tmp[1]);
340
+
341
+ $versionMap[$vl] = $tmp[0];
342
+ $versionMap[$vh] = $tmp[1];
343
+ }
344
+ }
345
+
346
+
347
+ ksort($versionMap);
348
+
349
+ foreach($versionMap as $k => $v) {
350
+
351
+ if($k >= $frm && $k < $trm) {
352
+
353
+ $fnc = '';
354
+
355
+ foreach($conversionMethods as $conversionMethod) {
356
+
357
+ if(strpos($conversionMethod, 'convert_from_' . $v) !== false) {
358
+
359
+ $fnc = $conversionMethod;
360
+
361
+ break;
362
+ }
363
+ }
364
+
365
+ if(!empty($fnc)) {
366
+ $callStack[] = $fnc;
367
+ }
368
+ }
369
+ }
370
+
371
+ return [
372
+ 'map' => $versionMap,
373
+ 'func' => $conversionMethods,
374
+ 'stack' => $callStack,
375
+ ];
376
+ }
377
+
378
+
379
+ /**
380
+ *
381
+ * @param $string
382
+ *
383
+ * @return string
384
+ */
385
+ public function makeFullVersionKey($string) {
386
+
387
+ $fr = explode('_', $string);
388
+
389
+ $frm = array_map(function($item) {
390
+ return str_pad($item, 3, '0', STR_PAD_LEFT);
391
+ }, $fr);
392
+
393
+ return implode('', $frm);
394
+ }
395
+
396
+
397
+ /**
398
+ * @return string
399
+ */
400
+ public function getNewTextDomain() {
401
+ return $this->new_text_domain;
402
+ }
403
+
404
+
405
+ /**
406
+ * @return string
407
+ */
408
+ public function getTextDomain() {
409
+ return $this->text_domain;
410
+ }
411
+
412
+
413
+ /**
414
+ * @return int
415
+ */
416
+ public function getMaxIteration() {
417
+ return $this->max_iteration;
418
+ }
419
+
420
  }
libs/xs-migration/initiator.php CHANGED
@@ -1,85 +1,85 @@
1
- <?php
2
-
3
- namespace ElementsKit_Lite\Libs\Xs_Migration;
4
-
5
- use ElementsKit_Lite\Traits\Singleton;
6
-
7
- class Initiator {
8
-
9
- use Singleton;
10
-
11
- const OK_MIGRATION_LOGGER = 'ekit_migration_log';
12
-
13
-
14
- public function init() {
15
-
16
- add_filter('heartbeat_send', [$this, 'send_heartbeat'], 10, 2 );
17
- //add_filter('heartbeat_received', [$this, 'receive_heartbeat'], 10, 2);
18
- //add_filter( 'heartbeat_settings', [$this, 'heartbeat_settings'] );
19
- }
20
-
21
-
22
- public function send_heartbeat($response, $screen_id) {
23
-
24
- $txtDomain = 'elementskit-lite';
25
- $optionKey = 'data_migration_'.$txtDomain.'_log';
26
-
27
- $option = get_option($optionKey, []);
28
-
29
- if(empty($option['_last_version_scanned'])) {
30
-
31
- /**
32
- * Migration never ran in this domain
33
- *
34
- */
35
- $migration = new Migration();
36
-
37
- $ret = $migration->input($txtDomain, '1.3.1', \ElementsKit_Lite::version());
38
-
39
- $response['migration_log'] = $ret;
40
-
41
- return $response;
42
- }
43
-
44
- /**
45
- * We have last version of migration run
46
- * checking if it is same as current version
47
- */
48
- if($option['_last_version_scanned'] == \ElementsKit_Lite::version()) {
49
-
50
- $data[] = 'Migration has already run for this version - '. \ElementsKit_Lite::version();
51
- $data[] = $screen_id;
52
-
53
- $response['migration_push'] = $data;
54
-
55
- return $response;
56
- }
57
-
58
- /**
59
- * We have started running migration for this version
60
- * Or this is an update version that need to check migration run again
61
- *
62
- */
63
- $migration = new Migration();
64
-
65
- $ret = $migration->input($txtDomain, '1.3.1', \ElementsKit_Lite::version());
66
-
67
- $response['migration_log'] = $ret;
68
-
69
- return $response;
70
- }
71
-
72
- public function receive_heartbeat() {
73
-
74
- }
75
-
76
-
77
- public function heartbeat_settings() {
78
-
79
- $settings['interval'] = 15; //Anything between 15-120
80
- //$settings['autostart'] = false;
81
-
82
- return $settings;
83
- }
84
-
85
  }
1
+ <?php
2
+
3
+ namespace ElementsKit_Lite\Libs\Xs_Migration;
4
+
5
+ use ElementsKit_Lite\Traits\Singleton;
6
+
7
+ class Initiator {
8
+
9
+ use Singleton;
10
+
11
+ const OK_MIGRATION_LOGGER = 'ekit_migration_log';
12
+
13
+
14
+ public function init() {
15
+
16
+ add_filter('heartbeat_send', [$this, 'send_heartbeat'], 10, 2 );
17
+ //add_filter('heartbeat_received', [$this, 'receive_heartbeat'], 10, 2);
18
+ //add_filter( 'heartbeat_settings', [$this, 'heartbeat_settings'] );
19
+ }
20
+
21
+
22
+ public function send_heartbeat($response, $screen_id) {
23
+
24
+ $txtDomain = 'elementskit-lite';
25
+ $optionKey = 'data_migration_'.$txtDomain.'_log';
26
+
27
+ $option = get_option($optionKey, []);
28
+
29
+ if(empty($option['_last_version_scanned'])) {
30
+
31
+ /**
32
+ * Migration never ran in this domain
33
+ *
34
+ */
35
+ $migration = new Migration();
36
+
37
+ $ret = $migration->input($txtDomain, '1.3.1', \ElementsKit_Lite::version());
38
+
39
+ $response['migration_log'] = $ret;
40
+
41
+ return $response;
42
+ }
43
+
44
+ /**
45
+ * We have last version of migration run
46
+ * checking if it is same as current version
47
+ */
48
+ if($option['_last_version_scanned'] == \ElementsKit_Lite::version()) {
49
+
50
+ $data[] = 'Migration has already run for this version - '. \ElementsKit_Lite::version();
51
+ $data[] = $screen_id;
52
+
53
+ $response['migration_push'] = $data;
54
+
55
+ return $response;
56
+ }
57
+
58
+ /**
59
+ * We have started running migration for this version
60
+ * Or this is an update version that need to check migration run again
61
+ *
62
+ */
63
+ $migration = new Migration();
64
+
65
+ $ret = $migration->input($txtDomain, '1.3.1', \ElementsKit_Lite::version());
66
+
67
+ $response['migration_log'] = $ret;
68
+
69
+ return $response;
70
+ }
71
+
72
+ public function receive_heartbeat() {
73
+
74
+ }
75
+
76
+
77
+ public function heartbeat_settings() {
78
+
79
+ $settings['interval'] = 15; //Anything between 15-120
80
+ //$settings['autostart'] = false;
81
+
82
+ return $settings;
83
+ }
84
+
85
  }
libs/xs-migration/migration-contract.php CHANGED
@@ -1,11 +1,11 @@
1
- <?php
2
-
3
- namespace ElementsKit_Lite\Libs\Xs_Migration;
4
-
5
-
6
- interface Migration_Contract {
7
-
8
- public function input($txtDomain, $versionFrom, $versionTo);
9
-
10
- public function output(array $data);
11
  }
1
+ <?php
2
+
3
+ namespace ElementsKit_Lite\Libs\Xs_Migration;
4
+
5
+
6
+ interface Migration_Contract {
7
+
8
+ public function input($txtDomain, $versionFrom, $versionTo);
9
+
10
+ public function output(array $data);
11
  }
libs/xs-migration/migration.php CHANGED
@@ -1,2365 +1,2365 @@
1
- <?php
2
-
3
- namespace ElementsKit_Lite\Libs\Xs_Migration;
4
-
5
-
6
- class Migration extends Data_Migration {
7
-
8
-
9
- /**
10
- *
11
- * @param $wpOptionKey
12
- * @param $existingOption
13
- *
14
- * @return array
15
- */
16
- public function convert_from_1_4_7_to_1_4_8($wpOptionKey, $existingOption) {
17
-
18
- $log = $existingOption['_log'];
19
-
20
- $log[] = '- This is a blank method for testing.';
21
- $log[] = '- All functionality is checked and updated.';
22
- $log[] = '- Updating method execution status to executed.';
23
- $log[] = '- Method execution is finished at ' . date('Y-m-d H:i:s');
24
-
25
- $fn = $existingOption['_func'];
26
-
27
- $fn[__FUNCTION__] = self::STATUS_METHOD_EXECUTED;
28
-
29
- $existingOption['_func'] = $fn;
30
- $existingOption['_log'] = $log;
31
-
32
- update_option($wpOptionKey, $existingOption);
33
-
34
- return [
35
- 'status' => 'success',
36
- 'log' => $log,
37
- ];
38
- }
39
-
40
-
41
- /**
42
- * todo - for future must put the description of what is migrating in this function and try to do it for single issue per method
43
- * This way we will be able to not release some migration but the work is done, so we will be able totest it
44
- *
45
- * This method is for migrating icon values
46
- *
47
- * @param $wpOptionKey
48
- * @param $existingOption
49
- *
50
- * @return array
51
- */
52
- public function skip__convert_from_1_5_7_to_1_5_8($wpOptionKey, $existingOption) {
53
-
54
- $log = $existingOption['_log'];
55
-
56
- $checkList = [];
57
-
58
- if(empty($existingOption['exec_plan'][__FUNCTION__]['progress']['check_list'])) {
59
-
60
- $checkList['retrieve_all_post_ids'] = false;
61
- $checkList['post_meta_data_processed'] = false;
62
- $existingOption['exec_plan'][__FUNCTION__]['progress']['check_list'] = $checkList;
63
-
64
- } else {
65
- $checkList = $existingOption['exec_plan'][__FUNCTION__]['progress']['check_list'];
66
- }
67
-
68
- if($checkList['retrieve_all_post_ids'] != self::SUB_ROUTINE_STATUS_DONE) {
69
-
70
- $ids = $this->get_all_post_ids_by_meta_key();
71
-
72
- $checkList['_retrieve_log']['ids_processed'] = '';
73
- $checkList['_retrieve_log']['ids_retrieved'] = 'yes';
74
- $checkList['_retrieve_log']['ids'] = $ids;
75
- $checkList['retrieve_all_post_ids'] = self::SUB_ROUTINE_STATUS_DONE;
76
-
77
- $log[] = '- All meta ids of _elementor_data key is retrieved.';
78
-
79
- $existingOption['exec_plan'][__FUNCTION__]['progress']['check_list'] = $checkList;
80
-
81
- $this->update_subroutine_status(__FUNCTION__, $log, $existingOption, $wpOptionKey);
82
-
83
- return [
84
- 'status' => 'success',
85
- 'log' => $log,
86
- ];
87
- }
88
-
89
- if($checkList['post_meta_data_processed'] != self::SUB_ROUTINE_STATUS_DONE) {
90
-
91
- /**
92
- * We have retrieved ids of all metas
93
- * now we will process the list
94
- * but the list could be empty!
95
- *
96
- */
97
-
98
- if(!empty($checkList['_retrieve_log']['ids'])) {
99
-
100
- $ids = $checkList['_retrieve_log']['ids'];
101
- $max_iteration = $this->getMaxIteration();
102
- $count_iteration = 0;
103
- $tmp = $checkList['_retrieve_log']['ids_processed'];
104
- $tmp_arr = $checkList['_retrieve_log']['processed_log'];
105
-
106
- $log[] = '- Processing retrieved ids';
107
-
108
-
109
- while(!empty($ids)) {
110
- $count_iteration++;
111
- $post_id = array_pop($ids);
112
-
113
- $log[] = '-- Fetching and correcting the entry of post - ' . $post_id;
114
-
115
- $no_need = $this->fetch_and_correct_meta_value($post_id);
116
-
117
- $tmp .= $post_id . ', ';
118
- $tmp_arr[$post_id] = $no_need;
119
-
120
- if($count_iteration >= $max_iteration) {
121
- break;
122
- }
123
- }
124
-
125
- $log[] = '- End of current iteration';
126
-
127
- $checkList['_retrieve_log']['ids_processed'] = $tmp;
128
- $checkList['_retrieve_log']['processed_log'] = $tmp_arr;
129
- $checkList['_retrieve_log']['ids'] = $ids;
130
-
131
- $existingOption['exec_plan'][__FUNCTION__]['progress']['check_list'] = $checkList;
132
-
133
- $this->update_subroutine_status(__FUNCTION__, $log, $existingOption, $wpOptionKey);
134
-
135
- return [
136
- 'status' => 'success',
137
- 'log' => $log,
138
- ];
139
-
140
- }
141
-
142
-
143
- /**
144
- * the retrieved list is either empty or it is already processed
145
- * we will conclude this subroutine here
146
- *
147
- */
148
-
149
- $checkList['post_meta_data_processed'] = self::SUB_ROUTINE_STATUS_DONE;
150
-
151
- $log[] = '-- Subroutine is finished at ' . date('Y-m-d H:i:s');
152
-
153
- $existingOption['exec_plan'][__FUNCTION__]['progress']['check_list'] = $checkList;
154
-
155
- $this->update_subroutine_status(__FUNCTION__, $log, $existingOption, $wpOptionKey);
156
-
157
- return [
158
- 'status' => 'success',
159
- 'log' => $log,
160
- ];
161
- }
162
-
163
- $log[] = '- All subroutine is processed.';
164
- $log[] = '- Updating method execution status to executed.';
165
- $log[] = '- Method execution is finished at ' . date('Y-m-d H:i:s');
166
-
167
- $fn = $existingOption['_func'];
168
-
169
- $fn[__FUNCTION__] = self::STATUS_METHOD_EXECUTED;
170
-
171
- $existingOption['_func'] = $fn;
172
- $existingOption['_log'] = $log;
173
-
174
- update_option($wpOptionKey, $existingOption);
175
-
176
-
177
- return [
178
- 'status' => 'success',
179
- 'log' => $log,
180
- ];
181
- }
182
-
183
-
184
- /**
185
- * Language translation migrations
186
- *
187
- * @since 1.5.9
188
- *
189
- * @param $wpOptionKey
190
- * @param $existingOption
191
- *
192
- * @return array
193
- */
194
- public function convert_from_1_5_8_to_1_5_9($wpOptionKey, $existingOption) {
195
-
196
- /**
197
- * Two changes
198
- * 1. for loco plugin - duplicate language file : .po, .mo
199
- * 2. for wpml plugin - change the database step by step
200
- *
201
- *
202
- * First get the progress log
203
- * and we are sure the method execution status is running here...
204
- *
205
- */
206
- $log = $existingOption['_log'];
207
-
208
-
209
- $checkList = [];
210
-
211
- if(empty($existingOption['exec_plan'][__FUNCTION__]['progress']['check_list'])) {
212
-
213
- $checkList['duplicate_icl_translation'] = false;
214
- $checkList['retrieve_icl_string_id'] = false;
215
- $existingOption['exec_plan'][__FUNCTION__]['progress']['check_list'] = $checkList;
216
-
217
- } else {
218
- $checkList = $existingOption['exec_plan'][__FUNCTION__]['progress']['check_list'];
219
- }
220
-
221
- if($checkList['retrieve_icl_string_id'] != self::SUB_ROUTINE_STATUS_DONE) {
222
-
223
- $ids = $this->get_all_ids();
224
-
225
- $checkList['_icl_log']['ids_retrieved'] = 'yes';
226
- $checkList['_icl_log']['ids'] = $ids;
227
- $checkList['retrieve_icl_string_id'] = self::SUB_ROUTINE_STATUS_DONE;
228
-
229
- $log[] = '- All translated strings id is retrieved.';
230
-
231
- $existingOption['exec_plan'][__FUNCTION__]['progress']['check_list'] = $checkList;
232
-
233
- $this->update_subroutine_status(__FUNCTION__, $log, $existingOption, $wpOptionKey);
234
-
235
- return [
236
- 'status' => 'success',
237
- 'log' => $log,
238
- ];
239
- }
240
-
241
- if($checkList['duplicate_icl_translation'] != self::SUB_ROUTINE_STATUS_DONE) {
242
-
243
- /**
244
- * We have retrieved ids of all translated string in previous sub routine
245
- * now we will process the list
246
- * but the list could be empty!
247
- *
248
- */
249
-
250
- if(!empty($checkList['_icl_log']['ids'])) {
251
-
252
- $ids = $checkList['_icl_log']['ids'];
253
- $max_iteration = $this->getMaxIteration();
254
- $count_iteration = 0;
255
- $tmp = $checkList['_icl_log']['ids_processed'];
256
- $tmp_arr = $checkList['_icl_log']['processed_log'];
257
-
258
- $log[] = '- Processing retrieved ids';
259
-
260
-
261
- while(!empty($ids)) {
262
- $count_iteration++;
263
- $dup = array_pop($ids);
264
-
265
- $log[] = '-- Fetching and duplicating the entry of id - ' . $dup;
266
-
267
- $n_id = $this->fetch_and_duplicate($dup);
268
-
269
- $tmp .= $dup . ', ';
270
- $tmp_arr[$dup] = $n_id;
271
-
272
- if($count_iteration >= $max_iteration) {
273
- break;
274
- }
275
- }
276
-
277
- $log[] = '- End of current iteration';
278
-
279
- $checkList['_icl_log']['ids_processed'] = $tmp;
280
- $checkList['_icl_log']['processed_log'] = $tmp_arr;
281
- $checkList['_icl_log']['ids'] = $ids;
282
-
283
- $existingOption['exec_plan'][__FUNCTION__]['progress']['check_list'] = $checkList;
284
-
285
- $this->update_subroutine_status(__FUNCTION__, $log, $existingOption, $wpOptionKey);
286
-
287
- return [
288
- 'status' => 'success',
289
- 'log' => $log,
290
- ];
291
-
292
- }
293
-
294
-
295
- /**
296
- * the retrieved list is either empty or it is already processed
297
- * we will conclude this subroutine here
298
- *
299
- */
300
-
301
- $checkList['duplicate_icl_translation'] = self::SUB_ROUTINE_STATUS_DONE;
302
-
303
- $log[] = '-- Subroutine is finished at ' . date('Y-m-d H:i:s');
304
-
305
- $existingOption['exec_plan'][__FUNCTION__]['progress']['check_list'] = $checkList;
306
-
307
- $this->update_subroutine_status(__FUNCTION__, $log, $existingOption, $wpOptionKey);
308
-
309
- return [
310
- 'status' => 'success',
311
- 'log' => $log,
312
- ];
313
- }
314
-
315
- $log[] = '- All subroutine is processed.';
316
- $log[] = '- Updating method execution status to executed.';
317
- $log[] = '- Method execution is finished at ' . date('Y-m-d H:i:s');
318
-
319
- $fn = $existingOption['_func'];
320
-
321
- $fn[__FUNCTION__] = self::STATUS_METHOD_EXECUTED;
322
-
323
- $existingOption['_func'] = $fn;
324
- $existingOption['_log'] = $log;
325
-
326
- update_option($wpOptionKey, $existingOption);
327
-
328
-
329
- return [
330
- 'status' => 'success',
331
- 'log' => $log,
332
- ];
333
- }
334
-
335
-
336
- /**
337
- *
338
- * @since 1.5.9
339
- *
340
- * @param $id
341
- *
342
- * @return int|string
343
- */
344
- private function fetch_and_duplicate($id) {
345
-
346
- global $wpdb;
347
-
348
- $qry = 'SELECT * FROM `' . $wpdb->prefix . 'icl_strings` AS ics WHERE `id`=\'' . intval($id) . '\'; ';
349
-
350
- $row = $wpdb->get_row($qry, ARRAY_A);
351
-
352
- $str_id = '';
353
-
354
- if(!empty($row)) {
355
-
356
- unset($row['id']);
357
-
358
- $row['context'] = $this->getNewTextDomain();
359
-
360
- $md5 = md5($this->getNewTextDomain() . $row['name'] . $row['gettext_context']);
361
-
362
- $row['domain_name_context_md5'] = $md5;
363
-
364
- $wpdb->insert($wpdb->prefix . 'icl_strings', $row);
365
-
366
- $str_id = $wpdb->insert_id;
367
-
368
- if(empty($str_id)) {
369
- return 0;
370
- }
371
-
372
- $query = 'SELECT * FROM `' . $wpdb->prefix . 'icl_string_translations` AS ics WHERE `string_id`=\'' . intval($id) . '\'; ';
373
-
374
- $rows = $wpdb->get_results($query, ARRAY_A);
375
-
376
- foreach($rows as $entry) {
377
-
378
- unset($entry['id']);
379
-
380
- $entry['string_id'] = $str_id;
381
-
382
- $wpdb->insert($wpdb->prefix . 'icl_string_translations', $entry);
383
- }
384
- }
385
-
386
- return $str_id;
387
- }
388
-
389
-
390
- /**
391
- *
392
- * @since 1.5.9
393
- *
394
- * @param $func
395
- * @param $log
396
- * @param $existingOption
397
- * @param $wpOptionKey
398
- *
399
- * @return array
400
- */
401
- private function update_subroutine_status($func, $log, $existingOption, $wpOptionKey) {
402
-
403
-
404
- $log[] = '- Entering into paused phase.';
405
-
406
- $fn = $existingOption['_func'];
407
-
408
- $fn[$func] = self::STATUS_METHOD_PAUSED;
409
-
410
- $existingOption['_func'] = $fn;
411
- $existingOption['_log'] = $log;
412
-
413
- update_option($wpOptionKey, $existingOption);
414
-
415
- return $log;
416
- }
417
-
418
-
419
- /**
420
- *
421
- *
422
- * @since 1.5.9
423
- *
424
- * @param string $context
425
- *
426
- * @return array
427
- */
428
- private function get_all_ids($context = 'elementskit-lite') {
429
-
430
- global $wpdb;
431
-
432
- $ret = [];
433
- $tbl = $wpdb->prefix . 'icl_string_translations';
434
-
435
- /**
436
- * Lets check first if the user has has this plugin installed!
437
- * by checking if table exists
438
- */
439
-
440
- if($wpdb->get_var("SHOW TABLES LIKE '$tbl'") == $tbl) {
441
-
442
- $qry = 'SELECT ict.id, ict.string_id, ict.language, ict.status, ics.context ';
443
- $qry .= 'FROM `' . $tbl . '` AS ict ';
444
- $qry .= 'LEFT JOIN `' . $wpdb->prefix . 'icl_strings` AS ics ON ict.string_id = ics.id ';
445
- $qry .= 'WHERE ics.context = \'' . $context . '\';';
446
-
447
- $rows = $wpdb->get_results($qry);
448
-
449
-
450
- foreach($rows as $row) {
451
-
452
- $ret[$row->string_id] = $row->string_id;
453
- }
454
- }
455
-
456
- return $ret;
457
- }
458
-
459
-
460
- /**
461
- *
462
- *
463
- * @param string $key
464
- *
465
- * @return array
466
- */
467
- private function get_all_post_ids_by_meta_key($key = '_elementor_data') {
468
-
469
- global $wpdb;
470
-
471
- $qry = 'SELECT meta_id, meta_key, post_id ';
472
- $qry .= 'FROM `' . $wpdb->prefix . 'postmeta` ';
473
- $qry .= 'WHERE meta_key = \'' . $key . '\';';
474
-
475
- $rows = $wpdb->get_results($qry);
476
- $ret = [];
477
-
478
- foreach($rows as $row) {
479
-
480
- $ret[$row->post_id] = $row->post_id;
481
- }
482
-
483
- return $ret;
484
- }
485
-
486
-
487
- private function get_post_meta_by_post_id($post_id, $key = '_elementor_data') {
488
-
489
- global $wpdb;
490
-
491
- $qry = 'SELECT * ';
492
- $qry .= 'FROM `' . $wpdb->prefix . 'postmeta` ';
493
- $qry .= 'WHERE post_id = \'' . intval($post_id) . '\' AND meta_key = \'' . $key . '\';';
494
-
495
- $row = $wpdb->get_row($qry);
496
-
497
- return $row;
498
- }
499
-
500
-
501
- private function update_post_meta_by_meta_id($meta_id, $value) {
502
-
503
- global $wpdb;
504
-
505
- $tbl = $wpdb->prefix . 'postmeta';
506
-
507
- //$qry = 'UPDATE `'.$tbl.'` SET `meta_value` = \''.$value.'\' WHERE `meta_id`=\''.intval($meta_id).'\';';
508
-
509
- return $wpdb->update($tbl, array('meta_value' => $value,), array('meta_id' => intval($meta_id)), array('%s'), array('%d'));
510
- }
511
-
512
-
513
- /**
514
- * Icon value replacing from meta value
515
- *
516
- *
517
- * @param $post_id
518
- * @param string $meta_key
519
- *
520
- * @return mixed
521
- */
522
- private function fetch_and_correct_meta_value($post_id, $meta_key = '_elementor_data') {
523
-
524
- $row = $this->get_post_meta_by_post_id($post_id, $meta_key);
525
-
526
- $check_arr = $this->get_original_string_array();
527
- $replace_arr = $this->get_replace_string_array();
528
-
529
- $modified = str_replace($check_arr, $replace_arr, $row->meta_value);
530
-
531
- return $this->update_post_meta_by_meta_id($row->meta_id, $modified);
532
-
533
- //get_post_meta($post_id, $meta_key, true);
534
- //update_post_meta($post_id, $meta_key, $modified);
535
- }
536
-
537
-
538
- private function get_original_string_array() {
539
-
540
- $original = [
541
- '{"value":"icon icon-home","library":"ekiticons"}',
542
- '{"value":"icon icon-apartment1","library":"ekiticons"}',
543
- '{"value":"icon icon-pencil","library":"ekiticons"}',
544
- '{"value":"icon icon-magic-wand","library":"ekiticons"}',
545
- '{"value":"icon icon-drop","library":"ekiticons"}',
546
- '{"value":"icon icon-lighter","library":"ekiticons"}',
547
- '{"value":"icon icon-poop","library":"ekiticons"}',
548
- '{"value":"icon icon-sun","library":"ekiticons"}',
549
- '{"value":"icon icon-moon","library":"ekiticons"}',
550
- '{"value":"icon icon-cloud1","library":"ekiticons"}',
551
- '{"value":"icon icon-cloud-upload","library":"ekiticons"}',
552
- '{"value":"icon icon-cloud-download","library":"ekiticons"}',
553
- '{"value":"icon icon-cloud-sync","library":"ekiticons"}',
554
- '{"value":"icon icon-cloud-check","library":"ekiticons"}',
555
- '{"value":"icon icon-database1","library":"ekiticons"}',
556
- '{"value":"icon icon-lock","library":"ekiticons"}',
557
- '{"value":"icon icon-cog","library":"ekiticons"}',
558
- '{"value":"icon icon-trash","library":"ekiticons"}',
559
- '{"value":"icon icon-dice","library":"ekiticons"}',
560
- '{"value":"icon icon-heart1","library":"ekiticons"}',
561
- '{"value":"icon icon-star1","library":"ekiticons"}',
562
- '{"value":"icon icon-star-half","library":"ekiticons"}',
563
- '{"value":"icon icon-star-empty","library":"ekiticons"}',
564
- '{"value":"icon icon-flag","library":"ekiticons"}',
565
- '{"value":"icon icon-envelope1","library":"ekiticons"}',
566
- '{"value":"icon icon-paperclip","library":"ekiticons"}',
567
- '{"value":"icon icon-inbox","library":"ekiticons"}',
568
- '{"value":"icon icon-eye","library":"ekiticons"}',
569
- '{"value":"icon icon-printer","library":"ekiticons"}',
570
- '{"value":"icon icon-file-empty","library":"ekiticons"}',
571
- '{"value":"icon icon-file-add","library":"ekiticons"}',
572
- '{"value":"icon icon-enter","library":"ekiticons"}',
573
- '{"value":"icon icon-exit","library":"ekiticons"}',
574
- '{"value":"icon icon-graduation-hat","library":"ekiticons"}',
575
- '{"value":"icon icon-license","library":"ekiticons"}',
576
- '{"value":"icon icon-music-note","library":"ekiticons"}',
577
- '{"value":"icon icon-film-play","library":"ekiticons"}',
578
- '{"value":"icon icon-camera-video","library":"ekiticons"}',
579
- '{"value":"icon icon-camera","library":"ekiticons"}',
580
- '{"value":"icon icon-picture","library":"ekiticons"}',
581
- '{"value":"icon icon-book","library":"ekiticons"}',
582
- '{"value":"icon icon-bookmark","library":"ekiticons"}',
583
- '{"value":"icon icon-user","library":"ekiticons"}',
584
- '{"value":"icon icon-users","library":"ekiticons"}',
585
- '{"value":"icon icon-shirt","library":"ekiticons"}',
586
- '{"value":"icon icon-store","library":"ekiticons"}',
587
- '{"value":"icon icon-cart2","library":"ekiticons"}',
588
- '{"value":"icon icon-tag","library":"ekiticons"}',
589
- '{"value":"icon icon-phone-handset","library":"ekiticons"}',
590
- '{"value":"icon icon-phone","library":"ekiticons"}',
591
- '{"value":"icon icon-pushpin","library":"ekiticons"}',
592
- '{"value":"icon icon-map-marker","library":"ekiticons"}',
593
- '{"value":"icon icon-map","library":"ekiticons"}',
594
- '{"value":"icon icon-location","library":"ekiticons"}',
595
- '{"value":"icon icon-calendar-full","library":"ekiticons"}',
596
- '{"value":"icon icon-keyboard","library":"ekiticons"}',
597
- '{"value":"icon icon-spell-check","library":"ekiticons"}',
598
- '{"value":"icon icon-screen","library":"ekiticons"}',
599
- '{"value":"icon icon-smartphone","library":"ekiticons"}',
600
- '{"value":"icon icon-tablet","library":"ekiticons"}',
601
- '{"value":"icon icon-laptop","library":"ekiticons"}',
602
- '{"value":"icon icon-laptop-phone","library":"ekiticons"}',
603
- '{"value":"icon icon-power-switch","library":"ekiticons"}',
604
- '{"value":"icon icon-bubble","library":"ekiticons"}',
605
- '{"value":"icon icon-heart-pulse","library":"ekiticons"}',
606
- '{"value":"icon icon-construction","library":"ekiticons"}',
607
- '{"value":"icon icon-pie-chart","library":"ekiticons"}',
608
- '{"value":"icon icon-chart-bars","library":"ekiticons"}',
609
- '{"value":"icon icon-gift1","library":"ekiticons"}',
610
- '{"value":"icon icon-diamond1","library":"ekiticons"}',
611
- '{"value":"icon icon-dinner","library":"ekiticons"}',
612
- '{"value":"icon icon-coffee-cup","library":"ekiticons"}',
613
- '{"value":"icon icon-leaf","library":"ekiticons"}',
614
- '{"value":"icon icon-paw","library":"ekiticons"}',
615
- '{"value":"icon icon-rocket","library":"ekiticons"}',
616
- '{"value":"icon icon-briefcase","library":"ekiticons"}',
617
- '{"value":"icon icon-bus","library":"ekiticons"}',
618
- '{"value":"icon icon-car1","library":"ekiticons"}',
619
- '{"value":"icon icon-train","library":"ekiticons"}',
620
- '{"value":"icon icon-bicycle","library":"ekiticons"}',
621
- '{"value":"icon icon-wheelchair","library":"ekiticons"}',
622
- '{"value":"icon icon-select","library":"ekiticons"}',
623
- '{"value":"icon icon-earth","library":"ekiticons"}',
624
- '{"value":"icon icon-smile","library":"ekiticons"}',
625
- '{"value":"icon icon-sad","library":"ekiticons"}',
626
- '{"value":"icon icon-neutral","library":"ekiticons"}',
627
- '{"value":"icon icon-mustache","library":"ekiticons"}',
628
- '{"value":"icon icon-alarm","library":"ekiticons"}',
629
- '{"value":"icon icon-bullhorn","library":"ekiticons"}',
630
- '{"value":"icon icon-volume-high","library":"ekiticons"}',
631
- '{"value":"icon icon-volume-medium","library":"ekiticons"}',
632
- '{"value":"icon icon-volume-low","library":"ekiticons"}',
633
- '{"value":"icon icon-volume","library":"ekiticons"}',
634
- '{"value":"icon icon-mic","library":"ekiticons"}',
635
- '{"value":"icon icon-hourglass","library":"ekiticons"}',
636
- '{"value":"icon icon-undo","library":"ekiticons"}',
637
- '{"value":"icon icon-redo","library":"ekiticons"}',
638
- '{"value":"icon icon-sync","library":"ekiticons"}',
639
- '{"value":"icon icon-history","library":"ekiticons"}',
640
- '{"value":"icon icon-clock1","library":"ekiticons"}',
641
- '{"value":"icon icon-download","library":"ekiticons"}',
642
- '{"value":"icon icon-upload","library":"ekiticons"}',
643
- '{"value":"icon icon-enter-down","library":"ekiticons"}',
644
- '{"value":"icon icon-exit-up","library":"ekiticons"}',
645
- '{"value":"icon icon-bug","library":"ekiticons"}',
646
- '{"value":"icon icon-code","library":"ekiticons"}',
647
- '{"value":"icon icon-link","library":"ekiticons"}',
648
- '{"value":"icon icon-unlink","library":"ekiticons"}',
649
- '{"value":"icon icon-thumbs-up","library":"ekiticons"}',
650
- '{"value":"icon icon-thumbs-down","library":"ekiticons"}',
651
- '{"value":"icon icon-magnifier","library":"ekiticons"}',
652
- '{"value":"icon icon-cross","library":"ekiticons"}',
653
- '{"value":"icon icon-chevron-up","library":"ekiticons"}',
654
- '{"value":"icon icon-chevron-down","library":"ekiticons"}',
655
- '{"value":"icon icon-chevron-left","library":"ekiticons"}',
656
- '{"value":"icon icon-chevron-right","library":"ekiticons"}',
657
- '{"value":"icon icon-arrow-up","library":"ekiticons"}',
658
- '{"value":"icon icon-arrow-down","library":"ekiticons"}',
659
- '{"value":"icon icon-arrow-left","library":"ekiticons"}',
660
- '{"value":"icon icon-arrow-right","library":"ekiticons"}',
661
- '{"value":"icon icon-right-arrow","library":"ekiticons"}',
662
- '{"value":"icon icon-left-arrow","library":"ekiticons"}',
663
- '{"value":"icon icon-download-arrow","library":"ekiticons"}',
664
- '{"value":"icon icon-up-arrow","library":"ekiticons"}',
665
- '{"value":"icon icon-arrows","library":"ekiticons"}',
666
- '{"value":"icon icon-double-angle-pointing-to-right","library":"ekiticons"}',
667
- '{"value":"icon icon-double-left-chevron","library":"ekiticons"}',
668
- '{"value":"icon icon-left-arrow2","library":"ekiticons"}',
669
- '{"value":"icon icon-right-arrow2","library":"ekiticons"}',
670
- '{"value":"icon icon-warning","library":"ekiticons"}',
671
- '{"value":"icon icon-down-arrow1","library":"ekiticons"}',
672
- '{"value":"icon icon-up-arrow1","library":"ekiticons"}',
673
- '{"value":"icon icon-right-arrow1","library":"ekiticons"}',
674
- '{"value":"icon icon-left-arrows","library":"ekiticons"}',
675
- '{"value":"icon icon-question-circle","library":"ekiticons"}',
676
- '{"value":"icon icon-menu-circle","library":"ekiticons"}',
677
- '{"value":"icon icon-checkmark-circle","library":"ekiticons"}',
678
- '{"value":"icon icon-cross-circle","library":"ekiticons"}',
679
- '{"value":"icon icon-plus-circle","library":"ekiticons"}',
680
- '{"value":"icon icon-move","library":"ekiticons"}',
681
- '{"value":"icon icon-circle-minus","library":"ekiticons"}',
682
- '{"value":"icon icon-arrow-up-circle","library":"ekiticons"}',
683
- '{"value":"icon icon-arrow-down-circle","library":"ekiticons"}',
684
- '{"value":"icon icon-arrow-left-circle","library":"ekiticons"}',
685
- '{"value":"icon icon-arrow-right-circle","library":"ekiticons"}',
686
- '{"value":"icon icon-chevron-up-circle","library":"ekiticons"}',
687
- '{"value":"icon icon-chevron-down-circle","library":"ekiticons"}',
688
- '{"value":"icon icon-chevron-left-circle","library":"ekiticons"}',
689
- '{"value":"icon icon-chevron-right-circle","library":"ekiticons"}',
690
- '{"value":"icon icon-crop","library":"ekiticons"}',
691
- '{"value":"icon icon-frame-expand","library":"ekiticons"}',
692
- '{"value":"icon icon-frame-contract","library":"ekiticons"}',
693
- '{"value":"icon icon-layers","library":"ekiticons"}',
694
- '{"value":"icon icon-funnel","library":"ekiticons"}',
695
- '{"value":"icon icon-text-format","library":"ekiticons"}',
696
- '{"value":"icon icon-text-size","library":"ekiticons"}',
697
- '{"value":"icon icon-bold","library":"ekiticons"}',
698
- '{"value":"icon icon-italic","library":"ekiticons"}',
699
- '{"value":"icon icon-underline","library":"ekiticons"}',
700
- '{"value":"icon icon-strikethrough","library":"ekiticons"}',
701
- '{"value":"icon icon-highlight","library":"ekiticons"}',
702
- '{"value":"icon icon-text-align-left","library":"ekiticons"}',
703
- '{"value":"icon icon-text-align-center","library":"ekiticons"}',
704
- '{"value":"icon icon-text-align-right","library":"ekiticons"}',
705
- '{"value":"icon icon-text-align-justify","library":"ekiticons"}',
706
- '{"value":"icon icon-line-spacing","library":"ekiticons"}',
707
- '{"value":"icon icon-indent-increase","library":"ekiticons"}',
708
- '{"value":"icon icon-indent-decrease","library":"ekiticons"}',
709
- '{"value":"icon icon-page-break","library":"ekiticons"}',
710
- '{"value":"icon icon-hand","library":"ekiticons"}',
711
- '{"value":"icon icon-pointer-up","library":"ekiticons"}',
712
- '{"value":"icon icon-pointer-right","library":"ekiticons"}',
713
- '{"value":"icon icon-pointer-down","library":"ekiticons"}',
714
- '{"value":"icon icon-pointer-left","library":"ekiticons"}',
715
- '{"value":"icon icon-burger","library":"ekiticons"}',
716
- '{"value":"icon icon-cakes","library":"ekiticons"}',
717
- '{"value":"icon icon-cheese","library":"ekiticons"}',
718
- '{"value":"icon icon-drink-glass","library":"ekiticons"}',
719
- '{"value":"icon icon-pizza","library":"ekiticons"}',
720
- '{"value":"icon icon-vplay","library":"ekiticons"}',
721
- '{"value":"icon icon-newsletter","library":"ekiticons"}',
722
- '{"value":"icon icon-coins-2","library":"ekiticons"}',
723
- '{"value":"icon icon-commerce-2","library":"ekiticons"}',
724
- '{"value":"icon icon-monitor","library":"ekiticons"}',
725
- '{"value":"icon icon-business","library":"ekiticons"}',
726
- '{"value":"icon icon-graphic-2","library":"ekiticons"}',
727
- '{"value":"icon icon-commerce-1","library":"ekiticons"}',
728
- '{"value":"icon icon-hammer","library":"ekiticons"}',
729
- '{"value":"icon icon-justice-1","library":"ekiticons"}',
730
- '{"value":"icon icon-line","library":"ekiticons"}',
731
- '{"value":"icon icon-money-3","library":"ekiticons"}',
732
- '{"value":"icon icon-commerce","library":"ekiticons"}',
733
- '{"value":"icon icon-agenda","library":"ekiticons"}',
734
- '{"value":"icon icon-justice","library":"ekiticons"}',
735
- '{"value":"icon icon-technology","library":"ekiticons"}',
736
- '{"value":"icon icon-coins-1","library":"ekiticons"}',
737
- '{"value":"icon icon-bank","library":"ekiticons"}',
738
- '{"value":"icon icon-calculator","library":"ekiticons"}',
739
- '{"value":"icon icon-soundcloud","library":"ekiticons"}',
740
- '{"value":"icon icon-chart2","library":"ekiticons"}',
741
- '{"value":"icon icon-checked","library":"ekiticons"}',
742
- '{"value":"icon icon-clock11","library":"ekiticons"}',
743
- '{"value":"icon icon-comment2","library":"ekiticons"}',
744
- '{"value":"icon icon-comments","library":"ekiticons"}',
745
- '{"value":"icon icon-consult","library":"ekiticons"}',
746
- '{"value":"icon icon-consut2","library":"ekiticons"}',
747
- '{"value":"icon icon-deal","library":"ekiticons"}',
748
- '{"value":"icon icon-envelope11","library":"ekiticons"}',
749
- '{"value":"icon icon-folder","library":"ekiticons"}',
750
- '{"value":"icon icon-folder2","library":"ekiticons"}',
751
- '{"value":"icon icon-invest","library":"ekiticons"}',
752
- '{"value":"icon icon-loan","library":"ekiticons"}',
753
- '{"value":"icon icon-menu1","library":"ekiticons"}',
754
- '{"value":"icon icon-list1","library":"ekiticons"}',
755
- '{"value":"icon icon-map-marker1","library":"ekiticons"}',
756
- '{"value":"icon icon-mutual-fund","library":"ekiticons"}',
757
- '{"value":"icon icon-google-plus","library":"ekiticons"}',
758
- '{"value":"icon icon-phone1","library":"ekiticons"}',
759
- '{"value":"icon icon-pie-chart1","library":"ekiticons"}',
760
- '{"value":"icon icon-play","library":"ekiticons"}',
761
- '{"value":"icon icon-savings","library":"ekiticons"}',
762
- '{"value":"icon icon-search2","library":"ekiticons"}',
763
- '{"value":"icon icon-tag1","library":"ekiticons"}',
764
- '{"value":"icon icon-tags","library":"ekiticons"}',
765
- '{"value":"icon icon-instagram1","library":"ekiticons"}',
766
- '{"value":"icon icon-quote","library":"ekiticons"}',
767
- '{"value":"icon icon-arrow-point-to-down","library":"ekiticons"}',
768
- '{"value":"icon icon-play-button","library":"ekiticons"}',
769
- '{"value":"icon icon-minus","library":"ekiticons"}',
770
- '{"value":"icon icon-plus","library":"ekiticons"}',
771
- '{"value":"icon icon-tick","library":"ekiticons"}',
772
- '{"value":"icon icon-check","library":"ekiticons"}',
773
- '{"value":"icon icon-edit","library":"ekiticons"}',
774
- '{"value":"icon icon-reply","library":"ekiticons"}',
775
- '{"value":"icon icon-cogwheel-outline","library":"ekiticons"}',
776
- '{"value":"icon icon-abacus","library":"ekiticons"}',
777
- '{"value":"icon icon-abacus1","library":"ekiticons"}',
778
- '{"value":"icon icon-agenda1","library":"ekiticons"}',
779
- '{"value":"icon icon-shopping-basket","library":"ekiticons"}',
780
- '{"value":"icon icon-users1","library":"ekiticons"}',
781
- '{"value":"icon icon-man","library":"ekiticons"}',
782
- '{"value":"icon icon-support1","library":"ekiticons"}',
783
- '{"value":"icon icon-favorites","library":"ekiticons"}',
784
- '{"value":"icon icon-calendar","library":"ekiticons"}',
785
- '{"value":"icon icon-paper-plane","library":"ekiticons"}',
786
- '{"value":"icon icon-placeholder","library":"ekiticons"}',
787
- '{"value":"icon icon-phone-call","library":"ekiticons"}',
788
- '{"value":"icon icon-contact","library":"ekiticons"}',
789
- '{"value":"icon icon-email","library":"ekiticons"}',
790
- '{"value":"icon icon-internet","library":"ekiticons"}',
791
- '{"value":"icon icon-quote1","library":"ekiticons"}',
792
- '{"value":"icon icon-medical","library":"ekiticons"}',
793
- '{"value":"icon icon-eye1","library":"ekiticons"}',
794
- '{"value":"icon icon-full-screen","library":"ekiticons"}',
795
- '{"value":"icon icon-tools","library":"ekiticons"}',
796
- '{"value":"icon icon-pie-chart2","library":"ekiticons"}',
797
- '{"value":"icon icon-diamond11","library":"ekiticons"}',
798
- '{"value":"icon icon-valentines-heart","library":"ekiticons"}',
799
- '{"value":"icon icon-like","library":"ekiticons"}',
800
- '{"value":"icon icon-team","library":"ekiticons"}',
801
- '{"value":"icon icon-tshirt","library":"ekiticons"}',
802
- '{"value":"icon icon-cancel","library":"ekiticons"}',
803
- '{"value":"icon icon-drink","library":"ekiticons"}',
804
- '{"value":"icon icon-home1","library":"ekiticons"}',
805
- '{"value":"icon icon-music","library":"ekiticons"}',
806
- '{"value":"icon icon-rich","library":"ekiticons"}',
807
- '{"value":"icon icon-brush","library":"ekiticons"}',
808
- '{"value":"icon icon-opposite-way","library":"ekiticons"}',
809
- '{"value":"icon icon-cloud-computing1","library":"ekiticons"}',
810
- '{"value":"icon icon-technology-1","library":"ekiticons"}',
811
- '{"value":"icon icon-rotate","library":"ekiticons"}',
812
- '{"value":"icon icon-medical1","library":"ekiticons"}',
813
- '{"value":"icon icon-flash-1","library":"ekiticons"}',
814
- '{"value":"icon icon-flash","library":"ekiticons"}',
815
- '{"value":"icon icon-uturn","library":"ekiticons"}',
816
- '{"value":"icon icon-down-arrow","library":"ekiticons"}',
817
- '{"value":"icon icon-hours-support","library":"ekiticons"}',
818
- '{"value":"icon icon-bag","library":"ekiticons"}',
819
- '{"value":"icon icon-photo-camera","library":"ekiticons"}',
820
- '{"value":"icon icon-school","library":"ekiticons"}',
821
- '{"value":"icon icon-settings","library":"ekiticons"}',
822
- '{"value":"icon icon-smartphone1","library":"ekiticons"}',
823
- '{"value":"icon icon-technology-11","library":"ekiticons"}',
824
- '{"value":"icon icon-tool","library":"ekiticons"}',
825
- '{"value":"icon icon-business1","library":"ekiticons"}',
826
- '{"value":"icon icon-shuffle-arrow","library":"ekiticons"}',
827
- '{"value":"icon icon-van-1","library":"ekiticons"}',
828
- '{"value":"icon icon-van","library":"ekiticons"}',
829
- '{"value":"icon icon-vegetables","library":"ekiticons"}',
830
- '{"value":"icon icon-women","library":"ekiticons"}',
831
- '{"value":"icon icon-vintage","library":"ekiticons"}',
832
- '{"value":"icon icon-team-1","library":"ekiticons"}',
833
- '{"value":"icon icon-team1","library":"ekiticons"}',
834
- '{"value":"icon icon-apple","library":"ekiticons"}',
835
- '{"value":"icon icon-watch","library":"ekiticons"}',
836
- '{"value":"icon icon-cogwheel","library":"ekiticons"}',
837
- '{"value":"icon icon-light-bulb","library":"ekiticons"}',
838
- '{"value":"icon icon-light-bulb-1","library":"ekiticons"}',
839
- '{"value":"icon icon-heart-shape-outline","library":"ekiticons"}',
840
- '{"value":"icon icon-online-shopping-cart","library":"ekiticons"}',
841
- '{"value":"icon icon-shopping-cart1","library":"ekiticons"}',
842
- '{"value":"icon icon-star2","library":"ekiticons"}',
843
- '{"value":"icon icon-star-1","library":"ekiticons"}',
844
- '{"value":"icon icon-favorite1","library":"ekiticons"}',
845
- '{"value":"icon icon-agenda2","library":"ekiticons"}',
846
- '{"value":"icon icon-agenda-1","library":"ekiticons"}',
847
- '{"value":"icon icon-alarm-clock","library":"ekiticons"}',
848
- '{"value":"icon icon-alarm-clock1","library":"ekiticons"}',
849
- '{"value":"icon icon-atomic","library":"ekiticons"}',
850
- '{"value":"icon icon-auction","library":"ekiticons"}',
851
- '{"value":"icon icon-balance","library":"ekiticons"}',
852
- '{"value":"icon icon-balance1","library":"ekiticons"}',
853
- '{"value":"icon icon-bank1","library":"ekiticons"}',
854
- '{"value":"icon icon-bar-chart","library":"ekiticons"}',
855
- '{"value":"icon icon-barrier","library":"ekiticons"}',
856
- '{"value":"icon icon-battery","library":"ekiticons"}',
857
- '{"value":"icon icon-battery-1","library":"ekiticons"}',
858
- '{"value":"icon icon-bell","library":"ekiticons"}',
859
- '{"value":"icon icon-bluetooth","library":"ekiticons"}',
860
- '{"value":"icon icon-book1","library":"ekiticons"}',
861
- '{"value":"icon icon-briefcase1","library":"ekiticons"}',
862
- '{"value":"icon icon-briefcase-1","library":"ekiticons"}',
863
- '{"value":"icon icon-briefcase-2","library":"ekiticons"}',
864
- '{"value":"icon icon-calculator1","library":"ekiticons"}',
865
- '{"value":"icon icon-calculator2","library":"ekiticons"}',
866
- '{"value":"icon icon-calculator-1","library":"ekiticons"}',
867
- '{"value":"icon icon-calendar1","library":"ekiticons"}',
868
- '{"value":"icon icon-calendar2","library":"ekiticons"}',
869
- '{"value":"icon icon-calendar-1","library":"ekiticons"}',
870
- '{"value":"icon icon-calendar-page-empty","library":"ekiticons"}',
871
- '{"value":"icon icon-calendar3","library":"ekiticons"}',
872
- '{"value":"icon icon-car11","library":"ekiticons"}',
873
- '{"value":"icon icon-carrier","library":"ekiticons"}',
874
- '{"value":"icon icon-cash","library":"ekiticons"}',
875
- '{"value":"icon icon-chat","library":"ekiticons"}',
876
- '{"value":"icon icon-chat-1","library":"ekiticons"}',
877
- '{"value":"icon icon-checked1","library":"ekiticons"}',
878
- '{"value":"icon icon-clip","library":"ekiticons"}',
879
- '{"value":"icon icon-clip1","library":"ekiticons"}',
880
- '{"value":"icon icon-clipboard1","library":"ekiticons"}',
881
- '{"value":"icon icon-clipboard11","library":"ekiticons"}',
882
- '{"value":"icon icon-clock2","library":"ekiticons"}',
883
- '{"value":"icon icon-clock-1","library":"ekiticons"}',
884
- '{"value":"icon icon-cloud11","library":"ekiticons"}',
885
- '{"value":"icon icon-cloud-computing11","library":"ekiticons"}',
886
- '{"value":"icon icon-cloud-computing-1","library":"ekiticons"}',
887
- '{"value":"icon icon-cogwheel1","library":"ekiticons"}',
888
- '{"value":"icon icon-coins1","library":"ekiticons"}',
889
- '{"value":"icon icon-compass","library":"ekiticons"}',
890
- '{"value":"icon icon-contract","library":"ekiticons"}',
891
- '{"value":"icon icon-conversation","library":"ekiticons"}',
892
- '{"value":"icon icon-crane1","library":"ekiticons"}',
893
- '{"value":"icon icon-crane-2","library":"ekiticons"}',
894
- '{"value":"icon icon-credit-card","library":"ekiticons"}',
895
- '{"value":"icon icon-credit-card1","library":"ekiticons"}',
896
- '{"value":"icon icon-cursor","library":"ekiticons"}',
897
- '{"value":"icon icon-customer-service","library":"ekiticons"}',
898
- '{"value":"icon icon-cutlery","library":"ekiticons"}',
899
- '{"value":"icon icon-dart-board","library":"ekiticons"}',
900
- '{"value":"icon icon-decision-making","library":"ekiticons"}',
901
- '{"value":"icon icon-desk-chair","library":"ekiticons"}',
902
- '{"value":"icon icon-desk-lamp","library":"ekiticons"}',
903
- '{"value":"icon icon-diamond2","library":"ekiticons"}',
904
- '{"value":"icon icon-direction","library":"ekiticons"}',
905
- '{"value":"icon icon-document","library":"ekiticons"}',
906
- '{"value":"icon icon-dollar-bill","library":"ekiticons"}',
907
- '{"value":"icon icon-download1","library":"ekiticons"}',
908
- '{"value":"icon icon-edit1","library":"ekiticons"}',
909
- '{"value":"icon icon-email1","library":"ekiticons"}',
910
- '{"value":"icon icon-envelope2","library":"ekiticons"}',
911
- '{"value":"icon icon-envelope3","library":"ekiticons"}',
912
- '{"value":"icon icon-eraser","library":"ekiticons"}',
913
- '{"value":"icon icon-eye2","library":"ekiticons"}',
914
- '{"value":"icon icon-factory","library":"ekiticons"}',
915
- '{"value":"icon icon-fast-forward","library":"ekiticons"}',
916
- '{"value":"icon icon-favorites1","library":"ekiticons"}',
917
- '{"value":"icon icon-file","library":"ekiticons"}',
918
- '{"value":"icon icon-file-1","library":"ekiticons"}',
919
- '{"value":"icon icon-file-2","library":"ekiticons"}',
920
- '{"value":"icon icon-file-3","library":"ekiticons"}',
921
- '{"value":"icon icon-filter","library":"ekiticons"}',
922
- '{"value":"icon icon-finance-book","library":"ekiticons"}',
923
- '{"value":"icon icon-flag1","library":"ekiticons"}',
924
- '{"value":"icon icon-folder1","library":"ekiticons"}',
925
- '{"value":"icon icon-folder-1","library":"ekiticons"}',
926
- '{"value":"icon icon-folders","library":"ekiticons"}',
927
- '{"value":"icon icon-folders1","library":"ekiticons"}',
928
- '{"value":"icon icon-gamepad","library":"ekiticons"}',
929
- '{"value":"icon icon-gift11","library":"ekiticons"}',
930
- '{"value":"icon icon-growth","library":"ekiticons"}',
931
- '{"value":"icon icon-heart11","library":"ekiticons"}',
932
- '{"value":"icon icon-home2","library":"ekiticons"}',
933
- '{"value":"icon icon-house","library":"ekiticons"}',
934
- '{"value":"icon icon-house-1","library":"ekiticons"}',
935
- '{"value":"icon icon-house-2","library":"ekiticons"}',
936
- '{"value":"icon icon-id-card","library":"ekiticons"}',
937
- '{"value":"icon icon-id-card1","library":"ekiticons"}',
938
- '{"value":"icon icon-id-card-1","library":"ekiticons"}',
939
- '{"value":"icon icon-idea1","library":"ekiticons"}',
940
- '{"value":"icon icon-image","library":"ekiticons"}',
941
- '{"value":"icon icon-improvement","library":"ekiticons"}',
942
- '{"value":"icon icon-inbox1","library":"ekiticons"}',
943
- '{"value":"icon icon-information","library":"ekiticons"}',
944
- '{"value":"icon icon-key","library":"ekiticons"}',
945
- '{"value":"icon icon-key1","library":"ekiticons"}',
946
- '{"value":"icon icon-laptop1","library":"ekiticons"}',
947
- '{"value":"icon icon-layers1","library":"ekiticons"}',
948
- '{"value":"icon icon-light-bulb1","library":"ekiticons"}',
949
- '{"value":"icon icon-like1","library":"ekiticons"}',
950
- '{"value":"icon icon-line-chart1","library":"ekiticons"}',
951
- '{"value":"icon icon-mail","library":"ekiticons"}',
952
- '{"value":"icon icon-manager","library":"ekiticons"}',
953
- '{"value":"icon icon-map1","library":"ekiticons"}',
954
- '{"value":"icon icon-medal1","library":"ekiticons"}',
955
- '{"value":"icon icon-megaphone","library":"ekiticons"}',
956
- '{"value":"icon icon-megaphone1","library":"ekiticons"}',
957
- '{"value":"icon icon-message","library":"ekiticons"}',
958
- '{"value":"icon icon-message-1","library":"ekiticons"}',
959
- '{"value":"icon icon-message-2","library":"ekiticons"}',
960
- '{"value":"icon icon-microphone","library":"ekiticons"}',
961
- '{"value":"icon icon-money1","library":"ekiticons"}',
962
- '{"value":"icon icon-money-bag1","library":"ekiticons"}',
963
- '{"value":"icon icon-monitor1","library":"ekiticons"}',
964
- '{"value":"icon icon-music1","library":"ekiticons"}',
965
- '{"value":"icon icon-next","library":"ekiticons"}',
966
- '{"value":"icon icon-open-book1","library":"ekiticons"}',
967
- '{"value":"icon icon-padlock","library":"ekiticons"}',
968
- '{"value":"icon icon-padlock-1","library":"ekiticons"}',
969
- '{"value":"icon icon-paint-brush","library":"ekiticons"}',
970
- '{"value":"icon icon-pause","library":"ekiticons"}',
971
- '{"value":"icon icon-pen","library":"ekiticons"}',
972
- '{"value":"icon icon-pencil1","library":"ekiticons"}',
973
- '{"value":"icon icon-percentage","library":"ekiticons"}',
974
- '{"value":"icon icon-phone-call1","library":"ekiticons"}',
975
- '{"value":"icon icon-phone-call2","library":"ekiticons"}',
976
- '{"value":"icon icon-photo-camera1","library":"ekiticons"}',
977
- '{"value":"icon icon-pie-chart3","library":"ekiticons"}',
978
- '{"value":"icon icon-pipe","library":"ekiticons"}',
979
- '{"value":"icon icon-placeholder1","library":"ekiticons"}',
980
- '{"value":"icon icon-placeholder2","library":"ekiticons"}',
981
- '{"value":"icon icon-planet-earth","library":"ekiticons"}',
982
- '{"value":"icon icon-play-button1","library":"ekiticons"}',
983
- '{"value":"icon icon-power-button","library":"ekiticons"}',
984
- '{"value":"icon icon-presentation","library":"ekiticons"}',
985
- '{"value":"icon icon-presentation1","library":"ekiticons"}',
986
- '{"value":"icon icon-printer1","library":"ekiticons"}',
987
- '{"value":"icon icon-push-pin","library":"ekiticons"}',
988
- '{"value":"icon icon-push-pin1","library":"ekiticons"}',
989
- '{"value":"icon icon-refresh","library":"ekiticons"}',
990
- '{"value":"icon icon-reload","library":"ekiticons"}',
991
- '{"value":"icon icon-return","library":"ekiticons"}',
992
- '{"value":"icon icon-rocket-ship","library":"ekiticons"}',
993
- '{"value":"icon icon-rss1","library":"ekiticons"}',
994
- '{"value":"icon icon-safebox","library":"ekiticons"}',
995
- '{"value":"icon icon-safebox1","library":"ekiticons"}',
996
- '{"value":"icon icon-settings1","library":"ekiticons"}',
997
- '{"value":"icon icon-settings-2","library":"ekiticons"}',
998
- '{"value":"icon icon-sewing-machine","library":"ekiticons"}',
999
- '{"value":"icon icon-share2","library":"ekiticons"}',
1000
- '{"value":"icon icon-shield1","library":"ekiticons"}',
1001
- '{"value":"icon icon-shield11","library":"ekiticons"}',
1002
- '{"value":"icon icon-shopping","library":"ekiticons"}',
1003
- '{"value":"icon icon-shopping-bag","library":"ekiticons"}',
1004
- '{"value":"icon icon-shopping-bag-1","library":"ekiticons"}',
1005
- '{"value":"icon icon-shopping-bag-2","library":"ekiticons"}',
1006
- '{"value":"icon icon-shopping-cart11","library":"ekiticons"}',
1007
- '{"value":"icon icon-shopping-cart2","library":"ekiticons"}',
1008
- '{"value":"icon icon-shopping-cart-1","library":"ekiticons"}',
1009
- '{"value":"icon icon-shopping-cart-2","library":"ekiticons"}',
1010
- '{"value":"icon icon-shopping-cart-3","library":"ekiticons"}',
1011
- '{"value":"icon icon-smartphone2","library":"ekiticons"}',
1012
- '{"value":"icon icon-speaker","library":"ekiticons"}',
1013
- '{"value":"icon icon-speakers","library":"ekiticons"}',
1014
- '{"value":"icon icon-stats","library":"ekiticons"}',
1015
- '{"value":"icon icon-stats-1","library":"ekiticons"}',
1016
- '{"value":"icon icon-stats-2","library":"ekiticons"}',
1017
- '{"value":"icon icon-stats-3","library":"ekiticons"}',
1018
- '{"value":"icon icon-stats-4","library":"ekiticons"}',
1019
- '{"value":"icon icon-stats-5","library":"ekiticons"}',
1020
- '{"value":"icon icon-stats-6","library":"ekiticons"}',
1021
- '{"value":"icon icon-sticky-note","library":"ekiticons"}',
1022
- '{"value":"icon icon-store1","library":"ekiticons"}',
1023
- '{"value":"icon icon-store-1","library":"ekiticons"}',
1024
- '{"value":"icon icon-suitcase","library":"ekiticons"}',
1025
- '{"value":"icon icon-suitcase-1","library":"ekiticons"}',
1026
- '{"value":"icon icon-tag2","library":"ekiticons"}',
1027
- '{"value":"icon icon-target","library":"ekiticons"}',
1028
- '{"value":"icon icon-team2","library":"ekiticons"}',
1029
- '{"value":"icon icon-tie","library":"ekiticons"}',
1030
- '{"value":"icon icon-trash1","library":"ekiticons"}',
1031
- '{"value":"icon icon-trolley","library":"ekiticons"}',
1032
- '{"value":"icon icon-trolley-1","library":"ekiticons"}',
1033
- '{"value":"icon icon-trolley-2","library":"ekiticons"}',
1034
- '{"value":"icon icon-trophy1","library":"ekiticons"}',
1035
- '{"value":"icon icon-truck1","library":"ekiticons"}',
1036
- '{"value":"icon icon-truck-1","library":"ekiticons"}',
1037
- '{"value":"icon icon-truck-2","library":"ekiticons"}',
1038
- '{"value":"icon icon-umbrella","library":"ekiticons"}',
1039
- '{"value":"icon icon-upload1","library":"ekiticons"}',
1040
- '{"value":"icon icon-user1","library":"ekiticons"}',
1041
- '{"value":"icon icon-user-1","library":"ekiticons"}',
1042
- '{"value":"icon icon-user-2","library":"ekiticons"}',
1043
- '{"value":"icon icon-user-3","library":"ekiticons"}',
1044
- '{"value":"icon icon-users2","library":"ekiticons"}',
1045
- '{"value":"icon icon-video-camera","library":"ekiticons"}',
1046
- '{"value":"icon icon-voucher","library":"ekiticons"}',
1047
- '{"value":"icon icon-voucher-1","library":"ekiticons"}',
1048
- '{"value":"icon icon-voucher-2","library":"ekiticons"}',
1049
- '{"value":"icon icon-voucher-3","library":"ekiticons"}',
1050
- '{"value":"icon icon-voucher-4","library":"ekiticons"}',
1051
- '{"value":"icon icon-wallet","library":"ekiticons"}',
1052
- '{"value":"icon icon-wallet1","library":"ekiticons"}',
1053
- '{"value":"icon icon-wifi","library":"ekiticons"}',
1054
- '{"value":"icon icon-worker","library":"ekiticons"}',
1055
- '{"value":"icon icon-zoom-in","library":"ekiticons"}',
1056
- '{"value":"icon icon-zoom-out","library":"ekiticons"}',
1057
- '{"value":"icon icon-burger-menu","library":"ekiticons"}',
1058
- '{"value":"icon icon-squares","library":"ekiticons"}',
1059
- '{"value":"icon icon-options","library":"ekiticons"}',
1060
- '{"value":"icon icon-apps","library":"ekiticons"}',
1061
- '{"value":"icon icon-menu-11","library":"ekiticons"}',
1062
- '{"value":"icon icon-menu11","library":"ekiticons"}',
1063
- '{"value":"icon icon-back_up","library":"ekiticons"}',
1064
- '{"value":"icon icon-cart11","library":"ekiticons"}',
1065
- '{"value":"icon icon-checkmark","library":"ekiticons"}',
1066
- '{"value":"icon icon-dollar","library":"ekiticons"}',
1067
- '{"value":"icon icon-domian","library":"ekiticons"}',
1068
- '{"value":"icon icon-hosting1","library":"ekiticons"}',
1069
- '{"value":"icon icon-key2","library":"ekiticons"}',
1070
- '{"value":"icon icon-migration","library":"ekiticons"}',
1071
- '{"value":"icon icon-play1","library":"ekiticons"}',
1072
- '{"value":"icon icon-quote2","library":"ekiticons"}',
1073
- '{"value":"icon icon-api_setup","library":"ekiticons"}',
1074
- '{"value":"icon icon-coin","library":"ekiticons"}',
1075
- '{"value":"icon icon-hand_shake","library":"ekiticons"}',
1076
- '{"value":"icon icon-idea_generate","library":"ekiticons"}',
1077
- '{"value":"icon icon-page_search","library":"ekiticons"}',
1078
- '{"value":"icon icon-pen_shape","library":"ekiticons"}',
1079
- '{"value":"icon icon-pencil_art","library":"ekiticons"}',
1080
- '{"value":"icon icon-review","library":"ekiticons"}',
1081
- '{"value":"icon icon-star","library":"ekiticons"}',
1082
- '{"value":"icon icon-timing","library":"ekiticons"}',
1083
- '{"value":"icon icon-trophy","library":"ekiticons"}',
1084
- '{"value":"icon icon-communication","library":"ekiticons"}',
1085
- '{"value":"icon icon-money-bag2","library":"ekiticons"}',
1086
- '{"value":"icon icon-dentist","library":"ekiticons"}',
1087
- '{"value":"icon icon-bill","library":"ekiticons"}',
1088
- '{"value":"icon icon-label","library":"ekiticons"}',
1089
- '{"value":"icon icon-money","library":"ekiticons"}',
1090
- '{"value":"icon icon-shield","library":"ekiticons"}',
1091
- '{"value":"icon icon-support","library":"ekiticons"}',
1092
- '{"value":"icon icon-one","library":"ekiticons"}',
1093
- '{"value":"icon icon-clock","library":"ekiticons"}',
1094
- '{"value":"icon icon-cart","library":"ekiticons"}',
1095
- '{"value":"icon icon-globe","library":"ekiticons"}',
1096
- '{"value":"icon icon-tooth","library":"ekiticons"}',
1097
- '{"value":"icon icon-tooth-1","library":"ekiticons"}',
1098
- '{"value":"icon icon-tooth-2","library":"ekiticons"}',
1099
- '{"value":"icon icon-brain","library":"ekiticons"}',
1100
- '{"value":"icon icon-view","library":"ekiticons"}',
1101
- '{"value":"icon icon-doctor","library":"ekiticons"}',
1102
- '{"value":"icon icon-heart","library":"ekiticons"}',
1103
- '{"value":"icon icon-medicine","library":"ekiticons"}',
1104
- '{"value":"icon icon-stethoscope","library":"ekiticons"}',
1105
- '{"value":"icon icon-hospital","library":"ekiticons"}',
1106
- '{"value":"icon icon-clipboard","library":"ekiticons"}',
1107
- '{"value":"icon icon-medicine-1","library":"ekiticons"}',
1108
- '{"value":"icon icon-hospital-1","library":"ekiticons"}',
1109
- '{"value":"icon icon-customer-support","library":"ekiticons"}',
1110
- '{"value":"icon icon-brickwall","library":"ekiticons"}',
1111
- '{"value":"icon icon-crane2","library":"ekiticons"}',
1112
- '{"value":"icon icon-valve","library":"ekiticons"}',
1113
- '{"value":"icon icon-safety","library":"ekiticons"}',
1114
- '{"value":"icon icon-energy-saving","library":"ekiticons"}',
1115
- '{"value":"icon icon-paint-roller","library":"ekiticons"}',
1116
- '{"value":"icon icon-paint-brushes","library":"ekiticons"}',
1117
- '{"value":"icon icon-construction-tool-vehicle-with-crane-lifting-materials","library":"ekiticons"}',
1118
- '{"value":"icon icon-trowel","library":"ekiticons"}',
1119
- '{"value":"icon icon-bucket","library":"ekiticons"}',
1120
- '{"value":"icon icon-smart","library":"ekiticons"}',
1121
- '{"value":"icon icon-repair","library":"ekiticons"}',
1122
- '{"value":"icon icon-saw","library":"ekiticons"}',
1123
- '{"value":"icon icon-cutter","library":"ekiticons"}',
1124
- '{"value":"icon icon-plier","library":"ekiticons"}',
1125
- '{"value":"icon icon-drill","library":"ekiticons"}',
1126
- '{"value":"icon icon-save-money","library":"ekiticons"}',
1127
- '{"value":"icon icon-planting","library":"ekiticons"}',
1128
- '{"value":"icon icon-line-chart","library":"ekiticons"}',
1129
- '{"value":"icon icon-open-book","library":"ekiticons"}',
1130
- '{"value":"icon icon-money-bag3","library":"ekiticons"}',
1131
- '{"value":"icon icon-server","library":"ekiticons"}',
1132
- '{"value":"icon icon-server-1","library":"ekiticons"}',
1133
- '{"value":"icon icon-server-2","library":"ekiticons"}',
1134
- '{"value":"icon icon-cloud-computing","library":"ekiticons"}',
1135
- '{"value":"icon icon-cloud","library":"ekiticons"}',
1136
- '{"value":"icon icon-database","library":"ekiticons"}',
1137
- '{"value":"icon icon-computer","library":"ekiticons"}',
1138
- '{"value":"icon icon-server-3","library":"ekiticons"}',
1139
- '{"value":"icon icon-server-4","library":"ekiticons"}',
1140
- '{"value":"icon icon-server-5","library":"ekiticons"}',
1141
- '{"value":"icon icon-server-6","library":"ekiticons"}',
1142
- '{"value":"icon icon-server-7","library":"ekiticons"}',
1143
- '{"value":"icon icon-cloud-1","library":"ekiticons"}',
1144
- '{"value":"icon icon-server-8","library":"ekiticons"}',
1145
- '{"value":"icon icon-business-and-finance","library":"ekiticons"}',
1146
- '{"value":"icon icon-cloud-2","library":"ekiticons"}',
1147
- '{"value":"icon icon-server-9","library":"ekiticons"}',
1148
- '{"value":"icon icon-hosting","library":"ekiticons"}',
1149
- '{"value":"icon icon-car","library":"ekiticons"}',
1150
- '{"value":"icon icon-car-frontal-view","library":"ekiticons"}',
1151
- '{"value":"icon icon-car-1","library":"ekiticons"}',
1152
- '{"value":"icon icon-racing","library":"ekiticons"}',
1153
- '{"value":"icon icon-car-wheel","library":"ekiticons"}',
1154
- '{"value":"icon icon-steering-wheel","library":"ekiticons"}',
1155
- '{"value":"icon icon-frontal-taxi-cab","library":"ekiticons"}',
1156
- '{"value":"icon icon-taxi","library":"ekiticons"}',
1157
- '{"value":"icon icon-cosmetics","library":"ekiticons"}',
1158
- '{"value":"icon icon-flower","library":"ekiticons"}',
1159
- '{"value":"icon icon-mirror","library":"ekiticons"}',
1160
- '{"value":"icon icon-itunes","library":"ekiticons"}',
1161
- '{"value":"icon icon-salon","library":"ekiticons"}',
1162
- '{"value":"icon icon-hair-dryer","library":"ekiticons"}',
1163
- '{"value":"icon icon-shampoo","library":"ekiticons"}',
1164
- '{"value":"icon icon-download-button","library":"ekiticons"}',
1165
- '{"value":"icon icon-list","library":"ekiticons"}',
1166
- '{"value":"icon icon-loupe","library":"ekiticons"}',
1167
- '{"value":"icon icon-search","library":"ekiticons"}',
1168
- '{"value":"icon icon-search-1","library":"ekiticons"}',
1169
- '{"value":"icon icon-shopping-cart","library":"ekiticons"}',
1170
- '{"value":"icon icon-menu","library":"ekiticons"}',
1171
- '{"value":"icon icon-menu-1","library":"ekiticons"}',
1172
- '{"value":"icon icon-menu-button-of-three-horizontal-lines","library":"ekiticons"}',
1173
- '{"value":"icon icon-menu-2","library":"ekiticons"}',
1174
- '{"value":"icon icon-menu-3","library":"ekiticons"}',
1175
- '{"value":"icon icon-menu-5","library":"ekiticons"}',
1176
- '{"value":"icon icon-menu-button","library":"ekiticons"}',
1177
- '{"value":"icon icon-list-1","library":"ekiticons"}',
1178
- '{"value":"icon icon-menu-6","library":"ekiticons"}',
1179
- '{"value":"icon icon-menu-7","library":"ekiticons"}',
1180
- '{"value":"icon icon-menu-8","library":"ekiticons"}',
1181
- '{"value":"icon icon-list-2","library":"ekiticons"}',
1182
- '{"value":"icon icon-dot","library":"ekiticons"}',
1183
- '{"value":"icon icon-menu-9","library":"ekiticons"}',
1184
- '{"value":"icon icon-search11","library":"ekiticons"}',
1185
- '{"value":"icon icon-search-minus","library":"ekiticons"}',
1186
- '{"value":"icon icon-search-11","library":"ekiticons"}',
1187
- '{"value":"icon icon-search-2","library":"ekiticons"}',
1188
- '{"value":"icon icon-search-3","library":"ekiticons"}',
1189
- '{"value":"icon icon-magnifying-glass-search","library":"ekiticons"}',
1190
- '{"value":"icon icon-loupe1","library":"ekiticons"}',
1191
- '{"value":"icon icon-speed","library":"ekiticons"}',
1192
- '{"value":"icon icon-search21","library":"ekiticons"}',
1193
- '{"value":"icon icon-search-4","library":"ekiticons"}',
1194
- '{"value":"icon icon-search-5","library":"ekiticons"}',
1195
- '{"value":"icon icon-detective","library":"ekiticons"}',
1196
- '{"value":"icon icon-cart1","library":"ekiticons"}',
1197
- '{"value":"icon icon-buying-on-smartphone","library":"ekiticons"}',
1198
- '{"value":"icon icon-badge","library":"ekiticons"}',
1199
- '{"value":"icon icon-basket1","library":"ekiticons"}',
1200
- '{"value":"icon icon-commerce-and-shopping","library":"ekiticons"}',
1201
- '{"value":"icon icon-comment","library":"ekiticons"}',
1202
- '{"value":"icon icon-comment-1","library":"ekiticons"}',
1203
- '{"value":"icon icon-share","library":"ekiticons"}',
1204
- '{"value":"icon icon-share-1","library":"ekiticons"}',
1205
- '{"value":"icon icon-share-2","library":"ekiticons"}',
1206
- '{"value":"icon icon-share-3","library":"ekiticons"}',
1207
- '{"value":"icon icon-comment1","library":"ekiticons"}',
1208
- '{"value":"icon icon-favorite","library":"ekiticons"}',
1209
- '{"value":"icon icon-retweet","library":"ekiticons"}',
1210
- '{"value":"icon icon-share1","library":"ekiticons"}',
1211
- '{"value":"icon icon-facebook","library":"ekiticons"}',
1212
- '{"value":"icon icon-twitter","library":"ekiticons"}',
1213
- '{"value":"icon icon-linkedin","library":"ekiticons"}',
1214
- '{"value":"icon icon-whatsapp-1","library":"ekiticons"}',
1215
- '{"value":"icon icon-dribbble","library":"ekiticons"}',
1216
- '{"value":"icon icon-facebook-2","library":"ekiticons"}',
1217
- '{"value":"icon icon-twitter1","library":"ekiticons"}',
1218
- '{"value":"icon icon-vk","library":"ekiticons"}',
1219
- '{"value":"icon icon-youtube-v","library":"ekiticons"}',
1220
- '{"value":"icon icon-vimeo","library":"ekiticons"}',
1221
- '{"value":"icon icon-youtube","library":"ekiticons"}',
1222
- '{"value":"icon icon-snapchat-1","library":"ekiticons"}',
1223
- '{"value":"icon icon-behance","library":"ekiticons"}',
1224
- '{"value":"icon icon-github","library":"ekiticons"}',
1225
- '{"value":"icon icon-pinterest","library":"ekiticons"}',
1226
- '{"value":"icon icon-spotify","library":"ekiticons"}',
1227
- '{"value":"icon icon-soundcloud-1","library":"ekiticons"}',
1228
- '{"value":"icon icon-skype-1","library":"ekiticons"}',
1229
- '{"value":"icon icon-rss","library":"ekiticons"}',
1230
- '{"value":"icon icon-reddit-1","library":"ekiticons"}',
1231
- '{"value":"icon icon-dribbble-1","library":"ekiticons"}',
1232
- '{"value":"icon icon-wordpress-1","library":"ekiticons"}',
1233
- '{"value":"icon icon-logo","library":"ekiticons"}',
1234
- '{"value":"icon icon-dropbox-1","library":"ekiticons"}',
1235
- '{"value":"icon icon-blogger-1","library":"ekiticons"}',
1236
- '{"value":"icon icon-photo","library":"ekiticons"}',
1237
- '{"value":"icon icon-hangouts","library":"ekiticons"}',
1238
- '{"value":"icon icon-xing","library":"ekiticons"}',
1239
- '{"value":"icon icon-myspace","library":"ekiticons"}',
1240
- '{"value":"icon icon-flickr-1","library":"ekiticons"}',
1241
- '{"value":"icon icon-envato","library":"ekiticons"}',
1242
- '{"value":"icon icon-picasa-1","library":"ekiticons"}',
1243
- '{"value":"icon icon-wattpad","library":"ekiticons"}',
1244
- '{"value":"icon icon-emoji","library":"ekiticons"}',
1245
- '{"value":"icon icon-deviantart-1","library":"ekiticons"}',
1246
- '{"value":"icon icon-yahoo-1","library":"ekiticons"}',
1247
- '{"value":"icon icon-vine-1","library":"ekiticons"}',
1248
- '{"value":"icon icon-delicious","library":"ekiticons"}',
1249
- '{"value":"icon icon-kickstarter-1","library":"ekiticons"}',
1250
- '{"value":"icon icon-stumbleupon-1","library":"ekiticons"}',
1251
- '{"value":"icon icon-brands-and-logotypes","library":"ekiticons"}',
1252
- '{"value":"icon icon-instagram-1","library":"ekiticons"}',
1253
- '{"value":"icon icon-facebook-1","library":"ekiticons"}',
1254
- '{"value":"icon icon-instagram-2","library":"ekiticons"}',
1255
- '{"value":"icon icon-twitter-1","library":"ekiticons"}',
1256
- '{"value":"icon icon-whatsapp-2","library":"ekiticons"}',
1257
- '{"value":"icon icon-youtube-1","library":"ekiticons"}',
1258
- '{"value":"icon icon-linkedin-1","library":"ekiticons"}',
1259
- '{"value":"icon icon-telegram","library":"ekiticons"}',
1260
- '{"value":"icon icon-github-1","library":"ekiticons"}',
1261
- '{"value":"icon icon-vk-1","library":"ekiticons"}',
1262
- '{"value":"icon icon-pinterest-1","library":"ekiticons"}',
1263
- '{"value":"icon icon-rss-1","library":"ekiticons"}',
1264
- '{"value":"icon icon-twitch","library":"ekiticons"}',
1265
- '{"value":"icon icon-snapchat-2","library":"ekiticons"}',
1266
- '{"value":"icon icon-skype-2","library":"ekiticons"}',
1267
- '{"value":"icon icon-behance-2","library":"ekiticons"}',
1268
- '{"value":"icon icon-spotify-1","library":"ekiticons"}',
1269
- '{"value":"icon icon-periscope","library":"ekiticons"}',
1270
- '{"value":"icon icon-dribbble-2","library":"ekiticons"}',
1271
- '{"value":"icon icon-tumblr-1","library":"ekiticons"}',
1272
- '{"value":"icon icon-soundcloud-2","library":"ekiticons"}',
1273
- '{"value":"icon icon-google-drive-1","library":"ekiticons"}',
1274
- '{"value":"icon icon-dropbox-2","library":"ekiticons"}',
1275
- '{"value":"icon icon-reddit-2","library":"ekiticons"}',
1276
- '{"value":"icon icon-html","library":"ekiticons"}',
1277
- '{"value":"icon icon-vimeo-1","library":"ekiticons"}',
1278
- '{"value":"icon icon-hangout","library":"ekiticons"}',
1279
- '{"value":"icon icon-blogger-2","library":"ekiticons"}',
1280
- '{"value":"icon icon-yahoo-2","library":"ekiticons"}',
1281
- '{"value":"icon icon-path","library":"ekiticons"}',
1282
- '{"value":"icon icon-yelp-1","library":"ekiticons"}',
1283
- '{"value":"icon icon-slideshare","library":"ekiticons"}',
1284
- '{"value":"icon icon-picasa-2","library":"ekiticons"}',
1285
- '{"value":"icon icon-myspace-1","library":"ekiticons"}',
1286
- '{"value":"icon icon-flickr-2","library":"ekiticons"}',
1287
- '{"value":"icon icon-xing-1","library":"ekiticons"}',
1288
- '{"value":"icon icon-envato-1","library":"ekiticons"}',
1289
- '{"value":"icon icon-swarm","library":"ekiticons"}',
1290
- '{"value":"icon icon-wattpad-1","library":"ekiticons"}',
1291
- '{"value":"icon icon-foursquare","library":"ekiticons"}',
1292
- '{"value":"icon icon-deviantart-2","library":"ekiticons"}',
1293
- '{"value":"icon icon-kickstarter-2","library":"ekiticons"}',
1294
- '{"value":"icon icon-delicious-1","library":"ekiticons"}',
1295
- '{"value":"icon icon-vine-2","library":"ekiticons"}',
1296
- '{"value":"icon icon-digg","library":"ekiticons"}',
1297
- '{"value":"icon icon-bebo","library":"ekiticons"}',
1298
- '{"value":"icon icon-stumbleupon-2","library":"ekiticons"}',
1299
- '{"value":"icon icon-forrst","library":"ekiticons"}',
1300
- '{"value":"icon icon-eye3","library":"ekiticons"}',
1301
- '{"value":"icon icon-microscope","library":"ekiticons"}',
1302
- '{"value":"icon icon-Anti-Lock","library":"ekiticons"}',
1303
- '{"value":"icon icon-apartment","library":"ekiticons"}',
1304
- '{"value":"icon icon-app","library":"ekiticons"}',
1305
- '{"value":"icon icon-Aroma","library":"ekiticons"}',
1306
- '{"value":"icon icon-bamboo-Leaf","library":"ekiticons"}',
1307
- '{"value":"icon icon-basket","library":"ekiticons"}',
1308
- '{"value":"icon icon-Battery","library":"ekiticons"}',
1309
- '{"value":"icon icon-Bettery","library":"ekiticons"}',
1310
- '{"value":"icon icon-building","library":"ekiticons"}',
1311
- '{"value":"icon icon-car-2","library":"ekiticons"}',
1312
- '{"value":"icon icon-Car","library":"ekiticons"}',
1313
- '{"value":"icon icon-Child","library":"ekiticons"}',
1314
- '{"value":"icon icon-cityscape","library":"ekiticons"}',
1315
- '{"value":"icon icon-cleaner","library":"ekiticons"}',
1316
- '{"value":"icon icon-Coffee-cup","library":"ekiticons"}',
1317
- '{"value":"icon icon-coins","library":"ekiticons"}',
1318
- '{"value":"icon icon-Computer","library":"ekiticons"}',
1319
- '{"value":"icon icon-Consultancy","library":"ekiticons"}',
1320
- '{"value":"icon icon-cottage","library":"ekiticons"}',
1321
- '{"value":"icon icon-crane","library":"ekiticons"}',
1322
- '{"value":"icon icon-Custom-api","library":"ekiticons"}',
1323
- '{"value":"icon icon-customer-support-2","library":"ekiticons"}',
1324
- '{"value":"icon icon-Design-2","library":"ekiticons"}',
1325
- '{"value":"icon icon-Design-3","library":"ekiticons"}',
1326
- '{"value":"icon icon-design","library":"ekiticons"}',
1327
- '{"value":"icon icon-diamond","library":"ekiticons"}',
1328
- '{"value":"icon icon-diploma","library":"ekiticons"}',
1329
- '{"value":"icon icon-Document-Search","library":"ekiticons"}',
1330
- '{"value":"icon icon-Download","library":"ekiticons"}',
1331
- '{"value":"icon icon-drilling","library":"ekiticons"}',
1332
- '{"value":"icon icon-engine","library":"ekiticons"}',
1333
- '{"value":"icon icon-engineer","library":"ekiticons"}',
1334
- '{"value":"icon icon-envelope","library":"ekiticons"}',
1335
- '{"value":"icon icon-Family","library":"ekiticons"}',
1336
- '{"value":"icon icon-friendship","library":"ekiticons"}',
1337
- '{"value":"icon icon-gift","library":"ekiticons"}',
1338
- '{"value":"icon icon-graph-2","library":"ekiticons"}',
1339
- '{"value":"icon icon-graph","library":"ekiticons"}',
1340
- '{"value":"icon icon-hamburger-2","library":"ekiticons"}',
1341
- '{"value":"icon icon-handshake","library":"ekiticons"}',
1342
- '{"value":"icon icon-Helmet","library":"ekiticons"}',
1343
- '{"value":"icon icon-hot-Stone-2","library":"ekiticons"}',
1344
- '{"value":"icon icon-hot-stone","library":"ekiticons"}',
1345
- '{"value":"icon icon-idea","library":"ekiticons"}',
1346
- '{"value":"icon icon-Leaf","library":"ekiticons"}',
1347
- '{"value":"icon icon-management","library":"ekiticons"}',
1348
- '{"value":"icon icon-Massage-table","library":"ekiticons"}',
1349
- '{"value":"icon icon-Mechanic","library":"ekiticons"}',
1350
- '{"value":"icon icon-Money-2","library":"ekiticons"}',
1351
- '{"value":"icon icon-money-bag","library":"ekiticons"}',
1352
- '{"value":"icon icon-Money","library":"ekiticons"}',
1353
- '{"value":"icon icon-oil-bottle","library":"ekiticons"}',
1354
- '{"value":"icon icon-Physiotherapy","library":"ekiticons"}',
1355
- '{"value":"icon icon-Profile","library":"ekiticons"}',
1356
- '{"value":"icon icon-Rating","library":"ekiticons"}',
1357
- '{"value":"icon icon-right-mark","library":"ekiticons"}',
1358
- '{"value":"icon icon-rings","library":"ekiticons"}',
1359
- '{"value":"icon icon-Safe-house","library":"ekiticons"}',
1360
- '{"value":"icon icon-Scan","library":"ekiticons"}',
1361
- '{"value":"icon icon-social-care","library":"ekiticons"}',
1362
- '{"value":"icon icon-Speed-Clock","library":"ekiticons"}',
1363
- '{"value":"icon icon-stopwatch","library":"ekiticons"}',
1364
- '{"value":"icon icon-Support-2","library":"ekiticons"}',
1365
- '{"value":"icon icon-target-2","library":"ekiticons"}',
1366
- '{"value":"icon icon-Target","library":"ekiticons"}',
1367
- '{"value":"icon icon-tripod","library":"ekiticons"}',
1368
- '{"value":"icon icon-truck","library":"ekiticons"}',
1369
- '{"value":"icon icon-university","library":"ekiticons"}',
1370
- '{"value":"icon icon-User","library":"ekiticons"}',
1371
- '{"value":"icon icon-Web-Portals","library":"ekiticons"}',
1372
- '{"value":"icon icon-window","library":"ekiticons"}',
1373
- '{"value":"icon icon-ek_line_icon","library":"ekiticons"}',
1374
- '{"value":"icon icon-ek_stroke_icon","library":"ekiticons"}',
1375
- '{"value":"icon icon-ekit","library":"ekiticons"}',
1376
- '{"value":"icon icon-elements-kit-logo","library":"ekiticons"}',
1377
- '{"value":"icon icon-degree-image","library":"ekiticons"}',
1378
- '{"value":"icon icon-accordion","library":"ekiticons"}',
1379
- '{"value":"icon icon-animated-flip-box","library":"ekiticons"}',
1380
- '{"value":"icon icon-animated-text","library":"ekiticons"}',
1381
- '{"value":"icon icon-brands","library":"ekiticons"}',
1382
- '{"value":"icon icon-business-hour","library":"ekiticons"}',
1383
- '{"value":"icon icon-button","library":"ekiticons"}',
1384
- '{"value":"icon icon-carousel","library":"ekiticons"}',
1385
- '{"value":"icon icon-Circle-progress","library":"ekiticons"}',
1386
- '{"value":"icon icon-contact-form","library":"ekiticons"}',
1387
- '{"value":"icon icon-countdown-timer","library":"ekiticons"}',
1388
- '{"value":"icon icon-dropbar","library":"ekiticons"}',
1389
- '{"value":"icon icon-faq","library":"ekiticons"}',
1390
- '{"value":"icon icon-full-width-scroll","library":"ekiticons"}',
1391
- '{"value":"icon icon-google-map","library":"ekiticons"}',
1392
- '{"value":"icon icon-heading-style","library":"ekiticons"}',
1393
- '{"value":"icon icon-help-desk","library":"ekiticons"}',
1394
- '{"value":"icon icon-horizontal-timeline","library":"ekiticons"}',
1395
- '{"value":"icon icon-iframe","library":"ekiticons"}',
1396
- '{"value":"icon icon-image-comparison","library":"ekiticons"}',
1397
- '{"value":"icon icon-image-gallery","library":"ekiticons"}',
1398
- '{"value":"icon icon-image-justify","library":"ekiticons"}',
1399
- '{"value":"icon icon-image-magnifier","library":"ekiticons"}',
1400
- '{"value":"icon icon-image-masonry","library":"ekiticons"}',
1401
- '{"value":"icon icon-inline-svg","library":"ekiticons"}',
1402
- '{"value":"icon icon-instagram","library":"ekiticons"}',
1403
- '{"value":"icon icon-listing","library":"ekiticons"}',
1404
- '{"value":"icon icon-music-player","library":"ekiticons"}',
1405
- '{"value":"icon icon-news-ticker","library":"ekiticons"}',
1406
- '{"value":"icon icon-off-canvus-menu","library":"ekiticons"}',
1407
- '{"value":"icon icon-parallax","library":"ekiticons"}',
1408
- '{"value":"icon icon-portfolio","library":"ekiticons"}',
1409
- '{"value":"icon icon-post-banner","library":"ekiticons"}',
1410
- '{"value":"icon icon-post-carousel","library":"ekiticons"}',
1411
- '{"value":"icon icon-post-grid","library":"ekiticons"}',
1412
- '{"value":"icon icon-post-slider","library":"ekiticons"}',
1413
- '{"value":"icon icon-pricing-list","library":"ekiticons"}',
1414
- '{"value":"icon icon-pricing-table","library":"ekiticons"}',
1415
- '{"value":"icon icon-product-featured","library":"ekiticons"}',
1416
- '{"value":"icon icon-product-image","library":"ekiticons"}',
1417
- '{"value":"icon icon-product-recent","library":"ekiticons"}',
1418
- '{"value":"icon icon-product-sale","library":"ekiticons"}',
1419
- '{"value":"icon icon-product-top-rated","library":"ekiticons"}',
1420
- '{"value":"icon icon-product-top-seller","library":"ekiticons"}',
1421
- '{"value":"icon icon-progress-bar","library":"ekiticons"}',
1422
- '{"value":"icon icon-protected-content-v2","library":"ekiticons"}',
1423
- '{"value":"icon icon-protected-content-v3","library":"ekiticons"}',
1424
- '{"value":"icon icon-protected-content","library":"ekiticons"}',
1425
- '{"value":"icon icon-qr_code","library":"ekiticons"}',
1426
- '{"value":"icon icon-scroll-button","library":"ekiticons"}',
1427
- '{"value":"icon icon-search1","library":"ekiticons"}',
1428
- '{"value":"icon icon-service","library":"ekiticons"}',
1429
- '{"value":"icon icon-slider-image","library":"ekiticons"}',
1430
- '{"value":"icon icon-social-share","library":"ekiticons"}',
1431
- '{"value":"icon icon-subscribe","library":"ekiticons"}',
1432
- '{"value":"icon icon-tab","library":"ekiticons"}',
1433
- '{"value":"icon icon-table","library":"ekiticons"}',
1434
- '{"value":"icon icon-team-join","library":"ekiticons"}',
1435
- '{"value":"icon icon-team-member","library":"ekiticons"}',
1436
- '{"value":"icon icon-testimonial-carousel","library":"ekiticons"}',
1437
- '{"value":"icon icon-testimonial-grid","library":"ekiticons"}',
1438
- '{"value":"icon icon-testimonial-quote","library":"ekiticons"}',
1439
- '{"value":"icon icon-testimonial-slider","library":"ekiticons"}',
1440
- '{"value":"icon icon-toggle","library":"ekiticons"}',
1441
- '{"value":"icon icon-user-login","library":"ekiticons"}',
1442
- '{"value":"icon icon-user-registration","library":"ekiticons"}',
1443
- '{"value":"icon icon-vertical-timeline","library":"ekiticons"}',
1444
- '{"value":"icon icon-video-player","library":"ekiticons"}',
1445
- '{"value":"icon icon-weather","library":"ekiticons"}',
1446
- ];
1447
-
1448
- return $original;
1449
- }
1450
-
1451
-
1452
- private function get_replace_string_array() {
1453
-
1454
- $replace = [
1455
- '{"value":"ekiticon ekiticon-home","library":"ekiticons"}',
1456
- '{"value":"ekiticon ekiticon-apartment1","library":"ekiticons"}',
1457
- '{"value":"ekiticon ekiticon-pencil","library":"ekiticons"}',
1458
- '{"value":"ekiticon ekiticon-magic-wand","library":"ekiticons"}',
1459
- '{"value":"ekiticon ekiticon-drop","library":"ekiticons"}',
1460
- '{"value":"ekiticon ekiticon-lighter","library":"ekiticons"}',
1461
- '{"value":"ekiticon ekiticon-poop","library":"ekiticons"}',
1462
- '{"value":"ekiticon ekiticon-sun","library":"ekiticons"}',
1463
- '{"value":"ekiticon ekiticon-moon","library":"ekiticons"}',
1464
- '{"value":"ekiticon ekiticon-cloud1","library":"ekiticons"}',
1465
- '{"value":"ekiticon ekiticon-cloud-upload","library":"ekiticons"}',
1466
- '{"value":"ekiticon ekiticon-cloud-download","library":"ekiticons"}',
1467
- '{"value":"ekiticon ekiticon-cloud-sync","library":"ekiticons"}',
1468
- '{"value":"ekiticon ekiticon-cloud-check","library":"ekiticons"}',
1469
- '{"value":"ekiticon ekiticon-database1","library":"ekiticons"}',
1470
- '{"value":"ekiticon ekiticon-lock","library":"ekiticons"}',
1471
- '{"value":"ekiticon ekiticon-cog","library":"ekiticons"}',
1472
- '{"value":"ekiticon ekiticon-trash","library":"ekiticons"}',
1473
- '{"value":"ekiticon ekiticon-dice","library":"ekiticons"}',
1474
- '{"value":"ekiticon ekiticon-heart1","library":"ekiticons"}',
1475
- '{"value":"ekiticon ekiticon-star1","library":"ekiticons"}',
1476
- '{"value":"ekiticon ekiticon-star-half","library":"ekiticons"}',
1477
- '{"value":"ekiticon ekiticon-star-empty","library":"ekiticons"}',
1478
- '{"value":"ekiticon ekiticon-flag","library":"ekiticons"}',
1479
- '{"value":"ekiticon ekiticon-envelope1","library":"ekiticons"}',
1480
- '{"value":"ekiticon ekiticon-paperclip","library":"ekiticons"}',
1481
- '{"value":"ekiticon ekiticon-inbox","library":"ekiticons"}',
1482
- '{"value":"ekiticon ekiticon-eye","library":"ekiticons"}',
1483
- '{"value":"ekiticon ekiticon-printer","library":"ekiticons"}',
1484
- '{"value":"ekiticon ekiticon-file-empty","library":"ekiticons"}',
1485
- '{"value":"ekiticon ekiticon-file-add","library":"ekiticons"}',
1486
- '{"value":"ekiticon ekiticon-enter","library":"ekiticons"}',
1487
- '{"value":"ekiticon ekiticon-exit","library":"ekiticons"}',
1488
- '{"value":"ekiticon ekiticon-graduation-hat","library":"ekiticons"}',
1489
- '{"value":"ekiticon ekiticon-license","library":"ekiticons"}',
1490
- '{"value":"ekiticon ekiticon-music-note","library":"ekiticons"}',
1491
- '{"value":"ekiticon ekiticon-film-play","library":"ekiticons"}',
1492
- '{"value":"ekiticon ekiticon-camera-video","library":"ekiticons"}',
1493
- '{"value":"ekiticon ekiticon-camera","library":"ekiticons"}',
1494
- '{"value":"ekiticon ekiticon-picture","library":"ekiticons"}',
1495
- '{"value":"ekiticon ekiticon-book","library":"ekiticons"}',
1496
- '{"value":"ekiticon ekiticon-bookmark","library":"ekiticons"}',
1497
- '{"value":"ekiticon ekiticon-user","library":"ekiticons"}',
1498
- '{"value":"ekiticon ekiticon-users","library":"ekiticons"}',
1499
- '{"value":"ekiticon ekiticon-shirt","library":"ekiticons"}',
1500
- '{"value":"ekiticon ekiticon-store","library":"ekiticons"}',
1501
- '{"value":"ekiticon ekiticon-cart2","library":"ekiticons"}',
1502
- '{"value":"ekiticon ekiticon-tag","library":"ekiticons"}',
1503
- '{"value":"ekiticon ekiticon-phone-handset","library":"ekiticons"}',
1504
- '{"value":"ekiticon ekiticon-phone","library":"ekiticons"}',
1505
- '{"value":"ekiticon ekiticon-pushpin","library":"ekiticons"}',
1506
- '{"value":"ekiticon ekiticon-map-marker","library":"ekiticons"}',
1507
- '{"value":"ekiticon ekiticon-map","library":"ekiticons"}',
1508
- '{"value":"ekiticon ekiticon-location","library":"ekiticons"}',
1509
- '{"value":"ekiticon ekiticon-calendar-full","library":"ekiticons"}',
1510
- '{"value":"ekiticon ekiticon-keyboard","library":"ekiticons"}',
1511
- '{"value":"ekiticon ekiticon-spell-check","library":"ekiticons"}',
1512
- '{"value":"ekiticon ekiticon-screen","library":"ekiticons"}',
1513
- '{"value":"ekiticon ekiticon-smartphone","library":"ekiticons"}',
1514
- '{"value":"ekiticon ekiticon-tablet","library":"ekiticons"}',
1515
- '{"value":"ekiticon ekiticon-laptop","library":"ekiticons"}',
1516
- '{"value":"ekiticon ekiticon-laptop-phone","library":"ekiticons"}',
1517
- '{"value":"ekiticon ekiticon-power-switch","library":"ekiticons"}',
1518
- '{"value":"ekiticon ekiticon-bubble","library":"ekiticons"}',
1519
- '{"value":"ekiticon ekiticon-heart-pulse","library":"ekiticons"}',
1520
- '{"value":"ekiticon ekiticon-construction","library":"ekiticons"}',
1521
- '{"value":"ekiticon ekiticon-pie-chart","library":"ekiticons"}',
1522
- '{"value":"ekiticon ekiticon-chart-bars","library":"ekiticons"}',
1523
- '{"value":"ekiticon ekiticon-gift1","library":"ekiticons"}',
1524
- '{"value":"ekiticon ekiticon-diamond1","library":"ekiticons"}',
1525
- '{"value":"ekiticon ekiticon-dinner","library":"ekiticons"}',
1526
- '{"value":"ekiticon ekiticon-coffee-cup","library":"ekiticons"}',
1527
- '{"value":"ekiticon ekiticon-leaf","library":"ekiticons"}',
1528
- '{"value":"ekiticon ekiticon-paw","library":"ekiticons"}',
1529
- '{"value":"ekiticon ekiticon-rocket","library":"ekiticons"}',
1530
- '{"value":"ekiticon ekiticon-briefcase","library":"ekiticons"}',
1531
- '{"value":"ekiticon ekiticon-bus","library":"ekiticons"}',
1532
- '{"value":"ekiticon ekiticon-car1","library":"ekiticons"}',
1533
- '{"value":"ekiticon ekiticon-train","library":"ekiticons"}',
1534
- '{"value":"ekiticon ekiticon-bicycle","library":"ekiticons"}',
1535
- '{"value":"ekiticon ekiticon-wheelchair","library":"ekiticons"}',
1536
- '{"value":"ekiticon ekiticon-select","library":"ekiticons"}',
1537
- '{"value":"ekiticon ekiticon-earth","library":"ekiticons"}',
1538
- '{"value":"ekiticon ekiticon-smile","library":"ekiticons"}',
1539
- '{"value":"ekiticon ekiticon-sad","library":"ekiticons"}',
1540
- '{"value":"ekiticon ekiticon-neutral","library":"ekiticons"}',
1541
- '{"value":"ekiticon ekiticon-mustache","library":"ekiticons"}',
1542
- '{"value":"ekiticon ekiticon-alarm","library":"ekiticons"}',
1543
- '{"value":"ekiticon ekiticon-bullhorn","library":"ekiticons"}',
1544
- '{"value":"ekiticon ekiticon-volume-high","library":"ekiticons"}',
1545
- '{"value":"ekiticon ekiticon-volume-medium","library":"ekiticons"}',
1546
- '{"value":"ekiticon ekiticon-volume-low","library":"ekiticons"}',
1547
- '{"value":"ekiticon ekiticon-volume","library":"ekiticons"}',
1548
- '{"value":"ekiticon ekiticon-mic","library":"ekiticons"}',
1549
- '{"value":"ekiticon ekiticon-hourglass","library":"ekiticons"}',
1550
- '{"value":"ekiticon ekiticon-undo","library":"ekiticons"}',
1551
- '{"value":"ekiticon ekiticon-redo","library":"ekiticons"}',
1552
- '{"value":"ekiticon ekiticon-sync","library":"ekiticons"}',
1553
- '{"value":"ekiticon ekiticon-history","library":"ekiticons"}',
1554
- '{"value":"ekiticon ekiticon-clock1","library":"ekiticons"}',
1555
- '{"value":"ekiticon ekiticon-download","library":"ekiticons"}',
1556
- '{"value":"ekiticon ekiticon-upload","library":"ekiticons"}',
1557
- '{"value":"ekiticon ekiticon-enter-down","library":"ekiticons"}',
1558
- '{"value":"ekiticon ekiticon-exit-up","library":"ekiticons"}',
1559
- '{"value":"ekiticon ekiticon-bug","library":"ekiticons"}',
1560
- '{"value":"ekiticon ekiticon-code","library":"ekiticons"}',
1561
- '{"value":"ekiticon ekiticon-link","library":"ekiticons"}',
1562
- '{"value":"ekiticon ekiticon-unlink","library":"ekiticons"}',
1563
- '{"value":"ekiticon ekiticon-thumbs-up","library":"ekiticons"}',
1564
- '{"value":"ekiticon ekiticon-thumbs-down","library":"ekiticons"}',
1565
- '{"value":"ekiticon ekiticon-magnifier","library":"ekiticons"}',
1566
- '{"value":"ekiticon ekiticon-cross","library":"ekiticons"}',
1567
- '{"value":"ekiticon ekiticon-chevron-up","library":"ekiticons"}',
1568
- '{"value":"ekiticon ekiticon-chevron-down","library":"ekiticons"}',
1569
- '{"value":"ekiticon ekiticon-chevron-left","library":"ekiticons"}',
1570
- '{"value":"ekiticon ekiticon-chevron-right","library":"ekiticons"}',
1571
- '{"value":"ekiticon ekiticon-arrow-up","library":"ekiticons"}',
1572
- '{"value":"ekiticon ekiticon-arrow-down","library":"ekiticons"}',
1573
- '{"value":"ekiticon ekiticon-arrow-left","library":"ekiticons"}',
1574
- '{"value":"ekiticon ekiticon-arrow-right","library":"ekiticons"}',
1575
- '{"value":"ekiticon ekiticon-right-arrow","library":"ekiticons"}',
1576
- '{"value":"ekiticon ekiticon-left-arrow","library":"ekiticons"}',
1577
- '{"value":"ekiticon ekiticon-download-arrow","library":"ekiticons"}',
1578
- '{"value":"ekiticon ekiticon-up-arrow","library":"ekiticons"}',
1579
- '{"value":"ekiticon ekiticon-arrows","library":"ekiticons"}',
1580
- '{"value":"ekiticon ekiticon-double-angle-pointing-to-right","library":"ekiticons"}',
1581
- '{"value":"ekiticon ekiticon-double-left-chevron","library":"ekiticons"}',
1582
- '{"value":"ekiticon ekiticon-left-arrow2","library":"ekiticons"}',
1583
- '{"value":"ekiticon ekiticon-right-arrow2","library":"ekiticons"}',
1584
- '{"value":"ekiticon ekiticon-warning","library":"ekiticons"}',
1585
- '{"value":"ekiticon ekiticon-down-arrow1","library":"ekiticons"}',
1586
- '{"value":"ekiticon ekiticon-up-arrow1","library":"ekiticons"}',
1587
- '{"value":"ekiticon ekiticon-right-arrow1","library":"ekiticons"}',
1588
- '{"value":"ekiticon ekiticon-left-arrows","library":"ekiticons"}',
1589
- '{"value":"ekiticon ekiticon-question-circle","library":"ekiticons"}',
1590
- '{"value":"ekiticon ekiticon-menu-circle","library":"ekiticons"}',
1591
- '{"value":"ekiticon ekiticon-checkmark-circle","library":"ekiticons"}',
1592
- '{"value":"ekiticon ekiticon-cross-circle","library":"ekiticons"}',
1593
- '{"value":"ekiticon ekiticon-plus-circle","library":"ekiticons"}',
1594
- '{"value":"ekiticon ekiticon-move","library":"ekiticons"}',
1595
- '{"value":"ekiticon ekiticon-circle-minus","library":"ekiticons"}',
1596
- '{"value":"ekiticon ekiticon-arrow-up-circle","library":"ekiticons"}',
1597
- '{"value":"ekiticon ekiticon-arrow-down-circle","library":"ekiticons"}',
1598
- '{"value":"ekiticon ekiticon-arrow-left-circle","library":"ekiticons"}',
1599
- '{"value":"ekiticon ekiticon-arrow-right-circle","library":"ekiticons"}',
1600
- '{"value":"ekiticon ekiticon-chevron-up-circle","library":"ekiticons"}',
1601
- '{"value":"ekiticon ekiticon-chevron-down-circle","library":"ekiticons"}',
1602
- '{"value":"ekiticon ekiticon-chevron-left-circle","library":"ekiticons"}',
1603
- '{"value":"ekiticon ekiticon-chevron-right-circle","library":"ekiticons"}',
1604
- '{"value":"ekiticon ekiticon-crop","library":"ekiticons"}',
1605
- '{"value":"ekiticon ekiticon-frame-expand","library":"ekiticons"}',
1606
- '{"value":"ekiticon ekiticon-frame-contract","library":"ekiticons"}',
1607
- '{"value":"ekiticon ekiticon-layers","library":"ekiticons"}',
1608
- '{"value":"ekiticon ekiticon-funnel","library":"ekiticons"}',
1609
- '{"value":"ekiticon ekiticon-text-format","library":"ekiticons"}',
1610
- '{"value":"ekiticon ekiticon-text-size","library":"ekiticons"}',
1611
- '{"value":"ekiticon ekiticon-bold","library":"ekiticons"}',
1612
- '{"value":"ekiticon ekiticon-italic","library":"ekiticons"}',
1613
- '{"value":"ekiticon ekiticon-underline","library":"ekiticons"}',
1614
- '{"value":"ekiticon ekiticon-strikethrough","library":"ekiticons"}',
1615
- '{"value":"ekiticon ekiticon-highlight","library":"ekiticons"}',
1616
- '{"value":"ekiticon ekiticon-text-align-left","library":"ekiticons"}',
1617
- '{"value":"ekiticon ekiticon-text-align-center","library":"ekiticons"}',
1618
- '{"value":"ekiticon ekiticon-text-align-right","library":"ekiticons"}',
1619
- '{"value":"ekiticon ekiticon-text-align-justify","library":"ekiticons"}',
1620
- '{"value":"ekiticon ekiticon-line-spacing","library":"ekiticons"}',
1621
- '{"value":"ekiticon ekiticon-indent-increase","library":"ekiticons"}',
1622
- '{"value":"ekiticon ekiticon-indent-decrease","library":"ekiticons"}',
1623
- '{"value":"ekiticon ekiticon-page-break","library":"ekiticons"}',
1624
- '{"value":"ekiticon ekiticon-hand","library":"ekiticons"}',
1625
- '{"value":"ekiticon ekiticon-pointer-up","library":"ekiticons"}',
1626
- '{"value":"ekiticon ekiticon-pointer-right","library":"ekiticons"}',
1627
- '{"value":"ekiticon ekiticon-pointer-down","library":"ekiticons"}',
1628
- '{"value":"ekiticon ekiticon-pointer-left","library":"ekiticons"}',
1629
- '{"value":"ekiticon ekiticon-burger","library":"ekiticons"}',
1630
- '{"value":"ekiticon ekiticon-cakes","library":"ekiticons"}',
1631
- '{"value":"ekiticon ekiticon-cheese","library":"ekiticons"}',
1632
- '{"value":"ekiticon ekiticon-drink-glass","library":"ekiticons"}',
1633
- '{"value":"ekiticon ekiticon-pizza","library":"ekiticons"}',
1634
- '{"value":"ekiticon ekiticon-vplay","library":"ekiticons"}',
1635
- '{"value":"ekiticon ekiticon-newsletter","library":"ekiticons"}',
1636
- '{"value":"ekiticon ekiticon-coins-2","library":"ekiticons"}',
1637
- '{"value":"ekiticon ekiticon-commerce-2","library":"ekiticons"}',
1638
- '{"value":"ekiticon ekiticon-monitor","library":"ekiticons"}',
1639
- '{"value":"ekiticon ekiticon-business","library":"ekiticons"}',
1640
- '{"value":"ekiticon ekiticon-graphic-2","library":"ekiticons"}',
1641
- '{"value":"ekiticon ekiticon-commerce-1","library":"ekiticons"}',
1642
- '{"value":"ekiticon ekiticon-hammer","library":"ekiticons"}',
1643
- '{"value":"ekiticon ekiticon-justice-1","library":"ekiticons"}',
1644
- '{"value":"ekiticon ekiticon-line","library":"ekiticons"}',
1645
- '{"value":"ekiticon ekiticon-money-3","library":"ekiticons"}',
1646
- '{"value":"ekiticon ekiticon-commerce","library":"ekiticons"}',
1647
- '{"value":"ekiticon ekiticon-agenda","library":"ekiticons"}',
1648
- '{"value":"ekiticon ekiticon-justice","library":"ekiticons"}',
1649
- '{"value":"ekiticon ekiticon-technology","library":"ekiticons"}',
1650
- '{"value":"ekiticon ekiticon-coins-1","library":"ekiticons"}',
1651
- '{"value":"ekiticon ekiticon-bank","library":"ekiticons"}',
1652
- '{"value":"ekiticon ekiticon-calculator","library":"ekiticons"}',
1653
- '{"value":"ekiticon ekiticon-soundcloud","library":"ekiticons"}',
1654
- '{"value":"ekiticon ekiticon-chart2","library":"ekiticons"}',
1655
- '{"value":"ekiticon ekiticon-checked","library":"ekiticons"}',
1656
- '{"value":"ekiticon ekiticon-clock11","library":"ekiticons"}',
1657
- '{"value":"ekiticon ekiticon-comment2","library":"ekiticons"}',
1658
- '{"value":"ekiticon ekiticon-comments","library":"ekiticons"}',
1659
- '{"value":"ekiticon ekiticon-consult","library":"ekiticons"}',
1660
- '{"value":"ekiticon ekiticon-consut2","library":"ekiticons"}',
1661
- '{"value":"ekiticon ekiticon-deal","library":"ekiticons"}',
1662
- '{"value":"ekiticon ekiticon-envelope11","library":"ekiticons"}',
1663
- '{"value":"ekiticon ekiticon-folder","library":"ekiticons"}',
1664
- '{"value":"ekiticon ekiticon-folder2","library":"ekiticons"}',
1665
- '{"value":"ekiticon ekiticon-invest","library":"ekiticons"}',
1666
- '{"value":"ekiticon ekiticon-loan","library":"ekiticons"}',
1667
- '{"value":"ekiticon ekiticon-menu1","library":"ekiticons"}',
1668
- '{"value":"ekiticon ekiticon-list1","library":"ekiticons"}',
1669
- '{"value":"ekiticon ekiticon-map-marker1","library":"ekiticons"}',
1670
- '{"value":"ekiticon ekiticon-mutual-fund","library":"ekiticons"}',
1671
- '{"value":"ekiticon ekiticon-google-plus","library":"ekiticons"}',
1672
- '{"value":"ekiticon ekiticon-phone1","library":"ekiticons"}',
1673
- '{"value":"ekiticon ekiticon-pie-chart1","library":"ekiticons"}',
1674
- '{"value":"ekiticon ekiticon-play","library":"ekiticons"}',
1675
- '{"value":"ekiticon ekiticon-savings","library":"ekiticons"}',
1676
- '{"value":"ekiticon ekiticon-search2","library":"ekiticons"}',
1677
- '{"value":"ekiticon ekiticon-tag1","library":"ekiticons"}',
1678
- '{"value":"ekiticon ekiticon-tags","library":"ekiticons"}',
1679
- '{"value":"ekiticon ekiticon-instagram1","library":"ekiticons"}',
1680
- '{"value":"ekiticon ekiticon-quote","library":"ekiticons"}',
1681
- '{"value":"ekiticon ekiticon-arrow-point-to-down","library":"ekiticons"}',
1682
- '{"value":"ekiticon ekiticon-play-button","library":"ekiticons"}',
1683
- '{"value":"ekiticon ekiticon-minus","library":"ekiticons"}',
1684
- '{"value":"ekiticon ekiticon-plus","library":"ekiticons"}',
1685
- '{"value":"ekiticon ekiticon-tick","library":"ekiticons"}',
1686
- '{"value":"ekiticon ekiticon-check","library":"ekiticons"}',
1687
- '{"value":"ekiticon ekiticon-edit","library":"ekiticons"}',
1688
- '{"value":"ekiticon ekiticon-reply","library":"ekiticons"}',
1689
- '{"value":"ekiticon ekiticon-cogwheel-outline","library":"ekiticons"}',
1690
- '{"value":"ekiticon ekiticon-abacus","library":"ekiticons"}',
1691
- '{"value":"ekiticon ekiticon-abacus1","library":"ekiticons"}',
1692
- '{"value":"ekiticon ekiticon-agenda1","library":"ekiticons"}',
1693
- '{"value":"ekiticon ekiticon-shopping-basket","library":"ekiticons"}',
1694
- '{"value":"ekiticon ekiticon-users1","library":"ekiticons"}',
1695
- '{"value":"ekiticon ekiticon-man","library":"ekiticons"}',
1696
- '{"value":"ekiticon ekiticon-support1","library":"ekiticons"}',
1697
- '{"value":"ekiticon ekiticon-favorites","library":"ekiticons"}',
1698
- '{"value":"ekiticon ekiticon-calendar","library":"ekiticons"}',
1699
- '{"value":"ekiticon ekiticon-paper-plane","library":"ekiticons"}',
1700
- '{"value":"ekiticon ekiticon-placeholder","library":"ekiticons"}',
1701
- '{"value":"ekiticon ekiticon-phone-call","library":"ekiticons"}',
1702
- '{"value":"ekiticon ekiticon-contact","library":"ekiticons"}',
1703
- '{"value":"ekiticon ekiticon-email","library":"ekiticons"}',
1704
- '{"value":"ekiticon ekiticon-internet","library":"ekiticons"}',
1705
- '{"value":"ekiticon ekiticon-quote1","library":"ekiticons"}',
1706
- '{"value":"ekiticon ekiticon-medical","library":"ekiticons"}',
1707
- '{"value":"ekiticon ekiticon-eye1","library":"ekiticons"}',
1708
- '{"value":"ekiticon ekiticon-full-screen","library":"ekiticons"}',
1709
- '{"value":"ekiticon ekiticon-tools","library":"ekiticons"}',
1710
- '{"value":"ekiticon ekiticon-pie-chart2","library":"ekiticons"}',
1711
- '{"value":"ekiticon ekiticon-diamond11","library":"ekiticons"}',
1712
- '{"value":"ekiticon ekiticon-valentines-heart","library":"ekiticons"}',
1713
- '{"value":"ekiticon ekiticon-like","library":"ekiticons"}',
1714
- '{"value":"ekiticon ekiticon-team","library":"ekiticons"}',
1715
- '{"value":"ekiticon ekiticon-tshirt","library":"ekiticons"}',
1716
- '{"value":"ekiticon ekiticon-cancel","library":"ekiticons"}',
1717
- '{"value":"ekiticon ekiticon-drink","library":"ekiticons"}',
1718
- '{"value":"ekiticon ekiticon-home1","library":"ekiticons"}',
1719
- '{"value":"ekiticon ekiticon-music","library":"ekiticons"}',
1720
- '{"value":"ekiticon ekiticon-rich","library":"ekiticons"}',
1721
- '{"value":"ekiticon ekiticon-brush","library":"ekiticons"}',
1722
- '{"value":"ekiticon ekiticon-opposite-way","library":"ekiticons"}',
1723
- '{"value":"ekiticon ekiticon-cloud-computing1","library":"ekiticons"}',
1724
- '{"value":"ekiticon ekiticon-technology-1","library":"ekiticons"}',
1725
- '{"value":"ekiticon ekiticon-rotate","library":"ekiticons"}',
1726
- '{"value":"ekiticon ekiticon-medical1","library":"ekiticons"}',
1727
- '{"value":"ekiticon ekiticon-flash-1","library":"ekiticons"}',
1728
- '{"value":"ekiticon ekiticon-flash","library":"ekiticons"}',
1729
- '{"value":"ekiticon ekiticon-uturn","library":"ekiticons"}',
1730
- '{"value":"ekiticon ekiticon-down-arrow","library":"ekiticons"}',
1731
- '{"value":"ekiticon ekiticon-hours-support","library":"ekiticons"}',
1732
- '{"value":"ekiticon ekiticon-bag","library":"ekiticons"}',
1733
- '{"value":"ekiticon ekiticon-photo-camera","library":"ekiticons"}',
1734
- '{"value":"ekiticon ekiticon-school","library":"ekiticons"}',
1735
- '{"value":"ekiticon ekiticon-settings","library":"ekiticons"}',
1736
- '{"value":"ekiticon ekiticon-smartphone1","library":"ekiticons"}',
1737
- '{"value":"ekiticon ekiticon-technology-11","library":"ekiticons"}',
1738
- '{"value":"ekiticon ekiticon-tool","library":"ekiticons"}',
1739
- '{"value":"ekiticon ekiticon-business1","library":"ekiticons"}',
1740
- '{"value":"ekiticon ekiticon-shuffle-arrow","library":"ekiticons"}',
1741
- '{"value":"ekiticon ekiticon-van-1","library":"ekiticons"}',
1742
- '{"value":"ekiticon ekiticon-van","library":"ekiticons"}',
1743
- '{"value":"ekiticon ekiticon-vegetables","library":"ekiticons"}',
1744
- '{"value":"ekiticon ekiticon-women","library":"ekiticons"}',
1745
- '{"value":"ekiticon ekiticon-vintage","library":"ekiticons"}',
1746
- '{"value":"ekiticon ekiticon-team-1","library":"ekiticons"}',
1747
- '{"value":"ekiticon ekiticon-team1","library":"ekiticons"}',
1748
- '{"value":"ekiticon ekiticon-apple","library":"ekiticons"}',
1749
- '{"value":"ekiticon ekiticon-watch","library":"ekiticons"}',
1750
- '{"value":"ekiticon ekiticon-cogwheel","library":"ekiticons"}',
1751
- '{"value":"ekiticon ekiticon-light-bulb","library":"ekiticons"}',
1752
- '{"value":"ekiticon ekiticon-light-bulb-1","library":"ekiticons"}',
1753
- '{"value":"ekiticon ekiticon-heart-shape-outline","library":"ekiticons"}',
1754
- '{"value":"ekiticon ekiticon-online-shopping-cart","library":"ekiticons"}',
1755
- '{"value":"ekiticon ekiticon-shopping-cart1","library":"ekiticons"}',
1756
- '{"value":"ekiticon ekiticon-star2","library":"ekiticons"}',
1757
- '{"value":"ekiticon ekiticon-star-1","library":"ekiticons"}',
1758
- '{"value":"ekiticon ekiticon-favorite1","library":"ekiticons"}',
1759
- '{"value":"ekiticon ekiticon-agenda2","library":"ekiticons"}',
1760
- '{"value":"ekiticon ekiticon-agenda-1","library":"ekiticons"}',
1761
- '{"value":"ekiticon ekiticon-alarm-clock","library":"ekiticons"}',
1762
- '{"value":"ekiticon ekiticon-alarm-clock1","library":"ekiticons"}',
1763
- '{"value":"ekiticon ekiticon-atomic","library":"ekiticons"}',
1764
- '{"value":"ekiticon ekiticon-auction","library":"ekiticons"}',
1765
- '{"value":"ekiticon ekiticon-balance","library":"ekiticons"}',
1766
- '{"value":"ekiticon ekiticon-balance1","library":"ekiticons"}',
1767
- '{"value":"ekiticon ekiticon-bank1","library":"ekiticons"}',
1768
- '{"value":"ekiticon ekiticon-bar-chart","library":"ekiticons"}',
1769
- '{"value":"ekiticon ekiticon-barrier","library":"ekiticons"}',
1770
- '{"value":"ekiticon ekiticon-battery","library":"ekiticons"}',
1771
- '{"value":"ekiticon ekiticon-battery-1","library":"ekiticons"}',
1772
- '{"value":"ekiticon ekiticon-bell","library":"ekiticons"}',
1773
- '{"value":"ekiticon ekiticon-bluetooth","library":"ekiticons"}',
1774
- '{"value":"ekiticon ekiticon-book1","library":"ekiticons"}',
1775
- '{"value":"ekiticon ekiticon-briefcase1","library":"ekiticons"}',
1776
- '{"value":"ekiticon ekiticon-briefcase-1","library":"ekiticons"}',
1777
- '{"value":"ekiticon ekiticon-briefcase-2","library":"ekiticons"}',
1778
- '{"value":"ekiticon ekiticon-calculator1","library":"ekiticons"}',
1779
- '{"value":"ekiticon ekiticon-calculator2","library":"ekiticons"}',
1780
- '{"value":"ekiticon ekiticon-calculator-1","library":"ekiticons"}',
1781
- '{"value":"ekiticon ekiticon-calendar1","library":"ekiticons"}',
1782
- '{"value":"ekiticon ekiticon-calendar2","library":"ekiticons"}',
1783
- '{"value":"ekiticon ekiticon-calendar-1","library":"ekiticons"}',
1784
- '{"value":"ekiticon ekiticon-calendar-page-empty","library":"ekiticons"}',
1785
- '{"value":"ekiticon ekiticon-calendar3","library":"ekiticons"}',
1786
- '{"value":"ekiticon ekiticon-car11","library":"ekiticons"}',
1787
- '{"value":"ekiticon ekiticon-carrier","library":"ekiticons"}',
1788
- '{"value":"ekiticon ekiticon-cash","library":"ekiticons"}',
1789
- '{"value":"ekiticon ekiticon-chat","library":"ekiticons"}',
1790
- '{"value":"ekiticon ekiticon-chat-1","library":"ekiticons"}',
1791
- '{"value":"ekiticon ekiticon-checked1","library":"ekiticons"}',
1792
- '{"value":"ekiticon ekiticon-clip","library":"ekiticons"}',
1793
- '{"value":"ekiticon ekiticon-clip1","library":"ekiticons"}',
1794
- '{"value":"ekiticon ekiticon-clipboard1","library":"ekiticons"}',
1795
- '{"value":"ekiticon ekiticon-clipboard11","library":"ekiticons"}',
1796
- '{"value":"ekiticon ekiticon-clock2","library":"ekiticons"}',
1797
- '{"value":"ekiticon ekiticon-clock-1","library":"ekiticons"}',
1798
- '{"value":"ekiticon ekiticon-cloud11","library":"ekiticons"}',
1799
- '{"value":"ekiticon ekiticon-cloud-computing11","library":"ekiticons"}',
1800
- '{"value":"ekiticon ekiticon-cloud-computing-1","library":"ekiticons"}',
1801
- '{"value":"ekiticon ekiticon-cogwheel1","library":"ekiticons"}',
1802
- '{"value":"ekiticon ekiticon-coins1","library":"ekiticons"}',
1803
- '{"value":"ekiticon ekiticon-compass","library":"ekiticons"}',
1804
- '{"value":"ekiticon ekiticon-contract","library":"ekiticons"}',
1805
- '{"value":"ekiticon ekiticon-conversation","library":"ekiticons"}',
1806
- '{"value":"ekiticon ekiticon-crane1","library":"ekiticons"}',
1807
- '{"value":"ekiticon ekiticon-crane-2","library":"ekiticons"}',
1808
- '{"value":"ekiticon ekiticon-credit-card","library":"ekiticons"}',
1809
- '{"value":"ekiticon ekiticon-credit-card1","library":"ekiticons"}',
1810
- '{"value":"ekiticon ekiticon-cursor","library":"ekiticons"}',
1811
- '{"value":"ekiticon ekiticon-customer-service","library":"ekiticons"}',
1812
- '{"value":"ekiticon ekiticon-cutlery","library":"ekiticons"}',
1813
- '{"value":"ekiticon ekiticon-dart-board","library":"ekiticons"}',
1814
- '{"value":"ekiticon ekiticon-decision-making","library":"ekiticons"}',
1815
- '{"value":"ekiticon ekiticon-desk-chair","library":"ekiticons"}',
1816
- '{"value":"ekiticon ekiticon-desk-lamp","library":"ekiticons"}',
1817
- '{"value":"ekiticon ekiticon-diamond2","library":"ekiticons"}',
1818
- '{"value":"ekiticon ekiticon-direction","library":"ekiticons"}',
1819
- '{"value":"ekiticon ekiticon-document","library":"ekiticons"}',
1820
- '{"value":"ekiticon ekiticon-dollar-bill","library":"ekiticons"}',
1821
- '{"value":"ekiticon ekiticon-download1","library":"ekiticons"}',
1822
- '{"value":"ekiticon ekiticon-edit1","library":"ekiticons"}',
1823
- '{"value":"ekiticon ekiticon-email1","library":"ekiticons"}',
1824
- '{"value":"ekiticon ekiticon-envelope2","library":"ekiticons"}',
1825
- '{"value":"ekiticon ekiticon-envelope3","library":"ekiticons"}',
1826
- '{"value":"ekiticon ekiticon-eraser","library":"ekiticons"}',
1827
- '{"value":"ekiticon ekiticon-eye2","library":"ekiticons"}',
1828
- '{"value":"ekiticon ekiticon-factory","library":"ekiticons"}',
1829
- '{"value":"ekiticon ekiticon-fast-forward","library":"ekiticons"}',
1830
- '{"value":"ekiticon ekiticon-favorites1","library":"ekiticons"}',
1831
- '{"value":"ekiticon ekiticon-file","library":"ekiticons"}',
1832
- '{"value":"ekiticon ekiticon-file-1","library":"ekiticons"}',
1833
- '{"value":"ekiticon ekiticon-file-2","library":"ekiticons"}',
1834
- '{"value":"ekiticon ekiticon-file-3","library":"ekiticons"}',
1835
- '{"value":"ekiticon ekiticon-filter","library":"ekiticons"}',
1836
- '{"value":"ekiticon ekiticon-finance-book","library":"ekiticons"}',
1837
- '{"value":"ekiticon ekiticon-flag1","library":"ekiticons"}',
1838
- '{"value":"ekiticon ekiticon-folder1","library":"ekiticons"}',
1839
- '{"value":"ekiticon ekiticon-folder-1","library":"ekiticons"}',
1840
- '{"value":"ekiticon ekiticon-folders","library":"ekiticons"}',
1841
- '{"value":"ekiticon ekiticon-folders1","library":"ekiticons"}',
1842
- '{"value":"ekiticon ekiticon-gamepad","library":"ekiticons"}',
1843
- '{"value":"ekiticon ekiticon-gift11","library":"ekiticons"}',
1844
- '{"value":"ekiticon ekiticon-growth","library":"ekiticons"}',
1845
- '{"value":"ekiticon ekiticon-heart11","library":"ekiticons"}',
1846
- '{"value":"ekiticon ekiticon-home2","library":"ekiticons"}',
1847
- '{"value":"ekiticon ekiticon-house","library":"ekiticons"}',
1848
- '{"value":"ekiticon ekiticon-house-1","library":"ekiticons"}',
1849
- '{"value":"ekiticon ekiticon-house-2","library":"ekiticons"}',
1850
- '{"value":"ekiticon ekiticon-id-card","library":"ekiticons"}',
1851
- '{"value":"ekiticon ekiticon-id-card1","library":"ekiticons"}',
1852
- '{"value":"ekiticon ekiticon-id-card-1","library":"ekiticons"}',
1853
- '{"value":"ekiticon ekiticon-idea1","library":"ekiticons"}',
1854
- '{"value":"ekiticon ekiticon-image","library":"ekiticons"}',
1855
- '{"value":"ekiticon ekiticon-improvement","library":"ekiticons"}',
1856
- '{"value":"ekiticon ekiticon-inbox1","library":"ekiticons"}',
1857
- '{"value":"ekiticon ekiticon-information","library":"ekiticons"}',
1858
- '{"value":"ekiticon ekiticon-key","library":"ekiticons"}',
1859
- '{"value":"ekiticon ekiticon-key1","library":"ekiticons"}',
1860
- '{"value":"ekiticon ekiticon-laptop1","library":"ekiticons"}',
1861
- '{"value":"ekiticon ekiticon-layers1","library":"ekiticons"}',
1862
- '{"value":"ekiticon ekiticon-light-bulb1","library":"ekiticons"}',
1863
- '{"value":"ekiticon ekiticon-like1","library":"ekiticons"}',
1864
- '{"value":"ekiticon ekiticon-line-chart1","library":"ekiticons"}',
1865
- '{"value":"ekiticon ekiticon-mail","library":"ekiticons"}',
1866
- '{"value":"ekiticon ekiticon-manager","library":"ekiticons"}',
1867
- '{"value":"ekiticon ekiticon-map1","library":"ekiticons"}',
1868
- '{"value":"ekiticon ekiticon-medal1","library":"ekiticons"}',
1869
- '{"value":"ekiticon ekiticon-megaphone","library":"ekiticons"}',
1870
- '{"value":"ekiticon ekiticon-megaphone1","library":"ekiticons"}',
1871
- '{"value":"ekiticon ekiticon-message","library":"ekiticons"}',
1872
- '{"value":"ekiticon ekiticon-message-1","library":"ekiticons"}',
1873
- '{"value":"ekiticon ekiticon-message-2","library":"ekiticons"}',
1874
- '{"value":"ekiticon ekiticon-microphone","library":"ekiticons"}',
1875
- '{"value":"ekiticon ekiticon-money1","library":"ekiticons"}',
1876
- '{"value":"ekiticon ekiticon-money-bag1","library":"ekiticons"}',
1877
- '{"value":"ekiticon ekiticon-monitor1","library":"ekiticons"}',
1878
- '{"value":"ekiticon ekiticon-music1","library":"ekiticons"}',
1879
- '{"value":"ekiticon ekiticon-next","library":"ekiticons"}',
1880
- '{"value":"ekiticon ekiticon-open-book1","library":"ekiticons"}',
1881
- '{"value":"ekiticon ekiticon-padlock","library":"ekiticons"}',
1882
- '{"value":"ekiticon ekiticon-padlock-1","library":"ekiticons"}',
1883
- '{"value":"ekiticon ekiticon-paint-brush","library":"ekiticons"}',
1884
- '{"value":"ekiticon ekiticon-pause","library":"ekiticons"}',
1885
- '{"value":"ekiticon ekiticon-pen","library":"ekiticons"}',
1886
- '{"value":"ekiticon ekiticon-pencil1","library":"ekiticons"}',
1887
- '{"value":"ekiticon ekiticon-percentage","library":"ekiticons"}',
1888
- '{"value":"ekiticon ekiticon-phone-call1","library":"ekiticons"}',
1889
- '{"value":"ekiticon ekiticon-phone-call2","library":"ekiticons"}',
1890
- '{"value":"ekiticon ekiticon-photo-camera1","library":"ekiticons"}',
1891
- '{"value":"ekiticon ekiticon-pie-chart3","library":"ekiticons"}',
1892
- '{"value":"ekiticon ekiticon-pipe","library":"ekiticons"}',
1893
- '{"value":"ekiticon ekiticon-placeholder1","library":"ekiticons"}',
1894
- '{"value":"ekiticon ekiticon-placeholder2","library":"ekiticons"}',
1895
- '{"value":"ekiticon ekiticon-planet-earth","library":"ekiticons"}',
1896
- '{"value":"ekiticon ekiticon-play-button1","library":"ekiticons"}',
1897
- '{"value":"ekiticon ekiticon-power-button","library":"ekiticons"}',
1898
- '{"value":"ekiticon ekiticon-presentation","library":"ekiticons"}',
1899
- '{"value":"ekiticon ekiticon-presentation1","library":"ekiticons"}',
1900
- '{"value":"ekiticon ekiticon-printer1","library":"ekiticons"}',
1901
- '{"value":"ekiticon ekiticon-push-pin","library":"ekiticons"}',
1902
- '{"value":"ekiticon ekiticon-push-pin1","library":"ekiticons"}',
1903
- '{"value":"ekiticon ekiticon-refresh","library":"ekiticons"}',
1904
- '{"value":"ekiticon ekiticon-reload","library":"ekiticons"}',
1905
- '{"value":"ekiticon ekiticon-return","library":"ekiticons"}',
1906
- '{"value":"ekiticon ekiticon-rocket-ship","library":"ekiticons"}',
1907
- '{"value":"ekiticon ekiticon-rss1","library":"ekiticons"}',
1908
- '{"value":"ekiticon ekiticon-safebox","library":"ekiticons"}',
1909
- '{"value":"ekiticon ekiticon-safebox1","library":"ekiticons"}',
1910
- '{"value":"ekiticon ekiticon-settings1","library":"ekiticons"}',
1911
- '{"value":"ekiticon ekiticon-settings-2","library":"ekiticons"}',
1912
- '{"value":"ekiticon ekiticon-sewing-machine","library":"ekiticons"}',
1913
- '{"value":"ekiticon ekiticon-share2","library":"ekiticons"}',
1914
- '{"value":"ekiticon ekiticon-shield1","library":"ekiticons"}',
1915
- '{"value":"ekiticon ekiticon-shield11","library":"ekiticons"}',
1916
- '{"value":"ekiticon ekiticon-shopping","library":"ekiticons"}',
1917
- '{"value":"ekiticon ekiticon-shopping-bag","library":"ekiticons"}',
1918
- '{"value":"ekiticon ekiticon-shopping-bag-1","library":"ekiticons"}',
1919
- '{"value":"ekiticon ekiticon-shopping-bag-2","library":"ekiticons"}',
1920
- '{"value":"ekiticon ekiticon-shopping-cart11","library":"ekiticons"}',
1921
- '{"value":"ekiticon ekiticon-shopping-cart2","library":"ekiticons"}',
1922
- '{"value":"ekiticon ekiticon-shopping-cart-1","library":"ekiticons"}',
1923
- '{"value":"ekiticon ekiticon-shopping-cart-2","library":"ekiticons"}',
1924
- '{"value":"ekiticon ekiticon-shopping-cart-3","library":"ekiticons"}',
1925
- '{"value":"ekiticon ekiticon-smartphone2","library":"ekiticons"}',
1926
- '{"value":"ekiticon ekiticon-speaker","library":"ekiticons"}',
1927
- '{"value":"ekiticon ekiticon-speakers","library":"ekiticons"}',
1928
- '{"value":"ekiticon ekiticon-stats","library":"ekiticons"}',
1929
- '{"value":"ekiticon ekiticon-stats-1","library":"ekiticons"}',
1930
- '{"value":"ekiticon ekiticon-stats-2","library":"ekiticons"}',
1931
- '{"value":"ekiticon ekiticon-stats-3","library":"ekiticons"}',
1932
- '{"value":"ekiticon ekiticon-stats-4","library":"ekiticons"}',
1933
- '{"value":"ekiticon ekiticon-stats-5","library":"ekiticons"}',
1934
- '{"value":"ekiticon ekiticon-stats-6","library":"ekiticons"}',
1935
- '{"value":"ekiticon ekiticon-sticky-note","library":"ekiticons"}',
1936
- '{"value":"ekiticon ekiticon-store1","library":"ekiticons"}',
1937
- '{"value":"ekiticon ekiticon-store-1","library":"ekiticons"}',
1938
- '{"value":"ekiticon ekiticon-suitcase","library":"ekiticons"}',
1939
- '{"value":"ekiticon ekiticon-suitcase-1","library":"ekiticons"}',
1940
- '{"value":"ekiticon ekiticon-tag2","library":"ekiticons"}',
1941
- '{"value":"ekiticon ekiticon-target","library":"ekiticons"}',
1942
- '{"value":"ekiticon ekiticon-team2","library":"ekiticons"}',
1943
- '{"value":"ekiticon ekiticon-tie","library":"ekiticons"}',
1944
- '{"value":"ekiticon ekiticon-trash1","library":"ekiticons"}',
1945
- '{"value":"ekiticon ekiticon-trolley","library":"ekiticons"}',
1946
- '{"value":"ekiticon ekiticon-trolley-1","library":"ekiticons"}',
1947
- '{"value":"ekiticon ekiticon-trolley-2","library":"ekiticons"}',
1948
- '{"value":"ekiticon ekiticon-trophy1","library":"ekiticons"}',
1949
- '{"value":"ekiticon ekiticon-truck1","library":"ekiticons"}',
1950
- '{"value":"ekiticon ekiticon-truck-1","library":"ekiticons"}',
1951
- '{"value":"ekiticon ekiticon-truck-2","library":"ekiticons"}',
1952
- '{"value":"ekiticon ekiticon-umbrella","library":"ekiticons"}',
1953
- '{"value":"ekiticon ekiticon-upload1","library":"ekiticons"}',
1954
- '{"value":"ekiticon ekiticon-user1","library":"ekiticons"}',
1955
- '{"value":"ekiticon ekiticon-user-1","library":"ekiticons"}',
1956
- '{"value":"ekiticon ekiticon-user-2","library":"ekiticons"}',
1957
- '{"value":"ekiticon ekiticon-user-3","library":"ekiticons"}',
1958
- '{"value":"ekiticon ekiticon-users2","library":"ekiticons"}',
1959
- '{"value":"ekiticon ekiticon-video-camera","library":"ekiticons"}',
1960
- '{"value":"ekiticon ekiticon-voucher","library":"ekiticons"}',
1961
- '{"value":"ekiticon ekiticon-voucher-1","library":"ekiticons"}',
1962
- '{"value":"ekiticon ekiticon-voucher-2","library":"ekiticons"}',
1963
- '{"value":"ekiticon ekiticon-voucher-3","library":"ekiticons"}',
1964
- '{"value":"ekiticon ekiticon-voucher-4","library":"ekiticons"}',
1965
- '{"value":"ekiticon ekiticon-wallet","library":"ekiticons"}',
1966
- '{"value":"ekiticon ekiticon-wallet1","library":"ekiticons"}',
1967
- '{"value":"ekiticon ekiticon-wifi","library":"ekiticons"}',
1968
- '{"value":"ekiticon ekiticon-worker","library":"ekiticons"}',
1969
- '{"value":"ekiticon ekiticon-zoom-in","library":"ekiticons"}',
1970
- '{"value":"ekiticon ekiticon-zoom-out","library":"ekiticons"}',
1971
- '{"value":"ekiticon ekiticon-burger-menu","library":"ekiticons"}',
1972
- '{"value":"ekiticon ekiticon-squares","library":"ekiticons"}',
1973
- '{"value":"ekiticon ekiticon-options","library":"ekiticons"}',
1974
- '{"value":"ekiticon ekiticon-apps","library":"ekiticons"}',
1975
- '{"value":"ekiticon ekiticon-menu-11","library":"ekiticons"}',
1976
- '{"value":"ekiticon ekiticon-menu11","library":"ekiticons"}',
1977
- '{"value":"ekiticon ekiticon-back_up","library":"ekiticons"}',
1978
- '{"value":"ekiticon ekiticon-cart11","library":"ekiticons"}',
1979
- '{"value":"ekiticon ekiticon-checkmark","library":"ekiticons"}',
1980
- '{"value":"ekiticon ekiticon-dollar","library":"ekiticons"}',
1981
- '{"value":"ekiticon ekiticon-domian","library":"ekiticons"}',
1982
- '{"value":"ekiticon ekiticon-hosting1","library":"ekiticons"}',
1983
- '{"value":"ekiticon ekiticon-key2","library":"ekiticons"}',
1984
- '{"value":"ekiticon ekiticon-migration","library":"ekiticons"}',
1985
- '{"value":"ekiticon ekiticon-play1","library":"ekiticons"}',
1986
- '{"value":"ekiticon ekiticon-quote2","library":"ekiticons"}',
1987
- '{"value":"ekiticon ekiticon-api_setup","library":"ekiticons"}',
1988
- '{"value":"ekiticon ekiticon-coin","library":"ekiticons"}',
1989
- '{"value":"ekiticon ekiticon-hand_shake","library":"ekiticons"}',
1990
- '{"value":"ekiticon ekiticon-idea_generate","library":"ekiticons"}',
1991
- '{"value":"ekiticon ekiticon-page_search","library":"ekiticons"}',
1992
- '{"value":"ekiticon ekiticon-pen_shape","library":"ekiticons"}',
1993
- '{"value":"ekiticon ekiticon-pencil_art","library":"ekiticons"}',
1994
- '{"value":"ekiticon ekiticon-review","library":"ekiticons"}',
1995
- '{"value":"ekiticon ekiticon-star","library":"ekiticons"}',
1996
- '{"value":"ekiticon ekiticon-timing","library":"ekiticons"}',
1997
- '{"value":"ekiticon ekiticon-trophy","library":"ekiticons"}',
1998
- '{"value":"ekiticon ekiticon-communication","library":"ekiticons"}',
1999
- '{"value":"ekiticon ekiticon-money-bag2","library":"ekiticons"}',
2000
- '{"value":"ekiticon ekiticon-dentist","library":"ekiticons"}',
2001
- '{"value":"ekiticon ekiticon-bill","library":"ekiticons"}',
2002
- '{"value":"ekiticon ekiticon-label","library":"ekiticons"}',
2003
- '{"value":"ekiticon ekiticon-money","library":"ekiticons"}',
2004
- '{"value":"ekiticon ekiticon-shield","library":"ekiticons"}',
2005
- '{"value":"ekiticon ekiticon-support","library":"ekiticons"}',
2006
- '{"value":"ekiticon ekiticon-one","library":"ekiticons"}',
2007
- '{"value":"ekiticon ekiticon-clock","library":"ekiticons"}',
2008
- '{"value":"ekiticon ekiticon-cart","library":"ekiticons"}',
2009
- '{"value":"ekiticon ekiticon-globe","library":"ekiticons"}',
2010
- '{"value":"ekiticon ekiticon-tooth","library":"ekiticons"}',
2011
- '{"value":"ekiticon ekiticon-tooth-1","library":"ekiticons"}',
2012
- '{"value":"ekiticon ekiticon-tooth-2","library":"ekiticons"}',
2013
- '{"value":"ekiticon ekiticon-brain","library":"ekiticons"}',
2014
- '{"value":"ekiticon ekiticon-view","library":"ekiticons"}',
2015
- '{"value":"ekiticon ekiticon-doctor","library":"ekiticons"}',
2016
- '{"value":"ekiticon ekiticon-heart","library":"ekiticons"}',
2017
- '{"value":"ekiticon ekiticon-medicine","library":"ekiticons"}',
2018
- '{"value":"ekiticon ekiticon-stethoscope","library":"ekiticons"}',
2019
- '{"value":"ekiticon ekiticon-hospital","library":"ekiticons"}',
2020
- '{"value":"ekiticon ekiticon-clipboard","library":"ekiticons"}',
2021
- '{"value":"ekiticon ekiticon-medicine-1","library":"ekiticons"}',
2022
- '{"value":"ekiticon ekiticon-hospital-1","library":"ekiticons"}',
2023
- '{"value":"ekiticon ekiticon-customer-support","library":"ekiticons"}',
2024
- '{"value":"ekiticon ekiticon-brickwall","library":"ekiticons"}',
2025
- '{"value":"ekiticon ekiticon-crane2","library":"ekiticons"}',
2026
- '{"value":"ekiticon ekiticon-valve","library":"ekiticons"}',
2027
- '{"value":"ekiticon ekiticon-safety","library":"ekiticons"}',
2028
- '{"value":"ekiticon ekiticon-energy-saving","library":"ekiticons"}',
2029
- '{"value":"ekiticon ekiticon-paint-roller","library":"ekiticons"}',
2030
- '{"value":"ekiticon ekiticon-paint-brushes","library":"ekiticons"}',
2031
- '{"value":"ekiticon ekiticon-construction-tool-vehicle-with-crane-lifting-materials","library":"ekiticons"}',
2032
- '{"value":"ekiticon ekiticon-trowel","library":"ekiticons"}',
2033
- '{"value":"ekiticon ekiticon-bucket","library":"ekiticons"}',
2034
- '{"value":"ekiticon ekiticon-smart","library":"ekiticons"}',
2035
- '{"value":"ekiticon ekiticon-repair","library":"ekiticons"}',
2036
- '{"value":"ekiticon ekiticon-saw","library":"ekiticons"}',
2037
- '{"value":"ekiticon ekiticon-cutter","library":"ekiticons"}',
2038
- '{"value":"ekiticon ekiticon-plier","library":"ekiticons"}',
2039
- '{"value":"ekiticon ekiticon-drill","library":"ekiticons"}',
2040
- '{"value":"ekiticon ekiticon-save-money","library":"ekiticons"}',
2041
- '{"value":"ekiticon ekiticon-planting","library":"ekiticons"}',
2042
- '{"value":"ekiticon ekiticon-line-chart","library":"ekiticons"}',
2043
- '{"value":"ekiticon ekiticon-open-book","library":"ekiticons"}',
2044
- '{"value":"ekiticon ekiticon-money-bag3","library":"ekiticons"}',
2045
- '{"value":"ekiticon ekiticon-server","library":"ekiticons"}',
2046
- '{"value":"ekiticon ekiticon-server-1","library":"ekiticons"}',
2047
- '{"value":"ekiticon ekiticon-server-2","library":"ekiticons"}',
2048
- '{"value":"ekiticon ekiticon-cloud-computing","library":"ekiticons"}',
2049
- '{"value":"ekiticon ekiticon-cloud","library":"ekiticons"}',
2050
- '{"value":"ekiticon ekiticon-database","library":"ekiticons"}',
2051
- '{"value":"ekiticon ekiticon-computer","library":"ekiticons"}',
2052
- '{"value":"ekiticon ekiticon-server-3","library":"ekiticons"}',
2053
- '{"value":"ekiticon ekiticon-server-4","library":"ekiticons"}',
2054
- '{"value":"ekiticon ekiticon-server-5","library":"ekiticons"}',
2055
- '{"value":"ekiticon ekiticon-server-6","library":"ekiticons"}',
2056
- '{"value":"ekiticon ekiticon-server-7","library":"ekiticons"}',
2057
- '{"value":"ekiticon ekiticon-cloud-1","library":"ekiticons"}',
2058
- '{"value":"ekiticon ekiticon-server-8","library":"ekiticons"}',
2059
- '{"value":"ekiticon ekiticon-business-and-finance","library":"ekiticons"}',
2060
- '{"value":"ekiticon ekiticon-cloud-2","library":"ekiticons"}',
2061
- '{"value":"ekiticon ekiticon-server-9","library":"ekiticons"}',
2062
- '{"value":"ekiticon ekiticon-hosting","library":"ekiticons"}',
2063
- '{"value":"ekiticon ekiticon-car","library":"ekiticons"}',
2064
- '{"value":"ekiticon ekiticon-car-frontal-view","library":"ekiticons"}',
2065
- '{"value":"ekiticon ekiticon-car-1","library":"ekiticons"}',
2066
- '{"value":"ekiticon ekiticon-racing","library":"ekiticons"}',
2067
- '{"value":"ekiticon ekiticon-car-wheel","library":"ekiticons"}',
2068
- '{"value":"ekiticon ekiticon-steering-wheel","library":"ekiticons"}',
2069
- '{"value":"ekiticon ekiticon-frontal-taxi-cab","library":"ekiticons"}',
2070
- '{"value":"ekiticon ekiticon-taxi","library":"ekiticons"}',
2071
- '{"value":"ekiticon ekiticon-cosmetics","library":"ekiticons"}',
2072
- '{"value":"ekiticon ekiticon-flower","library":"ekiticons"}',
2073
- '{"value":"ekiticon ekiticon-mirror","library":"ekiticons"}',
2074
- '{"value":"ekiticon ekiticon-itunes","library":"ekiticons"}',
2075
- '{"value":"ekiticon ekiticon-salon","library":"ekiticons"}',
2076
- '{"value":"ekiticon ekiticon-hair-dryer","library":"ekiticons"}',
2077
- '{"value":"ekiticon ekiticon-shampoo","library":"ekiticons"}',
2078
- '{"value":"ekiticon ekiticon-download-button","library":"ekiticons"}',
2079
- '{"value":"ekiticon ekiticon-list","library":"ekiticons"}',
2080
- '{"value":"ekiticon ekiticon-loupe","library":"ekiticons"}',
2081
- '{"value":"ekiticon ekiticon-search","library":"ekiticons"}',
2082
- '{"value":"ekiticon ekiticon-search-1","library":"ekiticons"}',
2083
- '{"value":"ekiticon ekiticon-shopping-cart","library":"ekiticons"}',
2084
- '{"value":"ekiticon ekiticon-menu","library":"ekiticons"}',
2085
- '{"value":"ekiticon ekiticon-menu-1","library":"ekiticons"}',
2086
- '{"value":"ekiticon ekiticon-menu-button-of-three-horizontal-lines","library":"ekiticons"}',
2087
- '{"value":"ekiticon ekiticon-menu-2","library":"ekiticons"}',
2088
- '{"value":"ekiticon ekiticon-menu-3","library":"ekiticons"}',
2089
- '{"value":"ekiticon ekiticon-menu-5","library":"ekiticons"}',
2090
- '{"value":"ekiticon ekiticon-menu-button","library":"ekiticons"}',
2091
- '{"value":"ekiticon ekiticon-list-1","library":"ekiticons"}',
2092
- '{"value":"ekiticon ekiticon-menu-6","library":"ekiticons"}',
2093
- '{"value":"ekiticon ekiticon-menu-7","library":"ekiticons"}',
2094
- '{"value":"ekiticon ekiticon-menu-8","library":"ekiticons"}',
2095
- '{"value":"ekiticon ekiticon-list-2","library":"ekiticons"}',
2096
- '{"value":"ekiticon ekiticon-dot","library":"ekiticons"}',
2097
- '{"value":"ekiticon ekiticon-menu-9","library":"ekiticons"}',
2098
- '{"value":"ekiticon ekiticon-search11","library":"ekiticons"}',
2099
- '{"value":"ekiticon ekiticon-search-minus","library":"ekiticons"}',
2100
- '{"value":"ekiticon ekiticon-search-11","library":"ekiticons"}',
2101
- '{"value":"ekiticon ekiticon-search-2","library":"ekiticons"}',
2102
- '{"value":"ekiticon ekiticon-search-3","library":"ekiticons"}',
2103
- '{"value":"ekiticon ekiticon-magnifying-glass-search","library":"ekiticons"}',
2104
- '{"value":"ekiticon ekiticon-loupe1","library":"ekiticons"}',
2105
- '{"value":"ekiticon ekiticon-speed","library":"ekiticons"}',
2106
- '{"value":"ekiticon ekiticon-search21","library":"ekiticons"}',
2107
- '{"value":"ekiticon ekiticon-search-4","library":"ekiticons"}',
2108
- '{"value":"ekiticon ekiticon-search-5","library":"ekiticons"}',
2109
- '{"value":"ekiticon ekiticon-detective","library":"ekiticons"}',
2110
- '{"value":"ekiticon ekiticon-cart1","library":"ekiticons"}',
2111
- '{"value":"ekiticon ekiticon-buying-on-smartphone","library":"ekiticons"}',
2112
- '{"value":"ekiticon ekiticon-badge","library":"ekiticons"}',
2113
- '{"value":"ekiticon ekiticon-basket1","library":"ekiticons"}',
2114
- '{"value":"ekiticon ekiticon-commerce-and-shopping","library":"ekiticons"}',
2115
- '{"value":"ekiticon ekiticon-comment","library":"ekiticons"}',
2116
- '{"value":"ekiticon ekiticon-comment-1","library":"ekiticons"}',
2117
- '{"value":"ekiticon ekiticon-share","library":"ekiticons"}',
2118
- '{"value":"ekiticon ekiticon-share-1","library":"ekiticons"}',
2119
- '{"value":"ekiticon ekiticon-share-2","library":"ekiticons"}',
2120
- '{"value":"ekiticon ekiticon-share-3","library":"ekiticons"}',
2121
- '{"value":"ekiticon ekiticon-comment1","library":"ekiticons"}',
2122
- '{"value":"ekiticon ekiticon-favorite","library":"ekiticons"}',
2123
- '{"value":"ekiticon ekiticon-retweet","library":"ekiticons"}',
2124
- '{"value":"ekiticon ekiticon-share1","library":"ekiticons"}',
2125
- '{"value":"ekiticon ekiticon-facebook","library":"ekiticons"}',
2126
- '{"value":"ekiticon ekiticon-twitter","library":"ekiticons"}',
2127
- '{"value":"ekiticon ekiticon-linkedin","library":"ekiticons"}',
2128
- '{"value":"ekiticon ekiticon-whatsapp-1","library":"ekiticons"}',
2129
- '{"value":"ekiticon ekiticon-dribbble","library":"ekiticons"}',
2130
- '{"value":"ekiticon ekiticon-facebook-2","library":"ekiticons"}',
2131
- '{"value":"ekiticon ekiticon-twitter1","library":"ekiticons"}',
2132
- '{"value":"ekiticon ekiticon-vk","library":"ekiticons"}',
2133
- '{"value":"ekiticon ekiticon-youtube-v","library":"ekiticons"}',
2134
- '{"value":"ekiticon ekiticon-vimeo","library":"ekiticons"}',
2135
- '{"value":"ekiticon ekiticon-youtube","library":"ekiticons"}',
2136
- '{"value":"ekiticon ekiticon-snapchat-1","library":"ekiticons"}',
2137
- '{"value":"ekiticon ekiticon-behance","library":"ekiticons"}',
2138
- '{"value":"ekiticon ekiticon-github","library":"ekiticons"}',
2139
- '{"value":"ekiticon ekiticon-pinterest","library":"ekiticons"}',
2140
- '{"value":"ekiticon ekiticon-spotify","library":"ekiticons"}',
2141
- '{"value":"ekiticon ekiticon-soundcloud-1","library":"ekiticons"}',
2142
- '{"value":"ekiticon ekiticon-skype-1","library":"ekiticons"}',
2143
- '{"value":"ekiticon ekiticon-rss","library":"ekiticons"}',
2144
- '{"value":"ekiticon ekiticon-reddit-1","library":"ekiticons"}',
2145
- '{"value":"ekiticon ekiticon-dribbble-1","library":"ekiticons"}',
2146
- '{"value":"ekiticon ekiticon-wordpress-1","library":"ekiticons"}',
2147
- '{"value":"ekiticon ekiticon-logo","library":"ekiticons"}',
2148
- '{"value":"ekiticon ekiticon-dropbox-1","library":"ekiticons"}',
2149
- '{"value":"ekiticon ekiticon-blogger-1","library":"ekiticons"}',
2150
- '{"value":"ekiticon ekiticon-photo","library":"ekiticons"}',
2151
- '{"value":"ekiticon ekiticon-hangouts","library":"ekiticons"}',
2152
- '{"value":"ekiticon ekiticon-xing","library":"ekiticons"}',
2153
- '{"value":"ekiticon ekiticon-myspace","library":"ekiticons"}',
2154
- '{"value":"ekiticon ekiticon-flickr-1","library":"ekiticons"}',
2155
- '{"value":"ekiticon ekiticon-envato","library":"ekiticons"}',
2156
- '{"value":"ekiticon ekiticon-picasa-1","library":"ekiticons"}',
2157
- '{"value":"ekiticon ekiticon-wattpad","library":"ekiticons"}',
2158
- '{"value":"ekiticon ekiticon-emoji","library":"ekiticons"}',
2159
- '{"value":"ekiticon ekiticon-deviantart-1","library":"ekiticons"}',
2160
- '{"value":"ekiticon ekiticon-yahoo-1","library":"ekiticons"}',
2161
- '{"value":"ekiticon ekiticon-vine-1","library":"ekiticons"}',
2162
- '{"value":"ekiticon ekiticon-delicious","library":"ekiticons"}',
2163
- '{"value":"ekiticon ekiticon-kickstarter-1","library":"ekiticons"}',
2164
- '{"value":"ekiticon ekiticon-stumbleupon-1","library":"ekiticons"}',
2165
- '{"value":"ekiticon ekiticon-brands-and-logotypes","library":"ekiticons"}',
2166
- '{"value":"ekiticon ekiticon-instagram-1","library":"ekiticons"}',
2167
- '{"value":"ekiticon ekiticon-facebook-1","library":"ekiticons"}',
2168
- '{"value":"ekiticon ekiticon-instagram-2","library":"ekiticons"}',
2169
- '{"value":"ekiticon ekiticon-twitter-1","library":"ekiticons"}',
2170
- '{"value":"ekiticon ekiticon-whatsapp-2","library":"ekiticons"}',
2171
- '{"value":"ekiticon ekiticon-youtube-1","library":"ekiticons"}',
2172
- '{"value":"ekiticon ekiticon-linkedin-1","library":"ekiticons"}',
2173
- '{"value":"ekiticon ekiticon-telegram","library":"ekiticons"}',
2174
- '{"value":"ekiticon ekiticon-github-1","library":"ekiticons"}',
2175
- '{"value":"ekiticon ekiticon-vk-1","library":"ekiticons"}',
2176
- '{"value":"ekiticon ekiticon-pinterest-1","library":"ekiticons"}',
2177
- '{"value":"ekiticon ekiticon-rss-1","library":"ekiticons"}',
2178
- '{"value":"ekiticon ekiticon-twitch","library":"ekiticons"}',
2179
- '{"value":"ekiticon ekiticon-snapchat-2","library":"ekiticons"}',
2180
- '{"value":"ekiticon ekiticon-skype-2","library":"ekiticons"}',
2181
- '{"value":"ekiticon ekiticon-behance-2","library":"ekiticons"}',
2182
- '{"value":"ekiticon ekiticon-spotify-1","library":"ekiticons"}',
2183
- '{"value":"ekiticon ekiticon-periscope","library":"ekiticons"}',
2184
- '{"value":"ekiticon ekiticon-dribbble-2","library":"ekiticons"}',
2185
- '{"value":"ekiticon ekiticon-tumblr-1","library":"ekiticons"}',
2186
- '{"value":"ekiticon ekiticon-soundcloud-2","library":"ekiticons"}',
2187
- '{"value":"ekiticon ekiticon-google-drive-1","library":"ekiticons"}',
2188
- '{"value":"ekiticon ekiticon-dropbox-2","library":"ekiticons"}',
2189
- '{"value":"ekiticon ekiticon-reddit-2","library":"ekiticons"}',
2190
- '{"value":"ekiticon ekiticon-html","library":"ekiticons"}',
2191
- '{"value":"ekiticon ekiticon-vimeo-1","library":"ekiticons"}',
2192
- '{"value":"ekiticon ekiticon-hangout","library":"ekiticons"}',
2193
- '{"value":"ekiticon ekiticon-blogger-2","library":"ekiticons"}',
2194
- '{"value":"ekiticon ekiticon-yahoo-2","library":"ekiticons"}',
2195
- '{"value":"ekiticon ekiticon-path","library":"ekiticons"}',
2196
- '{"value":"ekiticon ekiticon-yelp-1","library":"ekiticons"}',
2197
- '{"value":"ekiticon ekiticon-slideshare","library":"ekiticons"}',
2198
- '{"value":"ekiticon ekiticon-picasa-2","library":"ekiticons"}',
2199
- '{"value":"ekiticon ekiticon-myspace-1","library":"ekiticons"}',
2200
- '{"value":"ekiticon ekiticon-flickr-2","library":"ekiticons"}',
2201
- '{"value":"ekiticon ekiticon-xing-1","library":"ekiticons"}',
2202
- '{"value":"ekiticon ekiticon-envato-1","library":"ekiticons"}',
2203
- '{"value":"ekiticon ekiticon-swarm","library":"ekiticons"}',
2204
- '{"value":"ekiticon ekiticon-wattpad-1","library":"ekiticons"}',
2205
- '{"value":"ekiticon ekiticon-foursquare","library":"ekiticons"}',
2206
- '{"value":"ekiticon ekiticon-deviantart-2","library":"ekiticons"}',
2207
- '{"value":"ekiticon ekiticon-kickstarter-2","library":"ekiticons"}',
2208
- '{"value":"ekiticon ekiticon-delicious-1","library":"ekiticons"}',
2209
- '{"value":"ekiticon ekiticon-vine-2","library":"ekiticons"}',
2210
- '{"value":"ekiticon ekiticon-digg","library":"ekiticons"}',
2211
- '{"value":"ekiticon ekiticon-bebo","library":"ekiticons"}',
2212
- '{"value":"ekiticon ekiticon-stumbleupon-2","library":"ekiticons"}',
2213
- '{"value":"ekiticon ekiticon-forrst","library":"ekiticons"}',
2214
- '{"value":"ekiticon ekiticon-eye3","library":"ekiticons"}',
2215
- '{"value":"ekiticon ekiticon-microscope","library":"ekiticons"}',
2216
- '{"value":"ekiticon ekiticon-Anti-Lock","library":"ekiticons"}',
2217
- '{"value":"ekiticon ekiticon-apartment","library":"ekiticons"}',
2218
- '{"value":"ekiticon ekiticon-app","library":"ekiticons"}',
2219
- '{"value":"ekiticon ekiticon-Aroma","library":"ekiticons"}',
2220
- '{"value":"ekiticon ekiticon-bamboo-Leaf","library":"ekiticons"}',
2221
- '{"value":"ekiticon ekiticon-basket","library":"ekiticons"}',
2222
- '{"value":"ekiticon ekiticon-Battery","library":"ekiticons"}',
2223
- '{"value":"ekiticon ekiticon-Bettery","library":"ekiticons"}',
2224
- '{"value":"ekiticon ekiticon-building","library":"ekiticons"}',
2225
- '{"value":"ekiticon ekiticon-car-2","library":"ekiticons"}',
2226
- '{"value":"ekiticon ekiticon-Car","library":"ekiticons"}',
2227
- '{"value":"ekiticon ekiticon-Child","library":"ekiticons"}',
2228
- '{"value":"ekiticon ekiticon-cityscape","library":"ekiticons"}',
2229
- '{"value":"ekiticon ekiticon-cleaner","library":"ekiticons"}',
2230
- '{"value":"ekiticon ekiticon-Coffee-cup","library":"ekiticons"}',
2231
- '{"value":"ekiticon ekiticon-coins","library":"ekiticons"}',
2232
- '{"value":"ekiticon ekiticon-Computer","library":"ekiticons"}',
2233
- '{"value":"ekiticon ekiticon-Consultancy","library":"ekiticons"}',
2234
- '{"value":"ekiticon ekiticon-cottage","library":"ekiticons"}',
2235
- '{"value":"ekiticon ekiticon-crane","library":"ekiticons"}',
2236
- '{"value":"ekiticon ekiticon-Custom-api","library":"ekiticons"}',
2237
- '{"value":"ekiticon ekiticon-customer-support-2","library":"ekiticons"}',
2238
- '{"value":"ekiticon ekiticon-Design-2","library":"ekiticons"}',
2239
- '{"value":"ekiticon ekiticon-Design-3","library":"ekiticons"}',
2240
- '{"value":"ekiticon ekiticon-design","library":"ekiticons"}',
2241
- '{"value":"ekiticon ekiticon-diamond","library":"ekiticons"}',
2242
- '{"value":"ekiticon ekiticon-diploma","library":"ekiticons"}',
2243
- '{"value":"ekiticon ekiticon-Document-Search","library":"ekiticons"}',
2244
- '{"value":"ekiticon ekiticon-Download","library":"ekiticons"}',
2245
- '{"value":"ekiticon ekiticon-drilling","library":"ekiticons"}',
2246
- '{"value":"ekiticon ekiticon-engine","library":"ekiticons"}',
2247
- '{"value":"ekiticon ekiticon-engineer","library":"ekiticons"}',
2248
- '{"value":"ekiticon ekiticon-envelope","library":"ekiticons"}',
2249
- '{"value":"ekiticon ekiticon-Family","library":"ekiticons"}',
2250
- '{"value":"ekiticon ekiticon-friendship","library":"ekiticons"}',
2251
- '{"value":"ekiticon ekiticon-gift","library":"ekiticons"}',
2252
- '{"value":"ekiticon ekiticon-graph-2","library":"ekiticons"}',
2253
- '{"value":"ekiticon ekiticon-graph","library":"ekiticons"}',
2254
- '{"value":"ekiticon ekiticon-hamburger-2","library":"ekiticons"}',
2255
- '{"value":"ekiticon ekiticon-handshake","library":"ekiticons"}',
2256
- '{"value":"ekiticon ekiticon-Helmet","library":"ekiticons"}',
2257
- '{"value":"ekiticon ekiticon-hot-Stone-2","library":"ekiticons"}',
2258
- '{"value":"ekiticon ekiticon-hot-stone","library":"ekiticons"}',
2259
- '{"value":"ekiticon ekiticon-idea","library":"ekiticons"}',
2260
- '{"value":"ekiticon ekiticon-Leaf","library":"ekiticons"}',
2261
- '{"value":"ekiticon ekiticon-management","library":"ekiticons"}',
2262
- '{"value":"ekiticon ekiticon-Massage-table","library":"ekiticons"}',
2263
- '{"value":"ekiticon ekiticon-Mechanic","library":"ekiticons"}',
2264
- '{"value":"ekiticon ekiticon-Money-2","library":"ekiticons"}',
2265
- '{"value":"ekiticon ekiticon-money-bag","library":"ekiticons"}',
2266
- '{"value":"ekiticon ekiticon-Money","library":"ekiticons"}',
2267
- '{"value":"ekiticon ekiticon-oil-bottle","library":"ekiticons"}',
2268
- '{"value":"ekiticon ekiticon-Physiotherapy","library":"ekiticons"}',
2269
- '{"value":"ekiticon ekiticon-Profile","library":"ekiticons"}',
2270
- '{"value":"ekiticon ekiticon-Rating","library":"ekiticons"}',
2271
- '{"value":"ekiticon ekiticon-right-mark","library":"ekiticons"}',
2272
- '{"value":"ekiticon ekiticon-rings","library":"ekiticons"}',
2273
- '{"value":"ekiticon ekiticon-Safe-house","library":"ekiticons"}',
2274
- '{"value":"ekiticon ekiticon-Scan","library":"ekiticons"}',
2275
- '{"value":"ekiticon ekiticon-social-care","library":"ekiticons"}',
2276
- '{"value":"ekiticon ekiticon-Speed-Clock","library":"ekiticons"}',
2277
- '{"value":"ekiticon ekiticon-stopwatch","library":"ekiticons"}',
2278
- '{"value":"ekiticon ekiticon-Support-2","library":"ekiticons"}',
2279
- '{"value":"ekiticon ekiticon-target-2","library":"ekiticons"}',
2280
- '{"value":"ekiticon ekiticon-Target","library":"ekiticons"}',
2281
- '{"value":"ekiticon ekiticon-tripod","library":"ekiticons"}',
2282
- '{"value":"ekiticon ekiticon-truck","library":"ekiticons"}',
2283
- '{"value":"ekiticon ekiticon-university","library":"ekiticons"}',
2284
- '{"value":"ekiticon ekiticon-User","library":"ekiticons"}',
2285
- '{"value":"ekiticon ekiticon-Web-Portals","library":"ekiticons"}',
2286
- '{"value":"ekiticon ekiticon-window","library":"ekiticons"}',
2287
- '{"value":"ekiticon ekiticon-ek_line_icon","library":"ekiticons"}',
2288
- '{"value":"ekiticon ekiticon-ek_stroke_icon","library":"ekiticons"}',
2289
- '{"value":"ekiticon ekiticon-ekit","library":"ekiticons"}',
2290
- '{"value":"ekiticon ekiticon-elements-kit-logo","library":"ekiticons"}',
2291
- '{"value":"ekiticon ekiticon-degree-image","library":"ekiticons"}',
2292
- '{"value":"ekiticon ekiticon-accordion","library":"ekiticons"}',
2293
- '{"value":"ekiticon ekiticon-animated-flip-box","library":"ekiticons"}',
2294
- '{"value":"ekiticon ekiticon-animated-text","library":"ekiticons"}',
2295
- '{"value":"ekiticon ekiticon-brands","library":"ekiticons"}',
2296
- '{"value":"ekiticon ekiticon-business-hour","library":"ekiticons"}',
2297
- '{"value":"ekiticon ekiticon-button","library":"ekiticons"}',
2298
- '{"value":"ekiticon ekiticon-carousel","library":"ekiticons"}',
2299
- '{"value":"ekiticon ekiticon-Circle-progress","library":"ekiticons"}',
2300
- '{"value":"ekiticon ekiticon-contact-form","library":"ekiticons"}',
2301
- '{"value":"ekiticon ekiticon-countdown-timer","library":"ekiticons"}',
2302
- '{"value":"ekiticon ekiticon-dropbar","library":"ekiticons"}',
2303
- '{"value":"ekiticon ekiticon-faq","library":"ekiticons"}',
2304
- '{"value":"ekiticon ekiticon-full-width-scroll","library":"ekiticons"}',
2305
- '{"value":"ekiticon ekiticon-google-map","library":"ekiticons"}',
2306
- '{"value":"ekiticon ekiticon-heading-style","library":"ekiticons"}',
2307
- '{"value":"ekiticon ekiticon-help-desk","library":"ekiticons"}',
2308
- '{"value":"ekiticon ekiticon-horizontal-timeline","library":"ekiticons"}',
2309
- '{"value":"ekiticon ekiticon-iframe","library":"ekiticons"}',
2310
- '{"value":"ekiticon ekiticon-image-comparison","library":"ekiticons"}',
2311
- '{"value":"ekiticon ekiticon-image-gallery","library":"ekiticons"}',
2312
- '{"value":"ekiticon ekiticon-image-justify","library":"ekiticons"}',
2313
- '{"value":"ekiticon ekiticon-image-magnifier","library":"ekiticons"}',
2314
- '{"value":"ekiticon ekiticon-image-masonry","library":"ekiticons"}',
2315
- '{"value":"ekiticon ekiticon-inline-svg","library":"ekiticons"}',
2316
- '{"value":"ekiticon ekiticon-instagram","library":"ekiticons"}',
2317
- '{"value":"ekiticon ekiticon-listing","library":"ekiticons"}',
2318
- '{"value":"ekiticon ekiticon-music-player","library":"ekiticons"}',
2319
- '{"value":"ekiticon ekiticon-news-ticker","library":"ekiticons"}',
2320
- '{"value":"ekiticon ekiticon-off-canvus-menu","library":"ekiticons"}',
2321
- '{"value":"ekiticon ekiticon-parallax","library":"ekiticons"}',
2322
- '{"value":"ekiticon ekiticon-portfolio","library":"ekiticons"}',
2323
- '{"value":"ekiticon ekiticon-post-banner","library":"ekiticons"}',
2324
- '{"value":"ekiticon ekiticon-post-carousel","library":"ekiticons"}',
2325
- '{"value":"ekiticon ekiticon-post-grid","library":"ekiticons"}',
2326
- '{"value":"ekiticon ekiticon-post-slider","library":"ekiticons"}',
2327
- '{"value":"ekiticon ekiticon-pricing-list","library":"ekiticons"}',
2328
- '{"value":"ekiticon ekiticon-pricing-table","library":"ekiticons"}',
2329
- '{"value":"ekiticon ekiticon-product-featured","library":"ekiticons"}',
2330
- '{"value":"ekiticon ekiticon-product-image","library":"ekiticons"}',
2331
- '{"value":"ekiticon ekiticon-product-recent","library":"ekiticons"}',
2332
- '{"value":"ekiticon ekiticon-product-sale","library":"ekiticons"}',
2333
- '{"value":"ekiticon ekiticon-product-top-rated","library":"ekiticons"}',
2334
- '{"value":"ekiticon ekiticon-product-top-seller","library":"ekiticons"}',
2335
- '{"value":"ekiticon ekiticon-progress-bar","library":"ekiticons"}',
2336
- '{"value":"ekiticon ekiticon-protected-content-v2","library":"ekiticons"}',
2337
- '{"value":"ekiticon ekiticon-protected-content-v3","library":"ekiticons"}',
2338
- '{"value":"ekiticon ekiticon-protected-content","library":"ekiticons"}',
2339
- '{"value":"ekiticon ekiticon-qr_code","library":"ekiticons"}',
2340
- '{"value":"ekiticon ekiticon-scroll-button","library":"ekiticons"}',
2341
- '{"value":"ekiticon ekiticon-search1","library":"ekiticons"}',
2342
- '{"value":"ekiticon ekiticon-service","library":"ekiticons"}',
2343
- '{"value":"ekiticon ekiticon-slider-image","library":"ekiticons"}',
2344
- '{"value":"ekiticon ekiticon-social-share","library":"ekiticons"}',
2345
- '{"value":"ekiticon ekiticon-subscribe","library":"ekiticons"}',
2346
- '{"value":"ekiticon ekiticon-tab","library":"ekiticons"}',
2347
- '{"value":"ekiticon ekiticon-table","library":"ekiticons"}',
2348
- '{"value":"ekiticon ekiticon-team-join","library":"ekiticons"}',
2349
- '{"value":"ekiticon ekiticon-team-member","library":"ekiticons"}',
2350
- '{"value":"ekiticon ekiticon-testimonial-carousel","library":"ekiticons"}',
2351
- '{"value":"ekiticon ekiticon-testimonial-grid","library":"ekiticons"}',
2352
- '{"value":"ekiticon ekiticon-testimonial-quote","library":"ekiticons"}',
2353
- '{"value":"ekiticon ekiticon-testimonial-slider","library":"ekiticons"}',
2354
- '{"value":"ekiticon ekiticon-toggle","library":"ekiticons"}',
2355
- '{"value":"ekiticon ekiticon-user-login","library":"ekiticons"}',
2356
- '{"value":"ekiticon ekiticon-user-registration","library":"ekiticons"}',
2357
- '{"value":"ekiticon ekiticon-vertical-timeline","library":"ekiticons"}',
2358
- '{"value":"ekiticon ekiticon-video-player","library":"ekiticons"}',
2359
- '{"value":"ekiticon ekiticon-weather","library":"ekiticons"}',
2360
- ];
2361
-
2362
- return $replace;
2363
- }
2364
-
1
+ <?php
2
+
3
+ namespace ElementsKit_Lite\Libs\Xs_Migration;
4
+
5
+
6
+ class Migration extends Data_Migration {
7
+
8
+
9
+ /**
10
+ *
11
+ * @param $wpOptionKey
12
+ * @param $existingOption
13
+ *
14
+ * @return array
15
+ */
16
+ public function convert_from_1_4_7_to_1_4_8($wpOptionKey, $existingOption) {
17
+
18
+ $log = $existingOption['_log'];
19
+
20
+ $log[] = '- This is a blank method for testing.';
21
+ $log[] = '- All functionality is checked and updated.';
22
+ $log[] = '- Updating method execution status to executed.';
23
+ $log[] = '- Method execution is finished at ' . date('Y-m-d H:i:s');
24
+
25
+ $fn = $existingOption['_func'];
26
+
27
+ $fn[__FUNCTION__] = self::STATUS_METHOD_EXECUTED;
28
+
29
+ $existingOption['_func'] = $fn;
30
+ $existingOption['_log'] = $log;
31
+
32
+ update_option($wpOptionKey, $existingOption);
33
+
34
+ return [
35
+ 'status' => 'success',
36
+ 'log' => $log,
37
+ ];
38
+ }
39
+
40
+
41
+ /**
42
+ * todo - for future must put the description of what is migrating in this function and try to do it for single issue per method
43
+ * This way we will be able to not release some migration but the work is done, so we will be able totest it
44
+ *
45
+ * This method is for migrating icon values
46
+ *
47
+ * @param $wpOptionKey
48
+ * @param $existingOption
49
+ *
50
+ * @return array
51
+ */
52
+ public function skip__convert_from_1_5_7_to_1_5_8($wpOptionKey, $existingOption) {
53
+
54
+ $log = $existingOption['_log'];
55
+
56
+ $checkList = [];
57
+
58
+ if(empty($existingOption['exec_plan'][__FUNCTION__]['progress']['check_list'])) {
59
+
60
+ $checkList['retrieve_all_post_ids'] = false;
61
+ $checkList['post_meta_data_processed'] = false;
62
+ $existingOption['exec_plan'][__FUNCTION__]['progress']['check_list'] = $checkList;
63
+
64
+ } else {
65
+ $checkList = $existingOption['exec_plan'][__FUNCTION__]['progress']['check_list'];
66
+ }
67
+
68
+ if($checkList['retrieve_all_post_ids'] != self::SUB_ROUTINE_STATUS_DONE) {
69
+
70
+ $ids = $this->get_all_post_ids_by_meta_key();
71
+
72
+ $checkList['_retrieve_log']['ids_processed'] = '';
73
+ $checkList['_retrieve_log']['ids_retrieved'] = 'yes';
74
+ $checkList['_retrieve_log']['ids'] = $ids;
75
+ $checkList['retrieve_all_post_ids'] = self::SUB_ROUTINE_STATUS_DONE;
76
+
77
+ $log[] = '- All meta ids of _elementor_data key is retrieved.';
78
+
79
+ $existingOption['exec_plan'][__FUNCTION__]['progress']['check_list'] = $checkList;
80
+
81
+ $this->update_subroutine_status(__FUNCTION__, $log, $existingOption, $wpOptionKey);
82
+
83
+ return [
84
+ 'status' => 'success',
85
+ 'log' => $log,
86
+ ];
87
+ }
88
+
89
+ if($checkList['post_meta_data_processed'] != self::SUB_ROUTINE_STATUS_DONE) {
90
+
91
+ /**
92
+ * We have retrieved ids of all metas
93
+ * now we will process the list
94
+ * but the list could be empty!
95
+ *
96
+ */
97
+
98
+ if(!empty($checkList['_retrieve_log']['ids'])) {
99
+
100
+ $ids = $checkList['_retrieve_log']['ids'];
101
+ $max_iteration = $this->getMaxIteration();
102
+ $count_iteration = 0;
103
+ $tmp = $checkList['_retrieve_log']['ids_processed'];
104
+ $tmp_arr = $checkList['_retrieve_log']['processed_log'];
105
+
106
+ $log[] = '- Processing retrieved ids';
107
+
108
+
109
+ while(!empty($ids)) {
110
+ $count_iteration++;
111
+ $post_id = array_pop($ids);
112
+
113
+ $log[] = '-- Fetching and correcting the entry of post - ' . $post_id;
114
+
115
+ $no_need = $this->fetch_and_correct_meta_value($post_id);
116
+
117
+ $tmp .= $post_id . ', ';
118
+ $tmp_arr[$post_id] = $no_need;
119
+
120
+ if($count_iteration >= $max_iteration) {
121
+ break;
122
+ }
123
+ }
124
+
125
+ $log[] = '- End of current iteration';
126
+
127
+ $checkList['_retrieve_log']['ids_processed'] = $tmp;
128
+ $checkList['_retrieve_log']['processed_log'] = $tmp_arr;
129
+ $checkList['_retrieve_log']['ids'] = $ids;
130
+
131
+ $existingOption['exec_plan'][__FUNCTION__]['progress']['check_list'] = $checkList;
132
+
133
+ $this->update_subroutine_status(__FUNCTION__, $log, $existingOption, $wpOptionKey);
134
+
135
+ return [
136
+ 'status' => 'success',
137
+ 'log' => $log,
138
+ ];
139
+
140
+ }
141
+
142
+
143
+ /**
144
+ * the retrieved list is either empty or it is already processed
145
+ * we will conclude this subroutine here
146
+ *
147
+ */
148
+
149
+ $checkList['post_meta_data_processed'] = self::SUB_ROUTINE_STATUS_DONE;
150
+
151
+ $log[] = '-- Subroutine is finished at ' . date('Y-m-d H:i:s');
152
+
153
+ $existingOption['exec_plan'][__FUNCTION__]['progress']['check_list'] = $checkList;
154
+
155
+ $this->update_subroutine_status(__FUNCTION__, $log, $existingOption, $wpOptionKey);
156
+
157
+ return [
158
+ 'status' => 'success',
159
+ 'log' => $log,
160
+ ];
161
+ }
162
+
163
+ $log[] = '- All subroutine is processed.';
164
+ $log[] = '- Updating method execution status to executed.';
165
+ $log[] = '- Method execution is finished at ' . date('Y-m-d H:i:s');
166
+
167
+ $fn = $existingOption['_func'];
168
+
169
+ $fn[__FUNCTION__] = self::STATUS_METHOD_EXECUTED;
170
+
171
+ $existingOption['_func'] = $fn;
172
+ $existingOption['_log'] = $log;
173
+
174
+ update_option($wpOptionKey, $existingOption);
175
+
176
+
177
+ return [
178
+ 'status' => 'success',
179
+ 'log' => $log,
180
+ ];
181
+ }
182
+
183
+
184
+ /**
185
+ * Language translation migrations
186
+ *
187
+ * @since 1.5.9
188
+ *
189
+ * @param $wpOptionKey
190
+ * @param $existingOption
191
+ *
192
+ * @return array
193
+ */
194
+ public function convert_from_1_5_8_to_1_5_9($wpOptionKey, $existingOption) {
195
+
196
+ /**
197
+ * Two changes
198
+ * 1. for loco plugin - duplicate language file : .po, .mo
199
+ * 2. for wpml plugin - change the database step by step
200
+ *
201
+ *
202
+ * First get the progress log
203
+ * and we are sure the method execution status is running here...
204
+ *
205
+ */
206
+ $log = $existingOption['_log'];
207
+
208
+
209
+ $checkList = [];
210
+
211
+ if(empty($existingOption['exec_plan'][__FUNCTION__]['progress']['check_list'])) {
212
+
213
+ $checkList['duplicate_icl_translation'] = false;
214
+ $checkList['retrieve_icl_string_id'] = false;
215
+ $existingOption['exec_plan'][__FUNCTION__]['progress']['check_list'] = $checkList;
216
+
217
+ } else {
218
+ $checkList = $existingOption['exec_plan'][__FUNCTION__]['progress']['check_list'];
219
+ }
220
+
221
+ if($checkList['retrieve_icl_string_id'] != self::SUB_ROUTINE_STATUS_DONE) {
222
+
223
+ $ids = $this->get_all_ids();
224
+
225
+ $checkList['_icl_log']['ids_retrieved'] = 'yes';
226
+ $checkList['_icl_log']['ids'] = $ids;
227
+ $checkList['retrieve_icl_string_id'] = self::SUB_ROUTINE_STATUS_DONE;
228
+
229
+ $log[] = '- All translated strings id is retrieved.';
230
+
231
+ $existingOption['exec_plan'][__FUNCTION__]['progress']['check_list'] = $checkList;
232
+
233
+ $this->update_subroutine_status(__FUNCTION__, $log, $existingOption, $wpOptionKey);
234
+
235
+ return [
236
+ 'status' => 'success',
237
+ 'log' => $log,
238
+ ];
239
+ }
240
+
241
+ if($checkList['duplicate_icl_translation'] != self::SUB_ROUTINE_STATUS_DONE) {
242
+
243
+ /**
244
+ * We have retrieved ids of all translated string in previous sub routine
245
+ * now we will process the list
246
+ * but the list could be empty!
247
+ *
248
+ */
249
+
250
+ if(!empty($checkList['_icl_log']['ids'])) {
251
+
252
+ $ids = $checkList['_icl_log']['ids'];
253
+ $max_iteration = $this->getMaxIteration();
254
+ $count_iteration = 0;
255
+ $tmp = $checkList['_icl_log']['ids_processed'];
256
+ $tmp_arr = $checkList['_icl_log']['processed_log'];
257
+
258
+ $log[] = '- Processing retrieved ids';
259
+
260
+
261
+ while(!empty($ids)) {
262
+ $count_iteration++;
263
+ $dup = array_pop($ids);
264
+
265
+ $log[] = '-- Fetching and duplicating the entry of id - ' . $dup;
266
+
267
+ $n_id = $this->fetch_and_duplicate($dup);
268
+
269
+ $tmp .= $dup . ', ';
270
+ $tmp_arr[$dup] = $n_id;
271
+
272
+ if($count_iteration >= $max_iteration) {
273
+ break;
274
+ }
275
+ }
276
+
277
+ $log[] = '- End of current iteration';
278
+
279
+ $checkList['_icl_log']['ids_processed'] = $tmp;
280
+ $checkList['_icl_log']['processed_log'] = $tmp_arr;
281
+ $checkList['_icl_log']['ids'] = $ids;
282
+
283
+ $existingOption['exec_plan'][__FUNCTION__]['progress']['check_list'] = $checkList;
284
+
285
+ $this->update_subroutine_status(__FUNCTION__, $log, $existingOption, $wpOptionKey);
286
+
287
+ return [
288
+ 'status' => 'success',
289
+ 'log' => $log,
290
+ ];
291
+
292
+ }
293
+
294
+
295
+ /**
296
+ * the retrieved list is either empty or it is already processed
297
+ * we will conclude this subroutine here
298
+ *
299
+ */
300
+
301
+ $checkList['duplicate_icl_translation'] = self::SUB_ROUTINE_STATUS_DONE;
302
+
303
+ $log[] = '-- Subroutine is finished at ' . date('Y-m-d H:i:s');
304
+
305
+ $existingOption['exec_plan'][__FUNCTION__]['progress']['check_list'] = $checkList;
306
+
307
+ $this->update_subroutine_status(__FUNCTION__, $log, $existingOption, $wpOptionKey);
308
+
309
+ return [
310
+ 'status' => 'success',
311
+ 'log' => $log,
312
+ ];
313
+ }
314
+
315
+ $log[] = '- All subroutine is processed.';
316
+ $log[] = '- Updating method execution status to executed.';
317
+ $log[] = '- Method execution is finished at ' . date('Y-m-d H:i:s');
318
+
319
+ $fn = $existingOption['_func'];
320
+
321
+ $fn[__FUNCTION__] = self::STATUS_METHOD_EXECUTED;
322
+
323
+ $existingOption['_func'] = $fn;
324
+ $existingOption['_log'] = $log;
325
+
326
+ update_option($wpOptionKey, $existingOption);
327
+
328
+
329
+ return [
330
+ 'status' => 'success',
331
+ 'log' => $log,
332
+ ];
333
+ }
334
+
335
+
336
+ /**
337
+ *
338
+ * @since 1.5.9
339
+ *
340
+ * @param $id
341
+ *
342
+ * @return int|string
343
+ */
344
+ private function fetch_and_duplicate($id) {
345
+
346
+ global $wpdb;
347
+
348
+ $qry = 'SELECT * FROM `' . $wpdb->prefix . 'icl_strings` AS ics WHERE `id`=\'' . intval($id) . '\'; ';
349
+
350
+ $row = $wpdb->get_row($qry, ARRAY_A);
351
+
352
+ $str_id = '';
353
+
354
+ if(!empty($row)) {
355
+
356
+ unset($row['id']);
357
+
358
+ $row['context'] = $this->getNewTextDomain();
359
+
360
+ $md5 = md5($this->getNewTextDomain() . $row['name'] . $row['gettext_context']);
361
+
362
+ $row['domain_name_context_md5'] = $md5;
363
+
364
+ $wpdb->insert($wpdb->prefix . 'icl_strings', $row);
365
+
366
+ $str_id = $wpdb->insert_id;
367
+
368
+ if(empty($str_id)) {
369
+ return 0;
370
+ }
371
+
372
+ $query = 'SELECT * FROM `' . $wpdb->prefix . 'icl_string_translations` AS ics WHERE `string_id`=\'' . intval($id) . '\'; ';
373
+
374
+ $rows = $wpdb->get_results($query, ARRAY_A);
375
+
376
+ foreach($rows as $entry) {
377
+
378
+ unset($entry['id']);
379
+
380
+ $entry['string_id'] = $str_id;
381
+
382
+ $wpdb->insert($wpdb->prefix . 'icl_string_translations', $entry);
383
+ }
384
+ }
385
+
386
+ return $str_id;
387
+ }
388
+
389
+
390
+ /**
391
+ *
392
+ * @since 1.5.9
393
+ *
394
+ * @param $func
395
+ * @param $log
396
+ * @param $existingOption
397
+ * @param $wpOptionKey
398
+ *
399
+ * @return array
400
+ */
401
+ private function update_subroutine_status($func, $log, $existingOption, $wpOptionKey) {
402
+
403
+
404
+ $log[] = '- Entering into paused phase.';
405
+
406
+ $fn = $existingOption['_func'];
407
+
408
+ $fn[$func] = self::STATUS_METHOD_PAUSED;
409
+
410
+ $existingOption['_func'] = $fn;
411
+ $existingOption['_log'] = $log;
412
+
413
+ update_option($wpOptionKey, $existingOption);
414
+
415
+ return $log;
416
+ }
417
+
418
+
419
+ /**
420
+ *
421
+ *
422
+ * @since 1.5.9
423
+ *
424
+ * @param string $context
425
+ *
426
+ * @return array
427
+ */
428
+ private function get_all_ids($context = 'elementskit-lite') {
429
+
430
+ global $wpdb;
431
+
432
+ $ret = [];
433
+ $tbl = $wpdb->prefix . 'icl_string_translations';
434
+
435
+ /**
436
+ * Lets check first if the user has has this plugin installed!
437
+ * by checking if table exists
438
+ */
439
+
440
+ if($wpdb->get_var("SHOW TABLES LIKE '$tbl'") == $tbl) {
441
+
442
+ $qry = 'SELECT ict.id, ict.string_id, ict.language, ict.status, ics.context ';
443
+ $qry .= 'FROM `' . $tbl . '` AS ict ';
444
+ $qry .= 'LEFT JOIN `' . $wpdb->prefix . 'icl_strings` AS ics ON ict.string_id = ics.id ';
445
+ $qry .= 'WHERE ics.context = \'' . $context . '\';';
446
+
447
+ $rows = $wpdb->get_results($qry);
448
+
449
+
450
+ foreach($rows as $row) {
451
+
452
+ $ret[$row->string_id] = $row->string_id;
453
+ }
454
+ }
455
+
456
+ return $ret;
457
+ }
458
+
459
+
460
+ /**
461
+ *
462
+ *
463
+ * @param string $key
464
+ *
465
+ * @return array
466
+ */
467
+ private function get_all_post_ids_by_meta_key($key = '_elementor_data') {
468
+
469
+ global $wpdb;
470
+
471
+ $qry = 'SELECT meta_id, meta_key, post_id ';
472
+ $qry .= 'FROM `' . $wpdb->prefix . 'postmeta` ';
473
+ $qry .= 'WHERE meta_key = \'' . $key . '\';';
474
+
475
+ $rows = $wpdb->get_results($qry);
476
+ $ret = [];
477
+
478
+ foreach($rows as $row) {
479
+
480
+ $ret[$row->post_id] = $row->post_id;
481
+ }
482
+
483
+ return $ret;
484
+ }
485
+
486
+
487
+ private function get_post_meta_by_post_id($post_id, $key = '_elementor_data') {
488
+
489
+ global $wpdb;
490
+
491
+ $qry = 'SELECT * ';
492
+ $qry .= 'FROM `' . $wpdb->prefix . 'postmeta` ';
493
+ $qry .= 'WHERE post_id = \'' . intval($post_id) . '\' AND meta_key = \'' . $key . '\';';
494
+
495
+ $row = $wpdb->get_row($qry);
496
+
497
+ return $row;
498
+ }
499
+
500
+
501
+ private function update_post_meta_by_meta_id($meta_id, $value) {
502
+
503
+ global $wpdb;
504
+
505
+ $tbl = $wpdb->prefix . 'postmeta';
506
+
507
+ //$qry = 'UPDATE `'.$tbl.'` SET `meta_value` = \''.$value.'\' WHERE `meta_id`=\''.intval($meta_id).'\';';
508
+
509
+ return $wpdb->update($tbl, array('meta_value' => $value,), array('meta_id' => intval($meta_id)), array('%s'), array('%d'));
510
+ }
511
+
512
+
513
+ /**
514
+ * Icon value replacing from meta value
515
+ *
516
+ *
517
+ * @param $post_id
518
+ * @param string $meta_key
519
+ *
520
+ * @return mixed
521
+ */
522
+ private function fetch_and_correct_meta_value($post_id, $meta_key = '_elementor_data') {
523
+
524
+ $row = $this->get_post_meta_by_post_id($post_id, $meta_key);
525
+
526
+ $check_arr = $this->get_original_string_array();
527
+ $replace_arr = $this->get_replace_string_array();
528
+
529
+ $modified = str_replace($check_arr, $replace_arr, $row->meta_value);
530
+
531
+ return $this->update_post_meta_by_meta_id($row->meta_id, $modified);
532
+
533
+ //get_post_meta($post_id, $meta_key, true);
534
+ //update_post_meta($post_id, $meta_key, $modified);
535
+ }
536
+
537
+
538
+ private function get_original_string_array() {
539
+
540
+ $original = [
541
+ '{"value":"icon icon-home","library":"ekiticons"}',
542
+ '{"value":"icon icon-apartment1","library":"ekiticons"}',
543
+ '{"value":"icon icon-pencil","library":"ekiticons"}',
544
+ '{"value":"icon icon-magic-wand","library":"ekiticons"}',
545
+ '{"value":"icon icon-drop","library":"ekiticons"}',
546
+ '{"value":"icon icon-lighter","library":"ekiticons"}',
547
+ '{"value":"icon icon-poop","library":"ekiticons"}',
548
+ '{"value":"icon icon-sun","library":"ekiticons"}',
549
+ '{"value":"icon icon-moon","library":"ekiticons"}',
550
+ '{"value":"icon icon-cloud1","library":"ekiticons"}',
551
+ '{"value":"icon icon-cloud-upload","library":"ekiticons"}',
552
+ '{"value":"icon icon-cloud-download","library":"ekiticons"}',
553
+ '{"value":"icon icon-cloud-sync","library":"ekiticons"}',
554
+ '{"value":"icon icon-cloud-check","library":"ekiticons"}',
555
+ '{"value":"icon icon-database1","library":"ekiticons"}',
556
+ '{"value":"icon icon-lock","library":"ekiticons"}',
557
+ '{"value":"icon icon-cog","library":"ekiticons"}',
558
+ '{"value":"icon icon-trash","library":"ekiticons"}',
559
+ '{"value":"icon icon-dice","library":"ekiticons"}',
560
+ '{"value":"icon icon-heart1","library":"ekiticons"}',
561
+ '{"value":"icon icon-star1","library":"ekiticons"}',
562
+ '{"value":"icon icon-star-half","library":"ekiticons"}',
563
+ '{"value":"icon icon-star-empty","library":"ekiticons"}',
564
+ '{"value":"icon icon-flag","library":"ekiticons"}',
565
+ '{"value":"icon icon-envelope1","library":"ekiticons"}',
566
+ '{"value":"icon icon-paperclip","library":"ekiticons"}',
567
+ '{"value":"icon icon-inbox","library":"ekiticons"}',
568
+ '{"value":"icon icon-eye","library":"ekiticons"}',
569
+ '{"value":"icon icon-printer","library":"ekiticons"}',
570
+ '{"value":"icon icon-file-empty","library":"ekiticons"}',
571
+ '{"value":"icon icon-file-add","library":"ekiticons"}',
572
+ '{"value":"icon icon-enter","library":"ekiticons"}',
573
+ '{"value":"icon icon-exit","library":"ekiticons"}',
574
+ '{"value":"icon icon-graduation-hat","library":"ekiticons"}',
575
+ '{"value":"icon icon-license","library":"ekiticons"}',
576
+ '{"value":"icon icon-music-note","library":"ekiticons"}',
577
+ '{"value":"icon icon-film-play","library":"ekiticons"}',
578
+ '{"value":"icon icon-camera-video","library":"ekiticons"}',
579
+ '{"value":"icon icon-camera","library":"ekiticons"}',
580
+ '{"value":"icon icon-picture","library":"ekiticons"}',
581
+ '{"value":"icon icon-book","library":"ekiticons"}',
582
+ '{"value":"icon icon-bookmark","library":"ekiticons"}',
583
+ '{"value":"icon icon-user","library":"ekiticons"}',
584
+ '{"value":"icon icon-users","library":"ekiticons"}',
585
+ '{"value":"icon icon-shirt","library":"ekiticons"}',
586
+ '{"value":"icon icon-store","library":"ekiticons"}',
587
+ '{"value":"icon icon-cart2","library":"ekiticons"}',
588
+ '{"value":"icon icon-tag","library":"ekiticons"}',
589
+ '{"value":"icon icon-phone-handset","library":"ekiticons"}',
590
+ '{"value":"icon icon-phone","library":"ekiticons"}',
591
+ '{"value":"icon icon-pushpin","library":"ekiticons"}',
592
+ '{"value":"icon icon-map-marker","library":"ekiticons"}',
593
+ '{"value":"icon icon-map","library":"ekiticons"}',
594
+ '{"value":"icon icon-location","library":"ekiticons"}',
595
+ '{"value":"icon icon-calendar-full","library":"ekiticons"}',
596
+ '{"value":"icon icon-keyboard","library":"ekiticons"}',
597
+ '{"value":"icon icon-spell-check","library":"ekiticons"}',
598
+ '{"value":"icon icon-screen","library":"ekiticons"}',
599
+ '{"value":"icon icon-smartphone","library":"ekiticons"}',
600
+ '{"value":"icon icon-tablet","library":"ekiticons"}',
601
+ '{"value":"icon icon-laptop","library":"ekiticons"}',
602
+ '{"value":"icon icon-laptop-phone","library":"ekiticons"}',
603
+ '{"value":"icon icon-power-switch","library":"ekiticons"}',
604
+ '{"value":"icon icon-bubble","library":"ekiticons"}',
605
+ '{"value":"icon icon-heart-pulse","library":"ekiticons"}',
606
+ '{"value":"icon icon-construction","library":"ekiticons"}',
607
+ '{"value":"icon icon-pie-chart","library":"ekiticons"}',
608
+ '{"value":"icon icon-chart-bars","library":"ekiticons"}',
609
+ '{"value":"icon icon-gift1","library":"ekiticons"}',
610
+ '{"value":"icon icon-diamond1","library":"ekiticons"}',
611
+ '{"value":"icon icon-dinner","library":"ekiticons"}',
612
+ '{"value":"icon icon-coffee-cup","library":"ekiticons"}',
613
+ '{"value":"icon icon-leaf","library":"ekiticons"}',
614
+ '{"value":"icon icon-paw","library":"ekiticons"}',
615
+ '{"value":"icon icon-rocket","library":"ekiticons"}',
616
+ '{"value":"icon icon-briefcase","library":"ekiticons"}',
617
+ '{"value":"icon icon-bus","library":"ekiticons"}',
618
+ '{"value":"icon icon-car1","library":"ekiticons"}',
619
+ '{"value":"icon icon-train","library":"ekiticons"}',
620
+ '{"value":"icon icon-bicycle","library":"ekiticons"}',
621
+ '{"value":"icon icon-wheelchair","library":"ekiticons"}',
622
+ '{"value":"icon icon-select","library":"ekiticons"}',
623
+ '{"value":"icon icon-earth","library":"ekiticons"}',
624
+ '{"value":"icon icon-smile","library":"ekiticons"}',
625
+ '{"value":"icon icon-sad","library":"ekiticons"}',
626
+ '{"value":"icon icon-neutral","library":"ekiticons"}',
627
+ '{"value":"icon icon-mustache","library":"ekiticons"}',
628
+ '{"value":"icon icon-alarm","library":"ekiticons"}',
629
+ '{"value":"icon icon-bullhorn","library":"ekiticons"}',
630
+ '{"value":"icon icon-volume-high","library":"ekiticons"}',
631
+ '{"value":"icon icon-volume-medium","library":"ekiticons"}',
632
+ '{"value":"icon icon-volume-low","library":"ekiticons"}',
633
+ '{"value":"icon icon-volume","library":"ekiticons"}',
634
+ '{"value":"icon icon-mic","library":"ekiticons"}',
635
+ '{"value":"icon icon-hourglass","library":"ekiticons"}',
636
+ '{"value":"icon icon-undo","library":"ekiticons"}',
637
+ '{"value":"icon icon-redo","library":"ekiticons"}',
638
+ '{"value":"icon icon-sync","library":"ekiticons"}',
639
+ '{"value":"icon icon-history","library":"ekiticons"}',
640
+ '{"value":"icon icon-clock1","library":"ekiticons"}',
641
+ '{"value":"icon icon-download","library":"ekiticons"}',
642
+ '{"value":"icon icon-upload","library":"ekiticons"}',
643
+ '{"value":"icon icon-enter-down","library":"ekiticons"}',
644
+ '{"value":"icon icon-exit-up","library":"ekiticons"}',
645
+ '{"value":"icon icon-bug","library":"ekiticons"}',
646
+ '{"value":"icon icon-code","library":"ekiticons"}',
647
+ '{"value":"icon icon-link","library":"ekiticons"}',
648
+ '{"value":"icon icon-unlink","library":"ekiticons"}',
649
+ '{"value":"icon icon-thumbs-up","library":"ekiticons"}',
650
+ '{"value":"icon icon-thumbs-down","library":"ekiticons"}',
651
+ '{"value":"icon icon-magnifier","library":"ekiticons"}',
652
+ '{"value":"icon icon-cross","library":"ekiticons"}',
653
+ '{"value":"icon icon-chevron-up","library":"ekiticons"}',
654
+ '{"value":"icon icon-chevron-down","library":"ekiticons"}',
655
+ '{"value":"icon icon-chevron-left","library":"ekiticons"}',
656
+ '{"value":"icon icon-chevron-right","library":"ekiticons"}',
657
+ '{"value":"icon icon-arrow-up","library":"ekiticons"}',
658
+ '{"value":"icon icon-arrow-down","library":"ekiticons"}',
659
+ '{"value":"icon icon-arrow-left","library":"ekiticons"}',
660
+ '{"value":"icon icon-arrow-right","library":"ekiticons"}',
661
+ '{"value":"icon icon-right-arrow","library":"ekiticons"}',
662
+ '{"value":"icon icon-left-arrow","library":"ekiticons"}',
663
+ '{"value":"icon icon-download-arrow","library":"ekiticons"}',
664
+ '{"value":"icon icon-up-arrow","library":"ekiticons"}',
665
+ '{"value":"icon icon-arrows","library":"ekiticons"}',
666
+ '{"value":"icon icon-double-angle-pointing-to-right","library":"ekiticons"}',
667
+ '{"value":"icon icon-double-left-chevron","library":"ekiticons"}',
668
+ '{"value":"icon icon-left-arrow2","library":"ekiticons"}',
669
+ '{"value":"icon icon-right-arrow2","library":"ekiticons"}',
670
+ '{"value":"icon icon-warning","library":"ekiticons"}',
671
+ '{"value":"icon icon-down-arrow1","library":"ekiticons"}',
672
+ '{"value":"icon icon-up-arrow1","library":"ekiticons"}',
673
+ '{"value":"icon icon-right-arrow1","library":"ekiticons"}',
674
+ '{"value":"icon icon-left-arrows","library":"ekiticons"}',
675
+ '{"value":"icon icon-question-circle","library":"ekiticons"}',
676
+ '{"value":"icon icon-menu-circle","library":"ekiticons"}',
677
+ '{"value":"icon icon-checkmark-circle","library":"ekiticons"}',
678
+ '{"value":"icon icon-cross-circle","library":"ekiticons"}',
679
+ '{"value":"icon icon-plus-circle","library":"ekiticons"}',
680
+ '{"value":"icon icon-move","library":"ekiticons"}',
681
+ '{"value":"icon icon-circle-minus","library":"ekiticons"}',
682
+ '{"value":"icon icon-arrow-up-circle","library":"ekiticons"}',
683
+ '{"value":"icon icon-arrow-down-circle","library":"ekiticons"}',
684
+ '{"value":"icon icon-arrow-left-circle","library":"ekiticons"}',
685
+ '{"value":"icon icon-arrow-right-circle","library":"ekiticons"}',
686
+ '{"value":"icon icon-chevron-up-circle","library":"ekiticons"}',
687
+ '{"value":"icon icon-chevron-down-circle","library":"ekiticons"}',
688
+ '{"value":"icon icon-chevron-left-circle","library":"ekiticons"}',
689
+ '{"value":"icon icon-chevron-right-circle","library":"ekiticons"}',
690
+ '{"value":"icon icon-crop","library":"ekiticons"}',
691
+ '{"value":"icon icon-frame-expand","library":"ekiticons"}',
692
+ '{"value":"icon icon-frame-contract","library":"ekiticons"}',
693
+ '{"value":"icon icon-layers","library":"ekiticons"}',
694
+ '{"value":"icon icon-funnel","library":"ekiticons"}',
695
+ '{"value":"icon icon-text-format","library":"ekiticons"}',
696
+ '{"value":"icon icon-text-size","library":"ekiticons"}',
697
+ '{"value":"icon icon-bold","library":"ekiticons"}',
698
+ '{"value":"icon icon-italic","library":"ekiticons"}',
699
+ '{"value":"icon icon-underline","library":"ekiticons"}',
700
+ '{"value":"icon icon-strikethrough","library":"ekiticons"}',
701
+ '{"value":"icon icon-highlight","library":"ekiticons"}',
702
+ '{"value":"icon icon-text-align-left","library":"ekiticons"}',
703
+ '{"value":"icon icon-text-align-center","library":"ekiticons"}',
704
+ '{"value":"icon icon-text-align-right","library":"ekiticons"}',
705
+ '{"value":"icon icon-text-align-justify","library":"ekiticons"}',
706
+ '{"value":"icon icon-line-spacing","library":"ekiticons"}',
707
+ '{"value":"icon icon-indent-increase","library":"ekiticons"}',
708
+ '{"value":"icon icon-indent-decrease","library":"ekiticons"}',
709
+ '{"value":"icon icon-page-break","library":"ekiticons"}',
710
+ '{"value":"icon icon-hand","library":"ekiticons"}',
711
+ '{"value":"icon icon-pointer-up","library":"ekiticons"}',
712
+ '{"value":"icon icon-pointer-right","library":"ekiticons"}',
713
+ '{"value":"icon icon-pointer-down","library":"ekiticons"}',
714
+ '{"value":"icon icon-pointer-left","library":"ekiticons"}',
715
+ '{"value":"icon icon-burger","library":"ekiticons"}',
716
+ '{"value":"icon icon-cakes","library":"ekiticons"}',
717
+ '{"value":"icon icon-cheese","library":"ekiticons"}',
718
+ '{"value":"icon icon-drink-glass","library":"ekiticons"}',
719
+ '{"value":"icon icon-pizza","library":"ekiticons"}',
720
+ '{"value":"icon icon-vplay","library":"ekiticons"}',
721
+ '{"value":"icon icon-newsletter","library":"ekiticons"}',
722
+ '{"value":"icon icon-coins-2","library":"ekiticons"}',
723
+ '{"value":"icon icon-commerce-2","library":"ekiticons"}',
724
+ '{"value":"icon icon-monitor","library":"ekiticons"}',
725
+ '{"value":"icon icon-business","library":"ekiticons"}',
726
+ '{"value":"icon icon-graphic-2","library":"ekiticons"}',
727
+ '{"value":"icon icon-commerce-1","library":"ekiticons"}',
728
+ '{"value":"icon icon-hammer","library":"ekiticons"}',
729
+ '{"value":"icon icon-justice-1","library":"ekiticons"}',
730
+ '{"value":"icon icon-line","library":"ekiticons"}',
731
+ '{"value":"icon icon-money-3","library":"ekiticons"}',
732
+ '{"value":"icon icon-commerce","library":"ekiticons"}',
733
+ '{"value":"icon icon-agenda","library":"ekiticons"}',
734
+ '{"value":"icon icon-justice","library":"ekiticons"}',
735
+ '{"value":"icon icon-technology","library":"ekiticons"}',
736
+ '{"value":"icon icon-coins-1","library":"ekiticons"}',
737
+ '{"value":"icon icon-bank","library":"ekiticons"}',
738
+ '{"value":"icon icon-calculator","library":"ekiticons"}',
739
+ '{"value":"icon icon-soundcloud","library":"ekiticons"}',
740
+ '{"value":"icon icon-chart2","library":"ekiticons"}',
741
+ '{"value":"icon icon-checked","library":"ekiticons"}',
742
+ '{"value":"icon icon-clock11","library":"ekiticons"}',
743
+ '{"value":"icon icon-comment2","library":"ekiticons"}',
744
+ '{"value":"icon icon-comments","library":"ekiticons"}',
745
+ '{"value":"icon icon-consult","library":"ekiticons"}',
746
+ '{"value":"icon icon-consut2","library":"ekiticons"}',
747
+ '{"value":"icon icon-deal","library":"ekiticons"}',
748
+ '{"value":"icon icon-envelope11","library":"ekiticons"}',
749
+ '{"value":"icon icon-folder","library":"ekiticons"}',
750
+ '{"value":"icon icon-folder2","library":"ekiticons"}',
751
+ '{"value":"icon icon-invest","library":"ekiticons"}',
752
+ '{"value":"icon icon-loan","library":"ekiticons"}',
753
+ '{"value":"icon icon-menu1","library":"ekiticons"}',
754
+ '{"value":"icon icon-list1","library":"ekiticons"}',
755
+ '{"value":"icon icon-map-marker1","library":"ekiticons"}',
756
+ '{"value":"icon icon-mutual-fund","library":"ekiticons"}',
757
+ '{"value":"icon icon-google-plus","library":"ekiticons"}',
758
+ '{"value":"icon icon-phone1","library":"ekiticons"}',
759
+ '{"value":"icon icon-pie-chart1","library":"ekiticons"}',
760
+ '{"value":"icon icon-play","library":"ekiticons"}',
761
+ '{"value":"icon icon-savings","library":"ekiticons"}',
762
+ '{"value":"icon icon-search2","library":"ekitic