YITH Essential Kit for WooCommerce #1 - Version 2.11.0

Version Description

  • Released on 09 August 2022 =
  • New: support for WooCommerce 6.8
  • Update: YITH plugin framework
Download this release

Release Info

Developer yithemes
Plugin Icon 128x128 YITH Essential Kit for WooCommerce #1
Version 2.11.0
Comparing to
See all releases

Code changes from version 2.10.0 to 2.11.0

Files changed (52) hide show
  1. Gruntfile.js +122 -0
  2. README.txt +5 -1
  3. init.php +5 -5
  4. languages/yith-essential-kit-for-woocommerce-1.pot +141 -141
  5. plugin-fw/assets/css/yit-plugin-panel.css +43 -11
  6. plugin-fw/assets/css/yith-bh-onboarding.css +170 -0
  7. plugin-fw/assets/css/yith-fields.css +1 -5
  8. plugin-fw/assets/css/yith-icon.css +36 -4
  9. plugin-fw/assets/fonts/yith-icon.eot +0 -0
  10. plugin-fw/assets/fonts/yith-icon.ttf +0 -0
  11. plugin-fw/assets/fonts/yith-icon.woff2 +0 -0
  12. plugin-fw/assets/images/bh-onboarding/check.svg +16 -0
  13. plugin-fw/assets/images/help-tab/documentation.svg +176 -0
  14. plugin-fw/assets/images/help-tab/support-desk.svg +37 -0
  15. plugin-fw/assets/js/yit-plugin-panel.js +2 -2
  16. plugin-fw/assets/js/yit-plugin-panel.min.js +1 -1
  17. plugin-fw/assets/js/yith-bh-onboarding.js +65 -0
  18. plugin-fw/assets/js/yith-bh-onboarding.min.js +1 -0
  19. plugin-fw/dist/gutenberg/index.asset.php +1 -1
  20. plugin-fw/dist/gutenberg/index.js +1 -1
  21. plugin-fw/dist/gutenberg/style-index.css +1 -0
  22. plugin-fw/includes/builders/elementor/class-yith-elementor-widget.php +1 -1
  23. plugin-fw/includes/builders/gutenberg/class-yith-gutenberg.php +1 -1
  24. plugin-fw/includes/builders/gutenberg/src/components/multiple-select-control/index.js +56 -0
  25. plugin-fw/includes/builders/gutenberg/src/components/multiple-select-control/multiple-select.js +186 -0
  26. plugin-fw/includes/builders/gutenberg/src/components/multiple-select-control/style.scss +135 -0
  27. plugin-fw/includes/builders/gutenberg/src/edit.js +170 -164
  28. plugin-fw/includes/class-yit-assets.php +10 -0
  29. plugin-fw/includes/class-yit-plugin-panel-woocommerce.php +12 -5
  30. plugin-fw/includes/class-yit-plugin-panel.php +59 -15
  31. plugin-fw/includes/class-yith-bh-onboarding.php +110 -0
  32. plugin-fw/init.php +2 -2
  33. plugin-fw/languages/yith-plugin-fw-el.mo +0 -0
  34. plugin-fw/languages/yith-plugin-fw-el.po +155 -93
  35. plugin-fw/languages/yith-plugin-fw-es_ES.mo +0 -0
  36. plugin-fw/languages/yith-plugin-fw-es_ES.po +166 -94
  37. plugin-fw/languages/yith-plugin-fw-it_IT.mo +0 -0
  38. plugin-fw/languages/yith-plugin-fw-it_IT.po +166 -94
  39. plugin-fw/languages/yith-plugin-fw-nl_NL.mo +0 -0
  40. plugin-fw/languages/yith-plugin-fw-nl_NL.po +160 -93
  41. plugin-fw/languages/yith-plugin-fw-ru_RU.mo +0 -0
  42. plugin-fw/languages/yith-plugin-fw-ru_RU.po +161 -93
  43. plugin-fw/languages/yith-plugin-fw-zh_CN.mo +0 -0
  44. plugin-fw/languages/yith-plugin-fw-zh_CN.po +1091 -0
  45. plugin-fw/languages/yith-plugin-fw.pot +155 -93
  46. plugin-fw/templates/bh-onboarding/onboarding-tabs.php +75 -0
  47. plugin-fw/templates/panel/help-tab.php +44 -6
  48. plugin-fw/templates/panel/premium-tab.php +11 -4
  49. plugin-fw/templates/panel/woocommerce/woocommerce-form.php +1 -1
  50. plugin-fw/yit-deactive-plugin.php +60 -9
  51. plugin-fw/yit-functions.php +27 -1
  52. plugin-fw/yit-plugin.php +90 -12
Gruntfile.js ADDED
@@ -0,0 +1,122 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * Required
3
+ * - install grunt
4
+ * sudo npm install -g grunt-cli
5
+ * - install node-wp-i18n
6
+ * sudo npm install -g node-wp-i18n
7
+ */
8
+
9
+ const potInfo = {
10
+ languageFolderPath: './languages/',
11
+ filename : 'yith-essential-kit-for-woocommerce-1.pot',
12
+ headers : {
13
+ poedit : true, // Includes common Poedit headers.
14
+ 'x-poedit-keywordslist': true, // Include a list of all possible gettext functions.
15
+ 'report-msgid-bugs-to' : 'YITH <plugins@yithemes.com>',
16
+ 'language-team' : 'YITH <info@yithemes.com>'
17
+ }
18
+ };
19
+
20
+ module.exports = function ( grunt ) {
21
+ 'use strict';
22
+
23
+ grunt.initConfig( {
24
+ dirs: {
25
+ css: 'assets/css',
26
+ js : 'assets/js'
27
+ },
28
+
29
+ uglify: {
30
+ options: {
31
+ ie8 : true,
32
+ parse : {
33
+ strict: false
34
+ },
35
+ output: {
36
+ comments: /@license|@preserve|^!/
37
+ }
38
+ },
39
+ common : {
40
+ files: [ {
41
+ expand: true,
42
+ cwd : '<%= dirs.js %>/',
43
+ src : [
44
+ '*.js',
45
+ '!*.min.js',
46
+ ],
47
+ dest : '<%= dirs.js %>/',
48
+ ext : '.min.js'
49
+ } ]
50
+ },
51
+ },
52
+
53
+ cssmin: {
54
+ minify: {
55
+ expand: true,
56
+ cwd : '<%= dirs.css %>/',
57
+ src : [ '*.css', '!*.min.css' ],
58
+ dest : '<%= dirs.css %>/',
59
+ ext : '.min.css'
60
+ }
61
+ },
62
+
63
+ makepot: {
64
+ options: {
65
+ type : 'wp-plugin',
66
+ domainPath : 'languages',
67
+ headers : potInfo.headers,
68
+ updatePoFiles: false,
69
+ processPot : function ( pot ) {
70
+ // Exclude plugin meta
71
+ var translation,
72
+ excluded_meta = [
73
+ 'Plugin Name of the plugin/theme',
74
+ 'Plugin URI of the plugin/theme',
75
+ 'Author of the plugin/theme',
76
+ 'Author URI of the plugin/theme'
77
+ ];
78
+
79
+ for ( translation in pot.translations[ '' ] ) {
80
+ if ( 'undefined' !== typeof pot.translations[ '' ][ translation ].comments.extracted ) {
81
+ if ( excluded_meta.indexOf( pot.translations[ '' ][ translation ].comments.extracted ) >= 0 ) {
82
+ console.log( 'Excluded meta: ' + pot.translations[ '' ][ translation ].comments.extracted );
83
+ delete pot.translations[ '' ][ translation ];
84
+ }
85
+ }
86
+ }
87
+
88
+ return pot;
89
+ }
90
+ },
91
+ dist : {
92
+ options: {
93
+ filename: potInfo.filename,
94
+ exclude : [
95
+ 'bin/.*',
96
+ 'plugin-fw/.*',
97
+ 'plugin-upgrade/.*',
98
+ 'node_modules/.*',
99
+ 'tmp/.*',
100
+ 'vendor/.*'
101
+ ]
102
+ }
103
+ }
104
+ },
105
+
106
+ } );
107
+
108
+ // Load NPM tasks to be used here.
109
+ grunt.loadNpmTasks( 'grunt-wp-i18n' );
110
+ grunt.loadNpmTasks( 'grunt-contrib-uglify' );
111
+ grunt.loadNpmTasks( 'grunt-contrib-cssmin' );
112
+
113
+ // Register tasks.
114
+ grunt.registerTask( 'default', [
115
+ 'js',
116
+ 'css',
117
+ ] );
118
+
119
+ grunt.registerTask( 'js', [ 'uglify' ] );
120
+
121
+ grunt.registerTask( 'css', [ 'cssmin' ] );
122
+ };
README.txt CHANGED
@@ -117,6 +117,10 @@ YITH Essential Kit for WooCommerce #1 will add a new submenu called "YITH Essent
117
 
118
  == Changelog ==
119
 
 
 
 
 
120
  = 2.10.0 - Released on 18 July 2022 =
121
  * New: support for WooCommerce 6.7
122
  * Update: YITH plugin framework
@@ -535,4 +539,4 @@ YITH Essential Kit for WooCommerce #1 will add a new submenu called "YITH Essent
535
 
536
  == Upgrade Notice ==
537
 
538
- Last Stable Tag 2.10.0
117
 
118
  == Changelog ==
119
 
120
+ = 2.11.0 - Released on 09 August 2022 =
121
+ * New: support for WooCommerce 6.8
122
+ * Update: YITH plugin framework
123
+
124
  = 2.10.0 - Released on 18 July 2022 =
125
  * New: support for WooCommerce 6.7
126
  * Update: YITH plugin framework
539
 
540
  == Upgrade Notice ==
541
 
542
+ Last Stable Tag 2.11.0
init.php CHANGED
@@ -7,13 +7,13 @@
7
  * Domain Path: /languages/
8
  * Author: YITH
9
  * Author URI: https://yithemes.com/
10
- * Version: 2.10.0
11
- * WC requires at least: 6.5
12
- * WC tested up to: 6.7
13
  *
14
  * @author YITHEMES
15
  * @package YITH Essential Kit for Woocommerce #1
16
- * @version 2.10.0
17
  */
18
 
19
  if ( ! defined( 'ABSPATH' ) ) {
@@ -41,7 +41,7 @@ if ( ! defined( 'YJP_TEMPLATE_PATH' ) ) {
41
  }
42
 
43
  if ( ! defined( 'YJP_VERSION' ) ) {
44
- define( 'YJP_VERSION', '2.10.0' );
45
  }
46
 
47
  if ( ! function_exists( 'yith_plugin_registration_hook' ) ) {
7
  * Domain Path: /languages/
8
  * Author: YITH
9
  * Author URI: https://yithemes.com/
10
+ * Version: 2.11.0
11
+ * WC requires at least: 6.6
12
+ * WC tested up to: 6.8
13
  *
14
  * @author YITHEMES
15
  * @package YITH Essential Kit for Woocommerce #1
16
+ * @version 2.11.0
17
  */
18
 
19
  if ( ! defined( 'ABSPATH' ) ) {
41
  }
42
 
43
  if ( ! defined( 'YJP_VERSION' ) ) {
44
+ define( 'YJP_VERSION', '2.11.0' );
45
  }
46
 
47
  if ( ! function_exists( 'yith_plugin_registration_hook' ) ) {
languages/yith-essential-kit-for-woocommerce-1.pot CHANGED
@@ -1,142 +1,142 @@
1
- # Copyright (C) 2022 YITH
2
- # This file is distributed under the same license as the YITH Essential Kit for WooCommerce #1 package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: YITH Essential Kit for WooCommerce #1 2.7.0\n"
6
- "Report-Msgid-Bugs-To: "
7
- "https://wordpress.org/support/plugin/yith-essential-kit-for-woocommerce-1\n"
8
- "POT-Creation-Date: 2022-03-14 08:29:20+00:00\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=utf-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "PO-Revision-Date: 2022-MO-DA HO:MI+ZONE\n"
13
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
- "Language-Team: LANGUAGE <LL@li.org>\n"
15
- "X-Generator: grunt-wp-i18n 1.0.3\n"
16
-
17
- #: class-yith-jetpack.php:233
18
- msgid "Modules List"
19
- msgstr ""
20
-
21
- #: class-yith-jetpack.php:429 class-yith-jetpack.php:460
22
- #: class-yith-jetpack.php:490
23
- msgid "Error during request"
24
- msgstr ""
25
-
26
- #: class-yith-jetpack.php:434
27
- msgid "Module %s enabled"
28
- msgstr ""
29
-
30
- #: class-yith-jetpack.php:435
31
- msgid "Activation error for plugin %s"
32
- msgstr ""
33
-
34
- #: class-yith-jetpack.php:465
35
- msgid "Module %s disabled"
36
- msgstr ""
37
-
38
- #: class-yith-jetpack.php:466
39
- msgid "Deactivation error for module %s"
40
- msgstr ""
41
-
42
- #: class-yith-jetpack.php:495
43
- msgid "Module %s installed"
44
- msgstr ""
45
-
46
- #: class-yith-jetpack.php:496
47
- msgid "Installation error for plugin %s"
48
- msgstr ""
49
-
50
- #: class-yith-jetpack.php:580
51
- msgid "install %s now"
52
- msgstr ""
53
-
54
- #: class-yith-jetpack.php:580
55
- msgid "Install now"
56
- msgstr ""
57
-
58
- #: class-yith-jetpack.php:596
59
- msgid "Deactivate %s now"
60
- msgstr ""
61
-
62
- #: class-yith-jetpack.php:596
63
- msgid "Deactivate"
64
- msgstr ""
65
-
66
- #: class-yith-jetpack.php:618
67
- msgid "activate %s now"
68
- msgstr ""
69
-
70
- #: class-yith-jetpack.php:618
71
- msgid "Activate"
72
- msgstr ""
73
-
74
- #: class-yith-jetpack.php:645 class-yith-jetpack.php:667
75
- msgid "Please wait for next page to load..."
76
- msgstr ""
77
-
78
- #: migration.php:33 migration.php:34
79
- msgid "YITH Essential Kit Migration"
80
- msgstr ""
81
-
82
- #: migration.php:68
83
- msgid "YITH Essential Kit for WooCommerce migration panel"
84
- msgstr ""
85
-
86
- #: migration.php:71
87
- msgid ""
88
- "From version 2.0 of our plugin, modules are no longer bundled with the zip "
89
- "file. This means you should download them from wordpress.org repository "
90
- "first."
91
- msgstr ""
92
-
93
- #: migration.php:74
94
- msgid "This page will do the job for you."
95
- msgstr ""
96
-
97
- #: templates/yith-list-plugins.php:20
98
- msgid "Sorry, you don't have sufficient permission to access to this page."
99
- msgstr ""
100
-
101
- #: templates/yith-list-plugins.php:39
102
- msgid "M j, Y @ H:i"
103
- msgstr ""
104
-
105
- #: templates/yith-list-plugins.php:47
106
- msgid ""
107
- "Here you can activate or deactive some of our plugins to enhance your "
108
- "e-commerce site."
109
- msgstr ""
110
-
111
- #: templates/yith-list-plugins.php:48
112
- msgid "Plugin enabled"
113
- msgstr ""
114
-
115
- #: templates/yith-list-plugins.php:127
116
- msgid "More information about %s"
117
- msgstr ""
118
-
119
- #: templates/yith-list-plugins.php:127
120
- msgid "More Details"
121
- msgstr ""
122
-
123
- #: templates/yith-list-plugins.php:141
124
- msgid "Premium Activated"
125
- msgstr ""
126
-
127
- #: templates/yith-list-plugins.php:156
128
- msgid "Activate Premium"
129
- msgstr ""
130
-
131
- #: templates/yith-list-plugins.php:161
132
- msgid "Buy Premium Version"
133
- msgstr ""
134
-
135
- #. Description of the plugin/theme
136
- msgid ""
137
- "With <code><strong>YITH Essential Kit for WooCommerce #1</strong></code> "
138
- "you will be free to add new and powerful features to make your e-commerce "
139
- "site unique. Activate the plugin you want and start using your site to a "
140
- "new and improved level. <a href=\"https://yithemes.com/\" "
141
- "target=\"_blank\">Find new awesome plugins on <strong>YITH</strong></a>"
142
  msgstr ""
1
+ # Copyright (C) 2022 YITH
2
+ # This file is distributed under the same license as the YITH Essential Kit for WooCommerce #1 package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: YITH Essential Kit for WooCommerce #1 2.11.0\n"
6
+ "Report-Msgid-Bugs-To: "
7
+ "https://wordpress.org/support/plugin/yith-essential-kit-for-woocommerce-1\n"
8
+ "POT-Creation-Date: 2022-08-09 07:55:16+00:00\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=utf-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "PO-Revision-Date: 2022-MO-DA HO:MI+ZONE\n"
13
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
+ "Language-Team: LANGUAGE <LL@li.org>\n"
15
+ "X-Generator: grunt-wp-i18n 1.0.3\n"
16
+
17
+ #: class-yith-jetpack.php:233
18
+ msgid "Modules List"
19
+ msgstr ""
20
+
21
+ #: class-yith-jetpack.php:429 class-yith-jetpack.php:460
22
+ #: class-yith-jetpack.php:490
23
+ msgid "Error during request"
24
+ msgstr ""
25
+
26
+ #: class-yith-jetpack.php:434
27
+ msgid "Module %s enabled"
28
+ msgstr ""
29
+
30
+ #: class-yith-jetpack.php:435
31
+ msgid "Activation error for plugin %s"
32
+ msgstr ""
33
+
34
+ #: class-yith-jetpack.php:465
35
+ msgid "Module %s disabled"
36
+ msgstr ""
37
+
38
+ #: class-yith-jetpack.php:466
39
+ msgid "Deactivation error for module %s"
40
+ msgstr ""
41
+
42
+ #: class-yith-jetpack.php:495
43
+ msgid "Module %s installed"
44
+ msgstr ""
45
+
46
+ #: class-yith-jetpack.php:496
47
+ msgid "Installation error for plugin %s"
48
+ msgstr ""
49
+
50
+ #: class-yith-jetpack.php:580
51
+ msgid "install %s now"
52
+ msgstr ""
53
+
54
+ #: class-yith-jetpack.php:580
55
+ msgid "Install now"
56
+ msgstr ""
57
+
58
+ #: class-yith-jetpack.php:596
59
+ msgid "Deactivate %s now"
60
+ msgstr ""
61
+
62
+ #: class-yith-jetpack.php:596
63
+ msgid "Deactivate"
64
+ msgstr ""
65
+
66
+ #: class-yith-jetpack.php:618
67
+ msgid "activate %s now"
68
+ msgstr ""
69
+
70
+ #: class-yith-jetpack.php:618
71
+ msgid "Activate"
72
+ msgstr ""
73
+
74
+ #: class-yith-jetpack.php:645 class-yith-jetpack.php:667
75
+ msgid "Please wait for next page to load..."
76
+ msgstr ""
77
+
78
+ #: migration.php:33 migration.php:34
79
+ msgid "YITH Essential Kit Migration"
80
+ msgstr ""
81
+
82
+ #: migration.php:68
83
+ msgid "YITH Essential Kit for WooCommerce migration panel"
84
+ msgstr ""
85
+
86
+ #: migration.php:71
87
+ msgid ""
88
+ "From version 2.0 of our plugin, modules are no longer bundled with the zip "
89
+ "file. This means you should download them from wordpress.org repository "
90
+ "first."
91
+ msgstr ""
92
+
93
+ #: migration.php:74
94
+ msgid "This page will do the job for you."
95
+ msgstr ""
96
+
97
+ #: templates/yith-list-plugins.php:20
98
+ msgid "Sorry, you don't have sufficient permission to access to this page."
99
+ msgstr ""
100
+
101
+ #: templates/yith-list-plugins.php:39
102
+ msgid "M j, Y @ H:i"
103
+ msgstr ""
104
+
105
+ #: templates/yith-list-plugins.php:47
106
+ msgid ""
107
+ "Here you can activate or deactive some of our plugins to enhance your "
108
+ "e-commerce site."
109
+ msgstr ""
110
+
111
+ #: templates/yith-list-plugins.php:48
112
+ msgid "Plugin enabled"
113
+ msgstr ""
114
+
115
+ #: templates/yith-list-plugins.php:127
116
+ msgid "More information about %s"
117
+ msgstr ""
118
+
119
+ #: templates/yith-list-plugins.php:127
120
+ msgid "More Details"
121
+ msgstr ""
122
+
123
+ #: templates/yith-list-plugins.php:141
124
+ msgid "Premium Activated"
125
+ msgstr ""
126
+
127
+ #: templates/yith-list-plugins.php:156
128
+ msgid "Activate Premium"
129
+ msgstr ""
130
+
131
+ #: templates/yith-list-plugins.php:161
132
+ msgid "Buy Premium Version"
133
+ msgstr ""
134
+
135
+ #. Description of the plugin/theme
136
+ msgid ""
137
+ "With <code><strong>YITH Essential Kit for WooCommerce #1</strong></code> "
138
+ "you will be free to add new and powerful features to make your e-commerce "
139
+ "site unique. Activate the plugin you want and start using your site to a "
140
+ "new and improved level. <a href=\"https://yithemes.com/\" "
141
+ "target=\"_blank\">Find new awesome plugins on <strong>YITH</strong></a>"
142
  msgstr ""
plugin-fw/assets/css/yit-plugin-panel.css CHANGED
@@ -185,6 +185,35 @@
185
  transition : all .2s ease;
186
  }
187
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
188
  .yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions,
189
  .yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-submit-ticket {
190
  margin : 0 auto;
@@ -1159,11 +1188,6 @@ button#yith-plugin-fw-float-save-button.visible {
1159
  display : flex;
1160
  }
1161
 
1162
- button#yith-plugin-fw-float-save-button i {
1163
- font-size : 15px;
1164
- margin-right : 8px;
1165
- }
1166
-
1167
  button#yith-plugin-fw-float-save-button:hover {
1168
  box-shadow : 0px 1px 6px 3px rgba(0, 121, 159, .3);
1169
  }
@@ -1180,12 +1204,6 @@ button#yith-plugin-fw-float-save-button.green {
1180
  left : 70px;
1181
  }
1182
 
1183
- .rtl button#yith-plugin-fw-float-save-button i {
1184
- margin-left : 8px;
1185
- margin-right : 0;
1186
- }
1187
-
1188
-
1189
  /* === Responsive === */
1190
 
1191
  @media (max-width : 1210px) {
@@ -1201,6 +1219,10 @@ button#yith-plugin-fw-float-save-button.green {
1201
  #yith_plugin_fw_panel_premium_tab .yith-plugin-fw-panel-premium-tab__features {
1202
  padding-top : 15px;
1203
  }
 
 
 
 
1204
  }
1205
 
1206
  @media (max-width : 600px) {
@@ -1237,6 +1259,11 @@ button#yith-plugin-fw-float-save-button.green {
1237
  #yith_plugin_fw_panel_premium_tab .yith-plugin-fw-panel-premium-tab__cta-button {
1238
  white-space : unset;
1239
  }
 
 
 
 
 
1240
  }
1241
 
1242
  @media (max-width : 992px) {
@@ -1254,6 +1281,11 @@ button#yith-plugin-fw-float-save-button.green {
1254
  .yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions {
1255
  padding-top : 0 !important;
1256
  }
 
 
 
 
 
1257
  }
1258
 
1259
  @media (min-width : 768px) and (max-width : 992px) {
185
  transition : all .2s ease;
186
  }
187
 
188
+ .yith-plugin-fw-panel-help-tab-content .box-with-image {
189
+ display : grid;
190
+ grid-template-columns: repeat(2, 1fr);
191
+ column-gap : 40px;
192
+ background-color : #fff;
193
+ border : 1px solid #ebebeb;
194
+ padding : 30px 40px;
195
+ max-width : 60%;
196
+ margin : 0 auto 40px;
197
+ }
198
+
199
+ .yith-plugin-fw-panel-help-tab-content .box-with-image img{
200
+ margin : 0 auto;
201
+ max-width: 100%;
202
+ }
203
+
204
+ .yith-plugin-fw-panel-help-tab-content .box-with-image .box-content {
205
+ white-space: initial;
206
+ }
207
+
208
+ .yith-plugin-fw-panel-help-tab-content .box-with-image .box-content .button {
209
+ border-radius: 0;
210
+ padding : 10px 20px;
211
+ min-width : 230px;
212
+ margin-top : 20px;
213
+ text-align : center;
214
+ white-space: initial;
215
+ }
216
+
217
  .yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions,
218
  .yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-submit-ticket {
219
  margin : 0 auto;
1188
  display : flex;
1189
  }
1190
 
 
 
 
 
 
1191
  button#yith-plugin-fw-float-save-button:hover {
1192
  box-shadow : 0px 1px 6px 3px rgba(0, 121, 159, .3);
1193
  }
1204
  left : 70px;
1205
  }
1206
 
 
 
 
 
 
 
1207
  /* === Responsive === */
1208
 
1209
  @media (max-width : 1210px) {
1219
  #yith_plugin_fw_panel_premium_tab .yith-plugin-fw-panel-premium-tab__features {
1220
  padding-top : 15px;
1221
  }
1222
+
1223
+ .yith-plugin-fw-panel-help-tab-content .box-with-image {
1224
+ max-width: 100%;
1225
+ }
1226
  }
1227
 
1228
  @media (max-width : 600px) {
1259
  #yith_plugin_fw_panel_premium_tab .yith-plugin-fw-panel-premium-tab__cta-button {
1260
  white-space : unset;
1261
  }
1262
+
1263
+ .yith-plugin-fw-panel-help-tab-content .box-with-image .box-content a.button {
1264
+ min-width: 0;
1265
+ max-width: 100%;
1266
+ }
1267
  }
1268
 
1269
  @media (max-width : 992px) {
1281
  .yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions {
1282
  padding-top : 0 !important;
1283
  }
1284
+
1285
+ .yith-plugin-fw-panel-help-tab-content .box-with-image {
1286
+ display: block;
1287
+ text-align: center;
1288
+ }
1289
  }
1290
 
1291
  @media (min-width : 768px) and (max-width : 992px) {
plugin-fw/assets/css/yith-bh-onboarding.css ADDED
@@ -0,0 +1,170 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* === YITH BH Onboarding Modal Style === */
2
+ #nfd-ecommerce {
3
+ overflow-x: hidden;
4
+ }
5
+
6
+ #yith-bh-onboarding {
7
+ max-width: 800px;
8
+ margin: 20px auto;
9
+ padding: 30px 20px;
10
+ background-color: #fff;
11
+ box-sizing: border-box;
12
+ }
13
+
14
+ #yith-bh-onboarding header {
15
+ display: flex;
16
+ align-items: flex-end;
17
+ margin-bottom: 40px;
18
+ }
19
+ #yith-bh-onboarding header .logo{
20
+ margin-bottom: 10px;
21
+ }
22
+ #yith-bh-onboarding .yith-bh-onboarding-plugin-description {
23
+ flex: 1;
24
+ }
25
+
26
+ #yith-bh-onboarding header div .claim {
27
+ color: #2C5DB4;
28
+ width: 100%;
29
+ font-weight: 600;
30
+ font-size: 15px;
31
+ }
32
+
33
+ #yith-bh-onboarding header div .plugin-description {
34
+ width: 100%;
35
+ text-align: right;
36
+ font-size: 10px;
37
+ }
38
+
39
+ #yith-bh-onboarding table {
40
+ margin-bottom: 20px !important;
41
+ }
42
+
43
+ #yith-bh-onboarding .submit-area {
44
+ padding: 0 30px 30px;
45
+ text-align: right;
46
+ }
47
+
48
+ #yith-bh-onboarding .submit-area button {
49
+ padding: 3px 50px;
50
+ background-color: #2C5DB4;
51
+ }
52
+
53
+ #yith-bh-onboarding .yith-bh-onboarding-tabs.yith-plugin-ui {
54
+ border: 1px solid #ccc;
55
+ border-radius: 10px;
56
+ }
57
+
58
+ #yith-bh-onboarding ul.yith-bh-onboarding-tabs__nav {
59
+ display: flex;
60
+ align-items: baseline;
61
+ justify-content: center;
62
+ margin-top: 0;
63
+ overflow: hidden;
64
+ }
65
+
66
+ #yith-bh-onboarding ul.yith-bh-onboarding-tabs__nav li {
67
+ width: 50%;
68
+ background-color: #536E8B;
69
+ color: #fff;
70
+ padding: 13px;
71
+ text-align: center;
72
+ cursor: pointer;
73
+ font-weight: 600;
74
+ }
75
+
76
+ #yith-bh-onboarding ul.yith-bh-onboarding-tabs__nav li:first-child {
77
+ border-top-left-radius: 10px;
78
+ }
79
+
80
+ #yith-bh-onboarding ul.yith-bh-onboarding-tabs__nav li:last-child {
81
+ border-top-right-radius: 10px;
82
+ }
83
+
84
+ #yith-bh-onboarding ul.yith-bh-onboarding-tabs__nav li a {
85
+ text-decoration: none;
86
+ }
87
+
88
+ #yith-bh-onboarding ul.yith-bh-onboarding-tabs__nav li.selected {
89
+ background-color: #fff;
90
+ color: #2C5DB4;
91
+ }
92
+
93
+ #yith-bh-onboarding .yith-bh-onboarding-tabs__content .yith-bh-onboarding-tabs__tab {
94
+ display: none;
95
+ }
96
+
97
+ #yith-bh-onboarding .yith-bh-onboarding-tabs__content p.yith-bh-onboarding-tab-description {
98
+ padding: 9px 20px;
99
+ }
100
+
101
+ #yith-bh-onboarding .yith-bh-onboarding-tabs__content .form-table {
102
+ border: 0 !important;
103
+ }
104
+
105
+ #yith-bh-onboarding ul.yith-bh-onboarding-connect-list {
106
+ width: 70%;
107
+ margin: 0 auto 60px;
108
+ }
109
+
110
+ #yith-bh-onboarding ul.yith-bh-onboarding-connect-list li {
111
+ padding-left: 35px;
112
+ margin: 0 auto 40px;
113
+ position: relative;
114
+ }
115
+
116
+ #yith-bh-onboarding ul.yith-bh-onboarding-connect-list li h3 {
117
+ font-size: 13px;
118
+ font-weight: bold;
119
+ margin-bottom: 20px;
120
+ }
121
+
122
+ #yith-bh-onboarding ul.yith-bh-onboarding-connect-list li:before {
123
+ content: "";
124
+ width: 35px;
125
+ height: 35px;
126
+ display: block;
127
+ position: absolute;
128
+ left: -35px;
129
+ top: -5px;
130
+ background: url("../images/bh-onboarding/check.svg") no-repeat center center;
131
+ }
132
+
133
+ #yith-bh-onboarding ul.yith-bh-onboarding-connect-list p {
134
+ font-size: 13px;
135
+ line-height: 1.6em;
136
+ }
137
+
138
+ #yith-bh-onboarding .yith-bh-onboarding-connect-cta {
139
+ width: calc(70% + 70px);
140
+ margin: 20px auto;
141
+ border-radius: 10px;
142
+ background-color: #f6f6f6;
143
+ padding: 30px 0 45px;
144
+ text-align: center;
145
+ }
146
+
147
+ #yith-bh-onboarding .yith-bh-onboarding-connect-cta p {
148
+ font-size: 16px;
149
+ margin-bottom: 30px;
150
+ }
151
+
152
+ #yith-bh-onboarding .yith-bh-onboarding-connect-cta a {
153
+ text-decoration: none;
154
+ font-size: 13px;
155
+ color: white;
156
+ background-color: #2C5DB4;
157
+ padding: 10px 30px;
158
+ border-radius: 5px;
159
+ }
160
+
161
+ @media screen and (max-width: 782px){
162
+
163
+ #yith-bh-onboarding header {
164
+ display: block;
165
+ }
166
+ #yith-bh-onboarding header div .plugin-description{
167
+ text-align: left;
168
+ margin-top: 20px;
169
+ }
170
+ }
plugin-fw/assets/css/yith-fields.css CHANGED
@@ -969,11 +969,7 @@ span.select2.select2-container.select2-container--default.yith-plugin-fw-select2
969
  border : 0;
970
  }
971
 
972
- .yith-plugin-fw-select2-container.select2-container--default .select2-results__option[data-selected=true] {
973
- background-color : #fff;
974
- outline : none;
975
- }
976
-
977
  .yith-plugin-fw-select2-container.select2-container--default .select2-results__option--highlighted[aria-selected] {
978
  background-color : #e8eff1;
979
  color : #4e8ba2;
969
  border : 0;
970
  }
971
 
972
+ .yith-plugin-fw-select2-container.select2-container--default .select2-results__option[data-selected=true],
 
 
 
 
973
  .yith-plugin-fw-select2-container.select2-container--default .select2-results__option--highlighted[aria-selected] {
974
  background-color : #e8eff1;
975
  color : #4e8ba2;
plugin-fw/assets/css/yith-icon.css CHANGED
@@ -6,10 +6,10 @@
6
  /* stylelint-disable function-url-quotes, declaration-colon-newline-after */
7
  @font-face {
8
  font-family: yith-icon;
9
- src: url("../fonts/yith-icon.eot?4f62977f59eef1e01c2d8d7bd1d244d0");
10
- src: url("../fonts/yith-icon.eot?4f62977f59eef1e01c2d8d7bd1d244d0#iefix") format("embedded-opentype"),
11
- url("data:application/x-font-woff;charset=utf-8;base64,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") format("woff"),
12
- url("../fonts/yith-icon.ttf?4f62977f59eef1e01c2d8d7bd1d244d0") format("truetype");
13
  font-weight: 400;
14
  font-style: normal;
15
  }
@@ -43,6 +43,14 @@
43
  content: "\f110";
44
  }
45
 
 
 
 
 
 
 
 
 
46
  .yith-icon-arrow-down:before {
47
  content: "\e900";
48
  }
@@ -51,6 +59,14 @@
51
  content: "\f111";
52
  }
53
 
 
 
 
 
 
 
 
 
54
  .yith-icon-arrow-left:before {
55
  content: "\e901";
56
  }
@@ -59,6 +75,14 @@
59
  content: "\f112";
60
  }
61
 
 
 
 
 
 
 
 
 
62
  .yith-icon-arrow-right:before {
63
  content: "\e902";
64
  }
@@ -67,6 +91,14 @@
67
  content: "\f113";
68
  }
69
 
 
 
 
 
 
 
 
 
70
  .yith-icon-arrow-up:before {
71
  content: "\e903";
72
  }
6
  /* stylelint-disable function-url-quotes, declaration-colon-newline-after */
7
  @font-face {
8
  font-family: yith-icon;
9
+ src: url("../fonts/yith-icon.eot?3c67f638ae05de262cf047afbdfecfb1");
10
+ src: url("../fonts/yith-icon.eot?3c67f638ae05de262cf047afbdfecfb1#iefix") format("embedded-opentype"),
11
+ url("data:application/x-font-woff;charset=utf-8;base64,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") format("woff"),
12
+ url("../fonts/yith-icon.ttf?3c67f638ae05de262cf047afbdfecfb1") format("truetype");
13
  font-weight: 400;
14
  font-style: normal;
15
  }
43
  content: "\f110";
44
  }
45
 
46
+ .yith-icon-arrow-down-long-alt:before {
47
+ content: "\f128";
48
+ }
49
+
50
+ .yith-icon-arrow-down-long:before {
51
+ content: "\f129";
52
+ }
53
+
54
  .yith-icon-arrow-down:before {
55
  content: "\e900";
56
  }
59
  content: "\f111";
60
  }
61
 
62
+ .yith-icon-arrow-left-long-alt:before {
63
+ content: "\f12a";
64
+ }
65
+
66
+ .yith-icon-arrow-left-long:before {
67
+ content: "\f12b";
68
+ }
69
+
70
  .yith-icon-arrow-left:before {
71
  content: "\e901";
72
  }
75
  content: "\f112";
76
  }
77
 
78
+ .yith-icon-arrow-right-long-alt:before {
79
+ content: "\f12c";
80
+ }
81
+
82
+ .yith-icon-arrow-right-long:before {
83
+ content: "\f12d";
84
+ }
85
+
86
  .yith-icon-arrow-right:before {
87
  content: "\e902";
88
  }
91
  content: "\f113";
92
  }
93
 
94
+ .yith-icon-arrow-up-long-alt:before {
95
+ content: "\f12e";
96
+ }
97
+
98
+ .yith-icon-arrow-up-long:before {
99
+ content: "\f12f";
100
+ }
101
+
102
  .yith-icon-arrow-up:before {
103
  content: "\e903";
104
  }
plugin-fw/assets/fonts/yith-icon.eot CHANGED
Binary file
plugin-fw/assets/fonts/yith-icon.ttf CHANGED
Binary file
plugin-fw/assets/fonts/yith-icon.woff2 CHANGED
Binary file
plugin-fw/assets/images/bh-onboarding/check.svg ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg width="100%" height="100%" viewBox="0 0 35 35" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
4
+ <g transform="matrix(2.0825,0,0,3.04444,-3.82583,-18.2777)">
5
+ <ellipse cx="10.24" cy="11.752" rx="8.403" ry="5.748" style="fill:rgb(226,235,252);"/>
6
+ </g>
7
+ <g transform="matrix(0.805374,0,0,0.805374,7.56329,9.79297)">
8
+ <g id="Plugin-onboarding---Step-2">
9
+ <g id="Group">
10
+ <g id="check-verde--1-" serif:id="check-verde-(1)">
11
+ <path id="Path" d="M4.705,4.608L10.178,9.985L20.163,0L24.676,4.449L10.146,19.139L0,9.249L4.705,4.608Z" style="fill:rgb(115,161,239);fill-rule:nonzero;"/>
12
+ </g>
13
+ </g>
14
+ </g>
15
+ </g>
16
+ </svg>
plugin-fw/assets/images/help-tab/documentation.svg ADDED
@@ -0,0 +1,176 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="274px" height="200px" viewBox="0 0 197 144" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>documentation-bluehost</title>
4
+ <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="Help-Bluehost" transform="translate(-358.000000, -322.000000)" fill-rule="nonzero">
6
+ <g id="documentation-bluehost" transform="translate(358.000000, 322.000000)">
7
+ <g id="Group" transform="translate(110.000000, 0.000000)" fill="#E3F6FF">
8
+ <path d="M6.3766672,35.9266104 C6.44826487,35.8558364 6.475114,35.7496756 6.43931516,35.6523614 C6.42141575,35.6081277 4.85074193,31.2643785 5.39219929,25.3016759 C5.89338295,19.8078504 8.34112819,11.7705873 17.1744903,4.67992536 C17.2863617,4.59145796 17.3042611,4.42779327 17.214764,4.31278566 C17.1252669,4.20220141 16.9552225,4.18450793 16.8433511,4.27297533 C7.85784394,11.4830683 5.37429987,19.6751493 4.86864135,25.2751356 C4.32270914,31.3484225 5.92918179,35.7850625 5.9470812,35.8292962 C5.9963046,35.9664207 6.14844964,36.0327712 6.28269527,35.9841142 C6.3184941,35.9708441 6.35429293,35.9487272 6.3766672,35.922187 L6.3766672,35.9266104 Z" id="Path"></path>
9
+ <path d="M11.1289623,4.62242155 C11.1065881,6.29445537 11.9389109,7.26317338 12.981552,7.27644349 C14.024193,7.2897136 14.8788901,6.34311244 14.9012644,4.66665525 C14.9236387,2.99462143 13.0576245,1.21200335 13.0576245,1.21200335 C13.0576245,1.21200335 11.1513366,2.94596436 11.1289623,4.61799818 L11.1289623,4.62242155 Z" id="Path"></path>
10
+ <path d="M7.28953746,9.36869746 C7.73254802,10.9832275 8.80203817,11.6909667 9.80440551,11.4211411 C10.8112477,11.1513155 11.3706045,10.0100861 10.9275939,8.39555608 C10.4845833,6.78102606 8.19793286,5.57344608 8.19793286,5.57344608 C8.19793286,5.57344608 6.84205204,7.75859081 7.2850626,9.37312083 L7.28953746,9.36869746 Z" id="Path"></path>
11
+ <path d="M4.34060855,14.3582587 C5.15950687,15.8223941 6.36324264,16.2603078 7.27611289,15.7648903 C8.18898315,15.2694729 8.46194925,14.026506 7.64305094,12.5623705 C6.82415262,11.0982351 4.31823428,10.4568465 4.31823428,10.4568465 C4.31823428,10.4568465 3.52171024,12.8941233 4.34060855,14.3626821 L4.34060855,14.3582587 Z" id="Path"></path>
12
+ <path d="M2.33587388,19.6574559 C3.2621687,21.0596641 4.49722845,21.404687 5.36982501,20.842919 C6.24242158,20.281151 6.42141575,19.0204906 5.49512093,17.6227057 C4.56882612,16.2204974 2.01815923,15.7693137 2.01815923,15.7693137 C2.01815923,15.7693137 1.40957907,18.259671 2.33587388,19.6618792 L2.33587388,19.6574559 Z" id="Path"></path>
13
+ <path d="M1.37378023,25.4255302 C2.64911367,26.5269493 3.93339682,26.5269493 4.61804951,25.7484362 C5.3027022,24.9743465 5.12818289,23.7136861 3.85284945,22.6122669 C2.57751601,21.5108478 0,21.7629799 0,21.7629799 C0,21.7629799 0.0984467919,24.3241111 1.37825509,25.4211068 L1.37378023,25.4255302 Z" id="Path"></path>
14
+ <path d="M17.2729371,1.37124467 C16.1631733,2.63632846 16.1676481,3.90583563 16.9552225,4.57818785 C17.7427968,5.25054008 19.0136554,5.07802865 20.1234192,3.81294486 C21.2331831,2.54786106 20.9736415,0 20.9736415,0 C20.9736415,0 18.382701,0.106160878 17.277412,1.37124467 L17.2729371,1.37124467 Z" id="Path"></path>
15
+ <path d="M16.2392458,6.25022167 C14.5567006,6.42715647 13.6841041,7.36048752 13.7915006,8.38228597 C13.9033719,9.40408442 14.9549627,10.1339405 16.6375078,9.95700565 C18.320053,9.78007086 19.886252,7.73647396 19.886252,7.73647396 C19.886252,7.73647396 17.9173161,6.06886351 16.234771,6.25022167 L16.2392458,6.25022167 Z" id="Path"></path>
16
+ <path d="M12.8294069,10.2622182 C11.1468618,10.439153 10.2742652,11.372484 10.3816617,12.3942825 C10.493533,13.4160809 11.5451238,14.145937 13.227669,13.9690022 C14.9102141,13.7920674 16.4764131,11.7484705 16.4764131,11.7484705 C16.4764131,11.7484705 14.5074772,10.08086 12.8249321,10.2577948 L12.8294069,10.2622182 Z" id="Path"></path>
17
+ <path d="M10.2876898,14.3847989 C8.60514459,14.5617337 7.73254802,15.4950648 7.83994452,16.5168632 C7.95181588,17.5386617 9.00340661,18.2685177 10.6859518,18.0915829 C12.368497,17.9146481 13.9346959,15.8710512 13.9346959,15.8710512 C13.9346959,15.8710512 11.9657601,14.2034408 10.2832149,14.3803756 L10.2876898,14.3847989 Z" id="Path"></path>
18
+ <path d="M8.65884284,18.8568259 C6.97629766,19.0337607 6.1037011,19.9670917 6.2110976,20.9888902 C6.32296895,22.0106886 7.37455969,22.7405447 9.05710486,22.5636099 C10.73965,22.3866751 12.305849,20.3430782 12.305849,20.3430782 C12.305849,20.3430782 10.3369132,18.6754677 8.65436798,18.8524025 L8.65884284,18.8568259 Z" id="Path"></path>
19
+ <path d="M7.79519598,23.4482839 C6.11265081,23.6252187 5.24005424,24.5585497 5.34745074,25.5803482 C5.4593221,26.6021466 6.51091283,27.3320026 8.193458,27.1550678 C9.87600317,26.978133 11.4422021,24.9345361 11.4422021,24.9345361 C11.4422021,24.9345361 9.4732663,23.2669257 7.79072113,23.4482839 L7.79519598,23.4482839 Z" id="Path"></path>
20
+ </g>
21
+ <path d="M25.1177429,16.7436106 C15.8345531,17.6803268 6.71594304,25.7112261 7.13406467,35.4779361 C7.50770528,44.1836262 14.8025933,51.007005 16.2749152,59.5839521 C18.4500373,72.2629175 7.61890784,83.259345 5.39930471,95.9294315 C3.94032711,104.262211 6.54246705,113.269781 12.1737648,119.347338 C17.8050625,125.429335 26.3142825,128.425939 34.3075226,127.142949 C44.8495254,125.451532 54.0215127,116.936737 64.6747181,117.393996 C73.2551078,117.762468 80.4610337,123.844464 87.9249497,128.306075 C95.3888656,132.763246 105.45937,135.489046 112.060354,129.726688 C116.517352,125.833322 117.851783,119.316263 121.134483,114.299725 C126.067428,106.761601 135.86215,103.152358 144.211238,105.798248 C151.261481,108.031273 157.12408,114.162103 164.476793,114.637121 C171.736096,115.107698 178.657344,109.269869 180.570028,101.918201 C182.48716,94.5665315 179.769369,86.3491769 174.498368,81.0973506 C171.157843,77.7677904 166.620778,75.0686269 165.56213,70.3672878 C164.583547,66.0299807 167.065589,61.6172036 170.134779,58.5318111 C173.20397,55.4464186 176.95372,53.1068476 179.675959,49.6796203 C185.86327,41.8928888 184.964753,31.4513879 179.800506,23.3672157 C177.09606,19.1364545 174.062454,16.4772458 169.787827,14.0710836 C165.495408,11.6560425 160.887174,9.85808003 156.141049,8.71271131 C145.523428,6.15116964 129.34568,5.32543871 121.276822,14.5416614 C117.260185,19.1320151 113.172379,24.8721769 106.500226,24.0952795 C102.385731,23.6158229 99.8369681,20.4860363 96.5453722,18.2219353 C92.2929863,15.3008011 87.9872231,16.9123083 83.9527942,19.4338952 C79.7938184,22.039831 76.4310529,25.8577268 72.3254543,28.5480114 C63.0867455,34.5989322 56.6236527,28.7966186 48.7149265,23.8688695 C41.6246512,19.4516529 33.5513452,15.8779249 25.1266391,16.7302923 L25.1177429,16.7436106 Z" id="Path" fill="#ECF7FA"></path>
22
+ <path d="M38.1177429,27.7436106 C28.8345531,28.6803268 19.715943,36.7112261 20.1340647,46.4779361 C20.5077053,55.1836262 27.8025933,62.007005 29.2749152,70.5839521 C31.4500373,83.2629175 20.6189078,94.259345 18.3993047,106.929432 C16.9403271,115.262211 19.542467,124.269781 25.1737648,130.347338 C30.8050625,136.429335 39.3142825,139.425939 47.3075226,138.142949 C57.8495254,136.451532 67.0215127,127.936737 77.6747181,128.393996 C86.2551078,128.762468 93.4610337,134.844464 100.92495,139.306075 C108.388866,143.763246 118.45937,146.489046 125.060354,140.726688 C129.517352,136.833322 130.851783,130.316263 134.134483,125.299725 C139.067428,117.761601 148.86215,114.152358 157.211238,116.798248 C164.261481,119.031273 170.12408,125.162103 177.476793,125.637121 C184.736096,126.107698 191.657344,120.269869 193.570028,112.918201 C195.48716,105.566532 192.769369,97.3491769 187.498368,92.0973506 C184.157843,88.7677904 179.620778,86.0686269 178.56213,81.3672878 C177.583547,77.0299807 180.065589,72.6172036 183.134779,69.5318111 C186.20397,66.4464186 189.95372,64.1068476 192.675959,60.6796203 C198.86327,52.8928888 197.964753,42.4513879 192.800506,34.3672157 C190.09606,30.1364545 187.062454,27.4772458 182.787827,25.0710836 C178.495408,22.6560425 173.887174,20.85808 169.141049,19.7127113 C158.523428,17.1511696 142.34568,16.3254387 134.276822,25.5416614 C130.260185,30.1320151 126.172379,35.8721769 119.500226,35.0952795 C115.385731,34.6158229 112.836968,31.4860363 109.545372,29.2219353 C105.292986,26.3008011 100.987223,27.9123083 96.9527942,30.4338952 C92.7938184,33.039831 89.4310529,36.8577268 85.3254543,39.5480114 C76.0867455,45.5989322 69.6236527,39.7966186 61.7149265,34.8688695 C54.6246512,30.4516529 46.5513452,26.8779249 38.1266391,27.7302923 L38.1177429,27.7436106 Z" id="Path" fill="#DDEFF7"></path>
23
+ <g id="Group" transform="translate(41.000000, 35.000000)" fill="#B2E4F9">
24
+ <path d="M30.6678034,26.9903235 C30.5748169,26.963378 30.4951143,26.8870327 30.4774026,26.7837419 C30.4685468,26.7388329 29.6051015,22.135658 26.1203252,17.1911744 C22.9056521,12.6329085 16.7419816,6.84413526 5.61460795,5.12861055 C5.47291437,5.10615603 5.37550004,4.97142896 5.39763966,4.82772008 C5.41977928,4.68401121 5.55261701,4.58521135 5.69431059,4.60766587 C17.0165129,6.350136 23.2908816,12.2556727 26.5631176,16.9037566 C30.1098849,21.9425491 30.9866139,26.6400331 30.9954698,26.689433 C31.0220373,26.8331419 30.9290509,26.9723598 30.7873573,26.9948144 C30.747506,27.0037962 30.7120826,26.9993053 30.6766592,26.9948144 L30.6678034,26.9903235 Z" id="Path"></path>
25
+ <path d="M10.7377163,2.00294247 C11.6055895,3.45799485 11.3841932,4.72892023 10.5030363,5.26782852 C9.6218794,5.80673681 8.40862815,5.4160283 7.54518292,3.96097592 C6.67730977,2.50592354 7.36806595,0 7.36806595,0 C7.36806595,0 9.87427108,0.547890093 10.7421442,2.00294247 L10.7377163,2.00294247 Z" id="Path"></path>
26
+ <path d="M16.4187431,4.20348465 C16.8615355,5.84266403 16.308045,7.00131685 15.3117621,7.2797528 C14.3154791,7.55369784 13.2572052,6.83964436 12.8188407,5.20046498 C12.3760483,3.56128561 13.7132814,1.34277982 13.7132814,1.34277982 C13.7132814,1.34277982 15.9759507,2.56430527 16.4187431,4.20348465 Z" id="Path"></path>
27
+ <path d="M21.4665768,7.07317129 C21.510856,8.7707324 20.7049738,9.76771273 19.6732674,9.79465814 C18.6415611,9.82160356 17.7825438,8.87402315 17.7338366,7.17646204 C17.6895574,5.47890093 19.5050063,3.64212185 19.5050063,3.64212185 C19.5050063,3.64212185 21.4178696,5.37111928 21.4665768,7.07317129 Z" id="Path"></path>
28
+ <path d="M25.8635055,10.6928386 C25.7838029,12.3903997 24.9070739,13.3200165 23.8753676,13.2706166 C22.8436612,13.2212167 22.0554907,12.2107636 22.1351933,10.5132025 C22.214896,8.81564142 24.1587547,7.12257121 24.1587547,7.12257121 C24.1587547,7.12257121 25.9387803,8.99078661 25.8635055,10.6883477 L25.8635055,10.6928386 Z" id="Path"></path>
29
+ <path d="M29.6095295,15.2511046 C29.0781786,16.8633385 27.9800533,17.5145194 27.00591,17.1821926 C26.0273387,16.8498658 25.5402671,15.6597767 26.071618,14.0475427 C26.6029689,12.4353088 28.932057,11.3440195 28.932057,11.3440195 C28.932057,11.3440195 30.1453083,13.6343797 29.6139574,15.2466137 L29.6095295,15.2511046 Z" id="Path"></path>
30
+ <path d="M3.84786617,2.27688752 C5.43749098,2.82028671 6.07511207,3.93403051 5.74744568,4.92202904 C5.41977928,5.91451847 4.24195143,6.40402683 2.65675455,5.86062764 C1.06712974,5.31722845 0,2.95501378 0,2.95501378 C0,2.95501378 2.26266929,1.73348833 3.84786617,2.27239662 L3.84786617,2.27688752 Z" id="Path"></path>
31
+ <path d="M7.20423275,6.02230012 C8.73186662,5.32171935 9.94954579,5.69446425 10.3746265,6.64653556 C10.7997072,7.59860687 10.2683563,8.7707324 8.74515039,9.47131317 C7.21751653,10.1718939 4.84857705,9.17940451 4.84857705,9.17940451 C4.84857705,9.17940451 5.68102681,6.71839 7.20866068,6.02230012 L7.20423275,6.02230012 Z" id="Path"></path>
32
+ <path d="M12.1457962,7.80069748 C13.6734301,7.1001167 14.8911093,7.4728616 15.31619,8.42493291 C15.7412707,9.37700422 15.2099198,10.5491297 13.6867139,11.2497105 C12.15908,11.9502913 9.79014052,10.9578019 9.79014052,10.9578019 C9.79014052,10.9578019 10.6225903,8.49678735 12.1502241,7.80069748 L12.1457962,7.80069748 Z" id="Path"></path>
33
+ <path d="M16.4054593,10.1180031 C17.9330932,9.41742234 19.1507724,9.79016724 19.5758531,10.7422386 C20.0009338,11.6943099 19.4695829,12.8664354 17.946377,13.5670162 C16.4187431,14.2675969 14.0498036,13.2751075 14.0498036,13.2751075 C14.0498036,13.2751075 14.8822534,10.814093 16.4098873,10.1180031 L16.4054593,10.1180031 Z" id="Path"></path>
34
+ <path d="M20.0629248,13.2032531 C21.5905586,12.5026723 22.8082378,12.8754172 23.2333185,13.8274885 C23.6583993,14.7795598 23.1270484,15.9516853 21.6038424,16.6522661 C20.0762085,17.3528469 17.7072691,16.3603575 17.7072691,16.3603575 C17.7072691,16.3603575 18.5397188,13.8993429 20.0673527,13.2032531 L20.0629248,13.2032531 Z" id="Path"></path>
35
+ <path d="M23.1314763,16.7869932 C24.6591101,16.0864124 25.8767893,16.4591573 26.30187,17.4112286 C26.7269508,18.3632999 26.1955999,19.5354255 24.6723939,20.2360062 C23.1447601,20.936587 20.7758206,19.9440976 20.7758206,19.9440976 C20.7758206,19.9440976 21.6082703,17.4830831 23.1359042,16.7869932 L23.1314763,16.7869932 Z" id="Path"></path>
36
+ </g>
37
+ <g id="Group" transform="translate(133.000000, 38.000000)" fill="#B2E4F9">
38
+ <path d="M0.332244101,26.9903218 C0.425243793,26.9633719 0.504957816,26.8870139 0.522672043,26.783706 C0.531529157,26.7387895 1.39509773,22.1348487 4.88037194,17.1895426 C8.09550419,12.6305184 14.2600553,6.84078219 25.3890185,5.12497208 C25.5307323,5.10251383 25.6281606,4.96776435 25.6060178,4.82403156 C25.583875,4.68029878 25.4510183,4.58148249 25.3093045,4.60394074 C13.9854847,6.34670074 7.71021974,12.2532198 4.43751626,16.9020771 C0.890242258,21.9417078 0.0133880103,26.6399732 0.00453089667,26.6893813 C-0.0220404442,26.8331141 0.0709592488,26.9723552 0.212673067,26.9948135 C0.252530078,27.0037968 0.287958532,26.9993051 0.323386987,26.9948135 L0.332244101,26.9903218 Z" id="Path"></path>
39
+ <path d="M20.2651783,2.00327568 C19.3971812,3.45857011 19.618609,4.72970692 20.4998918,5.26870486 C21.3811746,5.8077028 22.5945992,5.4169293 23.4581678,3.96163486 C24.3217363,2.50634042 23.63531,0 23.63531,0 C23.63531,0 21.1287469,0.547981239 20.2607497,2.00327568 L20.2651783,2.00327568 Z" id="Path"></path>
40
+ <path d="M14.5789114,4.19969228 C14.1360557,5.83914435 14.6896253,6.99798992 15.6860506,7.27647219 C16.6824758,7.55046281 17.7409009,6.83629054 18.179328,5.19683847 C18.6177552,3.5573864 17.2847596,1.33851155 17.2847596,1.33851155 C17.2847596,1.33851155 15.021767,2.56024021 14.5789114,4.19969228 Z" id="Path"></path>
41
+ <path d="M9.53478515,7.06985631 C9.49049958,8.76769982 10.2964969,9.76484601 11.3283507,9.79179591 C12.3602044,9.81874581 13.2193444,8.87100776 13.2680585,7.17316425 C13.3123441,5.47532074 11.4966358,3.63823609 11.4966358,3.63823609 C11.4966358,3.63823609 9.58349927,5.36752115 9.53478515,7.06985631 Z" id="Path"></path>
42
+ <path d="M5.13722824,10.6901258 C5.21694226,12.3879693 6.09379651,13.3177408 7.12565024,13.2683326 C8.15750398,13.2189245 8.94578709,12.2083033 8.86607307,10.5104598 C8.78635905,8.81261632 6.84222261,7.11926446 6.84222261,7.11926446 C6.84222261,7.11926446 5.06194277,8.98779065 5.13722824,10.6856342 L5.13722824,10.6901258 Z" id="Path"></path>
43
+ <path d="M1.39066918,15.24915 C1.92209599,16.8616522 3.02037808,17.5129414 3.99466058,17.1805593 C4.96894308,16.8481773 5.46051288,15.6578902 4.92908607,14.045388 C4.39765925,12.4328858 2.06823837,11.341415 2.06823837,11.341415 C2.06823837,11.341415 0.854813804,13.6321562 1.38624062,15.2446584 L1.39066918,15.24915 Z" id="Path"></path>
44
+ <path d="M27.1515841,2.27277465 C25.5617322,2.81626424 24.9240201,3.93019331 25.2517333,4.9183562 C25.5794465,5.91101074 26.7574426,6.40060054 28.3428659,5.85711095 C29.9327178,5.31362136 31,2.95101372 31,2.95101372 C31,2.95101372 28.7370075,1.72928506 27.1515841,2.268283 L27.1515841,2.27277465 Z" id="Path"></path>
45
+ <path d="M23.7991666,6.02330198 C22.2713145,5.32260466 21.0534614,5.69541156 20.62832,6.64764126 C20.2031785,7.59987095 20.7346053,8.77219147 22.2580289,9.47288879 C23.785881,10.1735861 26.1551589,9.18093158 26.1551589,9.18093158 C26.1551589,9.18093158 25.3225902,6.71950765 23.7947381,6.02330198 L23.7991666,6.02330198 Z" id="Path"></path>
46
+ <path d="M18.8568972,7.79750353 C17.3290451,7.09680621 16.111192,7.46961312 15.6860506,8.42184281 C15.2609091,9.3740725 15.7923359,10.546393 17.3157595,11.2470903 C18.8436116,11.9477877 21.2128895,10.9551331 21.2128895,10.9551331 C21.2128895,10.9551331 20.3803208,8.4937092 18.8524687,7.79750353 L18.8568972,7.79750353 Z" id="Path"></path>
47
+ <path d="M14.592197,10.1151947 C13.0643449,9.41449735 11.8464918,9.78730426 11.4213503,10.739534 C10.9962089,11.6917636 11.5276357,12.8640842 13.0510593,13.5647815 C14.5789114,14.2654788 16.9481892,13.2728243 16.9481892,13.2728243 C16.9481892,13.2728243 16.1156206,10.8114003 14.5877685,10.1151947 L14.592197,10.1151947 Z" id="Path"></path>
48
+ <path d="M10.9342091,13.2054495 C9.406357,12.5047522 8.18850388,12.8775591 7.76336243,13.8297888 C7.33822097,14.7820185 7.86964779,15.954339 9.39307133,16.6550363 C10.9209234,17.3557337 13.2902013,16.3630791 13.2902013,16.3630791 C13.2902013,16.3630791 12.4576326,13.9016552 10.9297805,13.2054495 L10.9342091,13.2054495 Z" id="Path"></path>
49
+ <path d="M7.86964779,16.7852942 C6.34179569,16.0845969 5.12394257,16.4574038 4.69880111,17.4096335 C4.27365966,18.3618632 4.80508648,19.5341837 6.32851002,20.234881 C7.85636212,20.9355783 10.22564,19.9429238 10.22564,19.9429238 C10.22564,19.9429238 9.39307133,17.4814999 7.86521923,16.7852942 L7.86964779,16.7852942 Z" id="Path"></path>
50
+ </g>
51
+ <path d="M69.9135227,28 L140.086477,28 C141.144068,28 142,28.850578 142,29.9015539 L142,120.098446 C142,121.149422 141.144068,122 140.086477,122 L69.9135227,122 C68.8559317,122 68,121.149422 68,120.098446 L68,29.9015539 C68,28.850578 68.8559317,28 69.9135227,28 Z" id="Path" fill="#414A59"></path>
52
+ <rect id="Rectangle" fill="#FFFFFF" x="71" y="32" width="67" height="87"></rect>
53
+ <g id="Group" transform="translate(82.000000, 40.000000)" fill="#E5E5E5">
54
+ <g>
55
+ <rect id="Rectangle" x="0" y="6.49645752" width="47" height="1.69783622" rx="0.848918108"></rect>
56
+ <path d="M46.1601618,12.3763324 L0.839838239,12.3763324 C0.375717107,12.3763324 0,11.9965533 0,11.5274143 L0,11.5274143 C0,11.0582754 0.375717107,10.6784962 0.839838239,10.6784962 L46.1601618,10.6784962 C46.6242829,10.6784962 47,11.0582754 47,11.5274143 L47,11.5274143 C47,11.9965533 46.6242829,12.3763324 46.1601618,12.3763324 Z" id="Path"></path>
57
+ <path d="M31.9978369,1.69783622 L15.0065833,1.69783622 C14.5424621,1.69783622 14.166745,1.31805706 14.166745,0.848918108 L14.166745,0.848918108 C14.166745,0.379779154 14.5424621,0 15.0065833,0 L31.9978369,0 C32.4619581,0 32.8376752,0.379779154 32.8376752,0.848918108 L32.8376752,0.848918108 C32.8376752,1.31805706 32.4619581,1.69783622 31.9978369,1.69783622 Z" id="Path"></path>
58
+ <rect id="Rectangle" x="0" y="14.8605349" width="37.2799774" height="1.69783622" rx="0.848918108"></rect>
59
+ <rect id="Rectangle" x="0" y="19.0470416" width="47" height="1.69783622" rx="0.848918108"></rect>
60
+ </g>
61
+ <g transform="translate(0.000000, 25.391587)" id="Rectangle">
62
+ <rect x="0" y="0" width="30.2076554" height="1.69783622" rx="0.848918108"></rect>
63
+ <rect x="37.2799774" y="0" width="9.72002257" height="1.69783622" rx="0.848918108"></rect>
64
+ <rect x="0" y="4.18203868" width="47" height="1.69783622" rx="0.848918108"></rect>
65
+ </g>
66
+ <g transform="translate(0.000000, 44.657560)" id="Rectangle">
67
+ <rect x="0" y="0" width="30.2076554" height="1.69783622" rx="0.848918108"></rect>
68
+ <rect x="37.2799774" y="0" width="9.72002257" height="1.69783622" rx="0.848918108"></rect>
69
+ <rect x="0" y="4.18203868" width="47" height="1.69783622" rx="0.848918108"></rect>
70
+ </g>
71
+ <g transform="translate(0.000000, 35.024574)" id="Rectangle">
72
+ <rect x="16.7923446" y="4.18203868" width="30.2076554" height="1.69783622" rx="0.848918108"></rect>
73
+ <rect x="0" y="4.18203868" width="9.72002257" height="1.69783622" rx="0.848918108"></rect>
74
+ <rect x="0" y="0" width="47" height="1.69783622" rx="0.848918108"></rect>
75
+ </g>
76
+ <g transform="translate(0.000000, 55.751580)" id="Path">
77
+ <path d="M1.37468259,1.69783622 L45.6253174,1.69783622 C46.385592,1.69783622 47,1.31805706 47,0.848918108 L47,0.848918108 C47,0.379779154 46.385592,0 45.6253174,0 L1.37468259,0 C0.614407975,0 0,0.379779154 0,0.848918108 L0,0.848918108 C0,1.31805706 0.614407975,1.69783622 1.37468259,1.69783622 Z"></path>
78
+ <path d="M1.37468259,5.88434289 L45.6253174,5.88434289 C46.385592,5.88434289 47,5.50456373 47,5.03542478 L47,5.03542478 C47,4.56628582 46.385592,4.18650667 45.6253174,4.18650667 L1.37468259,4.18650667 C0.614407975,4.18650667 0,4.56628582 0,5.03542478 L0,5.03542478 C0,5.50456373 0.614407975,5.88434289 1.37468259,5.88434289 Z"></path>
79
+ <path d="M22.8347597,10.0663816 L45.6253174,10.0663816 C46.385592,10.0663816 47,9.68660241 47,9.21746346 L47,9.21746346 C47,8.7483245 46.385592,8.36854535 45.6253174,8.36854535 L22.8347597,8.36854535 C22.0744851,8.36854535 21.4600771,8.7483245 21.4600771,9.21746346 L21.4600771,9.21746346 C21.4600771,9.68660241 22.0744851,10.0663816 22.8347597,10.0663816 Z"></path>
80
+ <path d="M22.8347597,14.2484202 L45.6253174,14.2484202 C46.385592,14.2484202 47,13.8686411 47,13.3995021 L47,13.3995021 C47,12.9303632 46.385592,12.550584 45.6253174,12.550584 L22.8347597,12.550584 C22.0744851,12.550584 21.4600771,12.9303632 21.4600771,13.3995021 L21.4600771,13.3995021 C21.4600771,13.8686411 22.0744851,14.2484202 22.8347597,14.2484202 Z"></path>
81
+ </g>
82
+ </g>
83
+ <path d="M107,23.5 C107,24.8841808 105.879473,26 104.5,26 C103.120527,26 102,24.8794727 102,23.5 C102,22.1205273 103.120527,21 104.5,21 C105.879473,21 107,22.1205273 107,23.5 Z" id="Path" fill="#FFFFFF"></path>
84
+ <g id="Group" transform="translate(4.000000, 55.939667)" fill="#C2EBFF">
85
+ <path d="M2.93251152,0.852687558 L3.1881558,0.845135567 C4.19439556,0.815410223 5.03421121,1.60703157 5.06393656,2.61327133 C5.06501135,2.64965454 5.06499609,2.68606177 5.06389078,2.72244406 L5.05946074,2.86826367 C5.02893766,3.87296381 4.22116579,4.68005863 3.2164404,4.70973923 L2.96079613,4.71729123 C1.95455637,4.74701657 1.11474071,3.95539522 1.08501537,2.94915546 C1.08394057,2.91277226 1.08395584,2.87636502 1.08506114,2.83998273 L1.08949119,2.69416312 C1.12001427,1.68946298 1.92778614,0.882368165 2.93251152,0.852687558 Z" id="Rectangle" transform="translate(3.074476, 2.781213) rotate(32.470000) translate(-3.074476, -2.781213) "></path>
86
+ <path d="M5.92505754,7.55668777 C6.105641,7.90807732 5.94881852,8.32618641 5.573395,8.49520923 C5.19797148,8.66423205 4.75126502,8.51744907 4.57068156,8.16605952 C4.3900981,7.81466997 4.54692058,7.39656089 4.92234409,7.22753807 C5.29776761,7.05851525 5.74447407,7.20529822 5.92505754,7.55668777 Z" id="Path"></path>
87
+ <path d="M2.71257276,14.1441298 C3.0547309,14.8068772 2.75534253,15.6075116 2.04726526,15.9277654 C1.339188,16.2480192 0.483792646,15.9677971 0.141634505,15.3050497 C-0.200523637,14.6423024 0.0988647369,13.8416679 0.806942002,13.5214142 C1.51501927,13.2011604 2.37041462,13.4813825 2.71257276,14.1441298 Z" id="Path"></path>
88
+ </g>
89
+ <g id="Group" transform="translate(20.000000, 61.000000)">
90
+ <g>
91
+ <path d="M9.8410596,9.33125285 C9.8410596,9.33125285 13.4701987,9.88611482 13.9116998,14.0764325 C14.3532009,18.2667501 14.8918322,28.9334167 14.8918322,28.9334167 C14.8918322,28.9334167 15.0198675,32.1072272 12.2384106,33.438896 L9.39514349,23.4069914 L9.83664459,9.33125285 L9.8410596,9.33125285 Z" id="Path" fill="#3B4956"></path>
92
+ <path d="M9.8410596,9.33125285 C9.8410596,9.33125285 12.8565121,9.75738685 13.7704194,13.2197256 C13.7704194,13.2197256 15.1434879,17.077126 14.6225166,22.3150231 C14.6225166,22.3150231 15.4746137,10.5253158 9.98233996,10.1435708 L9.8410596,9.33569175 L9.8410596,9.33125285 Z" id="Path" fill="#3B4956"></path>
93
+ <rect id="Rectangle" fill="#FE9E80" x="10.397351" y="57.1736718" width="1.64238411" height="2.18837563"></rect>
94
+ <path d="M7.11258278,31.0995979 L10.8653422,43.8614233 L10.1059603,59.8725205 L12.0838852,59.9479817 L15.0286976,43.6705508 C15.0286976,43.6705508 13.5143488,28.3741158 11.6203091,25.5776115 L5.68653422,26.3411016 L7.11258278,31.0995979 L7.11258278,31.0995979 Z" id="Path" fill="#062E5B"></path>
95
+ <rect id="Rectangle" fill="#FE9E80" x="3.22295806" y="57.1736718" width="1.64238411" height="2.18837563"></rect>
96
+ <path d="M2.6401766,23.0873909 C2.6401766,23.0873909 -0.136865342,21.0233044 3.200883,58.8471355 L4.92715232,59.1001526 L8.24724062,24.5122765 L2.6401766,23.0873909 L2.6401766,23.0873909 Z" id="Path" fill="#062E5B"></path>
97
+ <path d="M1.94701987,15.4125401 C1.94701987,15.4125401 0.812362031,12.1277572 2.89624724,10.6984328 C4.98013245,9.26910831 10.9845475,9.14481923 12.781457,11.8081567 C14.4415011,14.267305 13.5011038,24.3302818 13.1258278,28.9955613 C13.1258278,28.9955613 7.19205298,30.32723 1.50993377,28.6138162 C1.50993377,28.6138162 2.90066225,23.3137746 1.95143488,15.4081012 L1.94701987,15.4125401 Z" id="Path" fill="#FFFFFF"></path>
98
+ <g transform="translate(6.374388, 0.081227)" id="Path">
99
+ <path d="M3.61236745,6.60888275 C3.61236745,6.60888275 3.31656171,8.36668548 4.01413346,10.2487773 C4.82649549,12.4415918 0.61898997,12.0687246 0.0891886455,10.8968561 C0.0891886455,10.8968561 -0.180127028,10.5284277 0.217223966,9.82264331 C0.610159948,9.11685887 1.45342706,6.24489329 0.504199683,4.69571865 L3.61236745,6.60444385 L3.61236745,6.60888275 Z" fill="#FE9E80"></path>
100
+ <path d="M0.870645599,5.71222579 C0.848570544,5.6012534 0.826495489,5.490281 0.795590411,5.3837475 L3.59912242,6.72429404 C3.56821734,6.95955551 3.51965222,7.54992866 3.58587739,8.30897984 C2.10243368,7.62095099 1.2326765,6.34698789 0.870645599,5.71222579 Z" fill="#F0736D"></path>
101
+ <path d="M5.9920584,4.14529558 C5.60353743,6.16943206 4.2702041,7.6120732 3.02075597,7.36793393 C1.76689284,7.12379466 0.221638977,4.88659117 0.614574959,2.86245469 C1.00751094,0.838318202 3.17969637,-0.209261208 4.43355951,0.0348780613 C5.68742264,0.27901733 6.38499438,2.11672019 5.99647341,4.14085668 L5.9920584,4.14529558 Z" fill="#FE9E80"></path>
102
+ </g>
103
+ <path d="M13.2362031,2.20682509 C13.2362031,2.20682509 13.218543,3.36093799 9.00220751,1.85615232 C9.00220751,1.85615232 7.85871965,1.46552949 8.13686534,4.23983936 L7.8013245,4.6260233 C7.8013245,4.6260233 7.77041943,3.47191039 7.29801325,3.68497739 C6.82560706,3.89804439 6.93156733,4.40407851 7.36423841,5.45609681 C7.36423841,5.45609681 7.41721854,6.2062702 7.27152318,6.45928726 C7.27152318,6.45928726 5.83664459,6.79220445 6.57836645,5.0477184 C6.57836645,5.0477184 4.20750552,0.631017075 7.63355408,0.355805535 C7.63355408,0.355805535 12.3399558,-1.20224689 13.2362031,2.20238619 L13.2362031,2.20682509 Z" id="Path" fill="#282F39"></path>
104
+ <path d="M6.75055188,9.3800807 C6.75055188,9.3800807 8.07505519,11.7282566 7.3200883,17.8850051 L6.43708609,27.5662368 C6.43708609,27.5662368 6.38852097,32.2315163 3.02869757,32.5644335 L0,32.5644335 C0,32.5644335 1.70419426,20.6770705 1.58057395,13.756832 C1.58057395,13.756832 1.26269316,9.18476929 6.7593819,9.37564181 L6.75055188,9.3800807 Z" id="Path" fill="#3B4956"></path>
105
+ <path d="M6.75055188,9.3800807 C6.75055188,9.3800807 8.20309051,11.9191291 7.3200883,17.8850051 L6.8785872,22.8343739 C6.8785872,22.8343739 6.81677704,11.328756 4.77704194,9.47329752 C4.77704194,9.47329752 6.02207506,9.23359714 6.75055188,9.3800807 Z" id="Path" fill="#282F39"></path>
106
+ <path d="M10,14.1430159 C9.598234,14.0453602 9.29801325,13.6858096 9.29801325,13.2507978 C9.29801325,12.7403248 9.70860927,12.3319464 10.2119205,12.3319464 C10.7152318,12.3319464 11.1258278,12.7447637 11.1258278,13.2507978 C11.1258278,13.4638648 11.0507726,13.6547374 10.9315673,13.8145376 C11.2317881,14.6890001 11.8233996,17.077126 11.5717439,21.8666946 L10.5386313,22.7722293 L9.36865342,21.8311834 C9.36865342,21.8311834 10.3311258,16.4956307 9.99558499,14.1430159 L10,14.1430159 Z" id="Path" fill="#64C4FF"></path>
107
+ <polygon id="Path" fill="#FFFFFF" points="10.0573951 12.2831186 9.3200883 14.4049108 8.39735099 13.6636152 8.86975717 12.5006245 9.77041943 12.0700516"></polygon>
108
+ <path d="M9.96909492,12.349702 L11.2935982,13.5881539 L11.7969095,12.860175 C11.7969095,12.860175 11.4966887,12.2254129 11.214128,12.1943406 C10.9315673,12.1632684 10.1236203,12.1144405 10.1236203,12.1144405 L9.96467991,12.3541409 L9.96909492,12.349702 Z" id="Path" fill="#FFFFFF"></path>
109
+ <path d="M11.1434879,22.9453463 C11.3863135,23.6422529 12.1412804,24.0062424 12.8344371,23.766542 C13.5275938,23.5224027 13.8896247,22.7633516 13.6512141,22.0664449 C13.4083885,21.3695383 12.6534216,21.0055488 11.9602649,21.2452492 C11.2671082,21.4893885 10.9050773,22.2484396 11.1434879,22.9453463 Z" id="Path" fill="#FE9E80"></path>
110
+ <polygon id="Path" fill="#3B4956" points="2.30463576 12.988903 1.34657837 24.9384105 11.3863135 23.682203 11.187638 21.5914831 4.7593819 21.4583162 5.1611479 15.7454573"></polygon>
111
+ <g transform="translate(11.395143, 6.710623)">
112
+ <path d="M0.348785872,2.50521853 C-0.0529801325,3.18880848 0.799116998,3.56611462 1.49227373,3.51284787 C2.18543046,3.45958112 2.59161148,2.56736307 2.53863135,1.87045643 C2.48565121,1.17354979 1.2803532,-0.051585456 0.587196468,0.00168129364 C-0.105960265,0.0549480433 1.22737307,1.00931064 0.348785872,2.50077963 L0.348785872,2.50521853 Z" id="Path" fill="#FE9E80"></path>
113
+ <polygon id="Rectangle" fill="#FE9E80" transform="translate(1.162557, 3.583125) rotate(167.890000) translate(-1.162557, -3.583125) " points="0.472204732 2.89380735 1.85443221 2.89227388 1.85290854 4.27244355 0.470681062 4.27397702"></polygon>
114
+ <path d="M2.00883002,3.55723683 L4.36644592,14.2816091 C4.36644592,14.2816091 4.82560706,15.9950229 3.78807947,16.5099348 C2.75055188,17.0248467 1.17880795,16.8384131 1.13465784,14.8897378 L0,3.77918162 L2.01324503,3.55723683 L2.00883002,3.55723683 Z" id="Path" fill="#3B4956"></path>
115
+ </g>
116
+ <polygon id="Path" fill="#282F39" points="6.74172185 24.2548205 2.93156733 24.405743 1.88962472 15.1728397 1.55408389 25.8838953 6.62251656 25.6441949"></polygon>
117
+ <path d="M6.98896247,21.5027051 L5.48344371,21.5027051 C5.48344371,21.5027051 6.90507726,13.6946874 4.77262693,9.47329752 C4.77262693,9.47329752 6.08388521,9.1714526 6.74613687,9.3800807 C6.74613687,9.3800807 7.74392936,18.0758776 6.98896247,21.5027051 Z" id="Path" fill="#282F39"></path>
118
+ </g>
119
+ <path d="M10.384106,58.2700791 C10.384106,58.2700791 9.37306843,59.4774587 10.2560706,61 L16,61 C16,61 15.9381898,59.0024969 12.781457,59.4774587 L12.1236203,58.7317242 C12.1236203,58.7317242 10.9183223,59.508531 10.384106,58.2700791 L10.384106,58.2700791 Z" id="Path" fill="#282F39"></path>
120
+ <path d="M3.20971302,58.2700791 C3.20971302,58.2700791 2.1986755,59.4774587 3.0816777,61 L8.82560706,61 C8.82560706,61 8.76379691,59.0024969 5.60706402,59.4774587 L4.94922737,58.7317242 C4.94922737,58.7317242 3.74392936,59.508531 3.20971302,58.2700791 L3.20971302,58.2700791 Z" id="Path" fill="#282F39"></path>
121
+ </g>
122
+ <g id="Group" transform="translate(44.000000, 59.000000)">
123
+ <g transform="translate(0.000000, 10.153651)">
124
+ <g transform="translate(3.686949, 13.722670)" fill="#FE9E80">
125
+ <polygon id="Rectangle" transform="translate(0.850467, 0.947390) rotate(-29.400000) translate(-0.850467, -0.947390) " points="0.317943382 0.160015062 1.36739467 0.170352929 1.38299137 1.73476414 0.333540078 1.72442627"></polygon>
126
+ <path d="M0.644272177,2.69879007 C0.35980637,2.20117005 0.538744539,1.57354121 1.04344194,1.29559129 C1.5527275,1.01764137 2.19506964,1.19248084 2.47953545,1.68561779 C2.76400126,2.1832378 2.58506309,2.81086665 2.08036569,3.08881656 C1.57108013,3.36676648 0.928737985,3.19192702 0.644272177,2.69879007 Z" id="Path"></path>
127
+ </g>
128
+ <polygon id="Path" fill="#1F4C72" points="7.65304785 3.35781433 2.48678173 7.83191139 5.16167795 14.3592514 3.91369893 14.9106682 0 7.63913967 6.34083461 0"></polygon>
129
+ </g>
130
+ <g transform="translate(13.346952, 10.826111)">
131
+ <g transform="translate(1.351316, 13.726786)" fill="#FE9E80">
132
+ <polygon id="Rectangle" transform="translate(1.767504, 0.947390) rotate(-150.600000) translate(-1.767504, -0.947390) " points="1.25057627 0.170352929 2.30002756 0.160015062 2.28443086 1.72442627 1.23497957 1.73476414"></polygon>
133
+ <path d="M1.97051012,2.69019134 C2.25497592,2.19257132 2.07603776,1.56494248 1.57134036,1.28699256 C1.06664296,1.00904264 0.419712652,1.1838821 0.135246844,1.67701906 C-0.149218963,2.17463907 0.0297192063,2.80226791 0.534416606,3.08021783 C1.03911401,3.35816775 1.68604431,3.18332829 1.97051012,2.69019134 Z" id="Path"></path>
134
+ </g>
135
+ <polygon id="Path" fill="#1F4C72" points="0 3.35781433 5.16626611 7.83191139 2.48678173 14.3592514 3.73934892 14.9061851 7.65304785 7.63913967 1.31221324 0"></polygon>
136
+ </g>
137
+ <path d="M12.5761416,2.01240841 C12.3972034,2.0751713 12.2228534,2.15138337 12.0576797,2.24104463 C10.3279441,3.16455565 9.27266769,5.08778976 8.70373607,6.86756584 C8.36880052,7.92108569 8.26327289,9.06874987 8.58444396,10.1222697 C8.90561503,11.1757896 9.70395456,12.126199 10.7729954,12.4758779 C11.8420363,12.8255568 13.1588377,12.480361 13.7736509,11.561333 C14.2370548,10.8619751 14.2737601,9.95191332 14.764693,9.27048771 C15.1822154,8.69217256 15.9209089,8.26179849 15.9622023,7.55795757 C15.9943194,6.99757468 15.5446799,6.51788691 15.4620931,5.96198708 C15.3519773,5.23573084 15.8842036,4.5587883 15.9163207,3.828049 C15.9576142,2.99868231 15.315272,2.22759545 14.5123443,1.95412859 C13.8883548,1.74342462 13.2001311,1.79273832 12.5761416,2.01689148 L12.5761416,2.01240841 Z" id="Path" fill="#81CAE3"></path>
138
+ <g transform="translate(3.980125, 57.660672)" id="Path">
139
+ <path d="M0.36027273,2.22359934 L0.649326696,1.87840348 L0.603445114,0 L1.91565835,0 L1.72754387,1.80667446 C1.72754387,1.80667446 3.31963476,2.6674226 3.2049308,4.72066554 L2.40659128,4.80584374 C2.40659128,4.80584374 0.938380661,2.30877754 0.36027273,2.21911628 L0.36027273,2.22359934 Z" fill="#FE9E80"></path>
140
+ <path d="M0.36027273,2.22359934 C0.36027273,2.22359934 -0.360068104,2.86467738 0.236392459,3.65817956 L0.61262143,5.33932825 L1.02096751,5.33932825 L1.33296226,3.75232389 C1.33296226,3.75232389 2.02118599,3.81508677 1.92483467,5.33932825 L4.08126902,5.33932825 C4.08126902,5.33932825 4.42538088,4.94033563 3.17740185,4.54582607 L2.52129523,4.42478336 C2.52129523,4.42478336 1.8009544,2.56431214 0.364860888,2.2280824 L0.36027273,2.22359934 Z" fill="#282F39"></path>
141
+ </g>
142
+ <g transform="translate(12.229633, 57.660672)" id="Path">
143
+ <path d="M0.36027273,2.22359934 L0.649326696,1.87840348 L0.603445114,0 L1.91565835,0 L1.72754387,1.80667446 C1.72754387,1.80667446 3.31963476,2.6674226 3.2049308,4.72066554 L2.40659128,4.80584374 C2.40659128,4.80584374 0.938380661,2.30877754 0.36027273,2.21911628 L0.36027273,2.22359934 Z" fill="#FE9E80"></path>
144
+ <path d="M0.36027273,2.22359934 C0.36027273,2.22359934 -0.360068104,2.86467738 0.236392459,3.65817956 L0.61262143,5.33932825 L1.02096751,5.33932825 L1.33296226,3.75232389 C1.33296226,3.75232389 2.02118599,3.81508677 1.92483467,5.33932825 L4.08126902,5.33932825 C4.08126902,5.33932825 4.42538088,4.94033563 3.17740185,4.54582607 L2.52129523,4.42478336 C2.52129523,4.42478336 1.8009544,2.56431214 0.364860888,2.2280824 L0.36027273,2.22359934 Z" fill="#282F39"></path>
145
+ </g>
146
+ <path d="M6.31330566,24.0870115 C6.31330566,24.0870115 3.8953463,20.6350529 4.4872187,58.8666157 L6.02883985,58.8666157 L11.1584007,25.6695328 L6.31330566,24.0870115 L6.31330566,24.0870115 Z" id="Path" fill="#BEDAFC"></path>
147
+ <path d="M8.96067293,24.7639541 C8.96067293,24.7639541 8.82761634,26.1716359 12.617435,58.8710988 L14.2278785,58.8710988 L15.6456194,24.6698098 L8.96067293,24.7639541 Z" id="Path" fill="#BEDAFC"></path>
148
+ <path d="M9.60760323,10.6961018 C8.89185056,10.7364494 8.1852742,10.8664582 7.50622679,11.0906114 C6.80882674,11.3192476 5.85448984,11.843766 5.72602141,12.6103698 C5.56543588,13.5562961 5.9141359,14.3946289 6.30412934,15.2419279 C6.77670964,16.2730324 7.15293861,17.2413741 7.48787415,18.3217923 C7.8228097,19.4022105 7.85492681,20.6485021 7.21717282,21.5899453 C6.66200568,22.4103459 5.859078,22.9931441 5.7168451,23.9659688 C5.63425825,24.5218687 6.06554512,25.252608 7.59340179,26.0819747 C8.85514529,26.7634003 10.2728862,26.7813325 11.718156,26.7813325 C14.154468,26.7813325 15.3290365,26.0864577 15.5905615,25.4139982 C15.9071444,24.6070469 15.7052655,23.696985 15.402447,22.8810675 C15.0996286,22.0696331 14.6958707,21.2761309 14.5995193,20.4153828 C14.3471706,18.1738512 16.2191392,15.963701 15.5630326,13.7983815 C15.1730391,12.4982932 13.9342364,11.5927144 12.6357876,11.1309589 C11.6676863,10.7857631 10.6261744,10.6467881 9.59842692,10.7005849 L9.60760323,10.6961018 Z" id="Path" fill="#1F4C72"></path>
149
+ <g transform="translate(9.592915, 1.537204)" id="Path">
150
+ <path d="M2.94193266,6.73356091 C2.94193266,6.73356091 2.31794315,8.35642978 3.6072156,10.3513929 C4.89648805,12.346356 0.643265412,12.2970423 0.0926864304,11.1179967 C0.0926864304,11.1179967 -0.187191219,10.7459025 0.225743018,10.0375785 C0.634089096,9.32477143 1.50583915,6.43767874 0.5239733,4.87757275 L2.94193266,6.73356091 L2.94193266,6.73356091 Z" fill="#FE9E80"></path>
151
+ <path d="M0.817615423,5.5769306 C0.817615423,5.5769306 1.35901809,6.7828746 2.78593528,7.71983481 C2.78593528,7.71983481 2.7951116,7.27601155 2.88228661,6.98012938 L0.817615423,5.5769306 Z" fill="#F0736D"></path>
152
+ <path d="M5.48377229,3.5685183 C5.48377229,5.5410661 4.46520118,7.14151966 3.20804584,7.14151966 C1.95089049,7.14151966 0.0422166904,5.32587907 0.0422166904,3.35333126 C0.0422166904,1.38078346 1.95089049,0 3.20804584,0 C4.46520118,0 5.48377229,1.60045356 5.48377229,3.57300136 L5.48377229,3.5685183 Z" fill="#FE9E80"></path>
153
+ </g>
154
+ <path d="M14.2278785,1.64479723 C14.2324667,1.71204318 14.2370548,1.77928913 14.2278785,1.84653507 C14.1636443,2.86867348 13.0900153,3.50078539 12.1494429,3.95357477 C11.2088704,4.40636415 10.1352414,5.05192525 10.0893598,6.07406366 C10.0618309,6.73755701 10.4931178,7.32932135 10.731702,7.95246713 C11.167577,9.10461437 10.8464059,10.4674656 10.0205375,11.3730443 C9.26349137,12.197928 8.24492025,13.5338808 7.00611754,13.5518131 C6.07930959,13.5652622 5.17544243,12.9421165 4.87721215,12.0813683 C4.51474765,11.0457807 4.9919161,9.91604881 5.57920035,8.98357167 C6.1664846,8.05109452 6.89141359,7.15448189 7.08870439,6.07854672 C7.24470177,5.23124778 7.05199913,4.33911821 7.27223072,3.50078539 C7.56128468,2.42036716 8.49726895,1.62686498 9.4470177,0.999236132 C10.2866506,0.44781936 11.2409875,-0.0498006533 12.2503823,0.00399610494 C13.1909548,0.0533098 14.1452917,0.748184594 14.2278785,1.64031417 L14.2278785,1.64479723 Z" id="Path" fill="#81CAE3"></path>
155
+ <path d="M5.31767533,9.97432863 C4.80838977,10.8395598 4.7946253,11.9648087 5.27638191,12.8434891 C5.76272668,13.7221695 6.73082805,14.327383 7.74939917,14.3901459 C8.34585973,14.4260104 8.93314398,14.2915185 9.52960454,14.2466878 C10.2453572,14.1928911 10.9702862,14.2780693 11.6860389,14.2691032 C12.6266113,14.2511709 13.5809482,14.0628823 14.3838759,13.5831945 C15.1868036,13.1035067 15.8199694,12.3144876 15.9667905,11.4089089 C16.0723181,10.7498986 15.9254971,10.0774391 16.0264365,9.4184288 C16.154905,8.56664679 16.6733668,7.62968658 16.1778458,6.91239648 C16.0218484,6.68376025 15.778676,6.52236998 15.6135023,6.30269988 C15.1179812,5.65265572 15.3795062,4.73362777 15.2143325,3.94012558 C14.9711601,2.77901222 14.328818,1.73894156 13.1313087,1.56858516 C11.9337994,1.39374569 10.181123,1.96309472 9.0294953,2.32173977 C8.12103998,2.60417275 7.68516496,7.871772 6.07472143,9.27048771 C5.72143325,9.43636105 5.45073192,9.7591416 5.3543806,10.1312358 L5.31767533,9.97881169 L5.31767533,9.97432863 Z" id="Path" fill="#81CAE3"></path>
156
+ <polygon id="Path" fill="#9DC5ED" points="6.02425169 58.8710988 9.84618746 34.191836 9.09372952 28.5969731"></polygon>
157
+ </g>
158
+ <g id="Group" transform="translate(0.000000, 30.000000)" fill="#B1D8E5">
159
+ <path d="M8.05217391,11.3478261 C7.93478261,11.3478261 7.82173913,11.3 7.73913043,11.2173913 L5.83913043,9.3173913 C5.66521739,9.14347826 5.66521739,8.86086957 5.83913043,8.68695652 C5.92173913,8.60434783 6.03478261,8.55652174 6.15217391,8.55652174 C6.26956522,8.55652174 6.3826087,8.60434783 6.46521739,8.68695652 L7.69565217,9.9173913 C7.79130435,10.0130435 7.9173913,10.0652174 8.05217391,10.0652174 C8.18695652,10.0652174 8.31304348,10.0130435 8.40869565,9.9173913 L11.5391304,6.78695652 C11.6217391,6.70434783 11.7347826,6.65652174 11.8521739,6.65652174 C11.9695652,6.65652174 12.0826087,6.70434783 12.1652174,6.78695652 C12.3391304,6.96086957 12.3391304,7.24347826 12.1652174,7.4173913 L8.36086957,11.2217391 C8.27826087,11.3043478 8.16521739,11.3521739 8.04782609,11.3521739 L8.05217391,11.3478261 Z" id="Path"></path>
160
+ <path d="M9,18 C4.03478261,18 0,13.9608696 0,9 C0,4.03913043 4.03913043,0 9,0 C13.9608696,0 18,4.03913043 18,9 C18,13.9608696 13.9608696,18 9,18 Z M9,0.886956522 C4.52608696,0.886956522 0.891304348,4.52608696 0.891304348,8.99565217 C0.891304348,13.4652174 4.53043478,17.1043478 9,17.1043478 C13.4695652,17.1043478 17.1086957,13.4652174 17.1086957,8.99565217 C17.1086957,4.52608696 13.4695652,0.886956522 9,0.886956522 Z" id="Shape"></path>
161
+ </g>
162
+ <g id="Group" transform="translate(161.000000, 15.000000)" fill="#B1D8E5">
163
+ <path d="M15.0100881,14.8700481 C13.4369646,14.8700481 11.9616058,14.2569419 10.8506429,13.1462421 C9.73968001,12.0355424 9.13087233,10.5605331 9.13087233,8.9877823 C9.13087233,7.41503147 9.74412386,5.93557942 10.8506429,4.82932247 C11.9616058,3.71862273 13.4369646,3.10995927 15.0100881,3.10995927 C16.5832116,3.10995927 18.0630142,3.72306553 19.1695332,4.82932247 C20.2804962,5.94002221 20.8937477,7.41947427 20.8937477,8.9877823 C20.8937477,10.5560903 20.2804962,12.0355424 19.1695332,13.1462421 C18.0585703,14.2569419 16.5832116,14.8700481 15.0100881,14.8700481 Z M15.0100881,3.96297668 C13.663601,3.96297668 12.4015472,4.48278415 11.4550067,5.43354313 C10.5040225,6.38430211 9.98409185,7.64605702 9.98409185,8.9877823 C9.98409185,10.3295076 10.5084663,11.5912625 11.4550067,12.5420215 C12.405991,13.4927805 13.6680449,14.0125879 15.0100881,14.0125879 C16.3521313,14.0125879 17.6141852,13.4883377 18.5651694,12.5420215 C19.5161537,11.5912625 20.0360843,10.3295076 20.0360843,8.9877823 C20.0360843,7.64605702 19.5117098,6.38430211 18.5651694,5.43354313 C17.618629,4.48722695 16.3565751,3.96297668 15.0100881,3.96297668 Z" id="Shape"></path>
164
+ <path d="M2.10514284,23.9955572 C1.54966139,23.9955572 1.02084304,23.7734173 0.620896388,23.3735653 C-0.183440763,22.5694187 -0.210103873,21.2854498 0.563126316,20.50796 L7.0644813,14.0081451 L7.14002678,13.9637171 C7.29111774,13.8659756 7.34000011,13.6616068 7.24667922,13.5061088 C5.19361975,9.97852647 5.77132047,5.50907071 8.65093635,2.63013699 C10.3440438,0.937430581 12.6059643,0 15.0100881,0 C17.4142118,0 19.6716885,0.932987782 21.3692398,2.63013699 C23.0667912,4.32728619 24,6.58422806 24,8.9877823 C24,11.3913365 23.0667912,13.6482784 21.3692398,15.3454276 C19.6761323,17.0425768 17.4142118,17.9755646 15.0100881,17.9755646 C13.4325207,17.9755646 11.868285,17.5534987 10.4862471,16.7493521 C10.4329209,16.7182525 10.3751508,16.7049241 10.3129369,16.7049241 C10.1973967,16.7049241 10.0907443,16.7626805 10.0285304,16.8559793 C10.0151988,16.8781933 10.0018673,16.8959645 9.9885357,16.9181785 L3.48273686,23.4313217 C3.11834102,23.7956312 2.62507349,24 2.10069899,24 L2.10514284,23.9955572 Z M5.82909054,16.6027397 C5.73576965,16.6027397 5.65133647,16.6382821 5.58912255,16.7049241 L1.17637785,21.1166235 C0.736436531,21.5564606 0.763099641,22.298408 1.23414792,22.7693447 C1.4652282,23.0003702 1.78518552,23.1336542 2.11403055,23.1336542 C2.41176861,23.1336542 2.68728741,23.0225842 2.88726074,22.8271011 L7.30444929,18.4154017 C7.36666322,18.3532025 7.40665788,18.2643465 7.40665788,18.1754906 C7.40665788,18.0866346 7.37110707,17.9977786 7.30444929,17.9355794 L6.08239008,16.7138097 C6.01573231,16.6471677 5.93129913,16.6116253 5.84242209,16.6116253 L5.82909054,16.6027397 Z M7.82882379,14.6034802 C7.73994676,14.6034802 7.65106972,14.6390226 7.5888558,14.7056646 L6.67786621,15.6164384 C6.61565228,15.6786375 6.57565762,15.7674935 6.57565762,15.8563495 C6.57565762,15.9452055 6.61120843,16.0340615 6.67786621,16.0962606 L7.89992542,17.3180304 C7.96658319,17.3846723 8.05101637,17.4202147 8.13989341,17.4202147 C8.22877044,17.4202147 8.31764747,17.3846723 8.3798614,17.3180304 L9.29085099,16.4072566 C9.35750876,16.3406146 9.39305958,16.2473158 9.38861572,16.1495742 C9.38417187,16.0518327 9.33973336,15.9629767 9.26418788,15.9007775 C9.02421989,15.7008515 8.82424656,15.5186968 8.6464925,15.3409848 C8.46873843,15.1632729 8.29098436,14.9677897 8.08656719,14.7234358 C8.02435326,14.6479082 7.93547623,14.6034802 7.83771149,14.5990374 L7.82437994,14.5990374 L7.82882379,14.6034802 Z M15.0100881,0.861902999 C12.8370446,0.861902999 10.7928729,1.7060348 9.25974403,3.23880044 C6.09127779,6.4109589 6.09127779,11.5690485 9.25974403,14.741207 C10.7928729,16.2739726 12.8370446,17.1181044 15.0100881,17.1181044 C17.1831315,17.1181044 19.2273033,16.2739726 20.7604321,14.741207 C22.293561,13.2084413 23.1378928,11.1647538 23.1378928,8.9922251 C23.1378928,6.81969641 22.293561,4.77600889 20.7604321,3.24324324 C19.2273033,1.7104776 17.1831315,0.866345798 15.0100881,0.866345798 L15.0100881,0.861902999 Z" id="Shape"></path>
165
+ <path d="M17.8985917,8.84116994 C17.6630675,8.84116994 17.4675381,8.65012958 17.4675381,8.41021844 C17.4675381,7.37060348 16.6232062,6.52647168 15.5833449,6.52647168 C15.3478208,6.52647168 15.1522913,6.33543132 15.1522913,6.09552018 C15.1522913,5.85560903 15.343377,5.66456868 15.5833449,5.66456868 C17.0942545,5.66456868 18.3252014,6.89522399 18.3252014,8.40577564 C18.3252014,8.64124398 18.1341158,8.83672714 17.8941478,8.83672714 L17.8985917,8.84116994 Z" id="Path"></path>
166
+ </g>
167
+ <g id="Group" transform="translate(149.000000, 13.000000)" fill="#B9E9FC">
168
+ <path d="M6.75554844,1.00477209 C8.42857149,1.02711616 9.77924792,2.3782215 9.8010608,4.05125155 L9.80296982,4.19767203 C9.82405347,5.81476988 8.53022832,7.14277837 6.91313047,7.16386201 C6.88737145,7.16419786 6.86160911,7.16419377 6.8358502,7.16384974 C5.16282715,7.14150567 3.81215073,5.79040033 3.79033784,4.11737028 L3.78842882,3.9709498 C3.76734518,2.35385195 5.06117033,1.02584346 6.67826817,1.00475982 C6.7040272,1.00442397 6.72978953,1.00442806 6.75554844,1.00477209 Z" id="Rectangle" transform="translate(6.795699, 4.084311) rotate(23.820000) translate(-6.795699, -4.084311) "></path>
169
+ <path d="M14.8902685,11.6454812 C14.603398,12.3155198 13.8498279,12.6216963 13.1990174,12.3243945 C12.5524884,12.0270926 12.2570547,11.2461205 12.5439251,10.5716446 C12.8307956,9.89716877 13.5843657,9.59542956 14.2351763,9.89273143 C14.8817052,10.1900333 15.1771389,10.9710054 14.8902685,11.6454812 Z" id="Path"></path>
170
+ <path d="M4.02344479,15.7012112 C3.55246346,16.8016718 2.31506707,17.298654 1.25321826,16.8149838 C0.19136945,16.3268763 -0.288175173,15.0444847 0.178524505,13.944024 C0.645224183,12.8435634 1.88690223,12.3465812 2.94875103,12.8302514 C4.01059984,13.3183589 4.49014447,14.6007505 4.02344479,15.7012112 L4.02344479,15.7012112 Z" id="Path"></path>
171
+ </g>
172
+ <path d="M161.960187,58.8451352 C161.771932,59.6512551 160.960985,60.1484428 160.154865,59.9601873 C159.348745,59.7719317 158.851557,58.9609847 159.039813,58.1548648 C159.228068,57.3487449 160.039015,56.8515572 160.845135,57.0398127 C161.651255,57.2280683 162.148443,58.0390153 161.960187,58.8451352 Z" id="Path" fill="#C2EBFF"></path>
173
+ </g>
174
+ </g>
175
+ </g>
176
+ </svg>
plugin-fw/assets/images/help-tab/support-desk.svg ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <svg width="274px" height="171px" viewBox="0 0 539.47 338.14" xmlns="http://www.w3.org/2000/svg">
3
+ <defs>
4
+ <style>.cls-1{font-size:21.21px;}.cls-1,.cls-12,.cls-8{fill:#67cce6;}.cls-1,.cls-12{font-family:OpenSans-Bold, Open Sans;font-weight:700;}.cls-2{opacity:0.15;}.cls-3{fill:#68cce5;}.cls-4{fill:#4687c7;}.cls-5{fill:#f8f6f0;}.cls-6{fill:#a160a7;}.cls-7{fill:#004c75;}.cls-9{fill:#fff;stroke:#36434c;stroke-width:2.36px;}.cls-13,.cls-9{stroke-miterlimit:10;}.cls-10{fill:#f5f1f3;}.cls-11{fill:#fbb11e;}.cls-12{font-size:23.02px;}.cls-13{fill:#f5f9fd;stroke:#004c75;stroke-width:1.85px;}</style>
5
+ </defs>
6
+ <g id="Layer_2" data-name="Layer 2">
7
+ <g id="Layer_3" data-name="Layer 3">
8
+ <text class="cls-1" transform="translate(152.76 80.43)" style="white-space: pre;">HELLO</text>
9
+ <g class="cls-2">
10
+ <path class="cls-3" d="M123,23.83c11.5-15.09,31-19.38,49-21.42A382.17,382.17,0,0,1,225.83.16c17.27.51,34.79,2.26,50.85,9.13C287.3,13.83,297.13,20.54,308.09,24c20.64,6.5,42.6.79,64-1.32a189.17,189.17,0,0,1,52.79,2.24c13.52,2.5,26.94,6.53,38.9,13.78,11.07,6.72,20.63,16,29.18,26.18,10.57,12.55,19.7,26.41,28.79,40.24,7.37,11.21,14.94,22.91,17.18,36.45s-2.5,29.49-14.09,35.14c-6.79,3.31-14.62,2.62-21.87,4.48-14.18,3.64-24.69,16.61-32.08,30.2S458.16,240,449.07,252.28c-18.13,24.61-48,34.73-76.32,41.83-54.53,13.67-114.09,20.38-164.58-5.75-15.83-8.19-30.4-19.46-47.13-25.14-30.58-10.38-64.52-.91-95.28-10.61a84.15,84.15,0,0,1-33.45-20.23C21.57,221.86,13.42,208.42,8,193.9c-14.4-38.34-9-84.64,13.87-117.85S84.06,23.86,122.14,27.76"/>
11
+ </g>
12
+ <g class="cls-2">
13
+ <path class="cls-3" d="M153.73,55.81c10.58-15.09,28.51-19.38,45.06-21.41a322.81,322.81,0,0,1,49.62-2.26c15.89.51,32,2.26,46.8,9.13C305,45.81,314,52.52,324.12,56c19,6.5,39.21.79,58.91-1.31a160.49,160.49,0,0,1,48.59,2.23c12.44,2.5,24.79,6.53,35.8,13.79,10.19,6.71,19,16,26.86,26.17,9.73,12.55,18.13,26.41,26.5,40.24,6.79,11.21,13.75,22.91,15.81,36.45s-2.3,29.49-13,35.14c-6.24,3.31-13.46,2.62-20.12,4.48-13.05,3.65-22.73,16.61-29.53,30.2s-11.73,28.59-20.09,40.91c-16.69,24.61-44.17,34.73-70.25,41.83-50.19,13.67-105,20.39-151.49-5.75-14.56-8.19-28-19.46-43.37-25.14-28.15-10.38-59.39-.91-87.71-10.61a76.59,76.59,0,0,1-30.78-20.23c-9.89-10.52-17.39-24-22.41-38.47C34.61,187.54,39.62,141.24,60.63,108S117.91,55.85,153,59.74"/>
14
+ </g>
15
+ <rect class="cls-4" x="136.96" y="46.76" width="95.39" height="143" rx="16.53" transform="translate(369.32 236.51) rotate(-180)"/>
16
+ <path class="cls-5" d="M148.09,116.66v7.6h71.5v-7.6Zm71.5,14.26h-71.5v7.6h71.5Zm0,14.26h-71.5v7.6h71.5Zm0,14.26h-71.5V167h71.5ZM182.81,173.7H147.88v7.6h34.93Z"/>
17
+ <rect class="cls-4" x="54.45" y="282.58" width="383.54" height="11.78"/>
18
+ <path class="cls-6" d="M320.07,273.6h-39s20.12-3.08,40.14-6.47C320.5,271.06,320.07,273.6,320.07,273.6Z"/>
19
+ <path class="cls-7" d="M114.4,270.54V279s94,3.06,100.92,0,16.06-27.53,22.94-42.82,15.29-21.41,17.59-9.17,9.94,46.63,9.94,46.63h15.29c3.06,7.65,0,12.24,0,12.24,85.63,8.41,123.09,2.29,123.09-6.88s-31.35-94-42.81-108.57-23.71-22.94-48.17-29.82-29.82-2.29-29.82-2.29S258.14,136,236.74,152s-37.47,87.16-39.77,94S114.4,270.54,114.4,270.54Zm206.82-3.41c2.15-11.76,6.88-36,10.32-41.7,4.59-7.64,33.64,30.59,29,33.65C358.38,260.55,339.84,264,321.22,267.13Z"/>
20
+ <path class="cls-8" d="M110.51,283.26l.77-6.5s-28.61-5-34.57-4.61-4.31,11.11-4.31,11.11Z"/>
21
+ <path class="cls-9" d="M259.67,270.54c3.82-1.52,21.41,3.06,21.41,3.06s4.58,9.18,0,12.24-9.18-5.36-13-4.59-12.23,8.41-13.76,6.88a2.12,2.12,0,0,1,0-3.06s-2.3,2.29-2.3,0v-2.29s-2.29,2.29-3.05,0S255.85,272.07,259.67,270.54Z"/>
22
+ <path class="cls-9" d="M95.73,264.79a21.54,21.54,0,0,1,9.39,1.27c3.75,1.35,7.45,2.91,11.07,4.58,1.3,4.4,1.9,9.39-3.71,9.6-4.85.18-7.92-4.59-12.31-5.88-6.15-1.82-14.25-.89-20.64-1.23a11.78,11.78,0,0,1,9.22-7.45C91.38,265.31,93.6,264.94,95.73,264.79Z"/>
23
+ <path class="cls-9" d="M261.65,106a35.58,35.58,0,0,1,.62-6.65c-.77-3.13-1.15-7,.89-13.84,4.59-15.3,24.46-18.35,37.46-12.24s11.47,34.41,11.47,34.41c-2.48,11.33-7.91,19.06-13.64,23.85l-.12.11v21.91s-9.56,6.88-19.12,0v-17.2l-.81-.51a44.73,44.73,0,0,1-12.23-12.11h0a18.78,18.78,0,0,1-3.38-8.84A34.7,34.7,0,0,1,261.65,106Z"/>
24
+ <path class="cls-8" d="M266.55,48.82c21.41-8.41,30.58,0,40.52,2.3s34.41,9.94,64.22-3.06,67.28-2.29,75.69,9.17,23.71,20.65,39.76,20.65,24.47,13,19.12,31.34-26.76,9.94-39,9.18-28.29,24.46-53.52,19.11-22.17-32.87-45.1-22.17-47.52,29.8-64.36,7.85c6,6,0,0,0,0s.9-12.44,3.19-32.31c0,0-13,1.52-21.41-5.36s-6.11-8.41-14.52-3.06-6.88,4.59-6.88,4.59,0,.25,0,1,0,2.26-.12,4.66c0,1.09-.11,2.36-.2,3.88h0c-.27,4.48,1.53,9.08,4.89,14.13,2.49,3.75-6.67,7.74-2.64,12.11.26.3.54.59.81.89,0,0-1.24,4.59-7.36-6.12s-2.29-22.17-8.41-28.28S245.14,57.23,266.55,48.82Z"/>
25
+ <path class="cls-10" d="M312,87.82a3.55,3.55,0,0,1,2.75,1.5,6.69,6.69,0,0,1,1.07,3.05,60,60,0,0,1-.07,12.13,8.5,8.5,0,0,1-1,3.8c-1.54,2.58-4.39,2.45-7,2.45a9.08,9.08,0,0,1-1.42-2.29c-1.53-6.12-1.53-12.23.76-17.58A5.33,5.33,0,0,1,312,87.82Z"/>
26
+ <path class="cls-11" d="M312,87.82a5.19,5.19,0,0,0-5,3.06c-2.29,5.35-2.29,11.46-.76,17.58a9.08,9.08,0,0,0,1.42,2.29h-4.46s-3.84-.76-3.84-4.58,0-12.24,1.39-16.06C301.78,87.48,308.28,86.3,312,87.82Z"/>
27
+ <path class="cls-11" d="M264,88.23a3.49,3.49,0,0,1,.34-.15c0,.83,0,2.26-.12,4.66a12.81,12.81,0,0,1-.2,3.88h0c-.27,4.48,1.53,9.08,4.89,14.13h-4.47s-4-.76-4-4.58,0-12.24,1.44-16.06A3.82,3.82,0,0,1,264,88.23Z"/>
28
+ <path class="cls-11" d="M311.59,96.23c1.23,0,2.22,1.54,2.22,3.44s-1,3.44-2.22,3.44-2.22-1.54-2.22-3.44S310.36,96.23,311.59,96.23Z"/>
29
+ <path class="cls-10" d="M266.46,69.88c4.9-6.25,11.57-10.1,18.92-10.1,15,0,27.24,16.09,27.24,35.94,0,.17,0,.34,0,.51h-2.32c0-.17,0-.34,0-.51,0-18.16-11.16-32.88-24.92-32.88-8.56,0-19.59,5.86-21.89,25.74C263.82,86.06,262,79.41,266.46,69.88Z"/>
30
+ <path class="cls-11" d="M265.39,108a12.63,12.63,0,0,0,15.8,14l.32,1.2a13.24,13.24,0,0,1-3.5.46,13.84,13.84,0,0,1-13.86-15.87Z"/>
31
+ <path class="cls-11" d="M281.49,120.06c2,.58,3.3,2.14,2.91,3.47s-2.32,1.94-4.32,1.36-3.31-2.14-2.92-3.47S279.49,119.47,281.49,120.06Z"/>
32
+ <path d="M 15.53 -16.43 L 15.53 0 L 12.06 0 L 12.06 -7.09 L 5.55 -7.09 L 5.55 0 L 2.07 0 L 2.07 -16.43 L 5.55 -16.43 L 5.55 -9.99 L 12.06 -9.99 L 12.06 -16.43 L 15.53 -16.43 ZM 29.142 -2.88 L 29.142 0 L 19.682 0 L 19.682 -16.43 L 29.142 -16.43 L 29.142 -13.58 L 23.162 -13.58 L 23.162 -9.97 L 28.732 -9.97 L 28.732 -7.12 L 23.162 -7.12 L 23.162 -2.88 L 29.142 -2.88 ZM 42.724 0 L 32.574 0 L 32.574 -16.43 L 36.054 -16.43 L 36.054 -2.88 L 42.724 -2.88 L 42.724 0 ZM 55.728 0 L 45.578 0 L 45.578 -16.43 L 49.058 -16.43 L 49.058 -2.88 L 55.728 -2.88 L 55.728 0 ZM 73.493 -8.24 C 73.493 -5.52 72.819 -3.43 71.473 -1.97 C 70.126 -0.51 68.193 0.22 65.673 0.22 C 63.153 0.22 61.219 -0.51 59.873 -1.97 C 58.526 -3.43 57.853 -5.527 57.853 -8.26 C 57.853 -10.993 58.529 -13.083 59.883 -14.53 C 61.236 -15.97 63.173 -16.69 65.693 -16.69 C 68.219 -16.69 70.153 -15.963 71.493 -14.51 C 72.826 -13.057 73.493 -10.967 73.493 -8.24 Z M 61.503 -8.24 C 61.503 -6.407 61.853 -5.023 62.553 -4.09 C 63.246 -3.163 64.286 -2.7 65.673 -2.7 C 68.453 -2.7 69.843 -4.547 69.843 -8.24 C 69.843 -11.94 68.459 -13.79 65.693 -13.79 C 64.306 -13.79 63.263 -13.323 62.563 -12.39 C 61.856 -11.457 61.503 -10.073 61.503 -8.24 Z" transform="matrix(1, 0, 0, 1, 147.69000244140625, 82.95999908447266)" style="white-space: pre; fill: rgb(103, 204, 230);"/>
33
+ <polygon class="cls-13" points="15.09 145.9 41.83 159.27 48.76 182.04 51.77 162.75 84.41 177.59 97.78 117.18 15.09 145.9"/>
34
+ <polygon class="cls-8" points="88.29 123.74 45.95 154.56 52.64 156.42 88.29 123.74"/>
35
+ </g>
36
+ </g>
37
+ </svg>
plugin-fw/assets/js/yit-plugin-panel.js CHANGED
@@ -275,7 +275,7 @@ jQuery( function ( $ ) {
275
  floatSaveButton.unblock()
276
  .addClass( 'green' )
277
  .fadeOut( 300 )
278
- .html( '<i class="yith-icon yith-icon-check"></i>' + floatSaveButton.data( 'saved-label' ) )
279
  .fadeIn( 300 )
280
  .delay( 2500 )
281
  .queue(
@@ -284,7 +284,7 @@ jQuery( function ( $ ) {
284
  500,
285
  function () {
286
  $( this ).removeClass( 'green' );
287
- $( this ).html( '<i class="yith-icon yith-icon-save"></i>' + $( this ).data( 'default-label' ) ).fadeIn( 500 );
288
  }
289
  );
290
  next();
275
  floatSaveButton.unblock()
276
  .addClass( 'green' )
277
  .fadeOut( 300 )
278
+ .html( floatSaveButton.data( 'saved-label' ) )
279
  .fadeIn( 300 )
280
  .delay( 2500 )
281
  .queue(
284
  500,
285
  function () {
286
  $( this ).removeClass( 'green' );
287
+ $( this ).html( $( this ).data( 'default-label' ) ).fadeIn( 500 );
288
  }
289
  );
290
  next();
plugin-fw/assets/js/yit-plugin-panel.min.js CHANGED
@@ -1 +1 @@
1
- jQuery(function(e){function t(){e("[data-dep-target]:not( .deps-initialized )").each(function(){var t=e(this);if(!t.closest(".metaboxes-tab").length){t.addClass("deps-initialized");var a="#"+t.data("dep-target"),i="#"+t.data("dep-id"),n=t.data("dep-value"),o=t.data("dep-type");e(i).on("change",function(){!function(t,a,i,n){var o=!0;if("string"==typeof a){":radio"===a.substr(0,6)&&(a+=":checked");var r=e(a),d=r.attr("type"),s=r.val();switch(d){case"checkbox":s=r.is(":checked")?"yes":"no";break;case"radio":s=r.find('input[type="radio"]').filter(":checked").val()}i=i.split(",");for(var c=0;c<i.length;c++){if(s==i[c]){o=!0;break}o=!1}}var l=e(t),h=e(t+"-container").closest("tr");h.length<1&&(h=l.closest(".yith-plugin-fw-panel-wc-row, .yith-toggle-content-row"));var u,g=n.split("-");for(u in g){var f=g[u];if(o)switch(f){case"disable":h.removeClass("yith-disabled"),l.attr("disabled",!1);break;case"hide":case"hideNow":h.show();break;case"hideme":l.show();break;case"fadeOut":h.show();break;case"fadeInOut":case"fadeIn":default:h.show(500)}else switch(f){case"disable":h.addClass("yith-disabled"),l.attr("disabled",!0);break;case"hide":case"hideNow":h.hide();break;case"hideme":l.hide();break;case"fadeInOut":case"fadeOut":h.hide(500);break;case"fadeIn":default:h.hide()}}}(a,i,n.toString(),o)}).trigger("change")}})}t(),e(document).on("yith-add-box-button-toggle",t),e(".rm_connectedlist").each(function(){var t=e(this).find("ul"),a=e(this).find(":hidden");t.sortable({connectWith:t,update:function(i,n){var o={};t.each(function(){var t={};e(this).children().each(function(){t[e(this).data("option")]=e(this).text()}),o[e(this).data("list")]=t}),a.val(JSON.stringify(o).replace(/[\\"']/g,"\\$&").replace(/\u0000/g,"\\0"))}}).disableSelection()}),e(function(){e(".google-analytic-generate").click(function(){var t=e("#"+e(this).data("textarea")).data("codemirrorInstance"),a="(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){\n";a+="(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement( o ),\n",a+="m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)\n",a+="})(window,document,'script','//www.google-analytics.com/analytics.js','ga');\n\n",a+="ga('create', '"+e("#"+e(this).data("input")).val()+"', '"+e(this).data("basename")+"');\n",a+="ga('send', 'pageview');\n",t.replaceRange(a,t.getCursor("start"),t.getCursor("end"))})}),e(".yith-plugin-fw-panel .woo-nav-tab-wrapper").removeClass("woo-nav-tab-wrapper").addClass("yith-nav-tab-wrapper");var a=e(".wrap.yith-plugin-ui").first(),i=e("div.updated, div.error, div.notice");i.addClass("inline"),a.length&&a.prepend(i),function(){var t=e(".yith-nav-sub-tab.nav-tab-active"),a=e(".yith-plugin-fw-wp-page__sub-tab-wrap");if(t.length&&!a.length){var i=e(".yith-plugin-fw-wp-page-wrapper");if(i.length||(i=e("#wpbody-content > .yith-plugin-ui")),i){var n=i.find(".yit-admin-panel-content-wrap");n.length?n.addClass("has-subnav"):i.find(".wrap").wrap('<div class="yith-plugin-fw-wp-page__sub-tab-wrap"></div>')}}}(),function(){var t=e("#yith-plugin-fw-float-save-button"),a=e("#plugin-fw-wc"),i=document.querySelector("#main-save-button");function n(){var e,a;e=i.getBoundingClientRect(),a={width:window.innerWidth||document.documentElement.clientWidth,height:window.innerHeight||document.documentElement.clientHeight},e.top>=0&&e.left>=0&&e.top<=a.height&&e.left<=a.width?t.removeClass("visible"):t.addClass("visible")}t.length>0&&a.length>0&&(n(),document.addEventListener("scroll",n,{passive:!0}),e(document).on("click","#yith-plugin-fw-float-save-button",function(i){i.preventDefault(),"tinyMCE"in window&&"triggerSave"in window.tinyMCE&&window.tinyMCE.triggerSave(),e(".codemirror.codemirror--initialized").each(function(){var t=e(this).data("codemirrorInstance")||!1;t&&"codemirror"in t&&t.codemirror.save()}),t.block({message:null,overlayCSS:{background:"transparent",opacity:.6}}),e.post(document.location.href,a.serialize()).done(function(a){t.unblock().addClass("green").fadeOut(300).html('<i class="yith-icon yith-icon-check"></i>'+t.data("saved-label")).fadeIn(300).delay(2500).queue(function(a){t.fadeOut(500,function(){e(this).removeClass("green"),e(this).html('<i class="yith-icon yith-icon-save"></i>'+e(this).data("default-label")).fadeIn(500)}),a()}),window.onbeforeunload=null,e(document).trigger("yith-plugin-fw-float-save-button-after-saving",[a])})}))}()});
1
+ jQuery(function(e){function t(){e("[data-dep-target]:not( .deps-initialized )").each(function(){var t=e(this);if(!t.closest(".metaboxes-tab").length){t.addClass("deps-initialized");var a="#"+t.data("dep-target"),i="#"+t.data("dep-id"),n=t.data("dep-value"),r=t.data("dep-type");e(i).on("change",function(){!function(t,a,i,n){var r=!0;if("string"==typeof a){":radio"===a.substr(0,6)&&(a+=":checked");var d=e(a),o=d.attr("type"),s=d.val();switch(o){case"checkbox":s=d.is(":checked")?"yes":"no";break;case"radio":s=d.find('input[type="radio"]').filter(":checked").val()}i=i.split(",");for(var c=0;c<i.length;c++){if(s==i[c]){r=!0;break}r=!1}}var l=e(t),h=e(t+"-container").closest("tr");h.length<1&&(h=l.closest(".yith-plugin-fw-panel-wc-row, .yith-toggle-content-row"));var u,g=n.split("-");for(u in g){var f=g[u];if(r)switch(f){case"disable":h.removeClass("yith-disabled"),l.attr("disabled",!1);break;case"hide":case"hideNow":h.show();break;case"hideme":l.show();break;case"fadeOut":h.show();break;case"fadeInOut":case"fadeIn":default:h.show(500)}else switch(f){case"disable":h.addClass("yith-disabled"),l.attr("disabled",!0);break;case"hide":case"hideNow":h.hide();break;case"hideme":l.hide();break;case"fadeInOut":case"fadeOut":h.hide(500);break;case"fadeIn":default:h.hide()}}}(a,i,n.toString(),r)}).trigger("change")}})}t(),e(document).on("yith-add-box-button-toggle",t),e(".rm_connectedlist").each(function(){var t=e(this).find("ul"),a=e(this).find(":hidden");t.sortable({connectWith:t,update:function(i,n){var r={};t.each(function(){var t={};e(this).children().each(function(){t[e(this).data("option")]=e(this).text()}),r[e(this).data("list")]=t}),a.val(JSON.stringify(r).replace(/[\\"']/g,"\\$&").replace(/\u0000/g,"\\0"))}}).disableSelection()}),e(function(){e(".google-analytic-generate").click(function(){var t=e("#"+e(this).data("textarea")).data("codemirrorInstance"),a="(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){\n";a+="(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement( o ),\n",a+="m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)\n",a+="})(window,document,'script','//www.google-analytics.com/analytics.js','ga');\n\n",a+="ga('create', '"+e("#"+e(this).data("input")).val()+"', '"+e(this).data("basename")+"');\n",a+="ga('send', 'pageview');\n",t.replaceRange(a,t.getCursor("start"),t.getCursor("end"))})}),e(".yith-plugin-fw-panel .woo-nav-tab-wrapper").removeClass("woo-nav-tab-wrapper").addClass("yith-nav-tab-wrapper");var a=e(".wrap.yith-plugin-ui").first(),i=e("div.updated, div.error, div.notice");i.addClass("inline"),a.length&&a.prepend(i),function(){var t=e(".yith-nav-sub-tab.nav-tab-active"),a=e(".yith-plugin-fw-wp-page__sub-tab-wrap");if(t.length&&!a.length){var i=e(".yith-plugin-fw-wp-page-wrapper");if(i.length||(i=e("#wpbody-content > .yith-plugin-ui")),i){var n=i.find(".yit-admin-panel-content-wrap");n.length?n.addClass("has-subnav"):i.find(".wrap").wrap('<div class="yith-plugin-fw-wp-page__sub-tab-wrap"></div>')}}}(),function(){var t=e("#yith-plugin-fw-float-save-button"),a=e("#plugin-fw-wc"),i=document.querySelector("#main-save-button");function n(){var e,a;e=i.getBoundingClientRect(),a={width:window.innerWidth||document.documentElement.clientWidth,height:window.innerHeight||document.documentElement.clientHeight},e.top>=0&&e.left>=0&&e.top<=a.height&&e.left<=a.width?t.removeClass("visible"):t.addClass("visible")}t.length>0&&a.length>0&&(n(),document.addEventListener("scroll",n,{passive:!0}),e(document).on("click","#yith-plugin-fw-float-save-button",function(i){i.preventDefault(),"tinyMCE"in window&&"triggerSave"in window.tinyMCE&&window.tinyMCE.triggerSave(),e(".codemirror.codemirror--initialized").each(function(){var t=e(this).data("codemirrorInstance")||!1;t&&"codemirror"in t&&t.codemirror.save()}),t.block({message:null,overlayCSS:{background:"transparent",opacity:.6}}),e.post(document.location.href,a.serialize()).done(function(a){t.unblock().addClass("green").fadeOut(300).html(t.data("saved-label")).fadeIn(300).delay(2500).queue(function(a){t.fadeOut(500,function(){e(this).removeClass("green"),e(this).html(e(this).data("default-label")).fadeIn(500)}),a()}),window.onbeforeunload=null,e(document).trigger("yith-plugin-fw-float-save-button-after-saving",[a])})}))}()});
plugin-fw/assets/js/yith-bh-onboarding.js ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ (function($) {
2
+
3
+ var init = function() {
4
+ var currentTab = $('.yith-bh-onboarding-tabs__nav li.selected').data('tab');
5
+ $('#' + currentTab).fadeIn();
6
+ };
7
+
8
+ var block = function(element) {
9
+ var blockArgs = {
10
+ message: '',
11
+ overlayCSS: {
12
+ backgroundColor: '#FFFFFF',
13
+ opacity: 0.8,
14
+ cursor: 'wait',
15
+ },
16
+ };
17
+ element.block(blockArgs);
18
+ };
19
+
20
+ var unblock = function(element) {
21
+ element.unblock();
22
+ };
23
+
24
+ $(document).on('click', '.yith-bh-onboarding-tabs__nav li', function(e) {
25
+ var $t = $(this);
26
+ //nav
27
+ $('.yith-bh-onboarding-tabs__nav li').removeClass('selected');
28
+ $t.addClass('selected');
29
+ //tab content
30
+ $('.yith-bh-onboarding-tabs__tab').hide();
31
+ $('#' + $t.data('tab')).fadeIn();
32
+ });
33
+
34
+ $(document).on('submit', 'form', function(e) {
35
+ e.preventDefault();
36
+ var form = $(this);
37
+
38
+ if (true ===
39
+ $(document).triggerHandler('yith_onboarding_form_submit_validation')) {
40
+ $(document).trigger('yith_onboarding_validate_form_submit', [form]);
41
+ return false;
42
+ }
43
+ block($('.yith-bh-onboarding-tabs__content'));
44
+ $.ajax(
45
+ {
46
+ type: 'POST',
47
+ data: form.serialize(),
48
+ url: yith_bh_onboarding.ajax_url,
49
+ success: function(response) {
50
+ if (response.success) {
51
+ var button = parent.document.querySelector(
52
+ '.components-modal__frame button');
53
+ button.click();
54
+ }
55
+ },
56
+ complete: function() {
57
+ unblock($('.yith-bh-onboarding-tabs__content'));
58
+ },
59
+ },
60
+ );
61
+
62
+ });
63
+ init();
64
+
65
+ })(jQuery);
plugin-fw/assets/js/yith-bh-onboarding.min.js ADDED
@@ -0,0 +1 @@
 
1
+ !function(t){var a;t(document).on("click",".yith-bh-onboarding-tabs__nav li",function(a){var n=t(this);t(".yith-bh-onboarding-tabs__nav li").removeClass("selected"),n.addClass("selected"),t(".yith-bh-onboarding-tabs__tab").hide(),t("#"+n.data("tab")).fadeIn()}),t(document).on("submit","form",function(a){a.preventDefault();var n=t(this);if(!0===t(document).triggerHandler("yith_onboarding_form_submit_validation"))return t(document).trigger("yith_onboarding_validate_form_submit",[n]),!1;t(".yith-bh-onboarding-tabs__content").block({message:"",overlayCSS:{backgroundColor:"#FFFFFF",opacity:.8,cursor:"wait"}}),t.ajax({type:"POST",data:n.serialize(),url:yith_bh_onboarding.ajax_url,success:function(t){t.success&&parent.document.querySelector(".components-modal__frame button").click()},complete:function(){t(".yith-bh-onboarding-tabs__content").unblock()}})}),a=t(".yith-bh-onboarding-tabs__nav li.selected").data("tab"),t("#"+a).fadeIn()}(jQuery);
plugin-fw/dist/gutenberg/index.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('lodash', 'react', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-element', 'wp-hooks', 'wp-polyfill', 'wp-url'), 'version' => 'd87a9ed5ad42f7307f69e222878cc0bb');
1
+ <?php return array('dependencies' => array('lodash', 'react', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-polyfill', 'wp-url'), 'version' => 'ccb6b74ecd1dbb4cb1db833b49ebe4fb');
plugin-fw/dist/gutenberg/index.js CHANGED
@@ -1 +1 @@
1
- !function(){var e,t={783:function(e,t,o){"use strict";var r=window.wp.element,n=window.React,a=o(568),l=o.n(a),s=window.wp.blocks,c=window.wp.url;function i(e){if(e.status>=200&&e.status<300)return e;throw e}function u(e){return e.json?e.json():e.text()}const h=(0,r.createElement)("svg",{viewBox:"0 0 22 22",xmlns:"http://www.w3.org/2000/svg",width:"22",height:"22",role:"img","aria-hidden":"true",focusable:"false"},(0,r.createElement)("path",{width:"22",height:"22",d:"M 18.24 7.628 C 17.291 8.284 16.076 8.971 14.587 9.688 C 15.344 7.186 15.765 4.851 15.849 2.684 C 15.912 0.939 15.133 0.045 13.514 0.003 C 11.558 -0.06 10.275 1.033 9.665 3.284 C 10.007 3.137 10.359 3.063 10.723 3.063 C 11.021 3.063 11.267 3.184 11.459 3.426 C 11.651 3.668 11.736 3.947 11.715 4.262 C 11.695 5.082 11.276 5.961 10.46 6.896 C 9.644 7.833 8.918 8.3 8.282 8.3 C 7.837 8.3 7.625 7.922 7.646 7.165 C 7.667 6.765 7.804 5.955 8.056 4.735 C 8.287 3.579 8.403 2.801 8.403 2.401 C 8.403 1.707 8.224 1.144 7.867 0.713 C 7.509 0.282 6.994 0.098 6.321 0.161 C 5.858 0.203 5.175 0.624 4.27 1.422 C 3.596 2.035 2.923 2.644 2.25 3.254 L 2.976 4.106 C 3.564 3.664 3.922 3.443 4.048 3.443 C 4.448 3.443 4.637 3.717 4.617 4.263 C 4.617 4.306 4.427 4.968 4.049 6.251 C 3.671 7.534 3.471 8.491 3.449 9.122 C 3.407 9.985 3.565 10.647 3.924 11.109 C 4.367 11.677 5.106 11.919 6.142 11.835 C 7.366 11.751 8.591 11.298 9.816 10.479 C 10.323 10.142 10.808 9.753 11.273 9.311 C 11.105 10.153 10.905 10.868 10.673 11.457 C 8.402 12.487 6.762 13.37 5.752 14.107 C 4.321 15.137 3.554 16.241 3.449 17.419 C 3.259 19.459 4.29 20.479 6.541 20.479 C 8.055 20.479 9.517 19.554 10.926 17.703 C 12.125 16.126 13.166 14.022 14.049 11.394 C 15.578 10.635 16.87 9.892 17.928 9.164 C 17.894 9.409 18.319 7.308 18.24 7.628 Z M 7.393 16.095 C 7.056 16.095 6.898 15.947 6.919 15.653 C 6.961 15.106 7.908 14.38 9.759 13.476 C 8.791 15.221 8.002 16.095 7.393 16.095 Z"}));var d=window.lodash,p=o.n(d);const f=(e,t,o)=>{let r=!0;if(t&&t.id&&"value"in t){let n=t.value;["toggle","checkbox"].includes(o)&&(n=!0===n||"yes"===n||1===n),n=p().isArray(n)?n:[n],r=void 0!==e[t.id]&&n.includes(e[t.id])}return r},g=(e,t)=>{const{controlType:o}=e;let r=!0;if(e.deps)if(p().isArray(e.deps))for(let n in e.deps){const a=e.deps[n];if(r=f(t,a,o),!r)break}else r=f(t,e.deps,o);return r},b=(e,t)=>{let o="",r=!1;if(void 0!==e.callback&&(jQuery&&e.callback in jQuery.fn?r=jQuery.fn[e.callback]:e.callback in window&&(r=window[e.callback])),"function"==typeof r)o=r(t,e);else{const r=e.attributes?Object.entries(e.attributes).map((e=>{let[o,r]=e;const n=g(r,t),a=t[o];if(n&&void 0!==a)return o+"="+(r.remove_quotes?a:`"${a}"`)})):[],n=r.length?" "+r.join(" "):"";o=`[${e.shortcode_name}${n}]`}return o};var m=window.wp.components,y=window.wp.blockEditor,_=window.wp.hooks;class v extends n.Component{constructor(){super(...arguments),this.state={html:"",shortcode:"",shortcodeHash:"",ajaxUpdated:!1,ajaxSuccess:!1,ajaxResponse:!1,loading:!1,firstLoading:!0},this.ajaxTimeout=!1}componentDidMount(){this.updateShortcode()}componentDidUpdate(e,t,o){const{shortcode:r,shortcodeHash:n,ajaxSuccess:a,ajaxResponse:l,ajaxUpdated:s}=this.state;(0,d.isEqual)(e,this.props)||this.updateShortcode(),this.props.blockArgs.do_shortcode&&s&&(a&&(0,_.doAction)("yith_plugin_fw_gutenberg_success_do_shortcode",r,n,l),(0,_.doAction)("yith_plugin_fw_gutenberg_after_do_shortcode",r,n,l),this.setState({ajaxUpdated:!1}))}updateShortcode(){const{attributes:e,blockArgs:t}=this.props;this.setState({loading:!0,ajaxSuccess:!1,ajaxResponse:!1});const o=b(t,e),r=l()(o);t.do_shortcode?(this.ajaxTimeout&&clearTimeout(this.ajaxTimeout),(0,_.doAction)("yith_plugin_fw_gutenberg_before_do_shortcode",o,r),this.ajaxTimeout=setTimeout((()=>{(function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:yithGutenberg.ajaxurl;return t=(0,c.addQueryArgs)(t,e),fetch(t).then(i).then(u)})({action:"yith_plugin_fw_gutenberg_do_shortcode",shortcode:o}).then((e=>{this.setState({loading:!1,firstLoading:!1,html:e.html,shortcode:o,shortcodeHash:r,ajaxSuccess:!0,ajaxUpdated:!0,ajaxResponse:e})})).catch((e=>{console.log({error:e})}))}),300)):this.setState({loading:!1,firstLoading:!1,html:o,shortcode:o,shortcodeHash:r})}render(){const{html:e,loading:t,firstLoading:o,shortcode:n,shortcodeHash:a}=this.state,{blockArgs:l}=this.props,{do_shortcode:s,title:c,empty_message:i}=l,u="block-editor-yith-plugin-fw-shortcode-block";let d=[u],p=s?"html":"shortcode",f=e,g="";o&&t?p="first-loading":s&&!e&&(p="empty-html",f=n,!t&&i&&(g=i));const b=["first-loading","empty-html","shortcode"].includes(p),y=!["first-loading","empty-html"].includes(p),_=!!g;return d.push(`${u}--${p}`),d.push(_?`${u}--has-message`:`${u}--no-message`),d.push(`yith_block_${a}`),(0,r.createElement)(r.Fragment,null,(0,r.createElement)("div",{className:d.join(" ")},t?(0,r.createElement)("div",{className:`${u}__spinner-wrap`},(0,r.createElement)(m.Spinner,null)):"",b&&(0,r.createElement)("div",{className:`${u}__title components-placeholder__label`},h,c),_&&(0,r.createElement)(r.RawHTML,{className:`${u}__message`},g),y&&(0,r.createElement)(r.RawHTML,{className:`${u}__content`},f)))}}var C=window.wp.compose;function w(e){let{className:t,label:o,onChange:n,value:a,help:l,disableAlpha:s}=e;const c=`inspector-yith-color-picker-control-${(0,C.useInstanceId)(w)}`;return(0,r.createElement)(m.BaseControl,{id:c,label:o,className:`block-editor-yith-color-control ${t}`,help:l},(0,r.createElement)(m.ColorPicker,{color:a,disableAlpha:s,onChangeComplete:n}))}function k(e){let{label:t,colorValue:o}=e;return(0,r.createElement)(r.Fragment,null,t,!!o&&(0,r.createElement)(m.ColorIndicator,{colorValue:o}))}function x(e){let{className:t,label:o,onChange:n,value:a,help:l,palette:s,clearable:c}=e;s=s||(0,y.useSetting)("color.palette");const i=`inspector-yith-color-palette-control-${(0,C.useInstanceId)(x)}`;return(0,r.createElement)(m.BaseControl,{id:i,className:`block-editor-yith-color-palette-control ${t}`,help:l},(0,r.createElement)("fieldset",null,(0,r.createElement)("legend",null,(0,r.createElement)("div",{className:"block-editor-yith-color-palette-control__color-indicator"},(0,r.createElement)(m.BaseControl.VisualLabel,null,(0,r.createElement)(k,{colorValue:a,label:o})))),(0,r.createElement)(m.ColorPalette,{value:a,onChange:n,colors:s,clearable:c})))}const j=(e,t)=>function(o){let{attributes:n,className:a,setAttributes:l}=o;const s=(e,t,o)=>{["colorpicker","color"].includes(o)&&(e=e.color.getAlpha()<1?e.color.toRgbString():e.color.toHexString());let r={};r[t]=e,l(r)};return(0,r.createElement)(r.Fragment,null,!!t.attributes&&(0,r.createElement)(y.InspectorControls,null,(0,r.createElement)(m.PanelBody,null,Object.entries(t.attributes).map((t=>{let[o,a]=t;const l=((t,o)=>{const{controlType:a}=o,l=n[t],c=((e,t)=>{let o="";return e.helps&&e.helps.checked&&e.helps.unchecked?o=t?e.helps.checked:e.helps.unchecked:e.help&&(o=e.help),o})(o,l);let i=`${e}__${t}-field-wrapper`;const u=g(o,n);o.wrapper_class&&(i+=" "+o.wrapper_class);let h=!1;if(u)switch(a){case"select":h=(0,r.createElement)(m.SelectControl,{className:i,key:t,value:l,label:o.label,options:o.options,help:c,multiple:!!o.multiple,onChange:e=>{s(e,t,a)}});break;case"text":h=(0,r.createElement)(m.TextControl,{className:i,key:t,value:l,label:o.label,help:c,onChange:e=>{s(e,t,a)}});break;case"textarea":h=(0,r.createElement)(m.TextareaControl,{className:i,key:t,value:l,label:o.label,help:c,onChange:e=>{s(e,t,a)}});break;case"toggle":h=(0,r.createElement)(m.ToggleControl,{className:i,key:t,label:o.label,help:c,checked:l,onChange:e=>{s(e,t,a)}});break;case"checkbox":h=(0,r.createElement)(m.CheckboxControl,{className:i,key:t,label:o.label,help:c,checked:l,onChange:e=>{s(e,t,a)}});break;case"number":case"range":h=(0,r.createElement)(m.RangeControl,{className:i,key:t,value:l,label:o.label,help:c,min:o.min,max:o.max,onChange:e=>{s(e,t,a)}});break;case"color":case"colorpicker":h=(0,r.createElement)(w,{className:i,key:t,label:o.label,help:c,value:l,disableAlpha:o.disableAlpha,onChange:e=>{s(e,t,a)}});break;case"color-palette":h=(0,r.createElement)(x,{className:i,key:t,label:o.label,help:c,value:l,clearable:o.clearable||!1,onChange:e=>{s(e,t,a)}});break;case"radio":h=(0,r.createElement)(m.RadioControl,{key:t,label:o.label,options:o.options,selected:l,help:c,onChange:e=>{s(e,t,a)}});break;default:h=!1}return h})(o,a);if(l)return l})))),(0,r.createElement)(v,{attributes:n,blockArgs:t}))},E=[{key:"yith_plugin_fw_gutenberg_before_do_shortcode",delay:0},{key:"yith_plugin_fw_gutenberg_success_do_shortcode",delay:200},{key:"yith_plugin_fw_gutenberg_after_do_shortcode",delay:200}];for(const e of E)(0,_.addAction)(e.key,"yith-plugin-fw/jquery-events",(function(){for(var t=arguments.length,o=new Array(t),r=0;r<t;r++)o[r]=arguments[r];"jQuery"in window&&(e.delay?setTimeout((()=>{jQuery(document).trigger(e.key,Object.values(o))}),e.delay):jQuery(document).trigger(e.key,Object.values(o)))}));for(const[e,t]of Object.entries(yithGutenbergBlocks))(0,s.registerBlockType)("yith/"+e,{title:t.title,description:t.description,category:t.category,attributes:t.attributes,icon:void 0!==t.icon?t.icon:h,keywords:t.keywords,edit:j(e,t),save:e=>{let{attributes:o}=e;return b(t,o)},deprecated:[{attributes:t.attributes,save:e=>{let{attributes:o}=e;const n=b(t,o),a='<span class="yith_block_'+l()(n)+'">'+n+"</span>";return(0,r.createElement)(r.RawHTML,null,a)}}]})},487:function(e){var t={utf8:{stringToBytes:function(e){return t.bin.stringToBytes(unescape(encodeURIComponent(e)))},bytesToString:function(e){return decodeURIComponent(escape(t.bin.bytesToString(e)))}},bin:{stringToBytes:function(e){for(var t=[],o=0;o<e.length;o++)t.push(255&e.charCodeAt(o));return t},bytesToString:function(e){for(var t=[],o=0;o<e.length;o++)t.push(String.fromCharCode(e[o]));return t.join("")}}};e.exports=t},12:function(e){var t,o;t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",o={rotl:function(e,t){return e<<t|e>>>32-t},rotr:function(e,t){return e<<32-t|e>>>t},endian:function(e){if(e.constructor==Number)return 16711935&o.rotl(e,8)|4278255360&o.rotl(e,24);for(var t=0;t<e.length;t++)e[t]=o.endian(e[t]);return e},randomBytes:function(e){for(var t=[];e>0;e--)t.push(Math.floor(256*Math.random()));return t},bytesToWords:function(e){for(var t=[],o=0,r=0;o<e.length;o++,r+=8)t[r>>>5]|=e[o]<<24-r%32;return t},wordsToBytes:function(e){for(var t=[],o=0;o<32*e.length;o+=8)t.push(e[o>>>5]>>>24-o%32&255);return t},bytesToHex:function(e){for(var t=[],o=0;o<e.length;o++)t.push((e[o]>>>4).toString(16)),t.push((15&e[o]).toString(16));return t.join("")},hexToBytes:function(e){for(var t=[],o=0;o<e.length;o+=2)t.push(parseInt(e.substr(o,2),16));return t},bytesToBase64:function(e){for(var o=[],r=0;r<e.length;r+=3)for(var n=e[r]<<16|e[r+1]<<8|e[r+2],a=0;a<4;a++)8*r+6*a<=8*e.length?o.push(t.charAt(n>>>6*(3-a)&63)):o.push("=");return o.join("")},base64ToBytes:function(e){e=e.replace(/[^A-Z0-9+\/]/gi,"");for(var o=[],r=0,n=0;r<e.length;n=++r%4)0!=n&&o.push((t.indexOf(e.charAt(r-1))&Math.pow(2,-2*n+8)-1)<<2*n|t.indexOf(e.charAt(r))>>>6-2*n);return o}},e.exports=o},738:function(e){function t(e){return!!e.constructor&&"function"==typeof e.constructor.isBuffer&&e.constructor.isBuffer(e)}e.exports=function(e){return null!=e&&(t(e)||function(e){return"function"==typeof e.readFloatLE&&"function"==typeof e.slice&&t(e.slice(0,0))}(e)||!!e._isBuffer)}},568:function(e,t,o){var r,n,a,l,s;r=o(12),n=o(487).utf8,a=o(738),l=o(487).bin,(s=function(e,t){e.constructor==String?e=t&&"binary"===t.encoding?l.stringToBytes(e):n.stringToBytes(e):a(e)?e=Array.prototype.slice.call(e,0):Array.isArray(e)||e.constructor===Uint8Array||(e=e.toString());for(var o=r.bytesToWords(e),c=8*e.length,i=1732584193,u=-271733879,h=-1732584194,d=271733878,p=0;p<o.length;p++)o[p]=16711935&(o[p]<<8|o[p]>>>24)|4278255360&(o[p]<<24|o[p]>>>8);o[c>>>5]|=128<<c%32,o[14+(c+64>>>9<<4)]=c;var f=s._ff,g=s._gg,b=s._hh,m=s._ii;for(p=0;p<o.length;p+=16){var y=i,_=u,v=h,C=d;i=f(i,u,h,d,o[p+0],7,-680876936),d=f(d,i,u,h,o[p+1],12,-389564586),h=f(h,d,i,u,o[p+2],17,606105819),u=f(u,h,d,i,o[p+3],22,-1044525330),i=f(i,u,h,d,o[p+4],7,-176418897),d=f(d,i,u,h,o[p+5],12,1200080426),h=f(h,d,i,u,o[p+6],17,-1473231341),u=f(u,h,d,i,o[p+7],22,-45705983),i=f(i,u,h,d,o[p+8],7,1770035416),d=f(d,i,u,h,o[p+9],12,-1958414417),h=f(h,d,i,u,o[p+10],17,-42063),u=f(u,h,d,i,o[p+11],22,-1990404162),i=f(i,u,h,d,o[p+12],7,1804603682),d=f(d,i,u,h,o[p+13],12,-40341101),h=f(h,d,i,u,o[p+14],17,-1502002290),i=g(i,u=f(u,h,d,i,o[p+15],22,1236535329),h,d,o[p+1],5,-165796510),d=g(d,i,u,h,o[p+6],9,-1069501632),h=g(h,d,i,u,o[p+11],14,643717713),u=g(u,h,d,i,o[p+0],20,-373897302),i=g(i,u,h,d,o[p+5],5,-701558691),d=g(d,i,u,h,o[p+10],9,38016083),h=g(h,d,i,u,o[p+15],14,-660478335),u=g(u,h,d,i,o[p+4],20,-405537848),i=g(i,u,h,d,o[p+9],5,568446438),d=g(d,i,u,h,o[p+14],9,-1019803690),h=g(h,d,i,u,o[p+3],14,-187363961),u=g(u,h,d,i,o[p+8],20,1163531501),i=g(i,u,h,d,o[p+13],5,-1444681467),d=g(d,i,u,h,o[p+2],9,-51403784),h=g(h,d,i,u,o[p+7],14,1735328473),i=b(i,u=g(u,h,d,i,o[p+12],20,-1926607734),h,d,o[p+5],4,-378558),d=b(d,i,u,h,o[p+8],11,-2022574463),h=b(h,d,i,u,o[p+11],16,1839030562),u=b(u,h,d,i,o[p+14],23,-35309556),i=b(i,u,h,d,o[p+1],4,-1530992060),d=b(d,i,u,h,o[p+4],11,1272893353),h=b(h,d,i,u,o[p+7],16,-155497632),u=b(u,h,d,i,o[p+10],23,-1094730640),i=b(i,u,h,d,o[p+13],4,681279174),d=b(d,i,u,h,o[p+0],11,-358537222),h=b(h,d,i,u,o[p+3],16,-722521979),u=b(u,h,d,i,o[p+6],23,76029189),i=b(i,u,h,d,o[p+9],4,-640364487),d=b(d,i,u,h,o[p+12],11,-421815835),h=b(h,d,i,u,o[p+15],16,530742520),i=m(i,u=b(u,h,d,i,o[p+2],23,-995338651),h,d,o[p+0],6,-198630844),d=m(d,i,u,h,o[p+7],10,1126891415),h=m(h,d,i,u,o[p+14],15,-1416354905),u=m(u,h,d,i,o[p+5],21,-57434055),i=m(i,u,h,d,o[p+12],6,1700485571),d=m(d,i,u,h,o[p+3],10,-1894986606),h=m(h,d,i,u,o[p+10],15,-1051523),u=m(u,h,d,i,o[p+1],21,-2054922799),i=m(i,u,h,d,o[p+8],6,1873313359),d=m(d,i,u,h,o[p+15],10,-30611744),h=m(h,d,i,u,o[p+6],15,-1560198380),u=m(u,h,d,i,o[p+13],21,1309151649),i=m(i,u,h,d,o[p+4],6,-145523070),d=m(d,i,u,h,o[p+11],10,-1120210379),h=m(h,d,i,u,o[p+2],15,718787259),u=m(u,h,d,i,o[p+9],21,-343485551),i=i+y>>>0,u=u+_>>>0,h=h+v>>>0,d=d+C>>>0}return r.endian([i,u,h,d])})._ff=function(e,t,o,r,n,a,l){var s=e+(t&o|~t&r)+(n>>>0)+l;return(s<<a|s>>>32-a)+t},s._gg=function(e,t,o,r,n,a,l){var s=e+(t&r|o&~r)+(n>>>0)+l;return(s<<a|s>>>32-a)+t},s._hh=function(e,t,o,r,n,a,l){var s=e+(t^o^r)+(n>>>0)+l;return(s<<a|s>>>32-a)+t},s._ii=function(e,t,o,r,n,a,l){var s=e+(o^(t|~r))+(n>>>0)+l;return(s<<a|s>>>32-a)+t},s._blocksize=16,s._digestsize=16,e.exports=function(e,t){if(null==e)throw new Error("Illegal argument "+e);var o=r.wordsToBytes(s(e,t));return t&&t.asBytes?o:t&&t.asString?l.bytesToString(o):r.bytesToHex(o)}}},o={};function r(e){var n=o[e];if(void 0!==n)return n.exports;var a=o[e]={exports:{}};return t[e](a,a.exports,r),a.exports}r.m=t,e=[],r.O=function(t,o,n,a){if(!o){var l=1/0;for(u=0;u<e.length;u++){o=e[u][0],n=e[u][1],a=e[u][2];for(var s=!0,c=0;c<o.length;c++)(!1&a||l>=a)&&Object.keys(r.O).every((function(e){return r.O[e](o[c])}))?o.splice(c--,1):(s=!1,a<l&&(l=a));if(s){e.splice(u--,1);var i=n();void 0!==i&&(t=i)}}return t}a=a||0;for(var u=e.length;u>0&&e[u-1][2]>a;u--)e[u]=e[u-1];e[u]=[o,n,a]},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,{a:t}),t},r.d=function(e,t){for(var o in t)r.o(t,o)&&!r.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},function(){var e={826:0,46:0};r.O.j=function(t){return 0===e[t]};var t=function(t,o){var n,a,l=o[0],s=o[1],c=o[2],i=0;if(l.some((function(t){return 0!==e[t]}))){for(n in s)r.o(s,n)&&(r.m[n]=s[n]);if(c)var u=c(r)}for(t&&t(o);i<l.length;i++)a=l[i],r.o(e,a)&&e[a]&&e[a][0](),e[a]=0;return r.O(u)},o=self.webpackChunkyith_plugin_framewowrk=self.webpackChunkyith_plugin_framewowrk||[];o.forEach(t.bind(null,0)),o.push=t.bind(null,o.push.bind(o))}();var n=r.O(void 0,[46],(function(){return r(783)}));n=r.O(n)}();
1
+ !function(){var e,t={784:function(e,t,n){"use strict";var o=window.wp.element,r=window.React,l=n(568),a=n.n(l),s=window.wp.blocks,i=window.wp.url;function c(e){if(e.status>=200&&e.status<300)return e;throw e}function u(e){return e.json?e.json():e.text()}const p=(0,o.createElement)("svg",{viewBox:"0 0 22 22",xmlns:"http://www.w3.org/2000/svg",width:"22",height:"22",role:"img","aria-hidden":"true",focusable:"false"},(0,o.createElement)("path",{width:"22",height:"22",d:"M 18.24 7.628 C 17.291 8.284 16.076 8.971 14.587 9.688 C 15.344 7.186 15.765 4.851 15.849 2.684 C 15.912 0.939 15.133 0.045 13.514 0.003 C 11.558 -0.06 10.275 1.033 9.665 3.284 C 10.007 3.137 10.359 3.063 10.723 3.063 C 11.021 3.063 11.267 3.184 11.459 3.426 C 11.651 3.668 11.736 3.947 11.715 4.262 C 11.695 5.082 11.276 5.961 10.46 6.896 C 9.644 7.833 8.918 8.3 8.282 8.3 C 7.837 8.3 7.625 7.922 7.646 7.165 C 7.667 6.765 7.804 5.955 8.056 4.735 C 8.287 3.579 8.403 2.801 8.403 2.401 C 8.403 1.707 8.224 1.144 7.867 0.713 C 7.509 0.282 6.994 0.098 6.321 0.161 C 5.858 0.203 5.175 0.624 4.27 1.422 C 3.596 2.035 2.923 2.644 2.25 3.254 L 2.976 4.106 C 3.564 3.664 3.922 3.443 4.048 3.443 C 4.448 3.443 4.637 3.717 4.617 4.263 C 4.617 4.306 4.427 4.968 4.049 6.251 C 3.671 7.534 3.471 8.491 3.449 9.122 C 3.407 9.985 3.565 10.647 3.924 11.109 C 4.367 11.677 5.106 11.919 6.142 11.835 C 7.366 11.751 8.591 11.298 9.816 10.479 C 10.323 10.142 10.808 9.753 11.273 9.311 C 11.105 10.153 10.905 10.868 10.673 11.457 C 8.402 12.487 6.762 13.37 5.752 14.107 C 4.321 15.137 3.554 16.241 3.449 17.419 C 3.259 19.459 4.29 20.479 6.541 20.479 C 8.055 20.479 9.517 19.554 10.926 17.703 C 12.125 16.126 13.166 14.022 14.049 11.394 C 15.578 10.635 16.87 9.892 17.928 9.164 C 17.894 9.409 18.319 7.308 18.24 7.628 Z M 7.393 16.095 C 7.056 16.095 6.898 15.947 6.919 15.653 C 6.961 15.106 7.908 14.38 9.759 13.476 C 8.791 15.221 8.002 16.095 7.393 16.095 Z"}));var h=window.lodash,d=n.n(h);const f=(e,t,n)=>{let o=!0;if(t&&t.id&&"value"in t){let r=t.value;["toggle","checkbox"].includes(n)&&(r=!0===r||"yes"===r||1===r),r=d().isArray(r)?r:[r],o=void 0!==e[t.id]&&r.includes(e[t.id])}return o},m=(e,t)=>{const{controlType:n}=e;let o=!0;if(e.deps)if(d().isArray(e.deps))for(let r in e.deps){const l=e.deps[r];if(o=f(t,l,n),!o)break}else o=f(t,e.deps,n);return o},g=(e,t)=>{let n="",o=!1;if(void 0!==e.callback&&(jQuery&&e.callback in jQuery.fn?o=jQuery.fn[e.callback]:e.callback in window&&(o=window[e.callback])),"function"==typeof o)n=o(t,e);else{const o=e.attributes?Object.entries(e.attributes).map((e=>{let[n,o]=e;const r=m(o,t),l=t[n];if(r&&void 0!==l)return n+"="+(o.remove_quotes?l:`"${l}"`)})):[],r=o.length?" "+o.join(" "):"";n=`[${e.shortcode_name}${r}]`}return n};var _=window.wp.components,y=window.wp.blockEditor,b=window.wp.hooks;class v extends r.Component{constructor(){super(...arguments),this.state={html:"",shortcode:"",shortcodeHash:"",ajaxUpdated:!1,ajaxSuccess:!1,ajaxResponse:!1,loading:!1,firstLoading:!0},this.ajaxTimeout=!1}componentDidMount(){this.updateShortcode()}componentDidUpdate(e,t,n){const{shortcode:o,shortcodeHash:r,ajaxSuccess:l,ajaxResponse:a,ajaxUpdated:s}=this.state;(0,h.isEqual)(e,this.props)||this.updateShortcode(),this.props.blockArgs.do_shortcode&&s&&(l&&(0,b.doAction)("yith_plugin_fw_gutenberg_success_do_shortcode",o,r,a),(0,b.doAction)("yith_plugin_fw_gutenberg_after_do_shortcode",o,r,a),this.setState({ajaxUpdated:!1}))}updateShortcode(){const{attributes:e,blockArgs:t}=this.props;this.setState({loading:!0,ajaxSuccess:!1,ajaxResponse:!1});const n=g(t,e),o=a()(n);t.do_shortcode?(this.ajaxTimeout&&clearTimeout(this.ajaxTimeout),(0,b.doAction)("yith_plugin_fw_gutenberg_before_do_shortcode",n,o),this.ajaxTimeout=setTimeout((()=>{(function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:yithGutenberg.ajaxurl;return t=(0,i.addQueryArgs)(t,e),fetch(t).then(c).then(u)})({action:"yith_plugin_fw_gutenberg_do_shortcode",shortcode:n}).then((e=>{this.setState({loading:!1,firstLoading:!1,html:e.html,shortcode:n,shortcodeHash:o,ajaxSuccess:!0,ajaxUpdated:!0,ajaxResponse:e})})).catch((e=>{console.log({error:e})}))}),300)):this.setState({loading:!1,firstLoading:!1,html:n,shortcode:n,shortcodeHash:o})}render(){const{html:e,loading:t,firstLoading:n,shortcode:r,shortcodeHash:l}=this.state,{blockArgs:a}=this.props,{do_shortcode:s,title:i,empty_message:c}=a,u="block-editor-yith-plugin-fw-shortcode-block";let h=[u],d=s?"html":"shortcode",f=e,m="";n&&t?d="first-loading":s&&!e&&(d="empty-html",f=r,!t&&c&&(m=c));const g=["first-loading","empty-html","shortcode"].includes(d),y=!["first-loading","empty-html"].includes(d),b=!!m;return h.push(`${u}--${d}`),h.push(b?`${u}--has-message`:`${u}--no-message`),h.push(`yith_block_${l}`),(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",{className:h.join(" ")},t?(0,o.createElement)("div",{className:`${u}__spinner-wrap`},(0,o.createElement)(_.Spinner,null)):"",g&&(0,o.createElement)("div",{className:`${u}__title components-placeholder__label`},p,i),b&&(0,o.createElement)(o.RawHTML,{className:`${u}__message`},m),y&&(0,o.createElement)(o.RawHTML,{className:`${u}__content`},f)))}}var w=window.wp.compose;function C(e){let{className:t,label:n,onChange:r,value:l,help:a,disableAlpha:s}=e;const i=`inspector-yith-color-picker-control-${(0,w.useInstanceId)(C)}`;return(0,o.createElement)(_.BaseControl,{id:i,label:n,className:`block-editor-yith-color-control ${t}`,help:a},(0,o.createElement)(_.ColorPicker,{color:l,disableAlpha:s,onChangeComplete:r}))}function k(e){let{label:t,colorValue:n}=e;return(0,o.createElement)(o.Fragment,null,t,!!n&&(0,o.createElement)(_.ColorIndicator,{colorValue:n}))}function E(e){let{className:t,label:n,onChange:r,value:l,help:a,palette:s,clearable:i}=e;s=s||(0,y.useSetting)("color.palette");const c=`inspector-yith-color-palette-control-${(0,w.useInstanceId)(E)}`;return(0,o.createElement)(_.BaseControl,{id:c,className:`block-editor-yith-color-palette-control ${t}`,help:a},(0,o.createElement)("fieldset",null,(0,o.createElement)("legend",null,(0,o.createElement)("div",{className:"block-editor-yith-color-palette-control__color-indicator"},(0,o.createElement)(_.BaseControl.VisualLabel,null,(0,o.createElement)(k,{colorValue:l,label:n})))),(0,o.createElement)(_.ColorPalette,{value:l,onChange:r,colors:s,clearable:i})))}var x=n(184),T=n.n(x),j=n(697),N=n.n(j),S=window.wp.i18n;const O={noItems:(0,S.__)("No items found.","yith-plugin-fw"),noResults:(0,S.__)('No results for "%s"',"yith-plugin-fw"),search:(0,S.__)("Search for items...","yith-plugin-fw")};function A(e){const t=(0,w.useInstanceId)(B);return e||`inspector-yith-multiple-select-control-${t}`}function R(e){var t;let{id:n,value:l,options:a,onChange:s,messages:i}=e;const[c,u]=(0,r.useState)(""),[p,h]=(0,r.useState)(!1),[d,f]=(0,r.useState)(248),m={...O,...i},g=(0,r.useRef)(),y=(0,r.useRef)(),b=(0,r.useRef)(),v=(0,r.useRef)(),w=(0,r.useRef)(),C=T()("yith-fw-components__multiple-select"),k=(0,r.useMemo)((()=>a.map((e=>e.value))),[a]),E=(0,r.useMemo)((()=>l.filter((e=>k.includes(e)))),[l,k]),x=(0,r.useMemo)((()=>a.filter((e=>e.label.toLowerCase().indexOf(c.toLowerCase())>=0))),[a,c]),j=(0,r.useMemo)((()=>a.filter((e=>E.includes(e.value)))),[a,E]),N=e=>{const t=[...E].filter((t=>t!==e));s(t)},R=()=>!!y.current&&y.current.focus(),B=e=>{const t=(null==g?void 0:g.current)&&g.current.contains(e.target),n=(null==v?void 0:v.current)&&v.current.contains(e.target);t||n||h(!1)};return(0,r.useEffect)((()=>(document.addEventListener("mousedown",B),()=>document.removeEventListener("mousedown",B)))),(0,r.useEffect)((()=>{(()=>{var e;if(!g.current)return;const t=null===(e=g.current.getBoundingClientRect())||void 0===e?void 0:e.width;f(t)})()}),[]),(0,o.createElement)("div",{className:C,ref:g},(0,o.createElement)("div",{className:"yith-fw-components__multiple-select__input-container",ref:b,onClick:e=>{(null==b?void 0:b.current)&&b.current===e.target&&R()}},j.map((e=>(0,o.createElement)("span",{key:e.value,className:"yith-fw-components__multiple-select__item"},(0,o.createElement)("span",{className:"yith-fw-components__multiple-select__item__label"},e.label),(0,o.createElement)("i",{className:"yith-fw-components__multiple-select__item__remove yith-icon-close-alt",onClick:()=>{N(e.value),h(!1)}})))),(0,o.createElement)("input",{className:"yith-fw-components__multiple-select__input",id:A(n),ref:y,type:"text",autoComplete:"off",placeholder:m.search,onFocus:()=>h(!0),value:c,onChange:e=>u(e.target.value)})),p&&(0,o.createElement)(_.Popover,{className:"yith-fw-components__multiple-select__popover",position:"bottom",offset:20,anchorRef:null!==(t=null==g?void 0:g.current)&&void 0!==t?t:void 0,anchorRect:(null==g?void 0:g.current)&&(null==g?void 0:g.current.getBoundingClientRect()),focusOnMount:!1,ref:v},(0,o.createElement)("div",{className:T()("yith-fw-components__multiple-select__suggestions",!x.length&&"no-results"),ref:w,style:{width:d}},a.length&&x.length?x.map((e=>{const t=E.includes(e.value);return(0,o.createElement)("div",{key:e.value,className:T()("yith-fw-components__multiple-select__suggestion",t&&"selected"),onClick:()=>{var n;t||(n=e.value,s([...E,n]),u(""),R())}},(0,o.createElement)("div",{className:"yith-fw-components__multiple-select__suggestion__label"},e.label),t&&(0,o.createElement)("i",{className:"yith-fw-components__multiple-select__suggestion__remove yith-icon yith-icon-close-alt",onClick:()=>{N(e.value),R()}}))})):(0,o.createElement)("div",{className:"yith-fw-components__multiple-select__suggestions__message"},a.length&&c?(0,S.sprintf)(m.noResults,c):m.noItems))))}function B(e){let{className:t,label:n,onChange:r,value:l,help:a,options:s,messages:i}=e;const c=`inspector-yith-multiple-select-control-${(0,w.useInstanceId)(B)}`;return(0,o.createElement)(_.BaseControl,{id:c,label:n,className:`block-editor-yith-multiple-select-control ${t}`,help:a},(0,o.createElement)(R,{id:c,value:l,options:s,onChange:r,messages:i}))}R.propTypes={id:N().string,className:N().string,value:N().array,options:N().arrayOf(N().shape({label:N().string,value:N().oneOfType([N().string,N().number])})),onChange:N().func},R.defaultProps={id:"",value:[],className:"",options:[],onChange:d()};const $=e=>{var t,n,r;let{attributeName:l,attributeArgs:a,attributes:s,onChange:i,blockName:c}=e;const{controlType:u,label:p,wrapper_class:h}=a,d=s[l],f=((e,t)=>{let n="";return e.helps&&e.helps.checked&&e.helps.unchecked?n=t?e.helps.checked:e.helps.unchecked:e.help&&(n=e.help),n})(a,d),g=m(a,s),y=T()(`${c}__${l}-field-wrapper`,h);let b=!1;if(g)switch(u){case"select":var v,w,k;b=a.multiple?(0,o.createElement)(B,{className:y,value:d,label:p,options:null!==(v=null==a?void 0:a.options)&&void 0!==v?v:[],help:f,onChange:i,messages:null!==(w=null==a?void 0:a.messages)&&void 0!==w?w:{}}):(0,o.createElement)(_.SelectControl,{className:y,value:d,label:p,options:null!==(k=null==a?void 0:a.options)&&void 0!==k?k:[],help:f,onChange:i});break;case"text":b=(0,o.createElement)(_.TextControl,{className:y,key:l,value:d,label:p,help:f,onChange:i});break;case"textarea":b=(0,o.createElement)(_.TextareaControl,{className:y,key:l,value:d,label:p,help:f,onChange:i});break;case"toggle":b=(0,o.createElement)(_.ToggleControl,{className:y,key:l,label:p,help:f,checked:d,onChange:i});break;case"checkbox":b=(0,o.createElement)(_.CheckboxControl,{className:y,key:l,label:p,help:f,checked:d,onChange:i});break;case"number":case"range":b=(0,o.createElement)(_.RangeControl,{className:y,key:l,value:d,label:p,help:f,min:null==a?void 0:a.min,max:null==a?void 0:a.max,onChange:i});break;case"color":case"colorpicker":b=(0,o.createElement)(C,{className:y,key:l,label:p,help:f,value:d,disableAlpha:null!==(t=null==a?void 0:a.disableAlpha)&&void 0!==t&&t,onChange:i});break;case"color-palette":b=(0,o.createElement)(E,{className:y,key:l,label:p,help:f,value:d,clearable:null!==(n=null==a?void 0:a.clearable)&&void 0!==n&&n,onChange:i});break;case"radio":b=(0,o.createElement)(_.RadioControl,{key:l,label:p,options:null!==(r=null==a?void 0:a.options)&&void 0!==r?r:[],selected:d,help:f,onChange:i});break;default:b=!1}return b},I=(e,t)=>function(n){let{attributes:r,className:l,setAttributes:a}=n;return(0,o.createElement)(o.Fragment,null,!!t.attributes&&(0,o.createElement)(y.InspectorControls,null,(0,o.createElement)(_.PanelBody,null,Object.entries(t.attributes).map((t=>{let[n,l]=t;const{controlType:s}=l;return(0,o.createElement)($,{key:n,attributeArgs:l,attributeName:n,attributes:r,blockName:e,onChange:e=>((e,t,n)=>{if(["colorpicker","color"].includes(n))if("rgb"in e&&"hex"in e){const{r:t,g:n,b:o,a:r}=e.rgb;e=r<1?`rgba(${t}, ${n}, ${o}, ${r})`:e.hex}else e=e.color.getAlpha()<1?e.color.toRgbString():e.color.toHexString();a({[t]:e})})(e,n,s)})})))),(0,o.createElement)(v,{attributes:r,blockArgs:t}))},L=[{key:"yith_plugin_fw_gutenberg_before_do_shortcode",delay:0},{key:"yith_plugin_fw_gutenberg_success_do_shortcode",delay:200},{key:"yith_plugin_fw_gutenberg_after_do_shortcode",delay:200}];for(const e of L)(0,b.addAction)(e.key,"yith-plugin-fw/jquery-events",(function(){for(var t=arguments.length,n=new Array(t),o=0;o<t;o++)n[o]=arguments[o];"jQuery"in window&&(e.delay?setTimeout((()=>{jQuery(document).trigger(e.key,Object.values(n))}),e.delay):jQuery(document).trigger(e.key,Object.values(n)))}));for(const[e,t]of Object.entries(yithGutenbergBlocks))(0,s.registerBlockType)("yith/"+e,{title:t.title,description:t.description,category:t.category,attributes:t.attributes,icon:void 0!==t.icon?t.icon:p,keywords:t.keywords,edit:I(e,t),save:e=>{let{attributes:n}=e;return g(t,n)},deprecated:[{attributes:t.attributes,save:e=>{let{attributes:n}=e;const r=g(t,n),l='<span class="yith_block_'+a()(r)+'">'+r+"</span>";return(0,o.createElement)(o.RawHTML,null,l)}}]})},487:function(e){var t={utf8:{stringToBytes:function(e){return t.bin.stringToBytes(unescape(encodeURIComponent(e)))},bytesToString:function(e){return decodeURIComponent(escape(t.bin.bytesToString(e)))}},bin:{stringToBytes:function(e){for(var t=[],n=0;n<e.length;n++)t.push(255&e.charCodeAt(n));return t},bytesToString:function(e){for(var t=[],n=0;n<e.length;n++)t.push(String.fromCharCode(e[n]));return t.join("")}}};e.exports=t},184:function(e,t){var n;!function(){"use strict";var o={}.hasOwnProperty;function r(){for(var e=[],t=0;t<arguments.length;t++){var n=arguments[t];if(n){var l=typeof n;if("string"===l||"number"===l)e.push(n);else if(Array.isArray(n)){if(n.length){var a=r.apply(null,n);a&&e.push(a)}}else if("object"===l)if(n.toString===Object.prototype.toString)for(var s in n)o.call(n,s)&&n[s]&&e.push(s);else e.push(n.toString())}}return e.join(" ")}e.exports?(r.default=r,e.exports=r):void 0===(n=function(){return r}.apply(t,[]))||(e.exports=n)}()},12:function(e){var t,n;t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",n={rotl:function(e,t){return e<<t|e>>>32-t},rotr:function(e,t){return e<<32-t|e>>>t},endian:function(e){if(e.constructor==Number)return 16711935&n.rotl(e,8)|4278255360&n.rotl(e,24);for(var t=0;t<e.length;t++)e[t]=n.endian(e[t]);return e},randomBytes:function(e){for(var t=[];e>0;e--)t.push(Math.floor(256*Math.random()));return t},bytesToWords:function(e){for(var t=[],n=0,o=0;n<e.length;n++,o+=8)t[o>>>5]|=e[n]<<24-o%32;return t},wordsToBytes:function(e){for(var t=[],n=0;n<32*e.length;n+=8)t.push(e[n>>>5]>>>24-n%32&255);return t},bytesToHex:function(e){for(var t=[],n=0;n<e.length;n++)t.push((e[n]>>>4).toString(16)),t.push((15&e[n]).toString(16));return t.join("")},hexToBytes:function(e){for(var t=[],n=0;n<e.length;n+=2)t.push(parseInt(e.substr(n,2),16));return t},bytesToBase64:function(e){for(var n=[],o=0;o<e.length;o+=3)for(var r=e[o]<<16|e[o+1]<<8|e[o+2],l=0;l<4;l++)8*o+6*l<=8*e.length?n.push(t.charAt(r>>>6*(3-l)&63)):n.push("=");return n.join("")},base64ToBytes:function(e){e=e.replace(/[^A-Z0-9+\/]/gi,"");for(var n=[],o=0,r=0;o<e.length;r=++o%4)0!=r&&n.push((t.indexOf(e.charAt(o-1))&Math.pow(2,-2*r+8)-1)<<2*r|t.indexOf(e.charAt(o))>>>6-2*r);return n}},e.exports=n},738:function(e){function t(e){return!!e.constructor&&"function"==typeof e.constructor.isBuffer&&e.constructor.isBuffer(e)}e.exports=function(e){return null!=e&&(t(e)||function(e){return"function"==typeof e.readFloatLE&&"function"==typeof e.slice&&t(e.slice(0,0))}(e)||!!e._isBuffer)}},568:function(e,t,n){var o,r,l,a,s;o=n(12),r=n(487).utf8,l=n(738),a=n(487).bin,(s=function(e,t){e.constructor==String?e=t&&"binary"===t.encoding?a.stringToBytes(e):r.stringToBytes(e):l(e)?e=Array.prototype.slice.call(e,0):Array.isArray(e)||e.constructor===Uint8Array||(e=e.toString());for(var n=o.bytesToWords(e),i=8*e.length,c=1732584193,u=-271733879,p=-1732584194,h=271733878,d=0;d<n.length;d++)n[d]=16711935&(n[d]<<8|n[d]>>>24)|4278255360&(n[d]<<24|n[d]>>>8);n[i>>>5]|=128<<i%32,n[14+(i+64>>>9<<4)]=i;var f=s._ff,m=s._gg,g=s._hh,_=s._ii;for(d=0;d<n.length;d+=16){var y=c,b=u,v=p,w=h;c=f(c,u,p,h,n[d+0],7,-680876936),h=f(h,c,u,p,n[d+1],12,-389564586),p=f(p,h,c,u,n[d+2],17,606105819),u=f(u,p,h,c,n[d+3],22,-1044525330),c=f(c,u,p,h,n[d+4],7,-176418897),h=f(h,c,u,p,n[d+5],12,1200080426),p=f(p,h,c,u,n[d+6],17,-1473231341),u=f(u,p,h,c,n[d+7],22,-45705983),c=f(c,u,p,h,n[d+8],7,1770035416),h=f(h,c,u,p,n[d+9],12,-1958414417),p=f(p,h,c,u,n[d+10],17,-42063),u=f(u,p,h,c,n[d+11],22,-1990404162),c=f(c,u,p,h,n[d+12],7,1804603682),h=f(h,c,u,p,n[d+13],12,-40341101),p=f(p,h,c,u,n[d+14],17,-1502002290),c=m(c,u=f(u,p,h,c,n[d+15],22,1236535329),p,h,n[d+1],5,-165796510),h=m(h,c,u,p,n[d+6],9,-1069501632),p=m(p,h,c,u,n[d+11],14,643717713),u=m(u,p,h,c,n[d+0],20,-373897302),c=m(c,u,p,h,n[d+5],5,-701558691),h=m(h,c,u,p,n[d+10],9,38016083),p=m(p,h,c,u,n[d+15],14,-660478335),u=m(u,p,h,c,n[d+4],20,-405537848),c=m(c,u,p,h,n[d+9],5,568446438),h=m(h,c,u,p,n[d+14],9,-1019803690),p=m(p,h,c,u,n[d+3],14,-187363961),u=m(u,p,h,c,n[d+8],20,1163531501),c=m(c,u,p,h,n[d+13],5,-1444681467),h=m(h,c,u,p,n[d+2],9,-51403784),p=m(p,h,c,u,n[d+7],14,1735328473),c=g(c,u=m(u,p,h,c,n[d+12],20,-1926607734),p,h,n[d+5],4,-378558),h=g(h,c,u,p,n[d+8],11,-2022574463),p=g(p,h,c,u,n[d+11],16,1839030562),u=g(u,p,h,c,n[d+14],23,-35309556),c=g(c,u,p,h,n[d+1],4,-1530992060),h=g(h,c,u,p,n[d+4],11,1272893353),p=g(p,h,c,u,n[d+7],16,-155497632),u=g(u,p,h,c,n[d+10],23,-1094730640),c=g(c,u,p,h,n[d+13],4,681279174),h=g(h,c,u,p,n[d+0],11,-358537222),p=g(p,h,c,u,n[d+3],16,-722521979),u=g(u,p,h,c,n[d+6],23,76029189),c=g(c,u,p,h,n[d+9],4,-640364487),h=g(h,c,u,p,n[d+12],11,-421815835),p=g(p,h,c,u,n[d+15],16,530742520),c=_(c,u=g(u,p,h,c,n[d+2],23,-995338651),p,h,n[d+0],6,-198630844),h=_(h,c,u,p,n[d+7],10,1126891415),p=_(p,h,c,u,n[d+14],15,-1416354905),u=_(u,p,h,c,n[d+5],21,-57434055),c=_(c,u,p,h,n[d+12],6,1700485571),h=_(h,c,u,p,n[d+3],10,-1894986606),p=_(p,h,c,u,n[d+10],15,-1051523),u=_(u,p,h,c,n[d+1],21,-2054922799),c=_(c,u,p,h,n[d+8],6,1873313359),h=_(h,c,u,p,n[d+15],10,-30611744),p=_(p,h,c,u,n[d+6],15,-1560198380),u=_(u,p,h,c,n[d+13],21,1309151649),c=_(c,u,p,h,n[d+4],6,-145523070),h=_(h,c,u,p,n[d+11],10,-1120210379),p=_(p,h,c,u,n[d+2],15,718787259),u=_(u,p,h,c,n[d+9],21,-343485551),c=c+y>>>0,u=u+b>>>0,p=p+v>>>0,h=h+w>>>0}return o.endian([c,u,p,h])})._ff=function(e,t,n,o,r,l,a){var s=e+(t&n|~t&o)+(r>>>0)+a;return(s<<l|s>>>32-l)+t},s._gg=function(e,t,n,o,r,l,a){var s=e+(t&o|n&~o)+(r>>>0)+a;return(s<<l|s>>>32-l)+t},s._hh=function(e,t,n,o,r,l,a){var s=e+(t^n^o)+(r>>>0)+a;return(s<<l|s>>>32-l)+t},s._ii=function(e,t,n,o,r,l,a){var s=e+(n^(t|~o))+(r>>>0)+a;return(s<<l|s>>>32-l)+t},s._blocksize=16,s._digestsize=16,e.exports=function(e,t){if(null==e)throw new Error("Illegal argument "+e);var n=o.wordsToBytes(s(e,t));return t&&t.asBytes?n:t&&t.asString?a.bytesToString(n):o.bytesToHex(n)}},703:function(e,t,n){"use strict";var o=n(414);function r(){}function l(){}l.resetWarningCache=r,e.exports=function(){function e(e,t,n,r,l,a){if(a!==o){var s=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw s.name="Invariant Violation",s}}function t(){return e}e.isRequired=e;var n={array:e,bigint:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:l,resetWarningCache:r};return n.PropTypes=n,n}},697:function(e,t,n){e.exports=n(703)()},414:function(e){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"}},n={};function o(e){var r=n[e];if(void 0!==r)return r.exports;var l=n[e]={exports:{}};return t[e](l,l.exports,o),l.exports}o.m=t,e=[],o.O=function(t,n,r,l){if(!n){var a=1/0;for(u=0;u<e.length;u++){n=e[u][0],r=e[u][1],l=e[u][2];for(var s=!0,i=0;i<n.length;i++)(!1&l||a>=l)&&Object.keys(o.O).every((function(e){return o.O[e](n[i])}))?n.splice(i--,1):(s=!1,l<a&&(a=l));if(s){e.splice(u--,1);var c=r();void 0!==c&&(t=c)}}return t}l=l||0;for(var u=e.length;u>0&&e[u-1][2]>l;u--)e[u]=e[u-1];e[u]=[n,r,l]},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,{a:t}),t},o.d=function(e,t){for(var n in t)o.o(t,n)&&!o.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},function(){var e={826:0,46:0};o.O.j=function(t){return 0===e[t]};var t=function(t,n){var r,l,a=n[0],s=n[1],i=n[2],c=0;if(a.some((function(t){return 0!==e[t]}))){for(r in s)o.o(s,r)&&(o.m[r]=s[r]);if(i)var u=i(o)}for(t&&t(n);c<a.length;c++)l=a[c],o.o(e,l)&&e[l]&&e[l][0](),e[l]=0;return o.O(u)},n=self.webpackChunkyith_plugin_framewowrk=self.webpackChunkyith_plugin_framewowrk||[];n.forEach(t.bind(null,0)),n.push=t.bind(null,n.push.bind(n))}();var r=o.O(void 0,[46],(function(){return o(784)}));r=o.O(r)}();
plugin-fw/dist/gutenberg/style-index.css CHANGED
@@ -1,2 +1,3 @@
1
  .block-editor-yith-plugin-fw-shortcode-block.block-editor-yith-plugin-fw-shortcode-block--empty-html,.block-editor-yith-plugin-fw-shortcode-block.block-editor-yith-plugin-fw-shortcode-block--first-loading,.block-editor-yith-plugin-fw-shortcode-block.block-editor-yith-plugin-fw-shortcode-block--shortcode{border:1px solid #1e1e1e;border-radius:4px;padding:1em 1em 1.2em}.block-editor-yith-plugin-fw-shortcode-block.block-editor-yith-plugin-fw-shortcode-block--shortcode .block-editor-yith-plugin-fw-shortcode-block__content{border:1px solid #ddd;border-radius:4px;color:#1e1e1e;font-family:Menlo,Consolas,monaco,monospace;font-size:13px;padding:.8em 1em}.block-editor-yith-plugin-fw-shortcode-block{min-height:30px;position:relative}.block-editor-yith-plugin-fw-shortcode-block .block-editor-yith-plugin-fw-shortcode-block__spinner-wrap{left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%)}.block-editor-yith-plugin-fw-shortcode-block.block-editor-yith-plugin-fw-shortcode-block--empty-html.block-editor-yith-plugin-fw-shortcode-block--no-message .block-editor-yith-plugin-fw-shortcode-block__title,.block-editor-yith-plugin-fw-shortcode-block.block-editor-yith-plugin-fw-shortcode-block--first-loading .block-editor-yith-plugin-fw-shortcode-block__title{margin-bottom:0}.block-editor-yith-plugin-fw-shortcode-block.block-editor-yith-plugin-fw-shortcode-block--empty-html .block-editor-yith-plugin-fw-shortcode-block__message{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;font-style:italic}.block-editor-yith-plugin-fw-shortcode-block.block-editor-yith-plugin-fw-shortcode-block--empty-html .block-editor-yith-plugin-fw-shortcode-block__content{display:none}
2
  .block-editor-yith-color-palette-control .block-editor-yith-color-palette-control__color-indicator{margin-bottom:12px}.block-editor-yith-color-palette-control .component-color-indicator{vertical-align:text-bottom}
 
1
  .block-editor-yith-plugin-fw-shortcode-block.block-editor-yith-plugin-fw-shortcode-block--empty-html,.block-editor-yith-plugin-fw-shortcode-block.block-editor-yith-plugin-fw-shortcode-block--first-loading,.block-editor-yith-plugin-fw-shortcode-block.block-editor-yith-plugin-fw-shortcode-block--shortcode{border:1px solid #1e1e1e;border-radius:4px;padding:1em 1em 1.2em}.block-editor-yith-plugin-fw-shortcode-block.block-editor-yith-plugin-fw-shortcode-block--shortcode .block-editor-yith-plugin-fw-shortcode-block__content{border:1px solid #ddd;border-radius:4px;color:#1e1e1e;font-family:Menlo,Consolas,monaco,monospace;font-size:13px;padding:.8em 1em}.block-editor-yith-plugin-fw-shortcode-block{min-height:30px;position:relative}.block-editor-yith-plugin-fw-shortcode-block .block-editor-yith-plugin-fw-shortcode-block__spinner-wrap{left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%)}.block-editor-yith-plugin-fw-shortcode-block.block-editor-yith-plugin-fw-shortcode-block--empty-html.block-editor-yith-plugin-fw-shortcode-block--no-message .block-editor-yith-plugin-fw-shortcode-block__title,.block-editor-yith-plugin-fw-shortcode-block.block-editor-yith-plugin-fw-shortcode-block--first-loading .block-editor-yith-plugin-fw-shortcode-block__title{margin-bottom:0}.block-editor-yith-plugin-fw-shortcode-block.block-editor-yith-plugin-fw-shortcode-block--empty-html .block-editor-yith-plugin-fw-shortcode-block__message{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;font-style:italic}.block-editor-yith-plugin-fw-shortcode-block.block-editor-yith-plugin-fw-shortcode-block--empty-html .block-editor-yith-plugin-fw-shortcode-block__content{display:none}
2
  .block-editor-yith-color-palette-control .block-editor-yith-color-palette-control__color-indicator{margin-bottom:12px}.block-editor-yith-color-palette-control .component-color-indicator{vertical-align:text-bottom}
3
+ .yith-fw-components__multiple-select .yith-fw-components__multiple-select__input-container{border:1px solid #757575;border-radius:2px;padding:5px}.yith-fw-components__multiple-select .yith-fw-components__multiple-select__input-container .yith-fw-components__multiple-select__input{background:inherit;border:0;box-shadow:none;color:#1e1e1e;min-height:24px;width:100%}.yith-fw-components__multiple-select .yith-fw-components__multiple-select__input-container .yith-fw-components__multiple-select__input::-moz-placeholder{color:inherit;opacity:.6}.yith-fw-components__multiple-select .yith-fw-components__multiple-select__input-container .yith-fw-components__multiple-select__input:-ms-input-placeholder{color:inherit;opacity:.6}.yith-fw-components__multiple-select .yith-fw-components__multiple-select__input-container .yith-fw-components__multiple-select__input::placeholder{color:inherit;opacity:.6}.yith-fw-components__multiple-select .yith-fw-components__multiple-select__item{align-items:center;background:#f1f1f1;border-radius:3px;display:inline-block;margin:0 5px 5px 0;max-width:100%;padding:4px 25px 4px 10px;position:relative}.yith-fw-components__multiple-select .yith-fw-components__multiple-select__item .yith-fw-components__multiple-select__item__remove{cursor:pointer;font-size:14px;height:auto;padding:5px;position:absolute;right:3px;top:50%;transform:translateY(-50%);width:auto}.yith-fw-components__multiple-select .yith-fw-components__multiple-select__item .yith-fw-components__multiple-select__item__remove:hover{color:#c50c0c}.yith-fw-components__multiple-select__popover .components-popover__content{border:0;overflow:visible}.yith-fw-components__multiple-select__popover .yith-fw-components__multiple-select__suggestions{border-radius:5px;box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12);display:flex;flex-direction:column;max-height:200px;overflow:hidden;overflow-y:auto;padding-top:5px}.yith-fw-components__multiple-select__popover .yith-fw-components__multiple-select__suggestions.no-results{padding-top:0}.yith-fw-components__multiple-select__popover .yith-fw-components__multiple-select__suggestions .yith-fw-components__multiple-select__suggestions__message{line-height:1.5em;overflow-wrap:break-word;padding:8px 15px}.yith-fw-components__multiple-select__popover .yith-fw-components__multiple-select__suggestions .yith-fw-components__multiple-select__suggestion{align-items:center;cursor:pointer;display:flex;justify-content:space-between;line-height:1.5em;min-height:40px;padding:8px 15px}.yith-fw-components__multiple-select__popover .yith-fw-components__multiple-select__suggestions .yith-fw-components__multiple-select__suggestion.selected{background:rgba(25,118,210,.08)}.yith-fw-components__multiple-select__popover .yith-fw-components__multiple-select__suggestions .yith-fw-components__multiple-select__suggestion:hover{background:rgba(0,0,0,.04)}.yith-fw-components__multiple-select__popover .yith-fw-components__multiple-select__suggestions .yith-fw-components__multiple-select__suggestion.selected:hover{background:rgba(25,118,210,.12)}.yith-fw-components__multiple-select__popover .yith-fw-components__multiple-select__suggestions .yith-fw-components__multiple-select__suggestion__remove{background:transparent;border-radius:50%;box-shadow:0 0 0 10px transparent;font-size:13px;font-weight:600;height:23px;padding:5px;transition:all .3s ease-in-out;width:23px}.yith-fw-components__multiple-select__popover .yith-fw-components__multiple-select__suggestions .yith-fw-components__multiple-select__suggestion__remove:hover{background:rgba(0,0,0,.06);box-shadow:0 0 0 3px rgba(0,0,0,.06);color:#c50c0c}.yith-fw-components__multiple-select__popover ::-webkit-scrollbar-track{background-color:transparent;-webkit-box-shadow:none}.yith-fw-components__multiple-select__popover ::-webkit-scrollbar{background-color:rgba(94,88,154,.04);width:10px}.yith-fw-components__multiple-select__popover ::-webkit-scrollbar-thumb{background-color:#b1b4bf;border-radius:10px}
plugin-fw/includes/builders/elementor/class-yith-elementor-widget.php CHANGED
@@ -99,7 +99,7 @@ if ( ! class_exists( 'YITH_Elementor_Widget' ) ) {
99
  /**
100
  * Register the widget controls.
101
  */
102
- public function _register_controls() { // phpcs:ignore
103
  $options = $this->get_yith_prop( 'options' );
104
  $description = $this->get_yith_prop( 'description' );
105
 
99
  /**
100
  * Register the widget controls.
101
  */
102
+ public function register_controls() {
103
  $options = $this->get_yith_prop( 'options' );
104
  $description = $this->get_yith_prop( 'description' );
105
 
plugin-fw/includes/builders/gutenberg/class-yith-gutenberg.php CHANGED
@@ -103,7 +103,7 @@ if ( ! class_exists( 'YITH_Gutenberg' ) ) {
103
  wp_localize_script( 'yith-gutenberg', 'yithGutenbergBlocks', $this->blocks_args );
104
 
105
  wp_enqueue_script( 'yith-gutenberg' );
106
- wp_enqueue_style( 'yith-gutenberg', $gutenberg_assets_url . '/style-index.css', array(), yith_plugin_fw_get_version() );
107
  }
108
 
109
  /**
103
  wp_localize_script( 'yith-gutenberg', 'yithGutenbergBlocks', $this->blocks_args );
104
 
105
  wp_enqueue_script( 'yith-gutenberg' );
106
+ wp_enqueue_style( 'yith-gutenberg', $gutenberg_assets_url . '/style-index.css', array( 'yith-plugin-fw-icon-font' ), yith_plugin_fw_get_version() );
107
  }
108
 
109
  /**
plugin-fw/includes/builders/gutenberg/src/components/multiple-select-control/index.js ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * External dependencies
3
+ */
4
+ import React from 'react';
5
+
6
+ /**
7
+ * WordPress dependencies
8
+ */
9
+ import { BaseControl } from '@wordpress/components';
10
+ import { useInstanceId } from '@wordpress/compose';
11
+ import MultipleSelect from './multiple-select';
12
+
13
+ import './style.scss';
14
+
15
+ /**
16
+ * Color Picker Control
17
+ *
18
+ * @param {string} className The CSS class name.
19
+ * @param {string} label The label.
20
+ * @param {function} onChange The function callback fired on value change.
21
+ * @param {string} value The initial value.
22
+ * @param {string} help The help message.
23
+ * @param {bool} disableAlpha Set true to disable the alpha
24
+ * @returns {MultipleSelectControl}
25
+ * @constructor
26
+ */
27
+ export default function MultipleSelectControl(
28
+ {
29
+ className,
30
+ label,
31
+ onChange,
32
+ value,
33
+ help,
34
+ options,
35
+ messages
36
+ }
37
+ ) {
38
+
39
+ const instanceId = useInstanceId( MultipleSelectControl );
40
+ const id = `inspector-yith-multiple-select-control-${instanceId}`;
41
+
42
+ return <BaseControl
43
+ id={id}
44
+ label={label}
45
+ className={`block-editor-yith-multiple-select-control ${className}`}
46
+ help={help}
47
+ >
48
+ <MultipleSelect
49
+ id={id}
50
+ value={value}
51
+ options={options}
52
+ onChange={onChange}
53
+ messages={messages}
54
+ />
55
+ </BaseControl>
56
+ }
plugin-fw/includes/builders/gutenberg/src/components/multiple-select-control/multiple-select.js ADDED
@@ -0,0 +1,186 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import classNames from 'classnames';
2
+ import noop from 'lodash';
3
+ import PropTypes from 'prop-types';
4
+ import { useState, useEffect, useRef, useMemo } from 'react';
5
+
6
+ import { __, sprintf } from '@wordpress/i18n';
7
+ import { useInstanceId } from '@wordpress/compose';
8
+ import { Popover } from '@wordpress/components';
9
+
10
+ import MultipleSelectControl from './index';
11
+
12
+ const defaultMessages = {
13
+ noItems : __( 'No items found.', 'yith-plugin-fw' ),
14
+ noResults: __( 'No results for "%s"', 'yith-plugin-fw' ),
15
+ search : __( 'Search for items...', 'yith-plugin-fw' )
16
+ };
17
+
18
+ function useUniqueId( idProp ) {
19
+ const instanceId = useInstanceId( MultipleSelectControl );
20
+ const id = `inspector-yith-multiple-select-control-${instanceId}`;
21
+
22
+ return idProp || id;
23
+ }
24
+
25
+ export default function MultipleSelect( { id: idProp, value, options, onChange, messages: messagesProp } ) {
26
+ const [search, setSearch] = useState( '' );
27
+ const [showSuggesions, setShowSuggestions] = useState( false );
28
+ const [width, setWidth] = useState( 248 );
29
+ const messages = { ...defaultMessages, ...messagesProp };
30
+ const wrapperRef = useRef();
31
+ const inputRef = useRef();
32
+ const inputContainerRef = useRef();
33
+ const popoverRef = useRef();
34
+ const suggestionsRef = useRef();
35
+
36
+ const classes = classNames(
37
+ 'yith-fw-components__multiple-select'
38
+ );
39
+
40
+ const allowedValues = useMemo( () => options.map( _ => _.value ), [options] );
41
+ const validValues = useMemo( () => value.filter( _ => allowedValues.includes( _ ) ), [value, allowedValues] );
42
+ const filteredOptions = useMemo( () => options.filter( ( _ ) => _.label.toLowerCase().indexOf( search.toLowerCase() ) >= 0 ), [options, search] );
43
+ const selected = useMemo( () => options.filter( ( _ ) => validValues.includes( _.value ) ), [options, validValues] );
44
+
45
+ const addItem = itemValue => {
46
+ onChange( [...validValues, itemValue] );
47
+ setSearch( '' );
48
+ };
49
+ const removeItem = ( itemValue ) => {
50
+ const newSelected = [...validValues].filter( _ => _ !== itemValue );
51
+ onChange( newSelected );
52
+ };
53
+ const focusInput = () => !!inputRef.current && inputRef.current.focus();
54
+
55
+ const handleClickOutside = e => {
56
+ const isWrapperClick = wrapperRef?.current && wrapperRef.current.contains( e.target );
57
+ const isPopoverClick = popoverRef?.current && popoverRef.current.contains( e.target );
58
+ if ( !isWrapperClick && !isPopoverClick ) {
59
+ setShowSuggestions( false );
60
+ }
61
+ };
62
+
63
+ const handleInputContainerClick = e => {
64
+ const isInputContainerClick = inputContainerRef?.current && inputContainerRef.current === e.target;
65
+ if ( isInputContainerClick ) {
66
+ focusInput();
67
+ }
68
+ };
69
+
70
+ useEffect( () => {
71
+ document.addEventListener( 'mousedown', handleClickOutside );
72
+ return () => document.removeEventListener( 'mousedown', handleClickOutside );
73
+ } );
74
+
75
+ useEffect( () => {
76
+ const refresh = () => {
77
+ if ( !wrapperRef.current ) {
78
+ return;
79
+ }
80
+
81
+ const width = wrapperRef.current.getBoundingClientRect()?.width;
82
+ setWidth( width );
83
+ };
84
+
85
+ refresh();
86
+ }, [] );
87
+
88
+ return <div className={classes} ref={wrapperRef}>
89
+ <div className="yith-fw-components__multiple-select__input-container" ref={inputContainerRef} onClick={handleInputContainerClick}>
90
+ {selected.map( item => {
91
+ return <span key={item.value} className="yith-fw-components__multiple-select__item">
92
+ <span className="yith-fw-components__multiple-select__item__label">{item.label}</span>
93
+ <i
94
+ className="yith-fw-components__multiple-select__item__remove yith-icon-close-alt"
95
+ onClick={() => {
96
+ removeItem( item.value );
97
+ setShowSuggestions( false );
98
+ }}
99
+ />
100
+ </span>
101
+ } )}
102
+ <input
103
+ className="yith-fw-components__multiple-select__input"
104
+ id={useUniqueId( idProp )}
105
+ ref={inputRef}
106
+ type="text"
107
+ autoComplete="off"
108
+ placeholder={messages.search}
109
+ onFocus={() => setShowSuggestions( true )}
110
+ value={search}
111
+ onChange={( e ) => setSearch( e.target.value )}
112
+ />
113
+ </div>
114
+ {showSuggesions && <Popover
115
+ className="yith-fw-components__multiple-select__popover"
116
+ position="bottom"
117
+ offset={20}
118
+ anchorRef={wrapperRef?.current ?? undefined}
119
+ anchorRect={wrapperRef?.current && wrapperRef?.current.getBoundingClientRect()}
120
+ focusOnMount={false}
121
+ ref={popoverRef}
122
+ >
123
+ <div
124
+ className={classNames( 'yith-fw-components__multiple-select__suggestions', !filteredOptions.length && 'no-results' )}
125
+ ref={suggestionsRef}
126
+ style={{ width }}
127
+ >
128
+ {!!options.length && !!filteredOptions.length ?
129
+ (
130
+ filteredOptions.map(
131
+ item => {
132
+ const isSelected = validValues.includes( item.value );
133
+
134
+ return <div
135
+ key={item.value}
136
+ className={classNames( 'yith-fw-components__multiple-select__suggestion', isSelected && 'selected' )}
137
+ onClick={() => {
138
+ if ( !isSelected ) {
139
+ addItem( item.value );
140
+ focusInput();
141
+ }
142
+ }}
143
+ >
144
+ <div className="yith-fw-components__multiple-select__suggestion__label">{item.label}</div>
145
+ {isSelected && <i
146
+ className="yith-fw-components__multiple-select__suggestion__remove yith-icon yith-icon-close-alt"
147
+ onClick={() => {
148
+ removeItem( item.value );
149
+ focusInput();
150
+ }}/>}
151
+ </div>
152
+ }
153
+ )
154
+ ) :
155
+ <div className="yith-fw-components__multiple-select__suggestions__message">
156
+ {!options.length || !search ? messages.noItems : sprintf( messages.noResults, search )}
157
+ </div>
158
+ }
159
+ </div>
160
+ </Popover>}
161
+ </div>
162
+ }
163
+
164
+ MultipleSelect.propTypes = {
165
+ id : PropTypes.string,
166
+ className: PropTypes.string,
167
+ value : PropTypes.array,
168
+ options : PropTypes.arrayOf(
169
+ PropTypes.shape(
170
+ {
171
+ label: PropTypes.string,
172
+ value: PropTypes.oneOfType( [PropTypes.string, PropTypes.number] )
173
+ }
174
+ )
175
+ ),
176
+ onChange : PropTypes.func
177
+
178
+ };
179
+
180
+ MultipleSelect.defaultProps = {
181
+ id : '',
182
+ value : [],
183
+ className: '',
184
+ options : [],
185
+ onChange : noop
186
+ };
plugin-fw/includes/builders/gutenberg/src/components/multiple-select-control/style.scss ADDED
@@ -0,0 +1,135 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .yith-fw-components__multiple-select {
2
+ .yith-fw-components__multiple-select__input-container {
3
+ border-radius : 2px;
4
+ border : 1px solid #757575;
5
+ padding : 5px;
6
+
7
+ .yith-fw-components__multiple-select__input {
8
+ border : 0;
9
+ min-height : 24px;
10
+ width : 100%;
11
+ background : inherit;
12
+ color : #1e1e1e;
13
+ box-shadow : none;
14
+
15
+ &::placeholder {
16
+ opacity : .6;
17
+ color : inherit;
18
+ }
19
+ }
20
+ }
21
+
22
+ .yith-fw-components__multiple-select__item {
23
+ border-radius : 3px;
24
+ background : #f1f1f1;
25
+ display : inline-block;
26
+ padding : 4px 25px 4px 10px;
27
+ margin : 0 5px 5px 0;
28
+ max-width : 100%;
29
+ align-items : center;
30
+ position : relative;
31
+
32
+ .yith-fw-components__multiple-select__item__label {
33
+
34
+ }
35
+
36
+ .yith-fw-components__multiple-select__item__remove {
37
+ font-size : 14px;
38
+ cursor : pointer;
39
+ position : absolute;
40
+ top : 50%;
41
+ right : 3px;
42
+ transform : translateY(-50%);
43
+ padding : 5px;
44
+ width : auto;
45
+ height : auto;
46
+
47
+ &:hover {
48
+ color : #c50c0c;
49
+ }
50
+ }
51
+ }
52
+ }
53
+
54
+ .yith-fw-components__multiple-select__popover {
55
+ .components-popover__content {
56
+ border : 0;
57
+ overflow : visible;
58
+ }
59
+
60
+ .yith-fw-components__multiple-select__suggestions {
61
+ display : flex;
62
+ flex-direction : column;
63
+ overflow : hidden;
64
+ overflow-y : auto;
65
+ padding-top : 5px;
66
+ max-height : 200px;
67
+ border-radius : 5px;
68
+ box-shadow : rgb(0 0 0 / 20%) 0px 5px 5px -3px, rgb(0 0 0 / 14%) 0px 8px 10px 1px, rgb(0 0 0 / 12%) 0px 3px 14px 2px;
69
+
70
+ &.no-results {
71
+ padding-top : 0;
72
+ }
73
+
74
+ .yith-fw-components__multiple-select__suggestions__message {
75
+ padding : 8px 15px;
76
+ line-height : 1.5em;
77
+ overflow-wrap : break-word;
78
+ }
79
+
80
+ .yith-fw-components__multiple-select__suggestion {
81
+ padding : 8px 15px;
82
+ min-height : 40px;
83
+ cursor : pointer;
84
+ line-height : 1.5em;
85
+ display : flex;
86
+ align-items : center;
87
+ justify-content : space-between;
88
+
89
+ &.selected {
90
+ background : rgba(25, 118, 210, 0.08);
91
+ }
92
+
93
+ &:hover {
94
+ background : rgba(0, 0, 0, 0.04);
95
+ }
96
+
97
+ &.selected:hover {
98
+ background : rgba(25, 118, 210, 0.12);
99
+ }
100
+ }
101
+
102
+ .yith-fw-components__multiple-select__suggestion__remove {
103
+ font-size : 13px;
104
+ font-weight : 600;
105
+ padding : 5px;
106
+ height : 23px;
107
+ width : 23px;
108
+ background : rgba(0, 0, 0, 0);
109
+ box-shadow : 0 0 0 10px rgba(0, 0, 0, 0);
110
+ border-radius : 50%;
111
+ transition : all .3s ease-in-out;
112
+
113
+ &:hover {
114
+ color : #c50c0c;
115
+ background : rgba(0, 0, 0, .06);
116
+ box-shadow : 0 0 0 3px rgba(0, 0, 0, .06);
117
+ }
118
+ }
119
+ }
120
+
121
+ ::-webkit-scrollbar-track {
122
+ -webkit-box-shadow : none;
123
+ background-color : transparent;
124
+ }
125
+
126
+ ::-webkit-scrollbar {
127
+ width : 10px;
128
+ background-color : rgba(94, 88, 154, 0.04);
129
+ }
130
+
131
+ ::-webkit-scrollbar-thumb {
132
+ background-color : #b1b4bf;
133
+ border-radius : 10px;
134
+ }
135
+ }
plugin-fw/includes/builders/gutenberg/src/edit.js CHANGED
@@ -7,21 +7,32 @@
7
  /**
8
  * External dependencies
9
  */
10
- import React from 'react';
11
 
12
  /**
13
  * WordPress dependencies
14
  */
15
- import { PanelBody, BaseControl, ToggleControl, SelectControl, TextControl, TextareaControl, CheckboxControl, RangeControl, RadioControl } from '@wordpress/components';
16
- import { InspectorControls } from '@wordpress/block-editor';
 
 
 
 
 
 
 
 
 
17
 
18
  /**
19
  * Internal dependencies
20
  */
21
- import { Shortcode } from './components/shortcode';
22
- import { checkForDeps } from './common';
23
- import ColorPickerControl from './components/color-picker-control';
24
- import ColorPaletteControl from './components/color-palette-control';
 
 
25
 
26
  /**
27
  * Retrieve an help message from arguments.
@@ -38,6 +49,140 @@ const getHelpMessage = ( args, value ) => {
38
  helpMessage = args.help;
39
  }
40
  return helpMessage;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
  }
42
 
43
  /**
@@ -50,158 +195,17 @@ const getHelpMessage = ( args, value ) => {
50
  export const createEditFunction = ( blockName, blockArgs ) => {
51
  return function ( { attributes, className, setAttributes } ) {
52
 
53
- const onChangeHandler = ( new_value, attribute_name, controlType ) => {
54
  if ( ['colorpicker', 'color'].includes( controlType ) ) {
55
- new_value = new_value.color.getAlpha() < 1 ? new_value.color.toRgbString() : new_value.color.toHexString();
56
- }
57
-
58
- let updatedAttributes = {};
59
- updatedAttributes[ attribute_name ] = new_value;
60
- setAttributes( updatedAttributes );
61
- }
62
-
63
- const getComponentControl = ( attributeName, attributeArgs ) => {
64
- const { controlType } = attributeArgs;
65
- const value = attributes[ attributeName ];
66
- const helpMessage = getHelpMessage( attributeArgs, value );
67
- let wrapperClassName = `${blockName}__${attributeName}-field-wrapper`;
68
- const show = checkForDeps( attributeArgs, attributes );
69
-
70
- if ( attributeArgs.wrapper_class ) {
71
- wrapperClassName += ' ' + attributeArgs.wrapper_class;
72
- }
73
-
74
-
75
- let componentControl = false;
76
- if ( show ) {
77
- switch ( controlType ) {
78
- case 'select':
79
- componentControl = <SelectControl
80
- className={wrapperClassName}
81
- key={attributeName}
82
- value={value}
83
- label={attributeArgs.label}
84
- options={attributeArgs.options}
85
- help={helpMessage}
86
- multiple={!!attributeArgs.multiple}
87
- onChange={( newValue ) => {
88
- onChangeHandler( newValue, attributeName, controlType )
89
- }}
90
- />;
91
- break;
92
-
93
- case 'text':
94
- componentControl = <TextControl
95
- className={wrapperClassName}
96
- key={attributeName}
97
- value={value}
98
- label={attributeArgs.label}
99
- help={helpMessage}
100
- onChange={( newValue ) => {
101
- onChangeHandler( newValue, attributeName, controlType )
102
- }}
103
- />;
104
- break;
105
-
106
- case 'textarea':
107
- componentControl = <TextareaControl
108
- className={wrapperClassName}
109
- key={attributeName}
110
- value={value}
111
- label={attributeArgs.label}
112
- help={helpMessage}
113
- onChange={( newValue ) => {
114
- onChangeHandler( newValue, attributeName, controlType )
115
- }}
116
- />;
117
- break;
118
-
119
- case 'toggle':
120
- componentControl = <ToggleControl
121
- className={wrapperClassName}
122
- key={attributeName}
123
- label={attributeArgs.label}
124
- help={helpMessage}
125
- checked={value}
126
- onChange={( newValue ) => {
127
- onChangeHandler( newValue, attributeName, controlType )
128
- }}
129
- />;
130
- break;
131
-
132
- case 'checkbox':
133
- componentControl = <CheckboxControl
134
- className={wrapperClassName}
135
- key={attributeName}
136
- label={attributeArgs.label}
137
- help={helpMessage}
138
- checked={value}
139
- onChange={( newValue ) => {
140
- onChangeHandler( newValue, attributeName, controlType )
141
- }}
142
- />;
143
- break;
144
-
145
- case 'number':
146
- case 'range':
147
- componentControl = <RangeControl
148
- className={wrapperClassName}
149
- key={attributeName}
150
- value={value}
151
- label={attributeArgs.label}
152
- help={helpMessage}
153
- min={attributeArgs.min}
154
- max={attributeArgs.max}
155
- onChange={( newValue ) => {
156
- onChangeHandler( newValue, attributeName, controlType )
157
- }}
158
- />;
159
- break;
160
-
161
- case 'color':
162
- case 'colorpicker':
163
- componentControl = <ColorPickerControl
164
- className={wrapperClassName}
165
- key={attributeName}
166
- label={attributeArgs.label}
167
- help={helpMessage}
168
- value={value}
169
- disableAlpha={attributeArgs.disableAlpha}
170
- onChange={( newValue ) => {
171
- onChangeHandler( newValue, attributeName, controlType )
172
- }}/>;
173
- break;
174
-
175
- case 'color-palette':
176
- componentControl = <ColorPaletteControl
177
- className={wrapperClassName}
178
- key={attributeName}
179
- label={attributeArgs.label}
180
- help={helpMessage}
181
- value={value}
182
- clearable={attributeArgs.clearable || false}
183
- onChange={( newValue ) => {
184
- onChangeHandler( newValue, attributeName, controlType )
185
- }}/>;
186
- break;
187
-
188
- case 'radio':
189
- componentControl = <RadioControl
190
- key={attributeName}
191
- label={attributeArgs.label}
192
- options={attributeArgs.options}
193
- selected={value}
194
- help={helpMessage}
195
- onChange={( newValue ) => {
196
- onChangeHandler( newValue, attributeName, controlType )
197
- }}
198
- />;
199
- break;
200
- default:
201
- componentControl = false;
202
  }
203
  }
204
- return componentControl;
 
205
  }
206
 
207
  return (
@@ -210,18 +214,20 @@ export const createEditFunction = ( blockName, blockArgs ) => {
210
  <InspectorControls>
211
  <PanelBody>
212
  {Object.entries( blockArgs.attributes ).map( ( [attributeName, attributeArgs] ) => {
213
- const ComponentControl = getComponentControl( attributeName, attributeArgs );
214
-
215
- if ( ComponentControl ) {
216
- return ( ComponentControl );
217
- }
 
 
 
 
218
  } )}
219
  </PanelBody>
220
  </InspectorControls>
221
  }
222
- {
223
- <Shortcode attributes={attributes} blockArgs={blockArgs}/>
224
- }
225
  </>
226
  );
227
  }
7
  /**
8
  * External dependencies
9
  */
10
+ import React from 'react';
11
 
12
  /**
13
  * WordPress dependencies
14
  */
15
+ import {
16
+ PanelBody,
17
+ ToggleControl,
18
+ SelectControl,
19
+ TextControl,
20
+ TextareaControl,
21
+ CheckboxControl,
22
+ RangeControl,
23
+ RadioControl
24
+ } from '@wordpress/components';
25
+ import { InspectorControls } from '@wordpress/block-editor';
26
 
27
  /**
28
  * Internal dependencies
29
  */
30
+ import { Shortcode } from './components/shortcode';
31
+ import { checkForDeps } from './common';
32
+ import ColorPickerControl from './components/color-picker-control';
33
+ import ColorPaletteControl from './components/color-palette-control';
34
+ import MultipleSelectControl from './components/multiple-select-control';
35
+ import classNames from 'classnames';
36
 
37
  /**
38
  * Retrieve an help message from arguments.
49
  helpMessage = args.help;
50
  }
51
  return helpMessage;
52
+ };
53
+
54
+ const ComponentControl = ( { attributeName, attributeArgs, attributes, onChange, blockName } ) => {
55
+ const { controlType, label, wrapper_class } = attributeArgs;
56
+ const value = attributes[ attributeName ];
57
+ const helpMessage = getHelpMessage( attributeArgs, value );
58
+ const show = checkForDeps( attributeArgs, attributes );
59
+ const wrapperClass = classNames(
60
+ `${blockName}__${attributeName}-field-wrapper`,
61
+ wrapper_class
62
+ );
63
+
64
+ let componentControl = false;
65
+ if ( show ) {
66
+ switch ( controlType ) {
67
+ case 'select':
68
+ if ( !attributeArgs.multiple ) {
69
+ componentControl = <SelectControl
70
+ className={wrapperClass}
71
+ value={value}
72
+ label={label}
73
+ options={attributeArgs?.options ?? []}
74
+ help={helpMessage}
75
+ onChange={onChange}
76
+ />;
77
+ } else {
78
+ componentControl = <MultipleSelectControl
79
+ className={wrapperClass}
80
+ value={value}
81
+ label={label}
82
+ options={attributeArgs?.options ?? []}
83
+ help={helpMessage}
84
+ onChange={onChange}
85
+ messages={attributeArgs?.messages ?? {}}
86
+ />;
87
+ }
88
+ break;
89
+
90
+ case 'text':
91
+ componentControl = <TextControl
92
+ className={wrapperClass}
93
+ key={attributeName}
94
+ value={value}
95
+ label={label}
96
+ help={helpMessage}
97
+ onChange={onChange}
98
+ />;
99
+ break;
100
+
101
+ case 'textarea':
102
+ componentControl = <TextareaControl
103
+ className={wrapperClass}
104
+ key={attributeName}
105
+ value={value}
106
+ label={label}
107
+ help={helpMessage}
108
+ onChange={onChange}
109
+ />;
110
+ break;
111
+
112
+ case 'toggle':
113
+ componentControl = <ToggleControl
114
+ className={wrapperClass}
115
+ key={attributeName}
116
+ label={label}
117
+ help={helpMessage}
118
+ checked={value}
119
+ onChange={onChange}
120
+ />;
121
+ break;
122
+
123
+ case 'checkbox':
124
+ componentControl = <CheckboxControl
125
+ className={wrapperClass}
126
+ key={attributeName}
127
+ label={label}
128
+ help={helpMessage}
129
+ checked={value}
130
+ onChange={onChange}
131
+ />;
132
+ break;
133
+
134
+ case 'number':
135
+ case 'range':
136
+ componentControl = <RangeControl
137
+ className={wrapperClass}
138
+ key={attributeName}
139
+ value={value}
140
+ label={label}
141
+ help={helpMessage}
142
+ min={attributeArgs?.min}
143
+ max={attributeArgs?.max}
144
+ onChange={onChange}
145
+ />;
146
+ break;
147
+
148
+ case 'color':
149
+ case 'colorpicker':
150
+ componentControl = <ColorPickerControl
151
+ className={wrapperClass}
152
+ key={attributeName}
153
+ label={label}
154
+ help={helpMessage}
155
+ value={value}
156
+ disableAlpha={attributeArgs?.disableAlpha ?? false}
157
+ onChange={onChange}/>;
158
+ break;
159
+
160
+ case 'color-palette':
161
+ componentControl = <ColorPaletteControl
162
+ className={wrapperClass}
163
+ key={attributeName}
164
+ label={label}
165
+ help={helpMessage}
166
+ value={value}
167
+ clearable={attributeArgs?.clearable ?? false}
168
+ onChange={onChange}/>;
169
+ break;
170
+
171
+ case 'radio':
172
+ componentControl = <RadioControl
173
+ key={attributeName}
174
+ label={label}
175
+ options={attributeArgs?.options ?? []}
176
+ selected={value}
177
+ help={helpMessage}
178
+ onChange={onChange}
179
+ />;
180
+ break;
181
+ default:
182
+ componentControl = false;
183
+ }
184
+ }
185
+ return componentControl;
186
  }
187
 
188
  /**
195
  export const createEditFunction = ( blockName, blockArgs ) => {
196
  return function ( { attributes, className, setAttributes } ) {
197
 
198
+ const onChangeHandler = ( updatedValue, attributeName, controlType ) => {
199
  if ( ['colorpicker', 'color'].includes( controlType ) ) {
200
+ if ( 'rgb' in updatedValue && 'hex' in updatedValue ) {
201
+ const { r, g, b, a } = updatedValue.rgb;
202
+ updatedValue = a < 1 ? `rgba(${r}, ${g}, ${b}, ${a})` : updatedValue.hex;
203
+ } else {
204
+ updatedValue = updatedValue.color.getAlpha() < 1 ? updatedValue.color.toRgbString() : updatedValue.color.toHexString();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
205
  }
206
  }
207
+
208
+ setAttributes( { [ attributeName ]: updatedValue } );
209
  }
210
 
211
  return (
214
  <InspectorControls>
215
  <PanelBody>
216
  {Object.entries( blockArgs.attributes ).map( ( [attributeName, attributeArgs] ) => {
217
+ const { controlType } = attributeArgs;
218
+ return <ComponentControl
219
+ key={attributeName}
220
+ attributeArgs={attributeArgs}
221
+ attributeName={attributeName}
222
+ attributes={attributes}
223
+ blockName={blockName}
224
+ onChange={_ => onChangeHandler( _, attributeName, controlType )}
225
+ />
226
  } )}
227
  </PanelBody>
228
  </InspectorControls>
229
  }
230
+ <Shortcode attributes={attributes} blockArgs={blockArgs}/>
 
 
231
  </>
232
  );
233
  }
plugin-fw/includes/class-yit-assets.php CHANGED
@@ -80,6 +80,7 @@ if ( ! class_exists( 'YIT_Assets' ) ) {
80
  wp_register_script( 'colorbox', YIT_CORE_PLUGIN_URL . '/assets/js/jquery.colorbox' . $suffix . '.js', array( 'jquery' ), '1.6.3', true );
81
  wp_register_script( 'yith_how_to', YIT_CORE_PLUGIN_URL . '/assets/js/how-to' . $suffix . '.js', array( 'jquery' ), $this->version, true );
82
  wp_register_script( 'yith-plugin-fw-wp-pages', YIT_CORE_PLUGIN_URL . '/assets/js/wp-pages' . $suffix . '.js', array( 'jquery' ), $this->version, false );
 
83
 
84
  // Register styles.
85
  wp_register_style( 'yith-plugin-ui', YIT_CORE_PLUGIN_URL . '/assets/css/yith-plugin-ui.css', array( 'yith-plugin-fw-icon-font' ), $this->version );
@@ -89,6 +90,7 @@ if ( ! class_exists( 'YIT_Assets' ) ) {
89
  wp_register_style( 'yit-upgrade-to-pro', YIT_CORE_PLUGIN_URL . '/assets/css/yit-upgrade-to-pro.css', array( 'colorbox' ), $this->version );
90
  wp_register_style( 'yit-plugin-metaboxes', YIT_CORE_PLUGIN_URL . '/assets/css/metaboxes.css', array( 'yith-plugin-ui' ), $this->version );
91
  wp_register_style( 'yith-plugin-fw-fields', YIT_CORE_PLUGIN_URL . '/assets/css/yith-fields.css', array( 'yith-plugin-ui' ), $this->version );
 
92
 
93
  $wc_version_suffix = '';
94
  if ( function_exists( 'WC' ) || ! empty( $woocommerce ) ) {
@@ -153,6 +155,14 @@ if ( ! class_exists( 'YIT_Assets' ) ) {
153
  )
154
  );
155
 
 
 
 
 
 
 
 
 
156
  // Localize color-picker to avoid issues with WordPress 5.5.
157
  if ( version_compare( $wp_version, '5.5-RC', '>=' ) ) {
158
  wp_localize_script(
80
  wp_register_script( 'colorbox', YIT_CORE_PLUGIN_URL . '/assets/js/jquery.colorbox' . $suffix . '.js', array( 'jquery' ), '1.6.3', true );
81
  wp_register_script( 'yith_how_to', YIT_CORE_PLUGIN_URL . '/assets/js/how-to' . $suffix . '.js', array( 'jquery' ), $this->version, true );
82
  wp_register_script( 'yith-plugin-fw-wp-pages', YIT_CORE_PLUGIN_URL . '/assets/js/wp-pages' . $suffix . '.js', array( 'jquery' ), $this->version, false );
83
+ wp_register_script( 'yith-bh-onboarding', YIT_CORE_PLUGIN_URL . '/assets/js/yith-bh-onboarding' . $suffix . '.js', array( 'jquery', 'yit-plugin-panel', 'yith-plugin-fw-fields', 'jquery-blockui' ), $this->version, true );
84
 
85
  // Register styles.
86
  wp_register_style( 'yith-plugin-ui', YIT_CORE_PLUGIN_URL . '/assets/css/yith-plugin-ui.css', array( 'yith-plugin-fw-icon-font' ), $this->version );
90
  wp_register_style( 'yit-upgrade-to-pro', YIT_CORE_PLUGIN_URL . '/assets/css/yit-upgrade-to-pro.css', array( 'colorbox' ), $this->version );
91
  wp_register_style( 'yit-plugin-metaboxes', YIT_CORE_PLUGIN_URL . '/assets/css/metaboxes.css', array( 'yith-plugin-ui' ), $this->version );
92
  wp_register_style( 'yith-plugin-fw-fields', YIT_CORE_PLUGIN_URL . '/assets/css/yith-fields.css', array( 'yith-plugin-ui' ), $this->version );
93
+ wp_register_style( 'yith-bh-onboarding', YIT_CORE_PLUGIN_URL . '/assets/css/yith-bh-onboarding.css', array( 'yith-plugin-ui', 'yith-plugin-fw-fields' ), $this->version );
94
 
95
  $wc_version_suffix = '';
96
  if ( function_exists( 'WC' ) || ! empty( $woocommerce ) ) {
155
  )
156
  );
157
 
158
+ wp_localize_script(
159
+ 'yith-bh-onboarding',
160
+ 'yith_bh_onboarding',
161
+ array(
162
+ 'ajax_url' => admin_url( 'admin-ajax.php' ),
163
+ )
164
+ );
165
+
166
  // Localize color-picker to avoid issues with WordPress 5.5.
167
  if ( version_compare( $wp_version, '5.5-RC', '>=' ) ) {
168
  wp_localize_script(
plugin-fw/includes/class-yit-plugin-panel-woocommerce.php CHANGED
@@ -82,6 +82,7 @@ if ( ! class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
82
  $this->links = $this->settings['links'];
83
  }
84
 
 
85
  $this->maybe_init_premium_tab();
86
 
87
  add_action( 'admin_init', array( $this, 'set_default_options' ) );
@@ -373,6 +374,12 @@ if ( ! class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
373
  $default[ $colorpicker['id'] ] = isset( $colorpicker['default'] ) ? $colorpicker['default'] : '';
374
  }
375
  update_option( $option['id'], $default );
 
 
 
 
 
 
376
  } elseif ( isset( $option['default'] ) ) {
377
  update_option( $option['id'], $option['default'] );
378
  }
@@ -493,8 +500,8 @@ if ( ! class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
493
  * @param string $admin_body_classes The body classes.
494
  *
495
  * @return string Filtered body classes
496
- * @author Andrea Grillo <andrea.grillo@yithemes.com>
497
  * @since 2.0
 
498
  */
499
  public static function admin_body_class( $admin_body_classes ) {
500
  global $pagenow;
@@ -517,8 +524,8 @@ if ( ! class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
517
  * @param string $raw_value Raw option value.
518
  *
519
  * @return mixed Filtered return value
520
- * @author Antonio La Rocca <antonio.larocca@yithemes.com>
521
  * @since 2.0
 
522
  */
523
  public function maybe_unserialize_panel_data( $value, $option, $raw_value ) {
524
  if ( ! version_compare( WC()->version, '2.4.0', '>=' ) || ! isset( $option['type'] ) || in_array( $option['type'], self::$wc_type, true ) || 'yith-field' === $option['type'] ) {
@@ -547,8 +554,8 @@ if ( ! class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
547
  * @param mixed $raw_value Raw option value.
548
  *
549
  * @return mixed Filtered return value
550
- * @author Leanza Francesco <leanzafrancesco@gmail.com>
551
  * @since 3.0.0
 
552
  */
553
  public static function sanitize_option( $value, $option, $raw_value ) {
554
  if ( isset( $option['type'] ) && 'yith-field' === $option['type'] ) {
@@ -730,8 +737,8 @@ if ( ! class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
730
  * @param string $raw_value Raw option value.
731
  *
732
  * @return mixed Filtered return value
733
- * @author Andrea Grillo <andrea.grillo@yithemes.com>
734
  * @since 3.0.0
 
735
  */
736
  public static function sanitize_onoff_value( $value, $option, $raw_value ) {
737
  if ( isset( $option['type'] ) && in_array( $option['type'], array( 'checkbox', 'onoff' ), true ) ) {
@@ -751,8 +758,8 @@ if ( ! class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
751
  * @param array $yit_options Original options array.
752
  *
753
  * @return mixed|array New options array
754
- * @author Andrea Grillo <andrea.grillo@yithemes.com>
755
  * @since 3.0.0
 
756
  */
757
  public function check_for_save_single_option( $yit_options ) {
758
  foreach ( $yit_options as $key => $options_list ) {
82
  $this->links = $this->settings['links'];
83
  }
84
 
85
+ $this->maybe_init_help_tab();
86
  $this->maybe_init_premium_tab();
87
 
88
  add_action( 'admin_init', array( $this, 'set_default_options' ) );
374
  $default[ $colorpicker['id'] ] = isset( $colorpicker['default'] ) ? $colorpicker['default'] : '';
375
  }
376
  update_option( $option['id'], $default );
377
+ } elseif ( isset( $option['yith-type'] ) && 'inline-fields' === $option['yith-type'] && ! empty( $option['fields'] ) ) {
378
+ $default = array();
379
+ foreach ( $option['fields'] as $field_id => $field ) {
380
+ $default[ $field_id ] = isset( $field['default'] ) ? $field['default'] : '';
381
+ }
382
+ update_option( $option['id'], $default );
383
  } elseif ( isset( $option['default'] ) ) {
384
  update_option( $option['id'], $option['default'] );
385
  }
500
  * @param string $admin_body_classes The body classes.
501
  *
502
  * @return string Filtered body classes
 
503
  * @since 2.0
504
+ * @author Andrea Grillo <andrea.grillo@yithemes.com>
505
  */
506
  public static function admin_body_class( $admin_body_classes ) {
507
  global $pagenow;
524
  * @param string $raw_value Raw option value.
525
  *
526
  * @return mixed Filtered return value
 
527
  * @since 2.0
528
+ * @author Antonio La Rocca <antonio.larocca@yithemes.com>
529
  */
530
  public function maybe_unserialize_panel_data( $value, $option, $raw_value ) {
531
  if ( ! version_compare( WC()->version, '2.4.0', '>=' ) || ! isset( $option['type'] ) || in_array( $option['type'], self::$wc_type, true ) || 'yith-field' === $option['type'] ) {
554
  * @param mixed $raw_value Raw option value.
555
  *
556
  * @return mixed Filtered return value
 
557
  * @since 3.0.0
558
+ * @author Leanza Francesco <leanzafrancesco@gmail.com>
559
  */
560
  public static function sanitize_option( $value, $option, $raw_value ) {
561
  if ( isset( $option['type'] ) && 'yith-field' === $option['type'] ) {
737
  * @param string $raw_value Raw option value.
738
  *
739
  * @return mixed Filtered return value
 
740
  * @since 3.0.0
741
+ * @author Andrea Grillo <andrea.grillo@yithemes.com>
742
  */
743
  public static function sanitize_onoff_value( $value, $option, $raw_value ) {
744
  if ( isset( $option['type'] ) && in_array( $option['type'], array( 'checkbox', 'onoff' ), true ) ) {
758
  * @param array $yit_options Original options array.
759
  *
760
  * @return mixed|array New options array
 
761
  * @since 3.0.0
762
+ * @author Andrea Grillo <andrea.grillo@yithemes.com>
763
  */
764
  public function check_for_save_single_option( $yit_options ) {
765
  foreach ( $yit_options as $key => $options_list ) {
plugin-fw/includes/class-yit-plugin-panel.php CHANGED
@@ -103,6 +103,7 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
103
  $this->links = $this->settings['links'];
104
  }
105
 
 
106
  $this->maybe_init_premium_tab();
107
 
108
  add_action( 'admin_init', array( $this, 'register_settings' ) );
@@ -486,11 +487,6 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
486
  $tabs .= $this->get_tab_nav( $tab, $tab_value, $args );
487
  }
488
 
489
- // help tab.
490
- if ( $this->has_help_tab() ) {
491
- $tabs .= $this->get_tab_nav( 'help', _x( 'Help', 'Help tab name', 'yith-plugin-fw' ), $args );
492
- }
493
-
494
  $tabs .= '</ul>';
495
  ?>
496
  <h2 class="<?php echo esc_attr( $wrapper_class ); ?>">
@@ -773,7 +769,7 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
773
  * @return bool Whether panel has help tab or no.
774
  */
775
  public function has_help_tab() {
776
- return ! empty( $this->settings['help_tab'] ) && apply_filters( 'yith_plugin_fw_panel_has_help_tab', true, $this ) && ( ! $this->is_free() || ! empty( $this->settings['help_tab']['show_on_free'] ) );
777
  }
778
 
779
 
@@ -796,22 +792,31 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
796
  public function print_help_tab() {
797
  $options = isset( $this->settings['help_tab'] ) ? $this->settings['help_tab'] : array();
798
  $plugin_title = isset( $this->settings['plugin_title'] ) ? $this->settings['plugin_title'] : $this->settings['page_title'];
 
 
799
 
800
  if ( 0 !== strpos( $plugin_title, 'YITH' ) ) {
801
  $plugin_title = "YITH {$plugin_title}";
802
  }
803
 
 
 
 
 
 
 
 
 
804
  // parse options.
805
  $options = wp_parse_args(
806
  $options,
807
  array(
808
- // translators: 1. Plugin name.
809
- 'title' => sprintf( _x( 'Thank you for purchasing %s!', 'Help tab default title', 'yith-plugin-fw' ), $plugin_title ),
810
  'description' => _x( 'We want to help you enjoy a wonderful experience with all of our products.', 'Help tab default description', 'yith-plugin-fw' ),
811
  'main_video' => false,
812
  'playlists' => array(),
813
  'hc_url' => 'https://support.yithemes.com/hc/',
814
- 'doc_url' => isset( $this->settings['plugin_slug'] ) ? 'https://docs.yithemes.com/' . $this->settings['plugin_slug'] . '/' : '',
815
  'submit_ticket_url' => 'https://yithemes.com/my-account/support/submit-a-ticket/',
816
  'show_hc_articles' => true,
817
  'show_submit_ticket' => true,
@@ -819,9 +824,9 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
819
  );
820
 
821
  // add campaign parameters to url.
822
- if ( isset( $this->settings['plugin_slug'] ) ) {
823
  $utm_medium = $this->settings['plugin_slug'];
824
- $utm_source = 'wp-premium-dashboard';
825
  $utm_campaign = 'help-tab';
826
 
827
  $campaign_urls = array(
@@ -838,6 +843,10 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
838
  }
839
  }
840
 
 
 
 
 
841
  // set template variables.
842
  $current_tab = $this->get_current_tab();
843
  $current_sub_tab = $this->get_current_sub_tab();
@@ -858,6 +867,18 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
858
  }
859
  }
860
 
 
 
 
 
 
 
 
 
 
 
 
 
861
  /**
862
  * Checks whether current tab is Premium Tab
863
  *
@@ -878,7 +899,7 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
878
  * @since 3.9.0
879
  */
880
  protected function has_premium_tab() {
881
- return $this->is_free() && ! empty( $this->settings['premium_tab'] );
882
  }
883
 
884
  /**
@@ -889,12 +910,14 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
889
  * @since 3.9.0
890
  */
891
  protected function print_premium_tab() {
892
- $options = $this->settings['premium_tab'] ?? array();
 
893
 
894
  $defaults = array(
895
  'premium_features' => array(),
896
  'main_image_url' => '',
897
  'show_free_vs_premium_link' => true,
 
898
  );
899
  $options = wp_parse_args( $options, $defaults );
900
 
@@ -1496,11 +1519,32 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
1496
  /**
1497
  * Check if inside the admin tab there's the premium tab to
1498
  * check if the plugin is a free or not
 
1499
  *
1500
  * @author Emanuela Castorina
1501
  */
1502
  public function is_free() {
1503
- return ( ! empty( $this->settings['admin-tabs'] ) && isset( $this->settings['admin-tabs']['premium'] ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1504
  }
1505
 
1506
  /**
@@ -1780,7 +1824,7 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
1780
  * @since 3.8.4
1781
  */
1782
  public function add_utm_data_on_premium_tab( $url, $slug ) {
1783
- return ! empty( $this->settings['plugin_slug'] ) && $slug === $this->settings['plugin_slug'] && 'premium' === $this->get_current_tab() ? yith_plugin_fw_add_utm_data( $url, $slug, 'button-upgrade', 'wp-free-dashboard' ) : $url;
1784
  }
1785
  }
1786
  }
103
  $this->links = $this->settings['links'];
104
  }
105
 
106
+ $this->maybe_init_help_tab();
107
  $this->maybe_init_premium_tab();
108
 
109
  add_action( 'admin_init', array( $this, 'register_settings' ) );
487
  $tabs .= $this->get_tab_nav( $tab, $tab_value, $args );
488
  }
489
 
 
 
 
 
 
490
  $tabs .= '</ul>';
491
  ?>
492
  <h2 class="<?php echo esc_attr( $wrapper_class ); ?>">
769
  * @return bool Whether panel has help tab or no.
770
  */
771
  public function has_help_tab() {
772
+ return apply_filters( 'yith_plugin_fw_panel_has_help_tab', ! empty( $this->settings['help_tab'] ) && ( ! $this->is_free() || ! empty( $this->settings['help_tab']['show_on_free'] ) ), $this );
773
  }
774
 
775
 
792
  public function print_help_tab() {
793
  $options = isset( $this->settings['help_tab'] ) ? $this->settings['help_tab'] : array();
794
  $plugin_title = isset( $this->settings['plugin_title'] ) ? $this->settings['plugin_title'] : $this->settings['page_title'];
795
+ $is_extended = $this->is_extended();
796
+ $is_premium = $this->is_premium() || ! $is_extended;
797
 
798
  if ( 0 !== strpos( $plugin_title, 'YITH' ) ) {
799
  $plugin_title = "YITH {$plugin_title}";
800
  }
801
 
802
+ // translators: 1. Plugin name.
803
+ $default_title = $is_premium ? _x( 'Thank you for purchasing %s!', 'Help tab default title', 'yith-plugin-fw' ) : _x( 'Thank you for using %s!', 'Help tab default title', 'yith-plugin-fw' );
804
+ $default_doc_url = '';
805
+
806
+ if ( isset( $this->settings['plugin_slug'] ) ) {
807
+ $default_doc_url = $is_extended ? "https://www.bluehost.com/help/article/{$this->settings['plugin_slug']}/" : "https://docs.yithemes.com/{$this->settings['plugin_slug']}/";
808
+ }
809
+
810
  // parse options.
811
  $options = wp_parse_args(
812
  $options,
813
  array(
814
+ 'title' => sprintf( $default_title, $plugin_title ),
 
815
  'description' => _x( 'We want to help you enjoy a wonderful experience with all of our products.', 'Help tab default description', 'yith-plugin-fw' ),
816
  'main_video' => false,
817
  'playlists' => array(),
818
  'hc_url' => 'https://support.yithemes.com/hc/',
819
+ 'doc_url' => $default_doc_url,
820
  'submit_ticket_url' => 'https://yithemes.com/my-account/support/submit-a-ticket/',
821
  'show_hc_articles' => true,
822
  'show_submit_ticket' => true,
824
  );
825
 
826
  // add campaign parameters to url.
827
+ if ( isset( $this->settings['plugin_slug'] ) && ! $is_extended ) {
828
  $utm_medium = $this->settings['plugin_slug'];
829
+ $utm_source = yith_plugin_fw_panel_utm_source( $this );
830
  $utm_campaign = 'help-tab';
831
 
832
  $campaign_urls = array(
843
  }
844
  }
845
 
846
+ if ( $is_extended && $options['show_submit_ticket'] ) {
847
+ $options['submit_ticket_url'] = add_query_arg( array( 'page' => 'bluehost' ), admin_url( 'admin.php' ) ) . '#/help';
848
+ }
849
+
850
  // set template variables.
851
  $current_tab = $this->get_current_tab();
852
  $current_sub_tab = $this->get_current_sub_tab();
867
  }
868
  }
869
 
870
+ /**
871
+ * Add help tab in admin-tabs if is set.
872
+ *
873
+ * @author Antonio La Rocca <antonio.larocca@yithemes.com>
874
+ * @since 3.9.0
875
+ */
876
+ protected function maybe_init_help_tab() {
877
+ if ( $this->has_help_tab() ) {
878
+ $this->settings['admin-tabs']['help'] = _x( 'Help', 'Help tab name', 'yith-plugin-fw' );
879
+ }
880
+ }
881
+
882
  /**
883
  * Checks whether current tab is Premium Tab
884
  *
899
  * @since 3.9.0
900
  */
901
  protected function has_premium_tab() {
902
+ return ! empty( $this->settings['premium_tab'] ) && ( $this->is_free() || $this->is_extended() );
903
  }
904
 
905
  /**
910
  * @since 3.9.0
911
  */
912
  protected function print_premium_tab() {
913
+ $options = $this->settings['premium_tab'] ?? array();
914
+ $is_extended = $this->is_extended();
915
 
916
  $defaults = array(
917
  'premium_features' => array(),
918
  'main_image_url' => '',
919
  'show_free_vs_premium_link' => true,
920
+ 'show_premium_landing_link' => $is_extended,
921
  );
922
  $options = wp_parse_args( $options, $defaults );
923
 
1519
  /**
1520
  * Check if inside the admin tab there's the premium tab to
1521
  * check if the plugin is a free or not
1522
+ * TODO: remove this from panel, and move to a more generic plugin-registration process; use general plugin data wherever is needed
1523
  *
1524
  * @author Emanuela Castorina
1525
  */
1526
  public function is_free() {
1527
+ return ! empty( $this->settings['premium_tab'] ) && ! $this->is_extended() && ! $this->is_premium();
1528
+ }
1529
+
1530
+ /**
1531
+ * Checks whether current panel is for extended version of the plugin
1532
+ * TODO: remove this from panel, and move to a more generic plugin-registration process; use general plugin data wherever is needed
1533
+ *
1534
+ * @return bool
1535
+ */
1536
+ public function is_extended() {
1537
+ return ! empty( $this->settings['is_extended'] );
1538
+ }
1539
+
1540
+ /**
1541
+ * Checks whether current panel is for premium version of the plugin
1542
+ * TODO: remove this from panel, and move to a more generic plugin-registration process; use general plugin data wherever is needed
1543
+ *
1544
+ * @return bool
1545
+ */
1546
+ public function is_premium() {
1547
+ return ! empty( $this->settings['is_premium'] );
1548
  }
1549
 
1550
  /**
1824
  * @since 3.8.4
1825
  */
1826
  public function add_utm_data_on_premium_tab( $url, $slug ) {
1827
+ return ! empty( $this->settings['plugin_slug'] ) && $slug === $this->settings['plugin_slug'] && 'premium' === $this->get_current_tab() ? yith_plugin_fw_add_utm_data( $url, $slug, 'button-upgrade', yith_plugin_fw_panel_utm_source( $this ) ) : $url;
1828
  }
1829
  }
1830
  }
plugin-fw/includes/class-yith-bh-onboarding.php ADDED
@@ -0,0 +1,110 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * YITH BH Onboarding Class
4
+ *
5
+ * @class YITH_BH_Onboarding
6
+ * @package YITH\PluginFramework\Classes
7
+ */
8
+
9
+ defined( 'ABSPATH' ) || exit; // Exit if accessed directly.
10
+
11
+ if ( ! class_exists( 'YITH_BH_Onboarding' ) ) {
12
+ /**
13
+ * Main Class
14
+ */
15
+ class YITH_BH_Onboarding {
16
+ /**
17
+ * The single instance of the class.
18
+ *
19
+ * @var self
20
+ */
21
+ protected static $instance = null;
22
+
23
+ /**
24
+ * Get class instance.
25
+ *
26
+ * @return self
27
+ */
28
+ public static function get_instance() {
29
+ return ! is_null( static::$instance ) ? static::$instance : static::$instance = new static();
30
+ }
31
+
32
+ /**
33
+ * Constructor
34
+ */
35
+ protected function __construct() {
36
+ add_action( 'yith_bh_onboarding', array( $this, 'show_onboarding_content' ), 10, 1 );
37
+ add_action( 'wp_ajax_yith_bh_onboarding', array( $this, 'save_options' ) );
38
+ }
39
+
40
+ /**
41
+ * Show onboarding content
42
+ *
43
+ * @param string $slug Slug of current plugin modal.
44
+ */
45
+ public function show_onboarding_content( $slug ) {
46
+
47
+ $options = apply_filters( 'yith_bh_onboarding_' . $slug, array() );
48
+
49
+ if ( empty( $options ) || ! isset( $options['tabs'], $options['slug'] ) ) {
50
+ return;
51
+ }
52
+
53
+ define( 'DOING_YITH_BH_ONBOARDING', true );
54
+
55
+ if ( ! wp_script_is( 'yith-plugin-fw-fields', 'registered' ) || ! wp_style_is( 'yith-plugin-fw-fields', 'registered' ) ) {
56
+ YIT_Assets::instance()->register_styles_and_scripts();
57
+ }
58
+
59
+ if ( isset( $options['enqueue_script'] ) ) {
60
+ foreach ( $options['enqueue_script'] as $handle ) {
61
+ wp_enqueue_script( $handle );
62
+ }
63
+ }
64
+
65
+ if ( isset( $options['enqueue_style'] ) ) {
66
+ foreach ( $options['enqueue_style'] as $handle ) {
67
+ wp_enqueue_style( $handle );
68
+ }
69
+ }
70
+
71
+ wp_enqueue_script( 'yith-bh-onboarding' );
72
+ wp_enqueue_style( 'yith-bh-onboarding' );
73
+
74
+ include YIT_CORE_PLUGIN_TEMPLATE_PATH . '/bh-onboarding/onboarding-tabs.php';
75
+ }
76
+
77
+ /**
78
+ * Save options
79
+ *
80
+ * @return void
81
+ */
82
+ public function save_options() {
83
+ check_ajax_referer( 'yith-bh-onboarding-save-options' );
84
+ if ( ! isset( $_REQUEST['yith-plugin'], $_REQUEST['tab'] ) ) {
85
+ wp_send_json_error( __( 'It is not possible save the options', 'yith-plugin-fw' ) );
86
+ }
87
+
88
+ $slug = sanitize_text_field( wp_unslash( $_REQUEST['yith-plugin'] ) );
89
+ $posted = $_REQUEST;
90
+ // the options are filtered by each plugin.
91
+ $options = apply_filters( 'yith_bh_onboarding_' . $slug, array() );
92
+ $tab = $posted['tab'];
93
+
94
+ if ( apply_filters( 'yith_bh_onboarding_save_options_' . $slug, isset( $options['tabs'][ $tab ]['options'] ), $posted ) ) {
95
+ foreach ( $options['tabs'][ $tab ]['options'] as $single_option ) {
96
+ if ( isset( $posted[ $single_option['id'] ] ) ) {
97
+ $value = $posted[ $single_option['id'] ] ?? false;
98
+ $value = YIT_Plugin_Panel_WooCommerce::sanitize_option( $value, $single_option, $value );
99
+ $value = apply_filters( 'yith_bh_onboarding_save_option_value', $value, $single_option, $slug );
100
+ update_option( $single_option['id'], $value );
101
+ }
102
+ }
103
+ }
104
+
105
+ wp_send_json_success();
106
+ }
107
+ }
108
+ }
109
+
110
+ YITH_BH_Onboarding::get_instance();
plugin-fw/init.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
  /**
3
  * Framework Name: YIT Plugin Framework
4
- * Version: 3.9.5
5
  * Author: YITH
6
  * Text Domain: yith-plugin-fw
7
  * Domain Path: /languages/
8
  *
9
  * @author YITH
10
- * @version 3.9.5
11
  * @package YITH\PluginFramework
12
  */
13
 
1
  <?php
2
  /**
3
  * Framework Name: YIT Plugin Framework
4
+ * Version: 3.9.13
5
  * Author: YITH
6
  * Text Domain: yith-plugin-fw
7
  * Domain Path: /languages/
8
  *
9
  * @author YITH
10
+ * @version 3.9.13
11
  * @package YITH\PluginFramework
12
  */
13
 
plugin-fw/languages/yith-plugin-fw-el.mo CHANGED
Binary file
plugin-fw/languages/yith-plugin-fw-el.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: YITH Framework\n"
6
  "Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
7
- "POT-Creation-Date: 2022-04-13 12:14:07+00:00\n"
8
  "PO-Revision-Date: 2021-02-11 18:07:46+0000\n"
9
  "Language: el_GR\n"
10
  "MIME-Version: 1.0\n"
@@ -13,56 +13,56 @@ msgstr ""
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
  "X-Generator: GlotPress/3.0.0-alpha.2\n"
15
 
16
- #: includes/class-yit-assets.php:144 yit-functions.php:1980
17
  msgid "Confirm trash"
18
  msgstr ""
19
 
20
- #: includes/class-yit-assets.php:145
21
  msgid "Are you sure you want to trash the selected items?"
22
  msgstr ""
23
 
24
- #: includes/class-yit-assets.php:147 includes/class-yit-assets.php:151
25
  #: templates/sysinfo/tabs/main.php:42 templates/sysinfo/tabs/main.php:50
26
- #: yit-functions.php:1982 yit-functions.php:2000
27
  msgid "No"
28
  msgstr "Όχι"
29
 
30
- #: includes/class-yit-assets.php:148 yit-functions.php:1998
31
- #: yit-functions.php:2126
32
  msgid "Confirm delete"
33
  msgstr ""
34
 
35
- #: includes/class-yit-assets.php:149
36
  msgid "Are you sure you want to delete the selected items?"
37
  msgstr ""
38
 
39
- #: includes/class-yit-assets.php:149 yit-functions.php:1914
40
- #: yit-functions.php:2074
41
  msgid ""
42
  "This action cannot be undone and you will not be able to recover this data."
43
  msgstr ""
44
 
45
- #: includes/class-yit-assets.php:162
46
  msgid "Clear"
47
  msgstr "Καθαρισμός"
48
 
49
- #: includes/class-yit-assets.php:163
50
  msgid "Clear color"
51
  msgstr "Καθαρισμός χρώματος"
52
 
53
- #: includes/class-yit-assets.php:164
54
  msgid "Default"
55
  msgstr "Προεπιλεγμένο"
56
 
57
- #: includes/class-yit-assets.php:165
58
  msgid "Select default color"
59
  msgstr "Επιλογή προεπιλεγμένου χρώματος"
60
 
61
- #: includes/class-yit-assets.php:166
62
  msgid "Select Color"
63
  msgstr "Επιλογή Χρώματος"
64
 
65
- #: includes/class-yit-assets.php:167
66
  msgid "Color value"
67
  msgstr "Αξία χρώματος"
68
 
@@ -70,7 +70,7 @@ msgstr "Αξία χρώματος"
70
  msgid "There was an error with your request; please try again later."
71
  msgstr ""
72
 
73
- #: includes/class-yit-plugin-panel-woocommerce.php:429
74
  msgid "The changes you have made will be lost if you leave this page."
75
  msgstr ""
76
  "Οι αλλαγές που έχετε δημιουργήσει θα χαθούν αν αφήσετε αυτήν την σελίδα."
@@ -83,19 +83,19 @@ msgstr "Ρυθμίσεις Προσθέτου"
83
  msgid "Settings"
84
  msgstr "Ρυθμίσεις"
85
 
86
- #: includes/class-yit-plugin-panel.php:454
87
- #: includes/class-yit-plugin-panel.php:457
88
  msgid "How to install premium version"
89
  msgstr "Πώς να εγκαταστήσετε την προηγμένη έκδοση"
90
 
91
- #: includes/class-yit-plugin-panel.php:658
92
- #: includes/class-yit-plugin-subpanel.php:132
93
  msgid "Save Changes"
94
  msgstr "Αποθήκευση Αλλαγών"
95
 
96
  #: includes/class-yit-plugin-panel.php:663
97
- #: includes/class-yit-plugin-subpanel.php:136
98
- #: templates/panel/woocommerce/woocommerce-form.php:14
99
  msgid ""
100
  "If you continue with this action, you will reset all options in this page."
101
  msgstr ""
@@ -103,72 +103,72 @@ msgstr ""
103
  "σελίδα."
104
 
105
  #: includes/class-yit-plugin-panel.php:663
106
- #: includes/class-yit-plugin-subpanel.php:136
107
- #: templates/panel/woocommerce/woocommerce-form.php:14
108
  msgid "Are you sure?"
109
  msgstr "Είστε σίγουρος;"
110
 
111
  #: includes/class-yit-plugin-panel.php:667
112
- #: includes/class-yit-plugin-subpanel.php:139
113
  msgid "Reset to default"
114
  msgstr "Επαναφορά σε προεπιλεγμένο"
115
 
116
- #: includes/class-yit-plugin-panel.php:1047
117
  msgid ""
118
  "The element you have entered already exists. Please, enter another name."
119
  msgstr "Το στοιχείο που εισάγατε υπάρχει ήδη. Παρακαλώ, εισάγετε άλλο όνομα."
120
 
121
- #: includes/class-yit-plugin-panel.php:1048
122
  msgid "Settings saved"
123
  msgstr "Ρυθμίσεις αποθηκεύτηκαν"
124
 
125
- #: includes/class-yit-plugin-panel.php:1049
126
  msgid "Settings reset"
127
  msgstr "Επαναφορά ρυθμίσεων"
128
 
129
- #: includes/class-yit-plugin-panel.php:1050
130
  msgid "Element deleted correctly."
131
  msgstr "Το στοιχείο διαγράφηκε επιτυχώς."
132
 
133
- #: includes/class-yit-plugin-panel.php:1051
134
- #: includes/class-yit-plugin-panel.php:1052
135
  msgid "Element updated correctly."
136
  msgstr "Το στοιχείο αναβαθμίστηκε επιτυχώς."
137
 
138
- #: includes/class-yit-plugin-panel.php:1053
139
  msgid "Database imported correctly."
140
  msgstr "Επιτυχής εισαγωγή βάσης δεδομένων."
141
 
142
- #: includes/class-yit-plugin-panel.php:1054
143
  msgid "An error has occurred during import. Please try again."
144
  msgstr "Παρουσιάστηκε σφάλμα κατά την εισαγωγή. Παρακαλώ προσπαθήστε ξανά."
145
 
146
- #: includes/class-yit-plugin-panel.php:1055
147
  msgid "The added file is not valid."
148
  msgstr "Το προστιθέμενο αρχείο δεν είναι έγκυρο."
149
 
150
- #: includes/class-yit-plugin-panel.php:1056
151
  msgid "Sorry, import is disabled."
152
  msgstr "Συγνώμη, η εισαγωγή είναι απενεργοποιημένη."
153
 
154
- #: includes/class-yit-plugin-panel.php:1057
155
  msgid "Sorting successful."
156
  msgstr "Διαλογή επιτυχής."
157
 
158
- #: includes/class-yit-plugin-panel.php:1525
159
  msgid "We need your support"
160
  msgstr "Χρειαζόμαστε την υποστήριξή σας"
161
 
162
- #: includes/class-yit-plugin-panel.php:1526
163
  msgid "to keep updating and improving the plugin. Please,"
164
  msgstr ""
165
  "για να διατηρήσετε την ενημέρωση και τη βελτίωση του πρόσθετου. Παρακαλώ,"
166
 
167
- #: includes/class-yit-plugin-panel.php:1528
168
  msgid "help us by leaving a good review"
169
  msgstr ""
170
 
171
- #: includes/class-yit-plugin-panel.php:1529
172
  msgid ":) Thanks!"
173
  msgstr ":) Ευχαριστώ!"
174
 
@@ -200,6 +200,10 @@ msgid ""
200
  "previous location to YITH menu."
201
  msgstr ""
202
 
 
 
 
 
203
  #: includes/class-yith-dashboard.php:35
204
  msgid "YITH Latest Updates"
205
  msgstr "Τελευταίες Αναβαθμίσεις YITH"
@@ -401,6 +405,10 @@ msgstr ""
401
  "εγκατασταθεί λόγω προβλήματος σύνδεσης ανάμεσα στον ιστότοπο σας και τον "
402
  "διακομιστή μας."
403
 
 
 
 
 
404
  #: templates/fields/ajax-customers.php:41
405
  msgid "Search for a customer..."
406
  msgstr ""
@@ -528,16 +536,16 @@ msgstr "Ανέβασμα"
528
  msgid "Reset"
529
  msgstr "Επαναφορά"
530
 
531
- #: templates/panel/woocommerce/woocommerce-form.php:28
532
- #: templates/panel/woocommerce/woocommerce-form.php:32
533
  msgid "Save Options"
534
  msgstr ""
535
 
536
- #: templates/panel/woocommerce/woocommerce-form.php:32
537
  msgid "Options Saved"
538
  msgstr ""
539
 
540
- #: templates/panel/woocommerce/woocommerce-form.php:38
541
  msgid "Reset Defaults"
542
  msgstr "Επαναφορά Προεπιλεγμένων"
543
 
@@ -665,23 +673,34 @@ msgid "Data: %1$.2fMB | Index: %2$.2fMB | Free: %3$.2fMB | Engine: %4$s"
665
  msgstr ""
666
 
667
  #. translators: %s is the title of the post object.
668
- #: yit-functions.php:1912
669
  msgid "Are you sure you want to move \"%s\" to trash?"
670
  msgstr ""
671
 
672
  #. translators: %s is the title of the post object.
673
- #: yit-functions.php:1914 yit-functions.php:2074
674
  msgid "Are you sure you want to delete \"%s\"?"
675
  msgstr ""
676
 
677
- #: yit-functions.php:2012 yit-functions.php:2020 yit-functions.php:2137
678
  msgid "Further actions"
679
  msgstr ""
680
 
681
- #: yit-plugin.php:205
682
  msgid "License"
683
  msgstr "Άδεια χρήσης προϊόντος"
684
 
 
 
 
 
 
 
 
 
 
 
 
685
  #. Author of the plugin/theme
686
  msgid "YITH"
687
  msgstr "YITH"
@@ -697,49 +716,54 @@ msgctxt "[gutenberg]: Category Name"
697
  msgid "YITH"
698
  msgstr "YITH"
699
 
700
- #: includes/class-yit-assets.php:132
701
  msgctxt "Button text"
702
  msgid "Confirm"
703
  msgstr ""
704
 
705
- #: includes/class-yit-assets.php:133
706
  msgctxt "Button text"
707
  msgid "Cancel"
708
  msgstr ""
709
 
710
- #: includes/class-yit-assets.php:146 yit-functions.php:1983
711
  msgctxt "Trash confirmation action"
712
  msgid "Yes, move to trash"
713
  msgstr ""
714
 
715
- #: includes/class-yit-assets.php:150 yit-functions.php:2001
716
- #: yit-functions.php:2128
717
  msgctxt "Delete confirmation action"
718
  msgid "Yes, delete"
719
  msgstr ""
720
 
721
- #: includes/class-yit-plugin-panel.php:491
722
- msgctxt "Help tab name"
723
- msgid "Help"
724
- msgstr ""
725
-
726
  #. translators: 1. Plugin name.
727
- #: includes/class-yit-plugin-panel.php:805
728
  msgctxt "Help tab default title"
729
  msgid "Thank you for purchasing %s!"
730
  msgstr ""
731
 
732
- #: includes/class-yit-plugin-panel.php:806
 
 
 
 
 
733
  msgctxt "Help tab default description"
734
  msgid ""
735
  "We want to help you enjoy a wonderful experience with all of our products."
736
  msgstr ""
737
 
738
- #: includes/class-yit-plugin-panel.php:853
739
  msgctxt "Premium tab name"
740
  msgid "Get premium"
741
  msgstr ""
742
 
 
 
 
 
 
743
  #: includes/class-yith-dashboard.php:96
744
  msgctxt "Plugin FW"
745
  msgid "View Changelog"
@@ -855,64 +879,64 @@ msgid "NO"
855
  msgstr "ΟΧΙ"
856
 
857
  #. translators: 1. Url to EN playlist.
858
- #: templates/panel/help-tab.php:87
859
  msgctxt "Help tab view all video link"
860
  msgid ""
861
  "Check the full <a href=\"%s\" target=\"_blank\">Playlist on Youtube</a> to "
862
  "learn more >"
863
  msgstr ""
864
 
865
- #: templates/panel/help-tab.php:94
866
  msgctxt "Help tab Watch Videotutorials link"
867
  msgid "Videos are also available in:"
868
  msgstr ""
869
 
870
- #: templates/panel/help-tab.php:124
871
  msgctxt "Help tab Read Documentation link"
872
  msgid "Read the documentation"
873
  msgstr ""
874
 
875
- #: templates/panel/help-tab.php:127
876
  msgctxt "Help tab Read Documentation link"
877
  msgid "to learn how the plugin works from the basics."
878
  msgstr ""
879
 
880
- #: templates/panel/help-tab.php:137
881
  msgctxt "Help tab Watch video tutorials link"
882
  msgid "Watch our video tutorials"
883
  msgstr ""
884
 
885
- #: templates/panel/help-tab.php:140
886
  msgctxt "Help tab Watch video tutorials link"
887
  msgid "to see some helpful use cases."
888
  msgstr ""
889
 
890
- #: templates/panel/help-tab.php:150
891
  msgctxt "Help tab view FAQs link"
892
  msgid "Check the FAQs"
893
  msgstr ""
894
 
895
- #: templates/panel/help-tab.php:153
896
  msgctxt "Help tab view FAQs link"
897
  msgid "to find answers to your doubts."
898
  msgstr ""
899
 
900
- #: templates/panel/help-tab.php:169
901
  msgctxt "Help tab FAQ title"
902
  msgid "Last FAQs in our Help Center"
903
  msgstr ""
904
 
905
- #: templates/panel/help-tab.php:183
906
  msgctxt "Help tab FAQ link"
907
  msgid "View all FAQs >"
908
  msgstr ""
909
 
910
- #: templates/panel/help-tab.php:192
911
  msgctxt "Help tab submit ticket title"
912
  msgid "Need help?"
913
  msgstr ""
914
 
915
- #: templates/panel/help-tab.php:195
916
  msgctxt "Help tab submit ticket description"
917
  msgid ""
918
  "If you are experiencing any technical issues, ask for help from our "
@@ -920,11 +944,44 @@ msgid ""
920
  "soon as possible."
921
  msgstr ""
922
 
923
- #: templates/panel/help-tab.php:203
924
  msgctxt "Help tab submit ticket button"
925
  msgid "Submit a ticket"
926
  msgstr ""
927
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
928
  #: templates/panel/premium-tab.php:30
929
  msgctxt "Premium Tab"
930
  msgid "Get the premium version to unlock advanced features"
@@ -941,97 +998,102 @@ msgid "Plugin premium features images"
941
  msgstr ""
942
 
943
  #. translators: alt attribute of main image tag.
944
- #: templates/panel/premium-tab.php:51
945
  msgctxt "Premium Tab"
946
  msgid "And so much more!"
947
  msgstr ""
948
 
949
  #: templates/panel/premium-tab.php:53
950
  msgctxt "Premium Tab"
 
 
 
 
 
951
  msgid "Check the free vs premium features >"
952
  msgstr ""
953
 
954
- #: templates/panel/premium-tab.php:58
955
  msgctxt "Premium Tab"
956
  msgid "Get the premium version"
957
  msgstr ""
958
 
959
- #: yit-functions.php:1926
960
  msgctxt "Post action"
961
  msgid "Preview"
962
  msgstr ""
963
 
964
- #: yit-functions.php:1935
965
  msgctxt "Post action"
966
  msgid "View"
967
  msgstr ""
968
 
969
- #: yit-functions.php:1946
970
  msgctxt "Post action"
971
  msgid "Edit"
972
  msgstr ""
973
 
974
- #: yit-functions.php:1954
975
  msgctxt "Post action"
976
  msgid "Duplicate"
977
  msgstr ""
978
 
979
- #: yit-functions.php:1966
980
  msgctxt "Post action"
981
  msgid "Restore"
982
  msgstr ""
983
 
984
- #: yit-functions.php:1974
985
  msgctxt "Post action"
986
  msgid "Trash"
987
  msgstr ""
988
 
989
- #: yit-functions.php:1991
990
  msgctxt "Post action"
991
  msgid "Delete Permanently"
992
  msgstr ""
993
 
994
- #: yit-functions.php:2088
995
  msgctxt "Term action"
996
  msgid "View"
997
  msgstr ""
998
 
999
- #: yit-functions.php:2098
1000
  msgctxt "Term action"
1001
  msgid "Edit"
1002
  msgstr ""
1003
 
1004
- #: yit-functions.php:2106
1005
  msgctxt "Term action"
1006
  msgid "Duplicate"
1007
  msgstr ""
1008
 
1009
- #: yit-functions.php:2119
1010
  msgctxt "Term action"
1011
  msgid "Delete"
1012
  msgstr ""
1013
 
1014
- #: yit-plugin.php:84
1015
  msgctxt "Plugin Row Meta"
1016
  msgid "Live Demo"
1017
  msgstr "Live Demo"
1018
 
1019
- #: yit-plugin.php:88
1020
  msgctxt "Plugin Row Meta"
1021
  msgid "Documentation"
1022
  msgstr "Εγχειρίδιο χρήσης"
1023
 
1024
- #: yit-plugin.php:92
1025
  msgctxt "Plugin Row Meta"
1026
  msgid "Support"
1027
  msgstr "Υποστήριξη"
1028
 
1029
- #: yit-plugin.php:96
1030
  msgctxt "Plugin Row Meta"
1031
  msgid "Premium version"
1032
  msgstr "Premium έκδοση"
1033
 
1034
- #: yit-plugin.php:201
1035
  msgctxt "Action links"
1036
  msgid "Settings"
1037
  msgstr "Ρυθμίσεις"
4
  msgstr ""
5
  "Project-Id-Version: YITH Framework\n"
6
  "Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
7
+ "POT-Creation-Date: 2022-08-02 12:02:23+00:00\n"
8
  "PO-Revision-Date: 2021-02-11 18:07:46+0000\n"
9
  "Language: el_GR\n"
10
  "MIME-Version: 1.0\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
  "X-Generator: GlotPress/3.0.0-alpha.2\n"
15
 
16
+ #: includes/class-yit-assets.php:146 yit-functions.php:2006
17
  msgid "Confirm trash"
18
  msgstr ""
19
 
20
+ #: includes/class-yit-assets.php:147
21
  msgid "Are you sure you want to trash the selected items?"
22
  msgstr ""
23
 
24
+ #: includes/class-yit-assets.php:149 includes/class-yit-assets.php:153
25
  #: templates/sysinfo/tabs/main.php:42 templates/sysinfo/tabs/main.php:50
26
+ #: yit-functions.php:2008 yit-functions.php:2026
27
  msgid "No"
28
  msgstr "Όχι"
29
 
30
+ #: includes/class-yit-assets.php:150 yit-functions.php:2024
31
+ #: yit-functions.php:2152
32
  msgid "Confirm delete"
33
  msgstr ""
34
 
35
+ #: includes/class-yit-assets.php:151
36
  msgid "Are you sure you want to delete the selected items?"
37
  msgstr ""
38
 
39
+ #: includes/class-yit-assets.php:151 yit-functions.php:1940
40
+ #: yit-functions.php:2100
41
  msgid ""
42
  "This action cannot be undone and you will not be able to recover this data."
43
  msgstr ""
44
 
45
+ #: includes/class-yit-assets.php:172
46
  msgid "Clear"
47
  msgstr "Καθαρισμός"
48
 
49
+ #: includes/class-yit-assets.php:173
50
  msgid "Clear color"
51
  msgstr "Καθαρισμός χρώματος"
52
 
53
+ #: includes/class-yit-assets.php:174
54
  msgid "Default"
55
  msgstr "Προεπιλεγμένο"
56
 
57
+ #: includes/class-yit-assets.php:175
58
  msgid "Select default color"
59
  msgstr "Επιλογή προεπιλεγμένου χρώματος"
60
 
61
+ #: includes/class-yit-assets.php:176
62
  msgid "Select Color"
63
  msgstr "Επιλογή Χρώματος"
64
 
65
+ #: includes/class-yit-assets.php:177
66
  msgid "Color value"
67
  msgstr "Αξία χρώματος"
68
 
70
  msgid "There was an error with your request; please try again later."
71
  msgstr ""
72
 
73
+ #: includes/class-yit-plugin-panel-woocommerce.php:430
74
  msgid "The changes you have made will be lost if you leave this page."
75
  msgstr ""
76
  "Οι αλλαγές που έχετε δημιουργήσει θα χαθούν αν αφήσετε αυτήν την σελίδα."
83
  msgid "Settings"
84
  msgstr "Ρυθμίσεις"
85
 
86
+ #: includes/class-yit-plugin-panel.php:455
87
+ #: includes/class-yit-plugin-panel.php:458
88
  msgid "How to install premium version"
89
  msgstr "Πώς να εγκαταστήσετε την προηγμένη έκδοση"
90
 
91
+ #: includes/class-yit-plugin-panel.php:655
92
+ #: includes/class-yit-plugin-subpanel.php:133
93
  msgid "Save Changes"
94
  msgstr "Αποθήκευση Αλλαγών"
95
 
96
  #: includes/class-yit-plugin-panel.php:663
97
+ #: includes/class-yit-plugin-subpanel.php:140
98
+ #: templates/panel/woocommerce/woocommerce-form.php:15
99
  msgid ""
100
  "If you continue with this action, you will reset all options in this page."
101
  msgstr ""
103
  "σελίδα."
104
 
105
  #: includes/class-yit-plugin-panel.php:663
106
+ #: includes/class-yit-plugin-subpanel.php:140
107
+ #: templates/panel/woocommerce/woocommerce-form.php:15
108
  msgid "Are you sure?"
109
  msgstr "Είστε σίγουρος;"
110
 
111
  #: includes/class-yit-plugin-panel.php:667
112
+ #: includes/class-yit-plugin-subpanel.php:143
113
  msgid "Reset to default"
114
  msgstr "Επαναφορά σε προεπιλεγμένο"
115
 
116
+ #: includes/class-yit-plugin-panel.php:1074
117
  msgid ""
118
  "The element you have entered already exists. Please, enter another name."
119
  msgstr "Το στοιχείο που εισάγατε υπάρχει ήδη. Παρακαλώ, εισάγετε άλλο όνομα."
120
 
121
+ #: includes/class-yit-plugin-panel.php:1075
122
  msgid "Settings saved"
123
  msgstr "Ρυθμίσεις αποθηκεύτηκαν"
124
 
125
+ #: includes/class-yit-plugin-panel.php:1076
126
  msgid "Settings reset"
127
  msgstr "Επαναφορά ρυθμίσεων"
128
 
129
+ #: includes/class-yit-plugin-panel.php:1077
130
  msgid "Element deleted correctly."
131
  msgstr "Το στοιχείο διαγράφηκε επιτυχώς."
132
 
133
+ #: includes/class-yit-plugin-panel.php:1078
134
+ #: includes/class-yit-plugin-panel.php:1079
135
  msgid "Element updated correctly."
136
  msgstr "Το στοιχείο αναβαθμίστηκε επιτυχώς."
137
 
138
+ #: includes/class-yit-plugin-panel.php:1080
139
  msgid "Database imported correctly."
140
  msgstr "Επιτυχής εισαγωγή βάσης δεδομένων."
141
 
142
+ #: includes/class-yit-plugin-panel.php:1081
143
  msgid "An error has occurred during import. Please try again."
144
  msgstr "Παρουσιάστηκε σφάλμα κατά την εισαγωγή. Παρακαλώ προσπαθήστε ξανά."
145
 
146
+ #: includes/class-yit-plugin-panel.php:1082
147
  msgid "The added file is not valid."
148
  msgstr "Το προστιθέμενο αρχείο δεν είναι έγκυρο."
149
 
150
+ #: includes/class-yit-plugin-panel.php:1083
151
  msgid "Sorry, import is disabled."
152
  msgstr "Συγνώμη, η εισαγωγή είναι απενεργοποιημένη."
153
 
154
+ #: includes/class-yit-plugin-panel.php:1084
155
  msgid "Sorting successful."
156
  msgstr "Διαλογή επιτυχής."
157
 
158
+ #: includes/class-yit-plugin-panel.php:1573
159
  msgid "We need your support"
160
  msgstr "Χρειαζόμαστε την υποστήριξή σας"
161
 
162
+ #: includes/class-yit-plugin-panel.php:1574
163
  msgid "to keep updating and improving the plugin. Please,"
164
  msgstr ""
165
  "για να διατηρήσετε την ενημέρωση και τη βελτίωση του πρόσθετου. Παρακαλώ,"
166
 
167
+ #: includes/class-yit-plugin-panel.php:1576
168
  msgid "help us by leaving a good review"
169
  msgstr ""
170
 
171
+ #: includes/class-yit-plugin-panel.php:1577
172
  msgid ":) Thanks!"
173
  msgstr ":) Ευχαριστώ!"
174
 
200
  "previous location to YITH menu."
201
  msgstr ""
202
 
203
+ #: includes/class-yith-bh-onboarding.php:85
204
+ msgid "It is not possible save the options"
205
+ msgstr ""
206
+
207
  #: includes/class-yith-dashboard.php:35
208
  msgid "YITH Latest Updates"
209
  msgstr "Τελευταίες Αναβαθμίσεις YITH"
405
  "εγκατασταθεί λόγω προβλήματος σύνδεσης ανάμεσα στον ιστότοπο σας και τον "
406
  "διακομιστή μας."
407
 
408
+ #: templates/bh-onboarding/onboarding-tabs.php:63
409
+ msgid "Save"
410
+ msgstr ""
411
+
412
  #: templates/fields/ajax-customers.php:41
413
  msgid "Search for a customer..."
414
  msgstr ""
536
  msgid "Reset"
537
  msgstr "Επαναφορά"
538
 
539
+ #: templates/panel/woocommerce/woocommerce-form.php:29
540
+ #: templates/panel/woocommerce/woocommerce-form.php:33
541
  msgid "Save Options"
542
  msgstr ""
543
 
544
+ #: templates/panel/woocommerce/woocommerce-form.php:33
545
  msgid "Options Saved"
546
  msgstr ""
547
 
548
+ #: templates/panel/woocommerce/woocommerce-form.php:43
549
  msgid "Reset Defaults"
550
  msgstr "Επαναφορά Προεπιλεγμένων"
551
 
673
  msgstr ""
674
 
675
  #. translators: %s is the title of the post object.
676
+ #: yit-functions.php:1938
677
  msgid "Are you sure you want to move \"%s\" to trash?"
678
  msgstr ""
679
 
680
  #. translators: %s is the title of the post object.
681
+ #: yit-functions.php:1940 yit-functions.php:2100
682
  msgid "Are you sure you want to delete \"%s\"?"
683
  msgstr ""
684
 
685
+ #: yit-functions.php:2038 yit-functions.php:2046 yit-functions.php:2163
686
  msgid "Further actions"
687
  msgstr ""
688
 
689
+ #: yit-plugin.php:233
690
  msgid "License"
691
  msgstr "Άδεια χρήσης προϊόντος"
692
 
693
+ #. translators: 1. Plugin(s) name(s).
694
+ #: yit-plugin.php:272
695
+ msgid ""
696
+ "%s was deactivated as you're running an higher tier version of the same "
697
+ "plugin."
698
+ msgid_plural ""
699
+ "%s were deactivated as you're running higher tier versions of the same "
700
+ "plugins."
701
+ msgstr[0] ""
702
+ msgstr[1] ""
703
+
704
  #. Author of the plugin/theme
705
  msgid "YITH"
706
  msgstr "YITH"
716
  msgid "YITH"
717
  msgstr "YITH"
718
 
719
+ #: includes/class-yit-assets.php:134
720
  msgctxt "Button text"
721
  msgid "Confirm"
722
  msgstr ""
723
 
724
+ #: includes/class-yit-assets.php:135
725
  msgctxt "Button text"
726
  msgid "Cancel"
727
  msgstr ""
728
 
729
+ #: includes/class-yit-assets.php:148 yit-functions.php:2009
730
  msgctxt "Trash confirmation action"
731
  msgid "Yes, move to trash"
732
  msgstr ""
733
 
734
+ #: includes/class-yit-assets.php:152 yit-functions.php:2027
735
+ #: yit-functions.php:2154
736
  msgctxt "Delete confirmation action"
737
  msgid "Yes, delete"
738
  msgstr ""
739
 
 
 
 
 
 
740
  #. translators: 1. Plugin name.
741
+ #: includes/class-yit-plugin-panel.php:803
742
  msgctxt "Help tab default title"
743
  msgid "Thank you for purchasing %s!"
744
  msgstr ""
745
 
746
+ #: includes/class-yit-plugin-panel.php:803
747
+ msgctxt "Help tab default title"
748
+ msgid "Thank you for using %s!"
749
+ msgstr ""
750
+
751
+ #: includes/class-yit-plugin-panel.php:815
752
  msgctxt "Help tab default description"
753
  msgid ""
754
  "We want to help you enjoy a wonderful experience with all of our products."
755
  msgstr ""
756
 
757
+ #: includes/class-yit-plugin-panel.php:866
758
  msgctxt "Premium tab name"
759
  msgid "Get premium"
760
  msgstr ""
761
 
762
+ #: includes/class-yit-plugin-panel.php:878
763
+ msgctxt "Help tab name"
764
+ msgid "Help"
765
+ msgstr ""
766
+
767
  #: includes/class-yith-dashboard.php:96
768
  msgctxt "Plugin FW"
769
  msgid "View Changelog"
879
  msgstr "ΟΧΙ"
880
 
881
  #. translators: 1. Url to EN playlist.
882
+ #: templates/panel/help-tab.php:89
883
  msgctxt "Help tab view all video link"
884
  msgid ""
885
  "Check the full <a href=\"%s\" target=\"_blank\">Playlist on Youtube</a> to "
886
  "learn more >"
887
  msgstr ""
888
 
889
+ #: templates/panel/help-tab.php:96
890
  msgctxt "Help tab Watch Videotutorials link"
891
  msgid "Videos are also available in:"
892
  msgstr ""
893
 
894
+ #: templates/panel/help-tab.php:126
895
  msgctxt "Help tab Read Documentation link"
896
  msgid "Read the documentation"
897
  msgstr ""
898
 
899
+ #: templates/panel/help-tab.php:129
900
  msgctxt "Help tab Read Documentation link"
901
  msgid "to learn how the plugin works from the basics."
902
  msgstr ""
903
 
904
+ #: templates/panel/help-tab.php:139
905
  msgctxt "Help tab Watch video tutorials link"
906
  msgid "Watch our video tutorials"
907
  msgstr ""
908
 
909
+ #: templates/panel/help-tab.php:142
910
  msgctxt "Help tab Watch video tutorials link"
911
  msgid "to see some helpful use cases."
912
  msgstr ""
913
 
914
+ #: templates/panel/help-tab.php:152
915
  msgctxt "Help tab view FAQs link"
916
  msgid "Check the FAQs"
917
  msgstr ""
918
 
919
+ #: templates/panel/help-tab.php:155
920
  msgctxt "Help tab view FAQs link"
921
  msgid "to find answers to your doubts."
922
  msgstr ""
923
 
924
+ #: templates/panel/help-tab.php:170
925
  msgctxt "Help tab FAQ title"
926
  msgid "Last FAQs in our Help Center"
927
  msgstr ""
928
 
929
+ #: templates/panel/help-tab.php:184
930
  msgctxt "Help tab FAQ link"
931
  msgid "View all FAQs >"
932
  msgstr ""
933
 
934
+ #: templates/panel/help-tab.php:193
935
  msgctxt "Help tab submit ticket title"
936
  msgid "Need help?"
937
  msgstr ""
938
 
939
+ #: templates/panel/help-tab.php:196
940
  msgctxt "Help tab submit ticket description"
941
  msgid ""
942
  "If you are experiencing any technical issues, ask for help from our "
944
  "soon as possible."
945
  msgstr ""
946
 
947
+ #: templates/panel/help-tab.php:204
948
  msgctxt "Help tab submit ticket button"
949
  msgid "Submit a ticket"
950
  msgstr ""
951
 
952
+ #: templates/panel/help-tab.php:216 templates/panel/help-tab.php:218
953
+ #: templates/panel/help-tab.php:223
954
+ msgctxt "Help tab documentation"
955
+ msgid "Read the plugin documentation"
956
+ msgstr ""
957
+
958
+ #: templates/panel/help-tab.php:220
959
+ msgctxt "Help tab documentation"
960
+ msgid "to learn how it works from the basics."
961
+ msgstr ""
962
+
963
+ #: templates/panel/help-tab.php:231 templates/panel/help-tab.php:233
964
+ msgctxt "Help tab support"
965
+ msgid "Need some help?"
966
+ msgstr ""
967
+
968
+ #: templates/panel/help-tab.php:235
969
+ msgctxt "Help tab support"
970
+ msgid "From DIY to full-service help"
971
+ msgstr ""
972
+
973
+ #: templates/panel/help-tab.php:238
974
+ msgctxt "Help tab support"
975
+ msgid ""
976
+ "Call or chat 24/7 with our support agents, or let our experts build your "
977
+ "site."
978
+ msgstr ""
979
+
980
+ #: templates/panel/help-tab.php:241
981
+ msgctxt "Help tab support"
982
+ msgid "Yes, I need help"
983
+ msgstr ""
984
+
985
  #: templates/panel/premium-tab.php:30
986
  msgctxt "Premium Tab"
987
  msgid "Get the premium version to unlock advanced features"
998
  msgstr ""
999
 
1000
  #. translators: alt attribute of main image tag.
1001
+ #: templates/panel/premium-tab.php:51 templates/panel/premium-tab.php:58
1002
  msgctxt "Premium Tab"
1003
  msgid "And so much more!"
1004
  msgstr ""
1005
 
1006
  #: templates/panel/premium-tab.php:53
1007
  msgctxt "Premium Tab"
1008
+ msgid "Check the premium features >"
1009
+ msgstr ""
1010
+
1011
+ #: templates/panel/premium-tab.php:60
1012
+ msgctxt "Premium Tab"
1013
  msgid "Check the free vs premium features >"
1014
  msgstr ""
1015
 
1016
+ #: templates/panel/premium-tab.php:65
1017
  msgctxt "Premium Tab"
1018
  msgid "Get the premium version"
1019
  msgstr ""
1020
 
1021
+ #: yit-functions.php:1952
1022
  msgctxt "Post action"
1023
  msgid "Preview"
1024
  msgstr ""
1025
 
1026
+ #: yit-functions.php:1961
1027
  msgctxt "Post action"
1028
  msgid "View"
1029
  msgstr ""
1030
 
1031
+ #: yit-functions.php:1972
1032
  msgctxt "Post action"
1033
  msgid "Edit"
1034
  msgstr ""
1035
 
1036
+ #: yit-functions.php:1980
1037
  msgctxt "Post action"
1038
  msgid "Duplicate"
1039
  msgstr ""
1040
 
1041
+ #: yit-functions.php:1992
1042
  msgctxt "Post action"
1043
  msgid "Restore"
1044
  msgstr ""
1045
 
1046
+ #: yit-functions.php:2000
1047
  msgctxt "Post action"
1048
  msgid "Trash"
1049
  msgstr ""
1050
 
1051
+ #: yit-functions.php:2017
1052
  msgctxt "Post action"
1053
  msgid "Delete Permanently"
1054
  msgstr ""
1055
 
1056
+ #: yit-functions.php:2114
1057
  msgctxt "Term action"
1058
  msgid "View"
1059
  msgstr ""
1060
 
1061
+ #: yit-functions.php:2124
1062
  msgctxt "Term action"
1063
  msgid "Edit"
1064
  msgstr ""
1065
 
1066
+ #: yit-functions.php:2132
1067
  msgctxt "Term action"
1068
  msgid "Duplicate"
1069
  msgstr ""
1070
 
1071
+ #: yit-functions.php:2145
1072
  msgctxt "Term action"
1073
  msgid "Delete"
1074
  msgstr ""
1075
 
1076
+ #: yit-plugin.php:85
1077
  msgctxt "Plugin Row Meta"
1078
  msgid "Live Demo"
1079
  msgstr "Live Demo"
1080
 
1081
+ #: yit-plugin.php:89
1082
  msgctxt "Plugin Row Meta"
1083
  msgid "Documentation"
1084
  msgstr "Εγχειρίδιο χρήσης"
1085
 
1086
+ #: yit-plugin.php:93
1087
  msgctxt "Plugin Row Meta"
1088
  msgid "Support"
1089
  msgstr "Υποστήριξη"
1090
 
1091
+ #: yit-plugin.php:97
1092
  msgctxt "Plugin Row Meta"
1093
  msgid "Premium version"
1094
  msgstr "Premium έκδοση"
1095
 
1096
+ #: yit-plugin.php:229
1097
  msgctxt "Action links"
1098
  msgid "Settings"
1099
  msgstr "Ρυθμίσεις"
plugin-fw/languages/yith-plugin-fw-es_ES.mo CHANGED
Binary file
plugin-fw/languages/yith-plugin-fw-es_ES.po CHANGED
@@ -4,8 +4,8 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: YITH Framework\n"
6
  "Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
7
- "POT-Creation-Date: 2022-04-13 12:14:07+00:00\n"
8
- "PO-Revision-Date: 2022-03-21 12:58:47+0000\n"
9
  "Language: es\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -13,57 +13,57 @@ msgstr ""
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
  "X-Generator: GlotPress/3.0.0-alpha.2\n"
15
 
16
- #: includes/class-yit-assets.php:144 yit-functions.php:1980
17
  msgid "Confirm trash"
18
  msgstr "Confirmar el traslado a la papelera"
19
 
20
- #: includes/class-yit-assets.php:145
21
  msgid "Are you sure you want to trash the selected items?"
22
  msgstr ""
23
  "¿Estás seguro de que quieres mover a la papelera los elementos seleccionados?"
24
 
25
- #: includes/class-yit-assets.php:147 includes/class-yit-assets.php:151
26
  #: templates/sysinfo/tabs/main.php:42 templates/sysinfo/tabs/main.php:50
27
- #: yit-functions.php:1982 yit-functions.php:2000
28
  msgid "No"
29
  msgstr "No"
30
 
31
- #: includes/class-yit-assets.php:148 yit-functions.php:1998
32
- #: yit-functions.php:2126
33
  msgid "Confirm delete"
34
  msgstr "Confirmar el borrado"
35
 
36
- #: includes/class-yit-assets.php:149
37
  msgid "Are you sure you want to delete the selected items?"
38
  msgstr "¿Estás seguro de que quieres borrar los elementos seleccionados?"
39
 
40
- #: includes/class-yit-assets.php:149 yit-functions.php:1914
41
- #: yit-functions.php:2074
42
  msgid ""
43
  "This action cannot be undone and you will not be able to recover this data."
44
  msgstr "Esta acción no se puede revertir y no podrá recuperar estos datos."
45
 
46
- #: includes/class-yit-assets.php:162
47
  msgid "Clear"
48
  msgstr "Borrar"
49
 
50
- #: includes/class-yit-assets.php:163
51
  msgid "Clear color"
52
  msgstr "Borrar color"
53
 
54
- #: includes/class-yit-assets.php:164
55
  msgid "Default"
56
  msgstr "Predeterminado"
57
 
58
- #: includes/class-yit-assets.php:165
59
  msgid "Select default color"
60
  msgstr "Seleccionar color predeterminado"
61
 
62
- #: includes/class-yit-assets.php:166
63
  msgid "Select Color"
64
  msgstr "Seleccionar color"
65
 
66
- #: includes/class-yit-assets.php:167
67
  msgid "Color value"
68
  msgstr "Valor del color"
69
 
@@ -72,7 +72,7 @@ msgid "There was an error with your request; please try again later."
72
  msgstr ""
73
  "Se ha producido un error en tu solicitud; inténtalo de nuevo más tarde."
74
 
75
- #: includes/class-yit-plugin-panel-woocommerce.php:429
76
  msgid "The changes you have made will be lost if you leave this page."
77
  msgstr "Los cambios que has hecho se perderán si abandonas esta página."
78
 
@@ -84,19 +84,19 @@ msgstr "Ajustes del plugin"
84
  msgid "Settings"
85
  msgstr "Ajustes"
86
 
87
- #: includes/class-yit-plugin-panel.php:454
88
- #: includes/class-yit-plugin-panel.php:457
89
  msgid "How to install premium version"
90
  msgstr "Cómo instalar la versión premium"
91
 
92
- #: includes/class-yit-plugin-panel.php:658
93
- #: includes/class-yit-plugin-subpanel.php:132
94
  msgid "Save Changes"
95
  msgstr "Guardar cambios"
96
 
97
  #: includes/class-yit-plugin-panel.php:663
98
- #: includes/class-yit-plugin-subpanel.php:136
99
- #: templates/panel/woocommerce/woocommerce-form.php:14
100
  msgid ""
101
  "If you continue with this action, you will reset all options in this page."
102
  msgstr ""
@@ -104,73 +104,73 @@ msgstr ""
104
  "página."
105
 
106
  #: includes/class-yit-plugin-panel.php:663
107
- #: includes/class-yit-plugin-subpanel.php:136
108
- #: templates/panel/woocommerce/woocommerce-form.php:14
109
  msgid "Are you sure?"
110
  msgstr "¿Estás seguro?"
111
 
112
  #: includes/class-yit-plugin-panel.php:667
113
- #: includes/class-yit-plugin-subpanel.php:139
114
  msgid "Reset to default"
115
  msgstr "Restablecer valores predeterminados"
116
 
117
- #: includes/class-yit-plugin-panel.php:1047
118
  msgid ""
119
  "The element you have entered already exists. Please, enter another name."
120
  msgstr ""
121
  "El elemento que has introducido ya existe. Por favor, introduce otro nombre."
122
 
123
- #: includes/class-yit-plugin-panel.php:1048
124
  msgid "Settings saved"
125
  msgstr "Ajustes guardados"
126
 
127
- #: includes/class-yit-plugin-panel.php:1049
128
  msgid "Settings reset"
129
  msgstr "Restablecer ajustes"
130
 
131
- #: includes/class-yit-plugin-panel.php:1050
132
  msgid "Element deleted correctly."
133
  msgstr "Elemento eliminado correctamente."
134
 
135
- #: includes/class-yit-plugin-panel.php:1051
136
- #: includes/class-yit-plugin-panel.php:1052
137
  msgid "Element updated correctly."
138
  msgstr "Elemento actualizado correctamente."
139
 
140
- #: includes/class-yit-plugin-panel.php:1053
141
  msgid "Database imported correctly."
142
  msgstr "Base de datos importada correctamente."
143
 
144
- #: includes/class-yit-plugin-panel.php:1054
145
  msgid "An error has occurred during import. Please try again."
146
  msgstr ""
147
  "Ha ocurrido un error durante la importación. Por favor, inténtalo de nuevo."
148
 
149
- #: includes/class-yit-plugin-panel.php:1055
150
  msgid "The added file is not valid."
151
  msgstr "El archivo añadido no es válido."
152
 
153
- #: includes/class-yit-plugin-panel.php:1056
154
  msgid "Sorry, import is disabled."
155
  msgstr "Lo siento, la importación está desactivada."
156
 
157
- #: includes/class-yit-plugin-panel.php:1057
158
  msgid "Sorting successful."
159
  msgstr "Clasificación realizada con éxito"
160
 
161
- #: includes/class-yit-plugin-panel.php:1525
162
  msgid "We need your support"
163
  msgstr "Necesitamos tu apoyo"
164
 
165
- #: includes/class-yit-plugin-panel.php:1526
166
  msgid "to keep updating and improving the plugin. Please,"
167
  msgstr "para que podamos seguir actualizando y mejorando el plugin. Por favor,"
168
 
169
- #: includes/class-yit-plugin-panel.php:1528
170
  msgid "help us by leaving a good review"
171
  msgstr "ayúdanos dejando una buena valoración"
172
 
173
- #: includes/class-yit-plugin-panel.php:1529
174
  msgid ":) Thanks!"
175
  msgstr ":) ¡Gracias!"
176
 
@@ -211,6 +211,10 @@ msgstr ""
211
  "WooCommerce Ajax Search, etc.) serán movidos de la ubicación previa a la "
212
  "pestaña de YITH plugins."
213
 
 
 
 
 
214
  #: includes/class-yith-dashboard.php:35
215
  msgid "YITH Latest Updates"
216
  msgstr "Últimas actualizaciones de YITH"
@@ -410,6 +414,10 @@ msgstr ""
410
  "La comprobación del sistema no ha podido determinar qué versión de %1$s está "
411
  "instalada debido a un error entre tu sitio y nuestro servidor."
412
 
 
 
 
 
413
  #: templates/fields/ajax-customers.php:41
414
  msgid "Search for a customer..."
415
  msgstr "Buscar un cliente..."
@@ -537,16 +545,16 @@ msgstr "Subir"
537
  msgid "Reset"
538
  msgstr "Restablecer"
539
 
540
- #: templates/panel/woocommerce/woocommerce-form.php:28
541
- #: templates/panel/woocommerce/woocommerce-form.php:32
542
  msgid "Save Options"
543
  msgstr "Guardar Opciones"
544
 
545
- #: templates/panel/woocommerce/woocommerce-form.php:32
546
  msgid "Options Saved"
547
  msgstr "Opciones guardadas"
548
 
549
- #: templates/panel/woocommerce/woocommerce-form.php:38
550
  msgid "Reset Defaults"
551
  msgstr "Restablecer valores predeterminados"
552
 
@@ -673,23 +681,38 @@ msgid "Data: %1$.2fMB | Index: %2$.2fMB | Free: %3$.2fMB | Engine: %4$s"
673
  msgstr "Datos: %1$.2fMB | Índice: %2$.2fMB | Libre: %3$.2fMB | Motor: %4$s"
674
 
675
  #. translators: %s is the title of the post object.
676
- #: yit-functions.php:1912
677
  msgid "Are you sure you want to move \"%s\" to trash?"
678
  msgstr "¿Estás seguro de que quieres mover \"%s\" a la papelera?"
679
 
680
  #. translators: %s is the title of the post object.
681
- #: yit-functions.php:1914 yit-functions.php:2074
682
  msgid "Are you sure you want to delete \"%s\"?"
683
  msgstr "¿Estás seguro de que quieres borrar \"%s\"?"
684
 
685
- #: yit-functions.php:2012 yit-functions.php:2020 yit-functions.php:2137
686
  msgid "Further actions"
687
  msgstr "Otras acciones"
688
 
689
- #: yit-plugin.php:205
690
  msgid "License"
691
  msgstr "Licencia"
692
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
693
  #. Author of the plugin/theme
694
  msgid "YITH"
695
  msgstr "YITH"
@@ -705,39 +728,40 @@ msgctxt "[gutenberg]: Category Name"
705
  msgid "YITH"
706
  msgstr "YITH"
707
 
708
- #: includes/class-yit-assets.php:132
709
  msgctxt "Button text"
710
  msgid "Confirm"
711
  msgstr "Confirmar"
712
 
713
- #: includes/class-yit-assets.php:133
714
  msgctxt "Button text"
715
  msgid "Cancel"
716
  msgstr "Cancelar"
717
 
718
- #: includes/class-yit-assets.php:146 yit-functions.php:1983
719
  msgctxt "Trash confirmation action"
720
  msgid "Yes, move to trash"
721
  msgstr "Sí, mover a la papelera"
722
 
723
- #: includes/class-yit-assets.php:150 yit-functions.php:2001
724
- #: yit-functions.php:2128
725
  msgctxt "Delete confirmation action"
726
  msgid "Yes, delete"
727
  msgstr "Si, borrar"
728
 
729
- #: includes/class-yit-plugin-panel.php:491
730
- msgctxt "Help tab name"
731
- msgid "Help"
732
- msgstr "Ayuda"
733
-
734
  #. translators: 1. Plugin name.
735
- #: includes/class-yit-plugin-panel.php:805
736
  msgctxt "Help tab default title"
737
  msgid "Thank you for purchasing %s!"
738
  msgstr "¡Gracias por comprar %s!"
739
 
740
- #: includes/class-yit-plugin-panel.php:806
 
 
 
 
 
 
741
  msgctxt "Help tab default description"
742
  msgid ""
743
  "We want to help you enjoy a wonderful experience with all of our products."
@@ -745,11 +769,16 @@ msgstr ""
745
  "Queremos ayudarte a disfrutar de una experiencia maravillosa con todos "
746
  "nuestros productos."
747
 
748
- #: includes/class-yit-plugin-panel.php:853
749
  msgctxt "Premium tab name"
750
  msgid "Get premium"
751
  msgstr "Obtén premium"
752
 
 
 
 
 
 
753
  #: includes/class-yith-dashboard.php:96
754
  msgctxt "Plugin FW"
755
  msgid "View Changelog"
@@ -863,7 +892,7 @@ msgid "NO"
863
  msgstr "NO"
864
 
865
  #. translators: 1. Url to EN playlist.
866
- #: templates/panel/help-tab.php:87
867
  msgctxt "Help tab view all video link"
868
  msgid ""
869
  "Check the full <a href=\"%s\" target=\"_blank\">Playlist on Youtube</a> to "
@@ -872,57 +901,57 @@ msgstr ""
872
  "Consulta la <a href=\"%s\" target=\"_blank\">Lista de reproducción en "
873
  "Youtube</a> para saber más >"
874
 
875
- #: templates/panel/help-tab.php:94
876
  msgctxt "Help tab Watch Videotutorials link"
877
  msgid "Videos are also available in:"
878
  msgstr "Los vídeos también están disponibles en:"
879
 
880
- #: templates/panel/help-tab.php:124
881
  msgctxt "Help tab Read Documentation link"
882
  msgid "Read the documentation"
883
  msgstr "Lee la documentación"
884
 
885
- #: templates/panel/help-tab.php:127
886
  msgctxt "Help tab Read Documentation link"
887
  msgid "to learn how the plugin works from the basics."
888
  msgstr "para aprender cómo funciona el plugin desde lo más básico."
889
 
890
- #: templates/panel/help-tab.php:137
891
  msgctxt "Help tab Watch video tutorials link"
892
  msgid "Watch our video tutorials"
893
  msgstr "Ve nuestros videotutoriales"
894
 
895
- #: templates/panel/help-tab.php:140
896
  msgctxt "Help tab Watch video tutorials link"
897
  msgid "to see some helpful use cases."
898
  msgstr "para ver algunos casos de uso útiles."
899
 
900
- #: templates/panel/help-tab.php:150
901
  msgctxt "Help tab view FAQs link"
902
  msgid "Check the FAQs"
903
  msgstr "Comprueba los FAQ"
904
 
905
- #: templates/panel/help-tab.php:153
906
  msgctxt "Help tab view FAQs link"
907
  msgid "to find answers to your doubts."
908
  msgstr "para encontrar respuestas a tus dudas."
909
 
910
- #: templates/panel/help-tab.php:169
911
  msgctxt "Help tab FAQ title"
912
  msgid "Last FAQs in our Help Center"
913
  msgstr "Últimos FAQs en nuestro Centro de Ayuda"
914
 
915
- #: templates/panel/help-tab.php:183
916
  msgctxt "Help tab FAQ link"
917
  msgid "View all FAQs >"
918
  msgstr "Ver todos los FAQs >"
919
 
920
- #: templates/panel/help-tab.php:192
921
  msgctxt "Help tab submit ticket title"
922
  msgid "Need help?"
923
  msgstr "¿Necesitas ayuda?"
924
 
925
- #: templates/panel/help-tab.php:195
926
  msgctxt "Help tab submit ticket description"
927
  msgid ""
928
  "If you are experiencing any technical issues, ask for help from our "
@@ -933,11 +962,48 @@ msgstr ""
933
  "Envía un ticket a través de nuestro servicio de asistencia y te ayudaremos "
934
  "lo antes posible."
935
 
936
- #: templates/panel/help-tab.php:203
937
  msgctxt "Help tab submit ticket button"
938
  msgid "Submit a ticket"
939
  msgstr "Enviar ticket"
940
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
941
  #: templates/panel/premium-tab.php:30
942
  msgctxt "Premium Tab"
943
  msgid "Get the premium version to unlock advanced features"
@@ -954,97 +1020,103 @@ msgid "Plugin premium features images"
954
  msgstr "Imágenes de la versión premium"
955
 
956
  #. translators: alt attribute of main image tag.
957
- #: templates/panel/premium-tab.php:51
958
  msgctxt "Premium Tab"
959
  msgid "And so much more!"
960
  msgstr "¡Y mucho más!"
961
 
962
  #: templates/panel/premium-tab.php:53
 
 
 
 
 
 
963
  msgctxt "Premium Tab"
964
  msgid "Check the free vs premium features >"
965
  msgstr "Comprueba las características gratuitas frente a las premium >"
966
 
967
- #: templates/panel/premium-tab.php:58
968
  msgctxt "Premium Tab"
969
  msgid "Get the premium version"
970
  msgstr "Obtén la versión Premium"
971
 
972
- #: yit-functions.php:1926
973
  msgctxt "Post action"
974
  msgid "Preview"
975
  msgstr "Previsualizar"
976
 
977
- #: yit-functions.php:1935
978
  msgctxt "Post action"
979
  msgid "View"
980
  msgstr "Ver"
981
 
982
- #: yit-functions.php:1946
983
  msgctxt "Post action"
984
  msgid "Edit"
985
  msgstr "Editar"
986
 
987
- #: yit-functions.php:1954
988
  msgctxt "Post action"
989
  msgid "Duplicate"
990
  msgstr "Duplicar"
991
 
992
- #: yit-functions.php:1966
993
  msgctxt "Post action"
994
  msgid "Restore"
995
  msgstr "Restaurar"
996
 
997
- #: yit-functions.php:1974
998
  msgctxt "Post action"
999
  msgid "Trash"
1000
  msgstr "A la papelera"
1001
 
1002
- #: yit-functions.php:1991
1003
  msgctxt "Post action"
1004
  msgid "Delete Permanently"
1005
  msgstr "Borrar permanentemente"
1006
 
1007
- #: yit-functions.php:2088
1008
  msgctxt "Term action"
1009
  msgid "View"
1010
  msgstr "Ver"
1011
 
1012
- #: yit-functions.php:2098
1013
  msgctxt "Term action"
1014
  msgid "Edit"
1015
  msgstr "Editar"
1016
 
1017
- #: yit-functions.php:2106
1018
  msgctxt "Term action"
1019
  msgid "Duplicate"
1020
  msgstr "Duplicar"
1021
 
1022
- #: yit-functions.php:2119
1023
  msgctxt "Term action"
1024
  msgid "Delete"
1025
  msgstr "Borrar"
1026
 
1027
- #: yit-plugin.php:84
1028
  msgctxt "Plugin Row Meta"
1029
  msgid "Live Demo"
1030
  msgstr "Demostración en vivo"
1031
 
1032
- #: yit-plugin.php:88
1033
  msgctxt "Plugin Row Meta"
1034
  msgid "Documentation"
1035
  msgstr "Documentación"
1036
 
1037
- #: yit-plugin.php:92
1038
  msgctxt "Plugin Row Meta"
1039
  msgid "Support"
1040
  msgstr "Soporte"
1041
 
1042
- #: yit-plugin.php:96
1043
  msgctxt "Plugin Row Meta"
1044
  msgid "Premium version"
1045
  msgstr "Versión premium"
1046
 
1047
- #: yit-plugin.php:201
1048
  msgctxt "Action links"
1049
  msgid "Settings"
1050
  msgstr "Ajustes"
4
  msgstr ""
5
  "Project-Id-Version: YITH Framework\n"
6
  "Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
7
+ "POT-Creation-Date: 2022-08-02 12:02:23+00:00\n"
8
+ "PO-Revision-Date: 2022-07-06 06:44:36+0000\n"
9
  "Language: es\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
  "X-Generator: GlotPress/3.0.0-alpha.2\n"
15
 
16
+ #: includes/class-yit-assets.php:146 yit-functions.php:2006
17
  msgid "Confirm trash"
18
  msgstr "Confirmar el traslado a la papelera"
19
 
20
+ #: includes/class-yit-assets.php:147
21
  msgid "Are you sure you want to trash the selected items?"
22
  msgstr ""
23
  "¿Estás seguro de que quieres mover a la papelera los elementos seleccionados?"
24
 
25
+ #: includes/class-yit-assets.php:149 includes/class-yit-assets.php:153
26
  #: templates/sysinfo/tabs/main.php:42 templates/sysinfo/tabs/main.php:50
27
+ #: yit-functions.php:2008 yit-functions.php:2026
28
  msgid "No"
29
  msgstr "No"
30
 
31
+ #: includes/class-yit-assets.php:150 yit-functions.php:2024
32
+ #: yit-functions.php:2152
33
  msgid "Confirm delete"
34
  msgstr "Confirmar el borrado"
35
 
36
+ #: includes/class-yit-assets.php:151
37
  msgid "Are you sure you want to delete the selected items?"
38
  msgstr "¿Estás seguro de que quieres borrar los elementos seleccionados?"
39
 
40
+ #: includes/class-yit-assets.php:151 yit-functions.php:1940
41
+ #: yit-functions.php:2100
42
  msgid ""
43
  "This action cannot be undone and you will not be able to recover this data."
44
  msgstr "Esta acción no se puede revertir y no podrá recuperar estos datos."
45
 
46
+ #: includes/class-yit-assets.php:172
47
  msgid "Clear"
48
  msgstr "Borrar"
49
 
50
+ #: includes/class-yit-assets.php:173
51
  msgid "Clear color"
52
  msgstr "Borrar color"
53
 
54
+ #: includes/class-yit-assets.php:174
55
  msgid "Default"
56
  msgstr "Predeterminado"
57
 
58
+ #: includes/class-yit-assets.php:175
59
  msgid "Select default color"
60
  msgstr "Seleccionar color predeterminado"
61
 
62
+ #: includes/class-yit-assets.php:176
63
  msgid "Select Color"
64
  msgstr "Seleccionar color"
65
 
66
+ #: includes/class-yit-assets.php:177
67
  msgid "Color value"
68
  msgstr "Valor del color"
69
 
72
  msgstr ""
73
  "Se ha producido un error en tu solicitud; inténtalo de nuevo más tarde."
74
 
75
+ #: includes/class-yit-plugin-panel-woocommerce.php:430
76
  msgid "The changes you have made will be lost if you leave this page."
77
  msgstr "Los cambios que has hecho se perderán si abandonas esta página."
78
 
84
  msgid "Settings"
85
  msgstr "Ajustes"
86
 
87
+ #: includes/class-yit-plugin-panel.php:455
88
+ #: includes/class-yit-plugin-panel.php:458
89
  msgid "How to install premium version"
90
  msgstr "Cómo instalar la versión premium"
91
 
92
+ #: includes/class-yit-plugin-panel.php:655
93
+ #: includes/class-yit-plugin-subpanel.php:133
94
  msgid "Save Changes"
95
  msgstr "Guardar cambios"
96
 
97
  #: includes/class-yit-plugin-panel.php:663
98
+ #: includes/class-yit-plugin-subpanel.php:140
99
+ #: templates/panel/woocommerce/woocommerce-form.php:15
100
  msgid ""
101
  "If you continue with this action, you will reset all options in this page."
102
  msgstr ""
104
  "página."
105
 
106
  #: includes/class-yit-plugin-panel.php:663
107
+ #: includes/class-yit-plugin-subpanel.php:140
108
+ #: templates/panel/woocommerce/woocommerce-form.php:15
109
  msgid "Are you sure?"
110
  msgstr "¿Estás seguro?"
111
 
112
  #: includes/class-yit-plugin-panel.php:667
113
+ #: includes/class-yit-plugin-subpanel.php:143
114
  msgid "Reset to default"
115
  msgstr "Restablecer valores predeterminados"
116
 
117
+ #: includes/class-yit-plugin-panel.php:1074
118
  msgid ""
119
  "The element you have entered already exists. Please, enter another name."
120
  msgstr ""
121
  "El elemento que has introducido ya existe. Por favor, introduce otro nombre."
122
 
123
+ #: includes/class-yit-plugin-panel.php:1075
124
  msgid "Settings saved"
125
  msgstr "Ajustes guardados"
126
 
127
+ #: includes/class-yit-plugin-panel.php:1076
128
  msgid "Settings reset"
129
  msgstr "Restablecer ajustes"
130
 
131
+ #: includes/class-yit-plugin-panel.php:1077
132
  msgid "Element deleted correctly."
133
  msgstr "Elemento eliminado correctamente."
134
 
135
+ #: includes/class-yit-plugin-panel.php:1078
136
+ #: includes/class-yit-plugin-panel.php:1079
137
  msgid "Element updated correctly."
138
  msgstr "Elemento actualizado correctamente."
139
 
140
+ #: includes/class-yit-plugin-panel.php:1080
141
  msgid "Database imported correctly."
142
  msgstr "Base de datos importada correctamente."
143
 
144
+ #: includes/class-yit-plugin-panel.php:1081
145
  msgid "An error has occurred during import. Please try again."
146
  msgstr ""
147
  "Ha ocurrido un error durante la importación. Por favor, inténtalo de nuevo."
148
 
149
+ #: includes/class-yit-plugin-panel.php:1082
150
  msgid "The added file is not valid."
151
  msgstr "El archivo añadido no es válido."
152
 
153
+ #: includes/class-yit-plugin-panel.php:1083
154
  msgid "Sorry, import is disabled."
155
  msgstr "Lo siento, la importación está desactivada."
156
 
157
+ #: includes/class-yit-plugin-panel.php:1084
158
  msgid "Sorting successful."
159
  msgstr "Clasificación realizada con éxito"
160
 
161
+ #: includes/class-yit-plugin-panel.php:1573
162
  msgid "We need your support"
163
  msgstr "Necesitamos tu apoyo"
164
 
165
+ #: includes/class-yit-plugin-panel.php:1574
166
  msgid "to keep updating and improving the plugin. Please,"
167
  msgstr "para que podamos seguir actualizando y mejorando el plugin. Por favor,"
168
 
169
+ #: includes/class-yit-plugin-panel.php:1576
170
  msgid "help us by leaving a good review"
171
  msgstr "ayúdanos dejando una buena valoración"
172
 
173
+ #: includes/class-yit-plugin-panel.php:1577
174
  msgid ":) Thanks!"
175
  msgstr ":) ¡Gracias!"
176
 
211
  "WooCommerce Ajax Search, etc.) serán movidos de la ubicación previa a la "
212
  "pestaña de YITH plugins."
213
 
214
+ #: includes/class-yith-bh-onboarding.php:85
215
+ msgid "It is not possible save the options"
216
+ msgstr ""
217
+
218
  #: includes/class-yith-dashboard.php:35
219
  msgid "YITH Latest Updates"
220
  msgstr "Últimas actualizaciones de YITH"
414
  "La comprobación del sistema no ha podido determinar qué versión de %1$s está "
415
  "instalada debido a un error entre tu sitio y nuestro servidor."
416
 
417
+ #: templates/bh-onboarding/onboarding-tabs.php:63
418
+ msgid "Save"
419
+ msgstr ""
420
+
421
  #: templates/fields/ajax-customers.php:41
422
  msgid "Search for a customer..."
423
  msgstr "Buscar un cliente..."
545
  msgid "Reset"
546
  msgstr "Restablecer"
547
 
548
+ #: templates/panel/woocommerce/woocommerce-form.php:29
549
+ #: templates/panel/woocommerce/woocommerce-form.php:33
550
  msgid "Save Options"
551
  msgstr "Guardar Opciones"
552
 
553
+ #: templates/panel/woocommerce/woocommerce-form.php:33
554
  msgid "Options Saved"
555
  msgstr "Opciones guardadas"
556
 
557
+ #: templates/panel/woocommerce/woocommerce-form.php:43
558
  msgid "Reset Defaults"
559
  msgstr "Restablecer valores predeterminados"
560
 
681
  msgstr "Datos: %1$.2fMB | Índice: %2$.2fMB | Libre: %3$.2fMB | Motor: %4$s"
682
 
683
  #. translators: %s is the title of the post object.
684
+ #: yit-functions.php:1938
685
  msgid "Are you sure you want to move \"%s\" to trash?"
686
  msgstr "¿Estás seguro de que quieres mover \"%s\" a la papelera?"
687
 
688
  #. translators: %s is the title of the post object.
689
+ #: yit-functions.php:1940 yit-functions.php:2100
690
  msgid "Are you sure you want to delete \"%s\"?"
691
  msgstr "¿Estás seguro de que quieres borrar \"%s\"?"
692
 
693
+ #: yit-functions.php:2038 yit-functions.php:2046 yit-functions.php:2163
694
  msgid "Further actions"
695
  msgstr "Otras acciones"
696
 
697
+ #: yit-plugin.php:233
698
  msgid "License"
699
  msgstr "Licencia"
700
 
701
+ #. translators: 1. Plugin(s) name(s).
702
+ #: yit-plugin.php:272
703
+ msgid ""
704
+ "%s was deactivated as you're running an higher tier version of the same "
705
+ "plugin."
706
+ msgid_plural ""
707
+ "%s were deactivated as you're running higher tier versions of the same "
708
+ "plugins."
709
+ msgstr[0] ""
710
+ "%s fue desactivado ya que estás ejecutando una versión superior del mismo "
711
+ "plugin."
712
+ msgstr[1] ""
713
+ "%s fueron desactivados ya que estás ejecutando una versión superior de los "
714
+ "mismos plugins."
715
+
716
  #. Author of the plugin/theme
717
  msgid "YITH"
718
  msgstr "YITH"
728
  msgid "YITH"
729
  msgstr "YITH"
730
 
731
+ #: includes/class-yit-assets.php:134
732
  msgctxt "Button text"
733
  msgid "Confirm"
734
  msgstr "Confirmar"
735
 
736
+ #: includes/class-yit-assets.php:135
737
  msgctxt "Button text"
738
  msgid "Cancel"
739
  msgstr "Cancelar"
740
 
741
+ #: includes/class-yit-assets.php:148 yit-functions.php:2009
742
  msgctxt "Trash confirmation action"
743
  msgid "Yes, move to trash"
744
  msgstr "Sí, mover a la papelera"
745
 
746
+ #: includes/class-yit-assets.php:152 yit-functions.php:2027
747
+ #: yit-functions.php:2154
748
  msgctxt "Delete confirmation action"
749
  msgid "Yes, delete"
750
  msgstr "Si, borrar"
751
 
 
 
 
 
 
752
  #. translators: 1. Plugin name.
753
+ #: includes/class-yit-plugin-panel.php:803
754
  msgctxt "Help tab default title"
755
  msgid "Thank you for purchasing %s!"
756
  msgstr "¡Gracias por comprar %s!"
757
 
758
+ #: includes/class-yit-plugin-panel.php:803
759
+ #, fuzzy
760
+ msgctxt "Help tab default title"
761
+ msgid "Thank you for using %s!"
762
+ msgstr "¡Gracias por comprar %s!"
763
+
764
+ #: includes/class-yit-plugin-panel.php:815
765
  msgctxt "Help tab default description"
766
  msgid ""
767
  "We want to help you enjoy a wonderful experience with all of our products."
769
  "Queremos ayudarte a disfrutar de una experiencia maravillosa con todos "
770
  "nuestros productos."
771
 
772
+ #: includes/class-yit-plugin-panel.php:866
773
  msgctxt "Premium tab name"
774
  msgid "Get premium"
775
  msgstr "Obtén premium"
776
 
777
+ #: includes/class-yit-plugin-panel.php:878
778
+ msgctxt "Help tab name"
779
+ msgid "Help"
780
+ msgstr "Ayuda"
781
+
782
  #: includes/class-yith-dashboard.php:96
783
  msgctxt "Plugin FW"
784
  msgid "View Changelog"
892
  msgstr "NO"
893
 
894
  #. translators: 1. Url to EN playlist.
895
+ #: templates/panel/help-tab.php:89
896
  msgctxt "Help tab view all video link"
897
  msgid ""
898
  "Check the full <a href=\"%s\" target=\"_blank\">Playlist on Youtube</a> to "
901
  "Consulta la <a href=\"%s\" target=\"_blank\">Lista de reproducción en "
902
  "Youtube</a> para saber más >"
903
 
904
+ #: templates/panel/help-tab.php:96
905
  msgctxt "Help tab Watch Videotutorials link"
906
  msgid "Videos are also available in:"
907
  msgstr "Los vídeos también están disponibles en:"
908
 
909
+ #: templates/panel/help-tab.php:126
910
  msgctxt "Help tab Read Documentation link"
911
  msgid "Read the documentation"
912
  msgstr "Lee la documentación"
913
 
914
+ #: templates/panel/help-tab.php:129
915
  msgctxt "Help tab Read Documentation link"
916
  msgid "to learn how the plugin works from the basics."
917
  msgstr "para aprender cómo funciona el plugin desde lo más básico."
918
 
919
+ #: templates/panel/help-tab.php:139
920
  msgctxt "Help tab Watch video tutorials link"
921
  msgid "Watch our video tutorials"
922
  msgstr "Ve nuestros videotutoriales"
923
 
924
+ #: templates/panel/help-tab.php:142
925
  msgctxt "Help tab Watch video tutorials link"
926
  msgid "to see some helpful use cases."
927
  msgstr "para ver algunos casos de uso útiles."
928
 
929
+ #: templates/panel/help-tab.php:152
930
  msgctxt "Help tab view FAQs link"
931
  msgid "Check the FAQs"
932
  msgstr "Comprueba los FAQ"
933
 
934
+ #: templates/panel/help-tab.php:155
935
  msgctxt "Help tab view FAQs link"
936
  msgid "to find answers to your doubts."
937
  msgstr "para encontrar respuestas a tus dudas."
938
 
939
+ #: templates/panel/help-tab.php:170
940
  msgctxt "Help tab FAQ title"
941
  msgid "Last FAQs in our Help Center"
942
  msgstr "Últimos FAQs en nuestro Centro de Ayuda"
943
 
944
+ #: templates/panel/help-tab.php:184
945
  msgctxt "Help tab FAQ link"
946
  msgid "View all FAQs >"
947
  msgstr "Ver todos los FAQs >"
948
 
949
+ #: templates/panel/help-tab.php:193
950
  msgctxt "Help tab submit ticket title"
951
  msgid "Need help?"
952
  msgstr "¿Necesitas ayuda?"
953
 
954
+ #: templates/panel/help-tab.php:196
955
  msgctxt "Help tab submit ticket description"
956
  msgid ""
957
  "If you are experiencing any technical issues, ask for help from our "
962
  "Envía un ticket a través de nuestro servicio de asistencia y te ayudaremos "
963
  "lo antes posible."
964
 
965
+ #: templates/panel/help-tab.php:204
966
  msgctxt "Help tab submit ticket button"
967
  msgid "Submit a ticket"
968
  msgstr "Enviar ticket"
969
 
970
+ #: templates/panel/help-tab.php:216 templates/panel/help-tab.php:218
971
+ #: templates/panel/help-tab.php:223
972
+ #, fuzzy
973
+ msgctxt "Help tab documentation"
974
+ msgid "Read the plugin documentation"
975
+ msgstr "Lee la documentación"
976
+
977
+ #: templates/panel/help-tab.php:220
978
+ #, fuzzy
979
+ msgctxt "Help tab documentation"
980
+ msgid "to learn how it works from the basics."
981
+ msgstr "para aprender cómo funciona el plugin desde lo más básico."
982
+
983
+ #: templates/panel/help-tab.php:231 templates/panel/help-tab.php:233
984
+ #, fuzzy
985
+ msgctxt "Help tab support"
986
+ msgid "Need some help?"
987
+ msgstr "¿Necesitas ayuda?"
988
+
989
+ #: templates/panel/help-tab.php:235
990
+ msgctxt "Help tab support"
991
+ msgid "From DIY to full-service help"
992
+ msgstr ""
993
+
994
+ #: templates/panel/help-tab.php:238
995
+ msgctxt "Help tab support"
996
+ msgid ""
997
+ "Call or chat 24/7 with our support agents, or let our experts build your "
998
+ "site."
999
+ msgstr ""
1000
+
1001
+ #: templates/panel/help-tab.php:241
1002
+ #, fuzzy
1003
+ msgctxt "Help tab support"
1004
+ msgid "Yes, I need help"
1005
+ msgstr "¿Necesitas ayuda?"
1006
+
1007
  #: templates/panel/premium-tab.php:30
1008
  msgctxt "Premium Tab"
1009
  msgid "Get the premium version to unlock advanced features"
1020
  msgstr "Imágenes de la versión premium"
1021
 
1022
  #. translators: alt attribute of main image tag.
1023
+ #: templates/panel/premium-tab.php:51 templates/panel/premium-tab.php:58
1024
  msgctxt "Premium Tab"
1025
  msgid "And so much more!"
1026
  msgstr "¡Y mucho más!"
1027
 
1028
  #: templates/panel/premium-tab.php:53
1029
+ #, fuzzy
1030
+ msgctxt "Premium Tab"
1031
+ msgid "Check the premium features >"
1032
+ msgstr "Comprueba las características gratuitas frente a las premium >"
1033
+
1034
+ #: templates/panel/premium-tab.php:60
1035
  msgctxt "Premium Tab"
1036
  msgid "Check the free vs premium features >"
1037
  msgstr "Comprueba las características gratuitas frente a las premium >"
1038
 
1039
+ #: templates/panel/premium-tab.php:65
1040
  msgctxt "Premium Tab"
1041
  msgid "Get the premium version"
1042
  msgstr "Obtén la versión Premium"
1043
 
1044
+ #: yit-functions.php:1952
1045
  msgctxt "Post action"
1046
  msgid "Preview"
1047
  msgstr "Previsualizar"
1048
 
1049
+ #: yit-functions.php:1961
1050
  msgctxt "Post action"
1051
  msgid "View"
1052
  msgstr "Ver"
1053
 
1054
+ #: yit-functions.php:1972
1055
  msgctxt "Post action"
1056
  msgid "Edit"
1057
  msgstr "Editar"
1058
 
1059
+ #: yit-functions.php:1980
1060
  msgctxt "Post action"
1061
  msgid "Duplicate"
1062
  msgstr "Duplicar"
1063
 
1064
+ #: yit-functions.php:1992
1065
  msgctxt "Post action"
1066
  msgid "Restore"
1067
  msgstr "Restaurar"
1068
 
1069
+ #: yit-functions.php:2000
1070
  msgctxt "Post action"
1071
  msgid "Trash"
1072
  msgstr "A la papelera"
1073
 
1074
+ #: yit-functions.php:2017
1075
  msgctxt "Post action"
1076
  msgid "Delete Permanently"
1077
  msgstr "Borrar permanentemente"
1078
 
1079
+ #: yit-functions.php:2114
1080
  msgctxt "Term action"
1081
  msgid "View"
1082
  msgstr "Ver"
1083
 
1084
+ #: yit-functions.php:2124
1085
  msgctxt "Term action"
1086
  msgid "Edit"
1087
  msgstr "Editar"
1088
 
1089
+ #: yit-functions.php:2132
1090
  msgctxt "Term action"
1091
  msgid "Duplicate"
1092
  msgstr "Duplicar"
1093
 
1094
+ #: yit-functions.php:2145
1095
  msgctxt "Term action"
1096
  msgid "Delete"
1097
  msgstr "Borrar"
1098
 
1099
+ #: yit-plugin.php:85
1100
  msgctxt "Plugin Row Meta"
1101
  msgid "Live Demo"
1102
  msgstr "Demostración en vivo"
1103
 
1104
+ #: yit-plugin.php:89
1105
  msgctxt "Plugin Row Meta"
1106
  msgid "Documentation"
1107
  msgstr "Documentación"
1108
 
1109
+ #: yit-plugin.php:93
1110
  msgctxt "Plugin Row Meta"
1111
  msgid "Support"
1112
  msgstr "Soporte"
1113
 
1114
+ #: yit-plugin.php:97
1115
  msgctxt "Plugin Row Meta"
1116
  msgid "Premium version"
1117
  msgstr "Versión premium"
1118
 
1119
+ #: yit-plugin.php:229
1120
  msgctxt "Action links"
1121
  msgid "Settings"
1122
  msgstr "Ajustes"
plugin-fw/languages/yith-plugin-fw-it_IT.mo CHANGED
Binary file
plugin-fw/languages/yith-plugin-fw-it_IT.po CHANGED
@@ -4,8 +4,8 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: YITH Framework\n"
6
  "Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
7
- "POT-Creation-Date: 2022-04-13 12:14:07+00:00\n"
8
- "PO-Revision-Date: 2022-03-21 13:01:47+0000\n"
9
  "Language: it\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -13,58 +13,58 @@ msgstr ""
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
  "X-Generator: GlotPress/3.0.0-alpha.2\n"
15
 
16
- #: includes/class-yit-assets.php:144 yit-functions.php:1980
17
  msgid "Confirm trash"
18
  msgstr "Conferma eliminazione"
19
 
20
- #: includes/class-yit-assets.php:145
21
  msgid "Are you sure you want to trash the selected items?"
22
  msgstr "Se sicuro di voler spostare nel cestino gli elementi selezionati?"
23
 
24
- #: includes/class-yit-assets.php:147 includes/class-yit-assets.php:151
25
  #: templates/sysinfo/tabs/main.php:42 templates/sysinfo/tabs/main.php:50
26
- #: yit-functions.php:1982 yit-functions.php:2000
27
  msgid "No"
28
  msgstr "No"
29
 
30
- #: includes/class-yit-assets.php:148 yit-functions.php:1998
31
- #: yit-functions.php:2126
32
  msgid "Confirm delete"
33
  msgstr "Conferma eliminazione"
34
 
35
- #: includes/class-yit-assets.php:149
36
  msgid "Are you sure you want to delete the selected items?"
37
  msgstr "Se sicuro di voler eliminare gli elementi selezionati?"
38
 
39
- #: includes/class-yit-assets.php:149 yit-functions.php:1914
40
- #: yit-functions.php:2074
41
  msgid ""
42
  "This action cannot be undone and you will not be able to recover this data."
43
  msgstr ""
44
  "Quest'azione non può essere annullata e non sarà possibile recuperare questi "
45
  "dati."
46
 
47
- #: includes/class-yit-assets.php:162
48
  msgid "Clear"
49
  msgstr "Rimuovi"
50
 
51
- #: includes/class-yit-assets.php:163
52
  msgid "Clear color"
53
  msgstr "Rimuovi colore"
54
 
55
- #: includes/class-yit-assets.php:164
56
  msgid "Default"
57
  msgstr "Predefinito"
58
 
59
- #: includes/class-yit-assets.php:165
60
  msgid "Select default color"
61
  msgstr "Seleziona il colore predefinito"
62
 
63
- #: includes/class-yit-assets.php:166
64
  msgid "Select Color"
65
  msgstr "Seleziona il colore"
66
 
67
- #: includes/class-yit-assets.php:167
68
  msgid "Color value"
69
  msgstr "Valore del colore"
70
 
@@ -72,7 +72,7 @@ msgstr "Valore del colore"
72
  msgid "There was an error with your request; please try again later."
73
  msgstr "Si è verificato un errore con la tua richiesta. Riprova più tardi."
74
 
75
- #: includes/class-yit-plugin-panel-woocommerce.php:429
76
  msgid "The changes you have made will be lost if you leave this page."
77
  msgstr "Perderai tutti i cambiamenti effettuati se lasci questa pagina."
78
 
@@ -84,19 +84,19 @@ msgstr "Impostazioni plugin"
84
  msgid "Settings"
85
  msgstr "Impostazioni"
86
 
87
- #: includes/class-yit-plugin-panel.php:454
88
- #: includes/class-yit-plugin-panel.php:457
89
  msgid "How to install premium version"
90
  msgstr "Come installare la versione premium"
91
 
92
- #: includes/class-yit-plugin-panel.php:658
93
- #: includes/class-yit-plugin-subpanel.php:132
94
  msgid "Save Changes"
95
  msgstr "Salva modifiche"
96
 
97
  #: includes/class-yit-plugin-panel.php:663
98
- #: includes/class-yit-plugin-subpanel.php:136
99
- #: templates/panel/woocommerce/woocommerce-form.php:14
100
  msgid ""
101
  "If you continue with this action, you will reset all options in this page."
102
  msgstr ""
@@ -104,71 +104,71 @@ msgstr ""
104
  "reimpostate."
105
 
106
  #: includes/class-yit-plugin-panel.php:663
107
- #: includes/class-yit-plugin-subpanel.php:136
108
- #: templates/panel/woocommerce/woocommerce-form.php:14
109
  msgid "Are you sure?"
110
  msgstr "Sei sicuro?"
111
 
112
  #: includes/class-yit-plugin-panel.php:667
113
- #: includes/class-yit-plugin-subpanel.php:139
114
  msgid "Reset to default"
115
  msgstr "Ripristina configurazione predefinita"
116
 
117
- #: includes/class-yit-plugin-panel.php:1047
118
  msgid ""
119
  "The element you have entered already exists. Please, enter another name."
120
  msgstr "L'elemento inserito esiste già. Per favore, inserisci un altro nome."
121
 
122
- #: includes/class-yit-plugin-panel.php:1048
123
  msgid "Settings saved"
124
  msgstr "Impostazioni salvate"
125
 
126
- #: includes/class-yit-plugin-panel.php:1049
127
  msgid "Settings reset"
128
  msgstr "Impostazioni azzerate"
129
 
130
- #: includes/class-yit-plugin-panel.php:1050
131
  msgid "Element deleted correctly."
132
  msgstr "Elemento rimosso correttamente."
133
 
134
- #: includes/class-yit-plugin-panel.php:1051
135
- #: includes/class-yit-plugin-panel.php:1052
136
  msgid "Element updated correctly."
137
  msgstr "Elemento aggiornato correttamente."
138
 
139
- #: includes/class-yit-plugin-panel.php:1053
140
  msgid "Database imported correctly."
141
  msgstr "Database importato correttamente."
142
 
143
- #: includes/class-yit-plugin-panel.php:1054
144
  msgid "An error has occurred during import. Please try again."
145
  msgstr "Si è verificato un errore durante l'importazione. Prova di nuovo."
146
 
147
- #: includes/class-yit-plugin-panel.php:1055
148
  msgid "The added file is not valid."
149
  msgstr "Il file aggiunto non è valido."
150
 
151
- #: includes/class-yit-plugin-panel.php:1056
152
  msgid "Sorry, import is disabled."
153
  msgstr "Ci dispiace, l'importazione è disabilitata."
154
 
155
- #: includes/class-yit-plugin-panel.php:1057
156
  msgid "Sorting successful."
157
  msgstr "Ordinamento effettuato con successo."
158
 
159
- #: includes/class-yit-plugin-panel.php:1525
160
  msgid "We need your support"
161
  msgstr "Abbiamo bisogno del tuo sostegno"
162
 
163
- #: includes/class-yit-plugin-panel.php:1526
164
  msgid "to keep updating and improving the plugin. Please,"
165
  msgstr "per poter continuare ad aggiornare e migliorare il plugin."
166
 
167
- #: includes/class-yit-plugin-panel.php:1528
168
  msgid "help us by leaving a good review"
169
  msgstr "Puoi darci una mano lasciando una recensione positiva"
170
 
171
- #: includes/class-yit-plugin-panel.php:1529
172
  msgid ":) Thanks!"
173
  msgstr ":) Grazie!"
174
 
@@ -208,6 +208,10 @@ msgstr ""
208
  "(come per YITH WooCommerce Wishlist, YITH WooCommerce Ajax Search, etc.) "
209
  "saranno spostate dalla posizione precedente al menù YITH."
210
 
 
 
 
 
211
  #: includes/class-yith-dashboard.php:35
212
  msgid "YITH Latest Updates"
213
  msgstr "Ultimi aggiornamenti da YITH"
@@ -408,6 +412,10 @@ msgstr ""
408
  "Non ci è stato possibile determinare quale versione di %1$s è installata a "
409
  "causa di un problema di connessione fra il tuo sito e il nostro server."
410
 
 
 
 
 
411
  #: templates/fields/ajax-customers.php:41
412
  msgid "Search for a customer..."
413
  msgstr "Cerca un cliente..."
@@ -535,16 +543,16 @@ msgstr "Carica"
535
  msgid "Reset"
536
  msgstr "Ripristina"
537
 
538
- #: templates/panel/woocommerce/woocommerce-form.php:28
539
- #: templates/panel/woocommerce/woocommerce-form.php:32
540
  msgid "Save Options"
541
  msgstr "Salva le opzioni"
542
 
543
- #: templates/panel/woocommerce/woocommerce-form.php:32
544
  msgid "Options Saved"
545
  msgstr "Opzioni salvate"
546
 
547
- #: templates/panel/woocommerce/woocommerce-form.php:38
548
  msgid "Reset Defaults"
549
  msgstr "Ripristina impostazioni iniziali"
550
 
@@ -673,23 +681,38 @@ msgid "Data: %1$.2fMB | Index: %2$.2fMB | Free: %3$.2fMB | Engine: %4$s"
673
  msgstr "Dati: %1$.2fMB | Indice: %2$.2fMB | Libero: %3$.2fMB | Engine: %4$s"
674
 
675
  #. translators: %s is the title of the post object.
676
- #: yit-functions.php:1912
677
  msgid "Are you sure you want to move \"%s\" to trash?"
678
  msgstr "Sei sicuro di voler spostare \"%s\" nel cestino?"
679
 
680
  #. translators: %s is the title of the post object.
681
- #: yit-functions.php:1914 yit-functions.php:2074
682
  msgid "Are you sure you want to delete \"%s\"?"
683
  msgstr "Sei sicuro di voler eliminare \"%s\"?"
684
 
685
- #: yit-functions.php:2012 yit-functions.php:2020 yit-functions.php:2137
686
  msgid "Further actions"
687
  msgstr "Altre azioni"
688
 
689
- #: yit-plugin.php:205
690
  msgid "License"
691
  msgstr "Chiave di licenza"
692
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
693
  #. Author of the plugin/theme
694
  msgid "YITH"
695
  msgstr "YITH"
@@ -705,39 +728,40 @@ msgctxt "[gutenberg]: Category Name"
705
  msgid "YITH"
706
  msgstr "YITH"
707
 
708
- #: includes/class-yit-assets.php:132
709
  msgctxt "Button text"
710
  msgid "Confirm"
711
  msgstr "Conferma"
712
 
713
- #: includes/class-yit-assets.php:133
714
  msgctxt "Button text"
715
  msgid "Cancel"
716
  msgstr "Annulla"
717
 
718
- #: includes/class-yit-assets.php:146 yit-functions.php:1983
719
  msgctxt "Trash confirmation action"
720
  msgid "Yes, move to trash"
721
  msgstr "Sì, sposta nel cestino"
722
 
723
- #: includes/class-yit-assets.php:150 yit-functions.php:2001
724
- #: yit-functions.php:2128
725
  msgctxt "Delete confirmation action"
726
  msgid "Yes, delete"
727
  msgstr "Sì, elimina"
728
 
729
- #: includes/class-yit-plugin-panel.php:491
730
- msgctxt "Help tab name"
731
- msgid "Help"
732
- msgstr "Help"
733
-
734
  #. translators: 1. Plugin name.
735
- #: includes/class-yit-plugin-panel.php:805
736
  msgctxt "Help tab default title"
737
  msgid "Thank you for purchasing %s!"
738
  msgstr "Grazie per aver acquistato %s!"
739
 
740
- #: includes/class-yit-plugin-panel.php:806
 
 
 
 
 
 
741
  msgctxt "Help tab default description"
742
  msgid ""
743
  "We want to help you enjoy a wonderful experience with all of our products."
@@ -745,11 +769,16 @@ msgstr ""
745
  "Vogliamo aiutarti ad avere un'esperienza fantastica con tutti i nostri "
746
  "prodotti."
747
 
748
- #: includes/class-yit-plugin-panel.php:853
749
  msgctxt "Premium tab name"
750
  msgid "Get premium"
751
  msgstr "Diventa premium"
752
 
 
 
 
 
 
753
  #: includes/class-yith-dashboard.php:96
754
  msgctxt "Plugin FW"
755
  msgid "View Changelog"
@@ -864,7 +893,7 @@ msgid "NO"
864
  msgstr "NO"
865
 
866
  #. translators: 1. Url to EN playlist.
867
- #: templates/panel/help-tab.php:87
868
  msgctxt "Help tab view all video link"
869
  msgid ""
870
  "Check the full <a href=\"%s\" target=\"_blank\">Playlist on Youtube</a> to "
@@ -873,57 +902,57 @@ msgstr ""
873
  "Per saperne di più, vedi la <a href=\"%s\" target=\"_blank\">Playlist "
874
  "completa su Youtube</a>>"
875
 
876
- #: templates/panel/help-tab.php:94
877
  msgctxt "Help tab Watch Videotutorials link"
878
  msgid "Videos are also available in:"
879
  msgstr "I video sono disponibili anche in:"
880
 
881
- #: templates/panel/help-tab.php:124
882
  msgctxt "Help tab Read Documentation link"
883
  msgid "Read the documentation"
884
  msgstr "Consulta la documentazione"
885
 
886
- #: templates/panel/help-tab.php:127
887
  msgctxt "Help tab Read Documentation link"
888
  msgid "to learn how the plugin works from the basics."
889
  msgstr "per scoprire dalle basi come funziona il plugin."
890
 
891
- #: templates/panel/help-tab.php:137
892
  msgctxt "Help tab Watch video tutorials link"
893
  msgid "Watch our video tutorials"
894
  msgstr "Guarda i nostri video tutorial"
895
 
896
- #: templates/panel/help-tab.php:140
897
  msgctxt "Help tab Watch video tutorials link"
898
  msgid "to see some helpful use cases."
899
  msgstr "per vedere dei casi d'utilizzo utili."
900
 
901
- #: templates/panel/help-tab.php:150
902
  msgctxt "Help tab view FAQs link"
903
  msgid "Check the FAQs"
904
  msgstr "Controlla le FAQ"
905
 
906
- #: templates/panel/help-tab.php:153
907
  msgctxt "Help tab view FAQs link"
908
  msgid "to find answers to your doubts."
909
  msgstr "per trovare le risposte ai tuoi dubbi."
910
 
911
- #: templates/panel/help-tab.php:169
912
  msgctxt "Help tab FAQ title"
913
  msgid "Last FAQs in our Help Center"
914
  msgstr "Ultime FAQ nel nostro Centro Assistenza"
915
 
916
- #: templates/panel/help-tab.php:183
917
  msgctxt "Help tab FAQ link"
918
  msgid "View all FAQs >"
919
  msgstr "Vedi tutte le FAQ"
920
 
921
- #: templates/panel/help-tab.php:192
922
  msgctxt "Help tab submit ticket title"
923
  msgid "Need help?"
924
  msgstr "Ti serve aiuto?"
925
 
926
- #: templates/panel/help-tab.php:195
927
  msgctxt "Help tab submit ticket description"
928
  msgid ""
929
  "If you are experiencing any technical issues, ask for help from our "
@@ -934,11 +963,48 @@ msgstr ""
934
  "Invia un ticket dalla nostra piattaforma di supporto e ti daremo assistenza "
935
  "il più presto possibile."
936
 
937
- #: templates/panel/help-tab.php:203
938
  msgctxt "Help tab submit ticket button"
939
  msgid "Submit a ticket"
940
  msgstr "Invia un ticket"
941
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
942
  #: templates/panel/premium-tab.php:30
943
  msgctxt "Premium Tab"
944
  msgid "Get the premium version to unlock advanced features"
@@ -955,97 +1021,103 @@ msgid "Plugin premium features images"
955
  msgstr "Immagini funzionalità premium"
956
 
957
  #. translators: alt attribute of main image tag.
958
- #: templates/panel/premium-tab.php:51
959
  msgctxt "Premium Tab"
960
  msgid "And so much more!"
961
  msgstr "E molto altro!"
962
 
963
  #: templates/panel/premium-tab.php:53
 
 
 
 
 
 
964
  msgctxt "Premium Tab"
965
  msgid "Check the free vs premium features >"
966
  msgstr "Confronta le funzionalità gratuite e premium >"
967
 
968
- #: templates/panel/premium-tab.php:58
969
  msgctxt "Premium Tab"
970
  msgid "Get the premium version"
971
  msgstr "Ottieni la versione premium"
972
 
973
- #: yit-functions.php:1926
974
  msgctxt "Post action"
975
  msgid "Preview"
976
  msgstr "Anteprima"
977
 
978
- #: yit-functions.php:1935
979
  msgctxt "Post action"
980
  msgid "View"
981
  msgstr "Visualizza"
982
 
983
- #: yit-functions.php:1946
984
  msgctxt "Post action"
985
  msgid "Edit"
986
  msgstr "Modifica"
987
 
988
- #: yit-functions.php:1954
989
  msgctxt "Post action"
990
  msgid "Duplicate"
991
  msgstr "Duplica"
992
 
993
- #: yit-functions.php:1966
994
  msgctxt "Post action"
995
  msgid "Restore"
996
  msgstr "Ripristina"
997
 
998
- #: yit-functions.php:1974
999
  msgctxt "Post action"
1000
  msgid "Trash"
1001
  msgstr "Cestina"
1002
 
1003
- #: yit-functions.php:1991
1004
  msgctxt "Post action"
1005
  msgid "Delete Permanently"
1006
  msgstr "Cancella definitivamente"
1007
 
1008
- #: yit-functions.php:2088
1009
  msgctxt "Term action"
1010
  msgid "View"
1011
  msgstr "Visualizza"
1012
 
1013
- #: yit-functions.php:2098
1014
  msgctxt "Term action"
1015
  msgid "Edit"
1016
  msgstr "Modifica"
1017
 
1018
- #: yit-functions.php:2106
1019
  msgctxt "Term action"
1020
  msgid "Duplicate"
1021
  msgstr "Duplica"
1022
 
1023
- #: yit-functions.php:2119
1024
  msgctxt "Term action"
1025
  msgid "Delete"
1026
  msgstr "Elimina"
1027
 
1028
- #: yit-plugin.php:84
1029
  msgctxt "Plugin Row Meta"
1030
  msgid "Live Demo"
1031
  msgstr "Live Demo"
1032
 
1033
- #: yit-plugin.php:88
1034
  msgctxt "Plugin Row Meta"
1035
  msgid "Documentation"
1036
  msgstr "Documentazione"
1037
 
1038
- #: yit-plugin.php:92
1039
  msgctxt "Plugin Row Meta"
1040
  msgid "Support"
1041
  msgstr "Assistenza"
1042
 
1043
- #: yit-plugin.php:96
1044
  msgctxt "Plugin Row Meta"
1045
  msgid "Premium version"
1046
  msgstr "Versione premium"
1047
 
1048
- #: yit-plugin.php:201
1049
  msgctxt "Action links"
1050
  msgid "Settings"
1051
  msgstr "Impostazioni"
4
  msgstr ""
5
  "Project-Id-Version: YITH Framework\n"
6
  "Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
7
+ "POT-Creation-Date: 2022-08-02 12:02:23+00:00\n"
8
+ "PO-Revision-Date: 2022-07-06 07:17:32+0000\n"
9
  "Language: it\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
  "X-Generator: GlotPress/3.0.0-alpha.2\n"
15
 
16
+ #: includes/class-yit-assets.php:146 yit-functions.php:2006
17
  msgid "Confirm trash"
18
  msgstr "Conferma eliminazione"
19
 
20
+ #: includes/class-yit-assets.php:147
21
  msgid "Are you sure you want to trash the selected items?"
22
  msgstr "Se sicuro di voler spostare nel cestino gli elementi selezionati?"
23
 
24
+ #: includes/class-yit-assets.php:149 includes/class-yit-assets.php:153
25
  #: templates/sysinfo/tabs/main.php:42 templates/sysinfo/tabs/main.php:50
26
+ #: yit-functions.php:2008 yit-functions.php:2026
27
  msgid "No"
28
  msgstr "No"
29
 
30
+ #: includes/class-yit-assets.php:150 yit-functions.php:2024
31
+ #: yit-functions.php:2152
32
  msgid "Confirm delete"
33
  msgstr "Conferma eliminazione"
34
 
35
+ #: includes/class-yit-assets.php:151
36
  msgid "Are you sure you want to delete the selected items?"
37
  msgstr "Se sicuro di voler eliminare gli elementi selezionati?"
38
 
39
+ #: includes/class-yit-assets.php:151 yit-functions.php:1940
40
+ #: yit-functions.php:2100
41
  msgid ""
42
  "This action cannot be undone and you will not be able to recover this data."
43
  msgstr ""
44
  "Quest'azione non può essere annullata e non sarà possibile recuperare questi "
45
  "dati."
46
 
47
+ #: includes/class-yit-assets.php:172
48
  msgid "Clear"
49
  msgstr "Rimuovi"
50
 
51
+ #: includes/class-yit-assets.php:173
52
  msgid "Clear color"
53
  msgstr "Rimuovi colore"
54
 
55
+ #: includes/class-yit-assets.php:174
56
  msgid "Default"
57
  msgstr "Predefinito"
58
 
59
+ #: includes/class-yit-assets.php:175
60
  msgid "Select default color"
61
  msgstr "Seleziona il colore predefinito"
62
 
63
+ #: includes/class-yit-assets.php:176
64
  msgid "Select Color"
65
  msgstr "Seleziona il colore"
66
 
67
+ #: includes/class-yit-assets.php:177
68
  msgid "Color value"
69
  msgstr "Valore del colore"
70
 
72
  msgid "There was an error with your request; please try again later."
73
  msgstr "Si è verificato un errore con la tua richiesta. Riprova più tardi."
74
 
75
+ #: includes/class-yit-plugin-panel-woocommerce.php:430
76
  msgid "The changes you have made will be lost if you leave this page."
77
  msgstr "Perderai tutti i cambiamenti effettuati se lasci questa pagina."
78
 
84
  msgid "Settings"
85
  msgstr "Impostazioni"
86
 
87
+ #: includes/class-yit-plugin-panel.php:455
88
+ #: includes/class-yit-plugin-panel.php:458
89
  msgid "How to install premium version"
90
  msgstr "Come installare la versione premium"
91
 
92
+ #: includes/class-yit-plugin-panel.php:655
93
+ #: includes/class-yit-plugin-subpanel.php:133
94
  msgid "Save Changes"
95
  msgstr "Salva modifiche"
96
 
97
  #: includes/class-yit-plugin-panel.php:663
98
+ #: includes/class-yit-plugin-subpanel.php:140
99
+ #: templates/panel/woocommerce/woocommerce-form.php:15
100
  msgid ""
101
  "If you continue with this action, you will reset all options in this page."
102
  msgstr ""
104
  "reimpostate."
105
 
106
  #: includes/class-yit-plugin-panel.php:663
107
+ #: includes/class-yit-plugin-subpanel.php:140
108
+ #: templates/panel/woocommerce/woocommerce-form.php:15
109
  msgid "Are you sure?"
110
  msgstr "Sei sicuro?"
111
 
112
  #: includes/class-yit-plugin-panel.php:667
113
+ #: includes/class-yit-plugin-subpanel.php:143
114
  msgid "Reset to default"
115
  msgstr "Ripristina configurazione predefinita"
116
 
117
+ #: includes/class-yit-plugin-panel.php:1074
118
  msgid ""
119
  "The element you have entered already exists. Please, enter another name."
120
  msgstr "L'elemento inserito esiste già. Per favore, inserisci un altro nome."
121
 
122
+ #: includes/class-yit-plugin-panel.php:1075
123
  msgid "Settings saved"
124
  msgstr "Impostazioni salvate"
125
 
126
+ #: includes/class-yit-plugin-panel.php:1076
127
  msgid "Settings reset"
128
  msgstr "Impostazioni azzerate"
129
 
130
+ #: includes/class-yit-plugin-panel.php:1077
131
  msgid "Element deleted correctly."
132
  msgstr "Elemento rimosso correttamente."
133
 
134
+ #: includes/class-yit-plugin-panel.php:1078
135
+ #: includes/class-yit-plugin-panel.php:1079
136
  msgid "Element updated correctly."
137
  msgstr "Elemento aggiornato correttamente."
138
 
139
+ #: includes/class-yit-plugin-panel.php:1080
140
  msgid "Database imported correctly."
141
  msgstr "Database importato correttamente."
142
 
143
+ #: includes/class-yit-plugin-panel.php:1081
144
  msgid "An error has occurred during import. Please try again."
145
  msgstr "Si è verificato un errore durante l'importazione. Prova di nuovo."
146
 
147
+ #: includes/class-yit-plugin-panel.php:1082
148
  msgid "The added file is not valid."
149
  msgstr "Il file aggiunto non è valido."
150
 
151
+ #: includes/class-yit-plugin-panel.php:1083
152
  msgid "Sorry, import is disabled."
153
  msgstr "Ci dispiace, l'importazione è disabilitata."
154
 
155
+ #: includes/class-yit-plugin-panel.php:1084
156
  msgid "Sorting successful."
157
  msgstr "Ordinamento effettuato con successo."
158
 
159
+ #: includes/class-yit-plugin-panel.php:1573
160
  msgid "We need your support"
161
  msgstr "Abbiamo bisogno del tuo sostegno"
162
 
163
+ #: includes/class-yit-plugin-panel.php:1574
164
  msgid "to keep updating and improving the plugin. Please,"
165
  msgstr "per poter continuare ad aggiornare e migliorare il plugin."
166
 
167
+ #: includes/class-yit-plugin-panel.php:1576
168
  msgid "help us by leaving a good review"
169
  msgstr "Puoi darci una mano lasciando una recensione positiva"
170
 
171
+ #: includes/class-yit-plugin-panel.php:1577
172
  msgid ":) Thanks!"
173
  msgstr ":) Grazie!"
174
 
208
  "(come per YITH WooCommerce Wishlist, YITH WooCommerce Ajax Search, etc.) "
209
  "saranno spostate dalla posizione precedente al menù YITH."
210
 
211
+ #: includes/class-yith-bh-onboarding.php:85
212
+ msgid "It is not possible save the options"
213
+ msgstr ""
214
+
215
  #: includes/class-yith-dashboard.php:35
216
  msgid "YITH Latest Updates"
217
  msgstr "Ultimi aggiornamenti da YITH"
412
  "Non ci è stato possibile determinare quale versione di %1$s è installata a "
413
  "causa di un problema di connessione fra il tuo sito e il nostro server."
414
 
415
+ #: templates/bh-onboarding/onboarding-tabs.php:63
416
+ msgid "Save"
417
+ msgstr ""
418
+
419
  #: templates/fields/ajax-customers.php:41
420
  msgid "Search for a customer..."
421
  msgstr "Cerca un cliente..."
543
  msgid "Reset"
544
  msgstr "Ripristina"
545
 
546
+ #: templates/panel/woocommerce/woocommerce-form.php:29
547
+ #: templates/panel/woocommerce/woocommerce-form.php:33
548
  msgid "Save Options"
549
  msgstr "Salva le opzioni"
550
 
551
+ #: templates/panel/woocommerce/woocommerce-form.php:33
552
  msgid "Options Saved"
553
  msgstr "Opzioni salvate"
554
 
555
+ #: templates/panel/woocommerce/woocommerce-form.php:43
556
  msgid "Reset Defaults"
557
  msgstr "Ripristina impostazioni iniziali"
558
 
681
  msgstr "Dati: %1$.2fMB | Indice: %2$.2fMB | Libero: %3$.2fMB | Engine: %4$s"
682
 
683
  #. translators: %s is the title of the post object.
684
+ #: yit-functions.php:1938
685
  msgid "Are you sure you want to move \"%s\" to trash?"
686
  msgstr "Sei sicuro di voler spostare \"%s\" nel cestino?"
687
 
688
  #. translators: %s is the title of the post object.
689
+ #: yit-functions.php:1940 yit-functions.php:2100
690
  msgid "Are you sure you want to delete \"%s\"?"
691
  msgstr "Sei sicuro di voler eliminare \"%s\"?"
692
 
693
+ #: yit-functions.php:2038 yit-functions.php:2046 yit-functions.php:2163
694
  msgid "Further actions"
695
  msgstr "Altre azioni"
696
 
697
+ #: yit-plugin.php:233
698
  msgid "License"
699
  msgstr "Chiave di licenza"
700
 
701
+ #. translators: 1. Plugin(s) name(s).
702
+ #: yit-plugin.php:272
703
+ msgid ""
704
+ "%s was deactivated as you're running an higher tier version of the same "
705
+ "plugin."
706
+ msgid_plural ""
707
+ "%s were deactivated as you're running higher tier versions of the same "
708
+ "plugins."
709
+ msgstr[0] ""
710
+ "%s è stato disattivato poiché stai usando una versione superiore dello "
711
+ "stesso plugin. "
712
+ msgstr[1] ""
713
+ "%s sono stati disattivati poiché stai usando una versione superiore degli "
714
+ "stessi plugin. "
715
+
716
  #. Author of the plugin/theme
717
  msgid "YITH"
718
  msgstr "YITH"
728
  msgid "YITH"
729
  msgstr "YITH"
730
 
731
+ #: includes/class-yit-assets.php:134
732
  msgctxt "Button text"
733
  msgid "Confirm"
734
  msgstr "Conferma"
735
 
736
+ #: includes/class-yit-assets.php:135
737
  msgctxt "Button text"
738
  msgid "Cancel"
739
  msgstr "Annulla"
740
 
741
+ #: includes/class-yit-assets.php:148 yit-functions.php:2009
742
  msgctxt "Trash confirmation action"
743
  msgid "Yes, move to trash"
744
  msgstr "Sì, sposta nel cestino"
745
 
746
+ #: includes/class-yit-assets.php:152 yit-functions.php:2027
747
+ #: yit-functions.php:2154
748
  msgctxt "Delete confirmation action"
749
  msgid "Yes, delete"
750
  msgstr "Sì, elimina"
751
 
 
 
 
 
 
752
  #. translators: 1. Plugin name.
753
+ #: includes/class-yit-plugin-panel.php:803
754
  msgctxt "Help tab default title"
755
  msgid "Thank you for purchasing %s!"
756
  msgstr "Grazie per aver acquistato %s!"
757
 
758
+ #: includes/class-yit-plugin-panel.php:803
759
+ #, fuzzy
760
+ msgctxt "Help tab default title"
761
+ msgid "Thank you for using %s!"
762
+ msgstr "Grazie per aver acquistato %s!"
763
+
764
+ #: includes/class-yit-plugin-panel.php:815
765
  msgctxt "Help tab default description"
766
  msgid ""
767
  "We want to help you enjoy a wonderful experience with all of our products."
769
  "Vogliamo aiutarti ad avere un'esperienza fantastica con tutti i nostri "
770
  "prodotti."
771
 
772
+ #: includes/class-yit-plugin-panel.php:866
773
  msgctxt "Premium tab name"
774
  msgid "Get premium"
775
  msgstr "Diventa premium"
776
 
777
+ #: includes/class-yit-plugin-panel.php:878
778
+ msgctxt "Help tab name"
779
+ msgid "Help"
780
+ msgstr "Help"
781
+
782
  #: includes/class-yith-dashboard.php:96
783
  msgctxt "Plugin FW"
784
  msgid "View Changelog"
893
  msgstr "NO"
894
 
895
  #. translators: 1. Url to EN playlist.
896
+ #: templates/panel/help-tab.php:89
897
  msgctxt "Help tab view all video link"
898
  msgid ""
899
  "Check the full <a href=\"%s\" target=\"_blank\">Playlist on Youtube</a> to "
902
  "Per saperne di più, vedi la <a href=\"%s\" target=\"_blank\">Playlist "
903
  "completa su Youtube</a>>"
904
 
905
+ #: templates/panel/help-tab.php:96
906
  msgctxt "Help tab Watch Videotutorials link"
907
  msgid "Videos are also available in:"
908
  msgstr "I video sono disponibili anche in:"
909
 
910
+ #: templates/panel/help-tab.php:126
911
  msgctxt "Help tab Read Documentation link"
912
  msgid "Read the documentation"
913
  msgstr "Consulta la documentazione"
914
 
915
+ #: templates/panel/help-tab.php:129
916
  msgctxt "Help tab Read Documentation link"
917
  msgid "to learn how the plugin works from the basics."
918
  msgstr "per scoprire dalle basi come funziona il plugin."
919
 
920
+ #: templates/panel/help-tab.php:139
921
  msgctxt "Help tab Watch video tutorials link"
922
  msgid "Watch our video tutorials"
923
  msgstr "Guarda i nostri video tutorial"
924
 
925
+ #: templates/panel/help-tab.php:142
926
  msgctxt "Help tab Watch video tutorials link"
927
  msgid "to see some helpful use cases."
928
  msgstr "per vedere dei casi d'utilizzo utili."
929
 
930
+ #: templates/panel/help-tab.php:152
931
  msgctxt "Help tab view FAQs link"
932
  msgid "Check the FAQs"
933
  msgstr "Controlla le FAQ"
934
 
935
+ #: templates/panel/help-tab.php:155
936
  msgctxt "Help tab view FAQs link"
937
  msgid "to find answers to your doubts."
938
  msgstr "per trovare le risposte ai tuoi dubbi."
939
 
940
+ #: templates/panel/help-tab.php:170
941
  msgctxt "Help tab FAQ title"
942
  msgid "Last FAQs in our Help Center"
943
  msgstr "Ultime FAQ nel nostro Centro Assistenza"
944
 
945
+ #: templates/panel/help-tab.php:184
946
  msgctxt "Help tab FAQ link"
947
  msgid "View all FAQs >"
948
  msgstr "Vedi tutte le FAQ"
949
 
950
+ #: templates/panel/help-tab.php:193
951
  msgctxt "Help tab submit ticket title"
952
  msgid "Need help?"
953
  msgstr "Ti serve aiuto?"
954
 
955
+ #: templates/panel/help-tab.php:196
956
  msgctxt "Help tab submit ticket description"
957
  msgid ""
958
  "If you are experiencing any technical issues, ask for help from our "
963
  "Invia un ticket dalla nostra piattaforma di supporto e ti daremo assistenza "
964
  "il più presto possibile."
965
 
966
+ #: templates/panel/help-tab.php:204
967
  msgctxt "Help tab submit ticket button"
968
  msgid "Submit a ticket"
969
  msgstr "Invia un ticket"
970
 
971
+ #: templates/panel/help-tab.php:216 templates/panel/help-tab.php:218
972
+ #: templates/panel/help-tab.php:223
973
+ #, fuzzy
974
+ msgctxt "Help tab documentation"
975
+ msgid "Read the plugin documentation"
976
+ msgstr "Consulta la documentazione"
977
+
978
+ #: templates/panel/help-tab.php:220
979
+ #, fuzzy
980
+ msgctxt "Help tab documentation"
981
+ msgid "to learn how it works from the basics."
982
+ msgstr "per scoprire dalle basi come funziona il plugin."
983
+
984
+ #: templates/panel/help-tab.php:231 templates/panel/help-tab.php:233
985
+ #, fuzzy
986
+ msgctxt "Help tab support"
987
+ msgid "Need some help?"
988
+ msgstr "Ti serve aiuto?"
989
+
990
+ #: templates/panel/help-tab.php:235
991
+ msgctxt "Help tab support"
992
+ msgid "From DIY to full-service help"
993
+ msgstr ""
994
+
995
+ #: templates/panel/help-tab.php:238
996
+ msgctxt "Help tab support"
997
+ msgid ""
998
+ "Call or chat 24/7 with our support agents, or let our experts build your "
999
+ "site."
1000
+ msgstr ""
1001
+
1002
+ #: templates/panel/help-tab.php:241
1003
+ #, fuzzy
1004
+ msgctxt "Help tab support"
1005
+ msgid "Yes, I need help"
1006
+ msgstr "Ti serve aiuto?"
1007
+
1008
  #: templates/panel/premium-tab.php:30
1009
  msgctxt "Premium Tab"
1010
  msgid "Get the premium version to unlock advanced features"
1021
  msgstr "Immagini funzionalità premium"
1022
 
1023
  #. translators: alt attribute of main image tag.
1024
+ #: templates/panel/premium-tab.php:51 templates/panel/premium-tab.php:58
1025
  msgctxt "Premium Tab"
1026
  msgid "And so much more!"
1027
  msgstr "E molto altro!"
1028
 
1029
  #: templates/panel/premium-tab.php:53
1030
+ #, fuzzy
1031
+ msgctxt "Premium Tab"
1032
+ msgid "Check the premium features >"
1033
+ msgstr "Confronta le funzionalità gratuite e premium >"
1034
+
1035
+ #: templates/panel/premium-tab.php:60
1036
  msgctxt "Premium Tab"
1037
  msgid "Check the free vs premium features >"
1038
  msgstr "Confronta le funzionalità gratuite e premium >"
1039
 
1040
+ #: templates/panel/premium-tab.php:65
1041
  msgctxt "Premium Tab"
1042
  msgid "Get the premium version"
1043
  msgstr "Ottieni la versione premium"
1044
 
1045
+ #: yit-functions.php:1952
1046
  msgctxt "Post action"
1047
  msgid "Preview"
1048
  msgstr "Anteprima"
1049
 
1050
+ #: yit-functions.php:1961
1051
  msgctxt "Post action"
1052
  msgid "View"
1053
  msgstr "Visualizza"
1054
 
1055
+ #: yit-functions.php:1972
1056
  msgctxt "Post action"
1057
  msgid "Edit"
1058
  msgstr "Modifica"
1059
 
1060
+ #: yit-functions.php:1980
1061
  msgctxt "Post action"
1062
  msgid "Duplicate"
1063
  msgstr "Duplica"
1064
 
1065
+ #: yit-functions.php:1992
1066
  msgctxt "Post action"
1067
  msgid "Restore"
1068
  msgstr "Ripristina"
1069
 
1070
+ #: yit-functions.php:2000
1071
  msgctxt "Post action"
1072
  msgid "Trash"
1073
  msgstr "Cestina"
1074
 
1075
+ #: yit-functions.php:2017
1076
  msgctxt "Post action"
1077
  msgid "Delete Permanently"
1078
  msgstr "Cancella definitivamente"
1079
 
1080
+ #: yit-functions.php:2114
1081
  msgctxt "Term action"
1082
  msgid "View"
1083
  msgstr "Visualizza"
1084
 
1085
+ #: yit-functions.php:2124
1086
  msgctxt "Term action"
1087
  msgid "Edit"
1088
  msgstr "Modifica"
1089
 
1090
+ #: yit-functions.php:2132
1091
  msgctxt "Term action"
1092
  msgid "Duplicate"
1093
  msgstr "Duplica"
1094
 
1095
+ #: yit-functions.php:2145
1096
  msgctxt "Term action"
1097
  msgid "Delete"
1098
  msgstr "Elimina"
1099
 
1100
+ #: yit-plugin.php:85
1101
  msgctxt "Plugin Row Meta"
1102
  msgid "Live Demo"
1103
  msgstr "Live Demo"
1104
 
1105
+ #: yit-plugin.php:89
1106
  msgctxt "Plugin Row Meta"
1107
  msgid "Documentation"
1108
  msgstr "Documentazione"
1109
 
1110
+ #: yit-plugin.php:93
1111
  msgctxt "Plugin Row Meta"
1112
  msgid "Support"
1113
  msgstr "Assistenza"
1114
 
1115
+ #: yit-plugin.php:97
1116
  msgctxt "Plugin Row Meta"
1117
  msgid "Premium version"
1118
  msgstr "Versione premium"
1119
 
1120
+ #: yit-plugin.php:229
1121
  msgctxt "Action links"
1122
  msgid "Settings"
1123
  msgstr "Impostazioni"
plugin-fw/languages/yith-plugin-fw-nl_NL.mo CHANGED
Binary file
plugin-fw/languages/yith-plugin-fw-nl_NL.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: YITH Framework\n"
6
  "Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
7
- "POT-Creation-Date: 2022-04-13 12:14:07+00:00\n"
8
  "PO-Revision-Date: 2021-12-13 12:45:02+0000\n"
9
  "Language: nl\n"
10
  "MIME-Version: 1.0\n"
@@ -13,60 +13,60 @@ msgstr ""
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
  "X-Generator: GlotPress/3.0.0-alpha.2\n"
15
 
16
- #: includes/class-yit-assets.php:144 yit-functions.php:1980
17
  msgid "Confirm trash"
18
  msgstr "Verplaatsen naar prullenbak bevestigen"
19
 
20
- #: includes/class-yit-assets.php:145
21
  msgid "Are you sure you want to trash the selected items?"
22
  msgstr ""
23
  "Weet je zeker dat je het geselecteerde item naar de prullenbak wilt "
24
  "verplaatsen?"
25
 
26
- #: includes/class-yit-assets.php:147 includes/class-yit-assets.php:151
27
  #: templates/sysinfo/tabs/main.php:42 templates/sysinfo/tabs/main.php:50
28
- #: yit-functions.php:1982 yit-functions.php:2000
29
  msgid "No"
30
  msgstr "Nee"
31
 
32
- #: includes/class-yit-assets.php:148 yit-functions.php:1998
33
- #: yit-functions.php:2126
34
  msgid "Confirm delete"
35
  msgstr "Verwijderen bevestigen"
36
 
37
- #: includes/class-yit-assets.php:149
38
  msgid "Are you sure you want to delete the selected items?"
39
  msgstr "Weet je zeker dat je de geselecteerde items wilt verwijderen?"
40
 
41
- #: includes/class-yit-assets.php:149 yit-functions.php:1914
42
- #: yit-functions.php:2074
43
  msgid ""
44
  "This action cannot be undone and you will not be able to recover this data."
45
  msgstr ""
46
  "Deze actie kan niet ongedaan gemaakt worden en je zult deze gegevens niet "
47
  "kunnen herstellen."
48
 
49
- #: includes/class-yit-assets.php:162
50
  msgid "Clear"
51
  msgstr "Wissen"
52
 
53
- #: includes/class-yit-assets.php:163
54
  msgid "Clear color"
55
  msgstr "Kleur wissen"
56
 
57
- #: includes/class-yit-assets.php:164
58
  msgid "Default"
59
  msgstr "Standaard"
60
 
61
- #: includes/class-yit-assets.php:165
62
  msgid "Select default color"
63
  msgstr "Standaardkleur selecteren"
64
 
65
- #: includes/class-yit-assets.php:166
66
  msgid "Select Color"
67
  msgstr "Kleur selecteren"
68
 
69
- #: includes/class-yit-assets.php:167
70
  msgid "Color value"
71
  msgstr "Kleurwaarde"
72
 
@@ -75,7 +75,7 @@ msgid "There was an error with your request; please try again later."
75
  msgstr ""
76
  "Er is een fout opgetreden met je verzoek, probeer het later opnieuw a.u.b."
77
 
78
- #: includes/class-yit-plugin-panel-woocommerce.php:429
79
  msgid "The changes you have made will be lost if you leave this page."
80
  msgstr "Als je deze pagina verlaat zullen alle wijzigingen verloren gaan."
81
 
@@ -87,90 +87,90 @@ msgstr "Plugin instellingen"
87
  msgid "Settings"
88
  msgstr "Instellingen"
89
 
90
- #: includes/class-yit-plugin-panel.php:454
91
- #: includes/class-yit-plugin-panel.php:457
92
  msgid "How to install premium version"
93
  msgstr "Hoe installeer ik de premium versie"
94
 
95
- #: includes/class-yit-plugin-panel.php:658
96
- #: includes/class-yit-plugin-subpanel.php:132
97
  msgid "Save Changes"
98
  msgstr "Wijzigingen opslaan"
99
 
100
  #: includes/class-yit-plugin-panel.php:663
101
- #: includes/class-yit-plugin-subpanel.php:136
102
- #: templates/panel/woocommerce/woocommerce-form.php:14
103
  msgid ""
104
  "If you continue with this action, you will reset all options in this page."
105
  msgstr ""
106
  "Als je doorgaat met deze actie, zal je alle opties op deze pagina resetten."
107
 
108
  #: includes/class-yit-plugin-panel.php:663
109
- #: includes/class-yit-plugin-subpanel.php:136
110
- #: templates/panel/woocommerce/woocommerce-form.php:14
111
  msgid "Are you sure?"
112
  msgstr "Weet je het zeker?"
113
 
114
  #: includes/class-yit-plugin-panel.php:667
115
- #: includes/class-yit-plugin-subpanel.php:139
116
  msgid "Reset to default"
117
  msgstr "Resetten naar standaard"
118
 
119
- #: includes/class-yit-plugin-panel.php:1047
120
  msgid ""
121
  "The element you have entered already exists. Please, enter another name."
122
  msgstr "Het element dat je hebt ingevoerd bestaat al. Voer een andere naam in."
123
 
124
- #: includes/class-yit-plugin-panel.php:1048
125
  msgid "Settings saved"
126
  msgstr "Instellingen opgeslagen"
127
 
128
- #: includes/class-yit-plugin-panel.php:1049
129
  msgid "Settings reset"
130
  msgstr "Instellingen resetten"
131
 
132
- #: includes/class-yit-plugin-panel.php:1050
133
  msgid "Element deleted correctly."
134
  msgstr "Element juist verwijderd."
135
 
136
- #: includes/class-yit-plugin-panel.php:1051
137
- #: includes/class-yit-plugin-panel.php:1052
138
  msgid "Element updated correctly."
139
  msgstr "Element juist geüpdatet."
140
 
141
- #: includes/class-yit-plugin-panel.php:1053
142
  msgid "Database imported correctly."
143
  msgstr "Database juist geïmporteerd."
144
 
145
- #: includes/class-yit-plugin-panel.php:1054
146
  msgid "An error has occurred during import. Please try again."
147
  msgstr "Er is een fout opgetreden tijdens importeren. Probeer opnieuw."
148
 
149
- #: includes/class-yit-plugin-panel.php:1055
150
  msgid "The added file is not valid."
151
  msgstr "Het toegevoegde bestand is niet geldig."
152
 
153
- #: includes/class-yit-plugin-panel.php:1056
154
  msgid "Sorry, import is disabled."
155
  msgstr "Sorry, importeren is uitgeschakeld."
156
 
157
- #: includes/class-yit-plugin-panel.php:1057
158
  msgid "Sorting successful."
159
  msgstr "Succesvol gesorteerd."
160
 
161
- #: includes/class-yit-plugin-panel.php:1525
162
  msgid "We need your support"
163
  msgstr "We hebben je hulp nodig"
164
 
165
- #: includes/class-yit-plugin-panel.php:1526
166
  msgid "to keep updating and improving the plugin. Please,"
167
  msgstr "om de plugin te blijven bijwerken en verbeteren. A.u.b.,"
168
 
169
- #: includes/class-yit-plugin-panel.php:1528
170
  msgid "help us by leaving a good review"
171
  msgstr "help ons door een goede beoordeling achter te laten"
172
 
173
- #: includes/class-yit-plugin-panel.php:1529
174
  msgid ":) Thanks!"
175
  msgstr ":) Bedankt!"
176
 
@@ -210,6 +210,10 @@ msgstr ""
210
  "(zoals voor YITH WooCommerce Wishlist, YITH WooCommerce Ajax Search, enz.) "
211
  "verplaatst van de vorige locatie naar het YITH menu."
212
 
 
 
 
 
213
  #: includes/class-yith-dashboard.php:35
214
  msgid "YITH Latest Updates"
215
  msgstr "YITH laatste updates"
@@ -409,6 +413,10 @@ msgstr ""
409
  "De systeemcontrole kan niet bepalen welke versie van %1$s is geïnstalleerd "
410
  "vanwege een verbindingsprobleem tussen je site en onze server."
411
 
 
 
 
 
412
  #: templates/fields/ajax-customers.php:41
413
  msgid "Search for a customer..."
414
  msgstr ""
@@ -536,16 +544,16 @@ msgstr "Upload"
536
  msgid "Reset"
537
  msgstr "Resetten"
538
 
539
- #: templates/panel/woocommerce/woocommerce-form.php:28
540
- #: templates/panel/woocommerce/woocommerce-form.php:32
541
  msgid "Save Options"
542
  msgstr "Opties opslaan"
543
 
544
- #: templates/panel/woocommerce/woocommerce-form.php:32
545
  msgid "Options Saved"
546
  msgstr "Opties opgeslagen"
547
 
548
- #: templates/panel/woocommerce/woocommerce-form.php:38
549
  msgid "Reset Defaults"
550
  msgstr "Reset Standaard instellingen"
551
 
@@ -673,23 +681,34 @@ msgid "Data: %1$.2fMB | Index: %2$.2fMB | Free: %3$.2fMB | Engine: %4$s"
673
  msgstr "Data: %1$.2fMB | Index: %2$.2fMB | Free: %3$.2fMB | Engine: %4$s"
674
 
675
  #. translators: %s is the title of the post object.
676
- #: yit-functions.php:1912
677
  msgid "Are you sure you want to move \"%s\" to trash?"
678
  msgstr "Weet je zeker dat je \"%s\" naar de prullenbak wilt verplaatsen?"
679
 
680
  #. translators: %s is the title of the post object.
681
- #: yit-functions.php:1914 yit-functions.php:2074
682
  msgid "Are you sure you want to delete \"%s\"?"
683
  msgstr "Weet je zeker dat je \"%s\" wilt verwijderen?"
684
 
685
- #: yit-functions.php:2012 yit-functions.php:2020 yit-functions.php:2137
686
  msgid "Further actions"
687
  msgstr "Verdere acties"
688
 
689
- #: yit-plugin.php:205
690
  msgid "License"
691
  msgstr "Licentie"
692
 
 
 
 
 
 
 
 
 
 
 
 
693
  #. Author of the plugin/theme
694
  msgid "YITH"
695
  msgstr "YITH"
@@ -705,49 +724,55 @@ msgctxt "[gutenberg]: Category Name"
705
  msgid "YITH"
706
  msgstr "YITH"
707
 
708
- #: includes/class-yit-assets.php:132
709
  msgctxt "Button text"
710
  msgid "Confirm"
711
  msgstr "Bevestigen"
712
 
713
- #: includes/class-yit-assets.php:133
714
  msgctxt "Button text"
715
  msgid "Cancel"
716
  msgstr "Annuleren"
717
 
718
- #: includes/class-yit-assets.php:146 yit-functions.php:1983
719
  msgctxt "Trash confirmation action"
720
  msgid "Yes, move to trash"
721
  msgstr "Ja, verplaatsen naar prullenbak"
722
 
723
- #: includes/class-yit-assets.php:150 yit-functions.php:2001
724
- #: yit-functions.php:2128
725
  msgctxt "Delete confirmation action"
726
  msgid "Yes, delete"
727
  msgstr "Ja, verwijderen"
728
 
729
- #: includes/class-yit-plugin-panel.php:491
730
- msgctxt "Help tab name"
731
- msgid "Help"
732
- msgstr "Help"
733
-
734
  #. translators: 1. Plugin name.
735
- #: includes/class-yit-plugin-panel.php:805
736
  msgctxt "Help tab default title"
737
  msgid "Thank you for purchasing %s!"
738
  msgstr "Bedankt voor het kopen van %s!"
739
 
740
- #: includes/class-yit-plugin-panel.php:806
 
 
 
 
 
 
741
  msgctxt "Help tab default description"
742
  msgid ""
743
  "We want to help you enjoy a wonderful experience with all of our products."
744
  msgstr ""
745
 
746
- #: includes/class-yit-plugin-panel.php:853
747
  msgctxt "Premium tab name"
748
  msgid "Get premium"
749
  msgstr "Neem premium"
750
 
 
 
 
 
 
751
  #: includes/class-yith-dashboard.php:96
752
  msgctxt "Plugin FW"
753
  msgid "View Changelog"
@@ -861,7 +886,7 @@ msgid "NO"
861
  msgstr "NEE"
862
 
863
  #. translators: 1. Url to EN playlist.
864
- #: templates/panel/help-tab.php:87
865
  msgctxt "Help tab view all video link"
866
  msgid ""
867
  "Check the full <a href=\"%s\" target=\"_blank\">Playlist on Youtube</a> to "
@@ -870,57 +895,57 @@ msgstr ""
870
  "Bekijk de volledige <a href=\"%s\" target=\"_blank\">Playlist op Youtube</a> "
871
  "om meer te weten te komen >"
872
 
873
- #: templates/panel/help-tab.php:94
874
  msgctxt "Help tab Watch Videotutorials link"
875
  msgid "Videos are also available in:"
876
  msgstr "Videos zijn ook beschikbaar in:"
877
 
878
- #: templates/panel/help-tab.php:124
879
  msgctxt "Help tab Read Documentation link"
880
  msgid "Read the documentation"
881
  msgstr "Lees de documentatie"
882
 
883
- #: templates/panel/help-tab.php:127
884
  msgctxt "Help tab Read Documentation link"
885
  msgid "to learn how the plugin works from the basics."
886
  msgstr ""
887
 
888
- #: templates/panel/help-tab.php:137
889
  msgctxt "Help tab Watch video tutorials link"
890
  msgid "Watch our video tutorials"
891
  msgstr ""
892
 
893
- #: templates/panel/help-tab.php:140
894
  msgctxt "Help tab Watch video tutorials link"
895
  msgid "to see some helpful use cases."
896
  msgstr ""
897
 
898
- #: templates/panel/help-tab.php:150
899
  msgctxt "Help tab view FAQs link"
900
  msgid "Check the FAQs"
901
  msgstr "Check de FAQs"
902
 
903
- #: templates/panel/help-tab.php:153
904
  msgctxt "Help tab view FAQs link"
905
  msgid "to find answers to your doubts."
906
  msgstr ""
907
 
908
- #: templates/panel/help-tab.php:169
909
  msgctxt "Help tab FAQ title"
910
  msgid "Last FAQs in our Help Center"
911
  msgstr "Laatste FAQs in ons Help Center"
912
 
913
- #: templates/panel/help-tab.php:183
914
  msgctxt "Help tab FAQ link"
915
  msgid "View all FAQs >"
916
  msgstr "Bekijk alle FAQs >"
917
 
918
- #: templates/panel/help-tab.php:192
919
  msgctxt "Help tab submit ticket title"
920
  msgid "Need help?"
921
  msgstr "Hulp nodig?"
922
 
923
- #: templates/panel/help-tab.php:195
924
  msgctxt "Help tab submit ticket description"
925
  msgid ""
926
  "If you are experiencing any technical issues, ask for help from our "
@@ -928,11 +953,47 @@ msgid ""
928
  "soon as possible."
929
  msgstr ""
930
 
931
- #: templates/panel/help-tab.php:203
932
  msgctxt "Help tab submit ticket button"
933
  msgid "Submit a ticket"
934
  msgstr "Verstuur een ticket"
935
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
936
  #: templates/panel/premium-tab.php:30
937
  msgctxt "Premium Tab"
938
  msgid "Get the premium version to unlock advanced features"
@@ -949,97 +1010,103 @@ msgid "Plugin premium features images"
949
  msgstr "Plugin premium opties afbeeldingen"
950
 
951
  #. translators: alt attribute of main image tag.
952
- #: templates/panel/premium-tab.php:51
953
  msgctxt "Premium Tab"
954
  msgid "And so much more!"
955
  msgstr "En zo veel meer!"
956
 
957
  #: templates/panel/premium-tab.php:53
 
 
 
 
 
 
958
  msgctxt "Premium Tab"
959
  msgid "Check the free vs premium features >"
960
  msgstr "Bekijk de gratis vs premium opties >"
961
 
962
- #: templates/panel/premium-tab.php:58
963
  msgctxt "Premium Tab"
964
  msgid "Get the premium version"
965
  msgstr "Krijg de premium versie"
966
 
967
- #: yit-functions.php:1926
968
  msgctxt "Post action"
969
  msgid "Preview"
970
  msgstr "Voorbeeld"
971
 
972
- #: yit-functions.php:1935
973
  msgctxt "Post action"
974
  msgid "View"
975
  msgstr "Bekijken"
976
 
977
- #: yit-functions.php:1946
978
  msgctxt "Post action"
979
  msgid "Edit"
980
  msgstr "Bewerken"
981
 
982
- #: yit-functions.php:1954
983
  msgctxt "Post action"
984
  msgid "Duplicate"
985
  msgstr "Dupliceren"
986
 
987
- #: yit-functions.php:1966
988
  msgctxt "Post action"
989
  msgid "Restore"
990
  msgstr "Herstellen"
991
 
992
- #: yit-functions.php:1974
993
  msgctxt "Post action"
994
  msgid "Trash"
995
  msgstr "Prullenbak"
996
 
997
- #: yit-functions.php:1991
998
  msgctxt "Post action"
999
  msgid "Delete Permanently"
1000
  msgstr "Permanent verijwderen"
1001
 
1002
- #: yit-functions.php:2088
1003
  msgctxt "Term action"
1004
  msgid "View"
1005
  msgstr "Bekijken"
1006
 
1007
- #: yit-functions.php:2098
1008
  msgctxt "Term action"
1009
  msgid "Edit"
1010
  msgstr "Bewerken"
1011
 
1012
- #: yit-functions.php:2106
1013
  msgctxt "Term action"
1014
  msgid "Duplicate"
1015
  msgstr "Dupliceren"
1016
 
1017
- #: yit-functions.php:2119
1018
  msgctxt "Term action"
1019
  msgid "Delete"
1020
  msgstr "Verwijderen"
1021
 
1022
- #: yit-plugin.php:84
1023
  msgctxt "Plugin Row Meta"
1024
  msgid "Live Demo"
1025
  msgstr "Live Demo"
1026
 
1027
- #: yit-plugin.php:88
1028
  msgctxt "Plugin Row Meta"
1029
  msgid "Documentation"
1030
  msgstr "Documentatie"
1031
 
1032
- #: yit-plugin.php:92
1033
  msgctxt "Plugin Row Meta"
1034
  msgid "Support"
1035
  msgstr "Ondersteuning"
1036
 
1037
- #: yit-plugin.php:96
1038
  msgctxt "Plugin Row Meta"
1039
  msgid "Premium version"
1040
  msgstr "Premium versie"
1041
 
1042
- #: yit-plugin.php:201
1043
  msgctxt "Action links"
1044
  msgid "Settings"
1045
  msgstr "Instellingen"
4
  msgstr ""
5
  "Project-Id-Version: YITH Framework\n"
6
  "Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
7
+ "POT-Creation-Date: 2022-08-02 12:02:23+00:00\n"
8
  "PO-Revision-Date: 2021-12-13 12:45:02+0000\n"
9
  "Language: nl\n"
10
  "MIME-Version: 1.0\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
  "X-Generator: GlotPress/3.0.0-alpha.2\n"
15
 
16
+ #: includes/class-yit-assets.php:146 yit-functions.php:2006
17
  msgid "Confirm trash"
18
  msgstr "Verplaatsen naar prullenbak bevestigen"
19
 
20
+ #: includes/class-yit-assets.php:147
21
  msgid "Are you sure you want to trash the selected items?"
22
  msgstr ""
23
  "Weet je zeker dat je het geselecteerde item naar de prullenbak wilt "
24
  "verplaatsen?"
25
 
26
+ #: includes/class-yit-assets.php:149 includes/class-yit-assets.php:153
27
  #: templates/sysinfo/tabs/main.php:42 templates/sysinfo/tabs/main.php:50
28
+ #: yit-functions.php:2008 yit-functions.php:2026
29
  msgid "No"
30
  msgstr "Nee"
31
 
32
+ #: includes/class-yit-assets.php:150 yit-functions.php:2024
33
+ #: yit-functions.php:2152
34
  msgid "Confirm delete"
35
  msgstr "Verwijderen bevestigen"
36
 
37
+ #: includes/class-yit-assets.php:151
38
  msgid "Are you sure you want to delete the selected items?"
39
  msgstr "Weet je zeker dat je de geselecteerde items wilt verwijderen?"
40
 
41
+ #: includes/class-yit-assets.php:151 yit-functions.php:1940
42
+ #: yit-functions.php:2100
43
  msgid ""
44
  "This action cannot be undone and you will not be able to recover this data."
45
  msgstr ""
46
  "Deze actie kan niet ongedaan gemaakt worden en je zult deze gegevens niet "
47
  "kunnen herstellen."
48
 
49
+ #: includes/class-yit-assets.php:172
50
  msgid "Clear"
51
  msgstr "Wissen"
52
 
53
+ #: includes/class-yit-assets.php:173
54
  msgid "Clear color"
55
  msgstr "Kleur wissen"
56
 
57
+ #: includes/class-yit-assets.php:174
58
  msgid "Default"
59
  msgstr "Standaard"
60
 
61
+ #: includes/class-yit-assets.php:175
62
  msgid "Select default color"
63
  msgstr "Standaardkleur selecteren"
64
 
65
+ #: includes/class-yit-assets.php:176
66
  msgid "Select Color"
67
  msgstr "Kleur selecteren"
68
 
69
+ #: includes/class-yit-assets.php:177
70
  msgid "Color value"
71
  msgstr "Kleurwaarde"
72
 
75
  msgstr ""
76
  "Er is een fout opgetreden met je verzoek, probeer het later opnieuw a.u.b."
77
 
78
+ #: includes/class-yit-plugin-panel-woocommerce.php:430
79
  msgid "The changes you have made will be lost if you leave this page."
80
  msgstr "Als je deze pagina verlaat zullen alle wijzigingen verloren gaan."
81
 
87
  msgid "Settings"
88
  msgstr "Instellingen"
89
 
90
+ #: includes/class-yit-plugin-panel.php:455
91
+ #: includes/class-yit-plugin-panel.php:458
92
  msgid "How to install premium version"
93
  msgstr "Hoe installeer ik de premium versie"
94
 
95
+ #: includes/class-yit-plugin-panel.php:655
96
+ #: includes/class-yit-plugin-subpanel.php:133
97
  msgid "Save Changes"
98
  msgstr "Wijzigingen opslaan"
99
 
100
  #: includes/class-yit-plugin-panel.php:663
101
+ #: includes/class-yit-plugin-subpanel.php:140
102
+ #: templates/panel/woocommerce/woocommerce-form.php:15
103
  msgid ""
104
  "If you continue with this action, you will reset all options in this page."
105
  msgstr ""
106
  "Als je doorgaat met deze actie, zal je alle opties op deze pagina resetten."
107
 
108
  #: includes/class-yit-plugin-panel.php:663
109
+ #: includes/class-yit-plugin-subpanel.php:140
110
+ #: templates/panel/woocommerce/woocommerce-form.php:15
111
  msgid "Are you sure?"
112
  msgstr "Weet je het zeker?"
113
 
114
  #: includes/class-yit-plugin-panel.php:667
115
+ #: includes/class-yit-plugin-subpanel.php:143
116
  msgid "Reset to default"
117
  msgstr "Resetten naar standaard"
118
 
119
+ #: includes/class-yit-plugin-panel.php:1074
120
  msgid ""
121
  "The element you have entered already exists. Please, enter another name."
122
  msgstr "Het element dat je hebt ingevoerd bestaat al. Voer een andere naam in."
123
 
124
+ #: includes/class-yit-plugin-panel.php:1075
125
  msgid "Settings saved"
126
  msgstr "Instellingen opgeslagen"
127
 
128
+ #: includes/class-yit-plugin-panel.php:1076
129
  msgid "Settings reset"
130
  msgstr "Instellingen resetten"
131
 
132
+ #: includes/class-yit-plugin-panel.php:1077
133
  msgid "Element deleted correctly."
134
  msgstr "Element juist verwijderd."
135
 
136
+ #: includes/class-yit-plugin-panel.php:1078
137
+ #: includes/class-yit-plugin-panel.php:1079
138
  msgid "Element updated correctly."
139
  msgstr "Element juist geüpdatet."
140
 
141
+ #: includes/class-yit-plugin-panel.php:1080
142
  msgid "Database imported correctly."
143
  msgstr "Database juist geïmporteerd."
144
 
145
+ #: includes/class-yit-plugin-panel.php:1081
146
  msgid "An error has occurred during import. Please try again."
147
  msgstr "Er is een fout opgetreden tijdens importeren. Probeer opnieuw."
148
 
149
+ #: includes/class-yit-plugin-panel.php:1082
150
  msgid "The added file is not valid."
151
  msgstr "Het toegevoegde bestand is niet geldig."
152
 
153
+ #: includes/class-yit-plugin-panel.php:1083
154
  msgid "Sorry, import is disabled."
155
  msgstr "Sorry, importeren is uitgeschakeld."
156
 
157
+ #: includes/class-yit-plugin-panel.php:1084
158
  msgid "Sorting successful."
159
  msgstr "Succesvol gesorteerd."
160
 
161
+ #: includes/class-yit-plugin-panel.php:1573
162
  msgid "We need your support"
163
  msgstr "We hebben je hulp nodig"
164
 
165
+ #: includes/class-yit-plugin-panel.php:1574
166
  msgid "to keep updating and improving the plugin. Please,"
167
  msgstr "om de plugin te blijven bijwerken en verbeteren. A.u.b.,"
168
 
169
+ #: includes/class-yit-plugin-panel.php:1576
170
  msgid "help us by leaving a good review"
171
  msgstr "help ons door een goede beoordeling achter te laten"
172
 
173
+ #: includes/class-yit-plugin-panel.php:1577
174
  msgid ":) Thanks!"
175
  msgstr ":) Bedankt!"
176
 
210
  "(zoals voor YITH WooCommerce Wishlist, YITH WooCommerce Ajax Search, enz.) "
211
  "verplaatst van de vorige locatie naar het YITH menu."
212
 
213
+ #: includes/class-yith-bh-onboarding.php:85
214
+ msgid "It is not possible save the options"
215
+ msgstr ""
216
+
217
  #: includes/class-yith-dashboard.php:35
218
  msgid "YITH Latest Updates"
219
  msgstr "YITH laatste updates"
413
  "De systeemcontrole kan niet bepalen welke versie van %1$s is geïnstalleerd "
414
  "vanwege een verbindingsprobleem tussen je site en onze server."
415
 
416
+ #: templates/bh-onboarding/onboarding-tabs.php:63
417
+ msgid "Save"
418
+ msgstr ""
419
+
420
  #: templates/fields/ajax-customers.php:41
421
  msgid "Search for a customer..."
422
  msgstr ""
544
  msgid "Reset"
545
  msgstr "Resetten"
546
 
547
+ #: templates/panel/woocommerce/woocommerce-form.php:29
548
+ #: templates/panel/woocommerce/woocommerce-form.php:33
549
  msgid "Save Options"
550
  msgstr "Opties opslaan"
551
 
552
+ #: templates/panel/woocommerce/woocommerce-form.php:33
553
  msgid "Options Saved"
554
  msgstr "Opties opgeslagen"
555
 
556
+ #: templates/panel/woocommerce/woocommerce-form.php:43
557
  msgid "Reset Defaults"
558
  msgstr "Reset Standaard instellingen"
559
 
681
  msgstr "Data: %1$.2fMB | Index: %2$.2fMB | Free: %3$.2fMB | Engine: %4$s"
682
 
683
  #. translators: %s is the title of the post object.
684
+ #: yit-functions.php:1938
685
  msgid "Are you sure you want to move \"%s\" to trash?"
686
  msgstr "Weet je zeker dat je \"%s\" naar de prullenbak wilt verplaatsen?"
687
 
688
  #. translators: %s is the title of the post object.
689
+ #: yit-functions.php:1940 yit-functions.php:2100
690
  msgid "Are you sure you want to delete \"%s\"?"
691
  msgstr "Weet je zeker dat je \"%s\" wilt verwijderen?"
692
 
693
+ #: yit-functions.php:2038 yit-functions.php:2046 yit-functions.php:2163
694
  msgid "Further actions"
695
  msgstr "Verdere acties"
696
 
697
+ #: yit-plugin.php:233
698
  msgid "License"
699
  msgstr "Licentie"
700
 
701
+ #. translators: 1. Plugin(s) name(s).
702
+ #: yit-plugin.php:272
703
+ msgid ""
704
+ "%s was deactivated as you're running an higher tier version of the same "
705
+ "plugin."
706
+ msgid_plural ""
707
+ "%s were deactivated as you're running higher tier versions of the same "
708
+ "plugins."
709
+ msgstr[0] ""
710
+ msgstr[1] ""
711
+
712
  #. Author of the plugin/theme
713
  msgid "YITH"
714
  msgstr "YITH"
724
  msgid "YITH"
725
  msgstr "YITH"
726
 
727
+ #: includes/class-yit-assets.php:134
728
  msgctxt "Button text"
729
  msgid "Confirm"
730
  msgstr "Bevestigen"
731
 
732
+ #: includes/class-yit-assets.php:135
733
  msgctxt "Button text"
734
  msgid "Cancel"
735
  msgstr "Annuleren"
736
 
737
+ #: includes/class-yit-assets.php:148 yit-functions.php:2009
738
  msgctxt "Trash confirmation action"
739
  msgid "Yes, move to trash"
740
  msgstr "Ja, verplaatsen naar prullenbak"
741
 
742
+ #: includes/class-yit-assets.php:152 yit-functions.php:2027
743
+ #: yit-functions.php:2154
744
  msgctxt "Delete confirmation action"
745
  msgid "Yes, delete"
746
  msgstr "Ja, verwijderen"
747
 
 
 
 
 
 
748
  #. translators: 1. Plugin name.
749
+ #: includes/class-yit-plugin-panel.php:803
750
  msgctxt "Help tab default title"
751
  msgid "Thank you for purchasing %s!"
752
  msgstr "Bedankt voor het kopen van %s!"
753
 
754
+ #: includes/class-yit-plugin-panel.php:803
755
+ #, fuzzy
756
+ msgctxt "Help tab default title"
757
+ msgid "Thank you for using %s!"
758
+ msgstr "Bedankt voor het kopen van %s!"
759
+
760
+ #: includes/class-yit-plugin-panel.php:815
761
  msgctxt "Help tab default description"
762
  msgid ""
763
  "We want to help you enjoy a wonderful experience with all of our products."
764
  msgstr ""
765
 
766
+ #: includes/class-yit-plugin-panel.php:866
767
  msgctxt "Premium tab name"
768
  msgid "Get premium"
769
  msgstr "Neem premium"
770
 
771
+ #: includes/class-yit-plugin-panel.php:878
772
+ msgctxt "Help tab name"
773
+ msgid "Help"
774
+ msgstr "Help"
775
+
776
  #: includes/class-yith-dashboard.php:96
777
  msgctxt "Plugin FW"
778
  msgid "View Changelog"
886
  msgstr "NEE"
887
 
888
  #. translators: 1. Url to EN playlist.
889
+ #: templates/panel/help-tab.php:89
890
  msgctxt "Help tab view all video link"
891
  msgid ""
892
  "Check the full <a href=\"%s\" target=\"_blank\">Playlist on Youtube</a> to "
895
  "Bekijk de volledige <a href=\"%s\" target=\"_blank\">Playlist op Youtube</a> "
896
  "om meer te weten te komen >"
897
 
898
+ #: templates/panel/help-tab.php:96
899
  msgctxt "Help tab Watch Videotutorials link"
900
  msgid "Videos are also available in:"
901
  msgstr "Videos zijn ook beschikbaar in:"
902
 
903
+ #: templates/panel/help-tab.php:126
904
  msgctxt "Help tab Read Documentation link"
905
  msgid "Read the documentation"
906
  msgstr "Lees de documentatie"
907
 
908
+ #: templates/panel/help-tab.php:129
909
  msgctxt "Help tab Read Documentation link"
910
  msgid "to learn how the plugin works from the basics."
911
  msgstr ""
912
 
913
+ #: templates/panel/help-tab.php:139
914
  msgctxt "Help tab Watch video tutorials link"
915
  msgid "Watch our video tutorials"
916
  msgstr ""
917
 
918
+ #: templates/panel/help-tab.php:142
919
  msgctxt "Help tab Watch video tutorials link"
920
  msgid "to see some helpful use cases."
921
  msgstr ""
922
 
923
+ #: templates/panel/help-tab.php:152
924
  msgctxt "Help tab view FAQs link"
925
  msgid "Check the FAQs"
926
  msgstr "Check de FAQs"
927
 
928
+ #: templates/panel/help-tab.php:155
929
  msgctxt "Help tab view FAQs link"
930
  msgid "to find answers to your doubts."
931
  msgstr ""
932
 
933
+ #: templates/panel/help-tab.php:170
934
  msgctxt "Help tab FAQ title"
935
  msgid "Last FAQs in our Help Center"
936
  msgstr "Laatste FAQs in ons Help Center"
937
 
938
+ #: templates/panel/help-tab.php:184
939
  msgctxt "Help tab FAQ link"
940
  msgid "View all FAQs >"
941
  msgstr "Bekijk alle FAQs >"
942
 
943
+ #: templates/panel/help-tab.php:193
944
  msgctxt "Help tab submit ticket title"
945
  msgid "Need help?"
946
  msgstr "Hulp nodig?"
947
 
948
+ #: templates/panel/help-tab.php:196
949
  msgctxt "Help tab submit ticket description"
950
  msgid ""
951
  "If you are experiencing any technical issues, ask for help from our "
953
  "soon as possible."
954
  msgstr ""
955
 
956
+ #: templates/panel/help-tab.php:204
957
  msgctxt "Help tab submit ticket button"
958
  msgid "Submit a ticket"
959
  msgstr "Verstuur een ticket"
960
 
961
+ #: templates/panel/help-tab.php:216 templates/panel/help-tab.php:218
962
+ #: templates/panel/help-tab.php:223
963
+ #, fuzzy
964
+ msgctxt "Help tab documentation"
965
+ msgid "Read the plugin documentation"
966
+ msgstr "Lees de documentatie"
967
+
968
+ #: templates/panel/help-tab.php:220
969
+ msgctxt "Help tab documentation"
970
+ msgid "to learn how it works from the basics."
971
+ msgstr ""
972
+
973
+ #: templates/panel/help-tab.php:231 templates/panel/help-tab.php:233
974
+ #, fuzzy
975
+ msgctxt "Help tab support"
976
+ msgid "Need some help?"
977
+ msgstr "Hulp nodig?"
978
+
979
+ #: templates/panel/help-tab.php:235
980
+ msgctxt "Help tab support"
981
+ msgid "From DIY to full-service help"
982
+ msgstr ""
983
+
984
+ #: templates/panel/help-tab.php:238
985
+ msgctxt "Help tab support"
986
+ msgid ""
987
+ "Call or chat 24/7 with our support agents, or let our experts build your "
988
+ "site."
989
+ msgstr ""
990
+
991
+ #: templates/panel/help-tab.php:241
992
+ #, fuzzy
993
+ msgctxt "Help tab support"
994
+ msgid "Yes, I need help"
995
+ msgstr "Hulp nodig?"
996
+
997
  #: templates/panel/premium-tab.php:30
998
  msgctxt "Premium Tab"
999
  msgid "Get the premium version to unlock advanced features"
1010
  msgstr "Plugin premium opties afbeeldingen"
1011
 
1012
  #. translators: alt attribute of main image tag.
1013
+ #: templates/panel/premium-tab.php:51 templates/panel/premium-tab.php:58
1014
  msgctxt "Premium Tab"
1015
  msgid "And so much more!"
1016
  msgstr "En zo veel meer!"
1017
 
1018
  #: templates/panel/premium-tab.php:53
1019
+ #, fuzzy
1020
+ msgctxt "Premium Tab"
1021
+ msgid "Check the premium features >"
1022
+ msgstr "Bekijk de gratis vs premium opties >"
1023
+
1024
+ #: templates/panel/premium-tab.php:60
1025
  msgctxt "Premium Tab"
1026
  msgid "Check the free vs premium features >"
1027
  msgstr "Bekijk de gratis vs premium opties >"
1028
 
1029
+ #: templates/panel/premium-tab.php:65
1030
  msgctxt "Premium Tab"
1031
  msgid "Get the premium version"
1032
  msgstr "Krijg de premium versie"
1033
 
1034
+ #: yit-functions.php:1952
1035
  msgctxt "Post action"
1036
  msgid "Preview"
1037
  msgstr "Voorbeeld"
1038
 
1039
+ #: yit-functions.php:1961
1040
  msgctxt "Post action"
1041
  msgid "View"
1042
  msgstr "Bekijken"
1043
 
1044
+ #: yit-functions.php:1972
1045
  msgctxt "Post action"
1046
  msgid "Edit"
1047
  msgstr "Bewerken"
1048
 
1049
+ #: yit-functions.php:1980
1050
  msgctxt "Post action"
1051
  msgid "Duplicate"
1052
  msgstr "Dupliceren"
1053
 
1054
+ #: yit-functions.php:1992
1055
  msgctxt "Post action"
1056
  msgid "Restore"
1057
  msgstr "Herstellen"
1058
 
1059
+ #: yit-functions.php:2000
1060
  msgctxt "Post action"
1061
  msgid "Trash"
1062
  msgstr "Prullenbak"
1063
 
1064
+ #: yit-functions.php:2017
1065
  msgctxt "Post action"
1066
  msgid "Delete Permanently"
1067
  msgstr "Permanent verijwderen"
1068
 
1069
+ #: yit-functions.php:2114
1070
  msgctxt "Term action"
1071
  msgid "View"
1072
  msgstr "Bekijken"
1073
 
1074
+ #: yit-functions.php:2124
1075
  msgctxt "Term action"
1076
  msgid "Edit"
1077
  msgstr "Bewerken"
1078
 
1079
+ #: yit-functions.php:2132
1080
  msgctxt "Term action"
1081
  msgid "Duplicate"
1082
  msgstr "Dupliceren"
1083
 
1084
+ #: yit-functions.php:2145
1085
  msgctxt "Term action"
1086
  msgid "Delete"
1087
  msgstr "Verwijderen"
1088
 
1089
+ #: yit-plugin.php:85
1090
  msgctxt "Plugin Row Meta"
1091
  msgid "Live Demo"
1092
  msgstr "Live Demo"
1093
 
1094
+ #: yit-plugin.php:89
1095
  msgctxt "Plugin Row Meta"
1096
  msgid "Documentation"
1097
  msgstr "Documentatie"
1098
 
1099
+ #: yit-plugin.php:93
1100
  msgctxt "Plugin Row Meta"
1101
  msgid "Support"
1102
  msgstr "Ondersteuning"
1103
 
1104
+ #: yit-plugin.php:97
1105
  msgctxt "Plugin Row Meta"
1106
  msgid "Premium version"
1107
  msgstr "Premium versie"
1108
 
1109
+ #: yit-plugin.php:229
1110
  msgctxt "Action links"
1111
  msgid "Settings"
1112
  msgstr "Instellingen"
plugin-fw/languages/yith-plugin-fw-ru_RU.mo CHANGED
Binary file
plugin-fw/languages/yith-plugin-fw-ru_RU.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: YITH Framework\n"
6
  "Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
7
- "POT-Creation-Date: 2022-04-13 12:14:07+00:00\n"
8
  "PO-Revision-Date: 2022-04-05 17:22:32+0000\n"
9
  "Language: ru\n"
10
  "MIME-Version: 1.0\n"
@@ -14,56 +14,56 @@ msgstr ""
14
  "10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);\n"
15
  "X-Generator: GlotPress/3.0.0-alpha.2\n"
16
 
17
- #: includes/class-yit-assets.php:144 yit-functions.php:1980
18
  msgid "Confirm trash"
19
  msgstr "Подтвердить корзину"
20
 
21
- #: includes/class-yit-assets.php:145
22
  msgid "Are you sure you want to trash the selected items?"
23
  msgstr "Вы уверены, что хотите переместить в корзину выбранные элементы?"
24
 
25
- #: includes/class-yit-assets.php:147 includes/class-yit-assets.php:151
26
  #: templates/sysinfo/tabs/main.php:42 templates/sysinfo/tabs/main.php:50
27
- #: yit-functions.php:1982 yit-functions.php:2000
28
  msgid "No"
29
  msgstr "Нет"
30
 
31
- #: includes/class-yit-assets.php:148 yit-functions.php:1998
32
- #: yit-functions.php:2126
33
  msgid "Confirm delete"
34
  msgstr "Подтвердите удаление"
35
 
36
- #: includes/class-yit-assets.php:149
37
  msgid "Are you sure you want to delete the selected items?"
38
  msgstr "Вы уверены, что хотите удалить выбранные элементы?"
39
 
40
- #: includes/class-yit-assets.php:149 yit-functions.php:1914
41
- #: yit-functions.php:2074
42
  msgid ""
43
  "This action cannot be undone and you will not be able to recover this data."
44
  msgstr "Это действие нельзя отменить, и вы не сможете восстановить эти данные."
45
 
46
- #: includes/class-yit-assets.php:162
47
  msgid "Clear"
48
  msgstr "Очистить"
49
 
50
- #: includes/class-yit-assets.php:163
51
  msgid "Clear color"
52
  msgstr "Очистить цвет"
53
 
54
- #: includes/class-yit-assets.php:164
55
  msgid "Default"
56
  msgstr "По умолчанию"
57
 
58
- #: includes/class-yit-assets.php:165
59
  msgid "Select default color"
60
  msgstr "Выберите цвет по умолчанию"
61
 
62
- #: includes/class-yit-assets.php:166
63
  msgid "Select Color"
64
  msgstr "Выберите цвет"
65
 
66
- #: includes/class-yit-assets.php:167
67
  msgid "Color value"
68
  msgstr "Цвет значения"
69
 
@@ -73,7 +73,7 @@ msgstr ""
73
  "При выполнении вашего запроса произошла ошибка; пожалуйста, повторите "
74
  "попытку позже."
75
 
76
- #: includes/class-yit-plugin-panel-woocommerce.php:429
77
  msgid "The changes you have made will be lost if you leave this page."
78
  msgstr ""
79
  "Внесенные вами изменения будут потеряны, если вы покинете эту страницу."
@@ -86,90 +86,90 @@ msgstr "Настройки Плагина"
86
  msgid "Settings"
87
  msgstr "Настройки"
88
 
89
- #: includes/class-yit-plugin-panel.php:454
90
- #: includes/class-yit-plugin-panel.php:457
91
  msgid "How to install premium version"
92
  msgstr "Как установить премиум версию"
93
 
94
- #: includes/class-yit-plugin-panel.php:658
95
- #: includes/class-yit-plugin-subpanel.php:132
96
  msgid "Save Changes"
97
  msgstr "Сохранить Изменения"
98
 
99
  #: includes/class-yit-plugin-panel.php:663
100
- #: includes/class-yit-plugin-subpanel.php:136
101
- #: templates/panel/woocommerce/woocommerce-form.php:14
102
  msgid ""
103
  "If you continue with this action, you will reset all options in this page."
104
  msgstr ""
105
  "Если вы продолжите это действие, вы сбросите все параметры на этой странице."
106
 
107
  #: includes/class-yit-plugin-panel.php:663
108
- #: includes/class-yit-plugin-subpanel.php:136
109
- #: templates/panel/woocommerce/woocommerce-form.php:14
110
  msgid "Are you sure?"
111
  msgstr "Вы уверены?"
112
 
113
  #: includes/class-yit-plugin-panel.php:667
114
- #: includes/class-yit-plugin-subpanel.php:139
115
  msgid "Reset to default"
116
  msgstr "Сброс до заводских настроек"
117
 
118
- #: includes/class-yit-plugin-panel.php:1047
119
  msgid ""
120
  "The element you have entered already exists. Please, enter another name."
121
  msgstr "Введенный вами элемент уже существует. Пожалуйста, введите другое имя."
122
 
123
- #: includes/class-yit-plugin-panel.php:1048
124
  msgid "Settings saved"
125
  msgstr "Настройки сохранены"
126
 
127
- #: includes/class-yit-plugin-panel.php:1049
128
  msgid "Settings reset"
129
  msgstr "Сбросить настройки"
130
 
131
- #: includes/class-yit-plugin-panel.php:1050
132
  msgid "Element deleted correctly."
133
  msgstr "Элемент удален правильно."
134
 
135
- #: includes/class-yit-plugin-panel.php:1051
136
- #: includes/class-yit-plugin-panel.php:1052
137
  msgid "Element updated correctly."
138
  msgstr "Элемент обновлен правильно."
139
 
140
- #: includes/class-yit-plugin-panel.php:1053
141
  msgid "Database imported correctly."
142
  msgstr "База данных импортирована правильно."
143
 
144
- #: includes/class-yit-plugin-panel.php:1054
145
  msgid "An error has occurred during import. Please try again."
146
  msgstr "Во время импорта произошла ошибка. Пожалуйста, попробуйте еще раз."
147
 
148
- #: includes/class-yit-plugin-panel.php:1055
149
  msgid "The added file is not valid."
150
  msgstr "Добавленный файл недействителен."
151
 
152
- #: includes/class-yit-plugin-panel.php:1056
153
  msgid "Sorry, import is disabled."
154
  msgstr "Извините, импорт отключен."
155
 
156
- #: includes/class-yit-plugin-panel.php:1057
157
  msgid "Sorting successful."
158
  msgstr "Сортировка выполнена успешно."
159
 
160
- #: includes/class-yit-plugin-panel.php:1525
161
  msgid "We need your support"
162
  msgstr "Нам нужна ваша поддержка"
163
 
164
- #: includes/class-yit-plugin-panel.php:1526
165
  msgid "to keep updating and improving the plugin. Please,"
166
  msgstr "чтобы продолжать обновлять и улучшать плагин. Пожалуйста,"
167
 
168
- #: includes/class-yit-plugin-panel.php:1528
169
  msgid "help us by leaving a good review"
170
  msgstr "помогите нам, оставив хороший отзыв"
171
 
172
- #: includes/class-yit-plugin-panel.php:1529
173
  msgid ":) Thanks!"
174
  msgstr ":) Благодарим!"
175
 
@@ -208,6 +208,10 @@ msgstr ""
208
  "как для YITH WooCommerce Wishlist, YITH WooCommerce Ajax Search и т.д.) "
209
  "будут перемещены из предыдущего места в меню YITH."
210
 
 
 
 
 
211
  #: includes/class-yith-dashboard.php:35
212
  msgid "YITH Latest Updates"
213
  msgstr "Последние обновления YITH"
@@ -408,6 +412,10 @@ msgstr ""
408
  "Системная проверка не может определить, какая версия %1$s установлена, из-за "
409
  "проблемы с соединением между вашим сайтом и нашим сервером."
410
 
 
 
 
 
411
  #: templates/fields/ajax-customers.php:41
412
  msgid "Search for a customer..."
413
  msgstr ""
@@ -535,16 +543,16 @@ msgstr "Загрузить"
535
  msgid "Reset"
536
  msgstr "Сброс"
537
 
538
- #: templates/panel/woocommerce/woocommerce-form.php:28
539
- #: templates/panel/woocommerce/woocommerce-form.php:32
540
  msgid "Save Options"
541
  msgstr "Сохранить Настройки"
542
 
543
- #: templates/panel/woocommerce/woocommerce-form.php:32
544
  msgid "Options Saved"
545
  msgstr "Настройки Сохранены"
546
 
547
- #: templates/panel/woocommerce/woocommerce-form.php:38
548
  msgid "Reset Defaults"
549
  msgstr "Сброс до настроек по умолчанию"
550
 
@@ -672,23 +680,35 @@ msgstr ""
672
  "Данные: %1$.2fMB | Индекс: %2$.2fMB | Свободно: %3$.2fMB | Движок: %4$s"
673
 
674
  #. translators: %s is the title of the post object.
675
- #: yit-functions.php:1912
676
  msgid "Are you sure you want to move \"%s\" to trash?"
677
  msgstr "Вы уверены, что хотите переместить в корзину \"%s\"?"
678
 
679
  #. translators: %s is the title of the post object.
680
- #: yit-functions.php:1914 yit-functions.php:2074
681
  msgid "Are you sure you want to delete \"%s\"?"
682
  msgstr "Вы уверены, что хотите удалить \"%s\"?"
683
 
684
- #: yit-functions.php:2012 yit-functions.php:2020 yit-functions.php:2137
685
  msgid "Further actions"
686
  msgstr "Дальнейшие действия"
687
 
688
- #: yit-plugin.php:205
689
  msgid "License"
690
  msgstr "Лицензия"
691
 
 
 
 
 
 
 
 
 
 
 
 
 
692
  #. Author of the plugin/theme
693
  msgid "YITH"
694
  msgstr "YITH"
@@ -704,39 +724,40 @@ msgctxt "[gutenberg]: Category Name"
704
  msgid "YITH"
705
  msgstr "YITH"
706
 
707
- #: includes/class-yit-assets.php:132
708
  msgctxt "Button text"
709
  msgid "Confirm"
710
  msgstr "Подтвердить"
711
 
712
- #: includes/class-yit-assets.php:133
713
  msgctxt "Button text"
714
  msgid "Cancel"
715
  msgstr "Отмена"
716
 
717
- #: includes/class-yit-assets.php:146 yit-functions.php:1983
718
  msgctxt "Trash confirmation action"
719
  msgid "Yes, move to trash"
720
  msgstr "Да, удалить в корзину"
721
 
722
- #: includes/class-yit-assets.php:150 yit-functions.php:2001
723
- #: yit-functions.php:2128
724
  msgctxt "Delete confirmation action"
725
  msgid "Yes, delete"
726
  msgstr "Да, удалить"
727
 
728
- #: includes/class-yit-plugin-panel.php:491
729
- msgctxt "Help tab name"
730
- msgid "Help"
731
- msgstr "Помощь"
732
-
733
  #. translators: 1. Plugin name.
734
- #: includes/class-yit-plugin-panel.php:805
735
  msgctxt "Help tab default title"
736
  msgid "Thank you for purchasing %s!"
737
  msgstr "Благодарим вас за покупку %s!"
738
 
739
- #: includes/class-yit-plugin-panel.php:806
 
 
 
 
 
 
740
  msgctxt "Help tab default description"
741
  msgid ""
742
  "We want to help you enjoy a wonderful experience with all of our products."
@@ -744,11 +765,16 @@ msgstr ""
744
  "Мы хотим помочь вам получить удовольствие от использования всех наших "
745
  "продуктов."
746
 
747
- #: includes/class-yit-plugin-panel.php:853
748
  msgctxt "Premium tab name"
749
  msgid "Get premium"
750
  msgstr "Получите премиум"
751
 
 
 
 
 
 
752
  #: includes/class-yith-dashboard.php:96
753
  msgctxt "Plugin FW"
754
  msgid "View Changelog"
@@ -863,7 +889,7 @@ msgid "NO"
863
  msgstr "НЕТ"
864
 
865
  #. translators: 1. Url to EN playlist.
866
- #: templates/panel/help-tab.php:87
867
  msgctxt "Help tab view all video link"
868
  msgid ""
869
  "Check the full <a href=\"%s\" target=\"_blank\">Playlist on Youtube</a> to "
@@ -872,57 +898,57 @@ msgstr ""
872
  "Посмотрите полный <a href=\"%s\" target=\"_blank\">плейлист на Youtube</a>, "
873
  "чтобы узнать больше >"
874
 
875
- #: templates/panel/help-tab.php:94
876
  msgctxt "Help tab Watch Videotutorials link"
877
  msgid "Videos are also available in:"
878
  msgstr "Видеоматериалы также доступны в:"
879
 
880
- #: templates/panel/help-tab.php:124
881
  msgctxt "Help tab Read Documentation link"
882
  msgid "Read the documentation"
883
  msgstr "Прочтите документацию"
884
 
885
- #: templates/panel/help-tab.php:127
886
  msgctxt "Help tab Read Documentation link"
887
  msgid "to learn how the plugin works from the basics."
888
  msgstr ""
889
 
890
- #: templates/panel/help-tab.php:137
891
  msgctxt "Help tab Watch video tutorials link"
892
  msgid "Watch our video tutorials"
893
  msgstr "Посмотрите наши видеоуроки"
894
 
895
- #: templates/panel/help-tab.php:140
896
  msgctxt "Help tab Watch video tutorials link"
897
  msgid "to see some helpful use cases."
898
  msgstr ""
899
 
900
- #: templates/panel/help-tab.php:150
901
  msgctxt "Help tab view FAQs link"
902
  msgid "Check the FAQs"
903
  msgstr "Проверьте ответы на часто задаваемые вопросы"
904
 
905
- #: templates/panel/help-tab.php:153
906
  msgctxt "Help tab view FAQs link"
907
  msgid "to find answers to your doubts."
908
  msgstr "найти ответы на свои сомнения."
909
 
910
- #: templates/panel/help-tab.php:169
911
  msgctxt "Help tab FAQ title"
912
  msgid "Last FAQs in our Help Center"
913
  msgstr "Последние часто задаваемые вопросы в нашем Справочном Центре"
914
 
915
- #: templates/panel/help-tab.php:183
916
  msgctxt "Help tab FAQ link"
917
  msgid "View all FAQs >"
918
  msgstr "Просмотреть все часто задаваемые вопросы >"
919
 
920
- #: templates/panel/help-tab.php:192
921
  msgctxt "Help tab submit ticket title"
922
  msgid "Need help?"
923
  msgstr "Нужна помощь?"
924
 
925
- #: templates/panel/help-tab.php:195
926
  msgctxt "Help tab submit ticket description"
927
  msgid ""
928
  "If you are experiencing any technical issues, ask for help from our "
@@ -933,11 +959,47 @@ msgstr ""
933
  "разработчикам. Отправьте заявку через нашу службу поддержки, и мы поможем "
934
  "вам как можно скорее."
935
 
936
- #: templates/panel/help-tab.php:203
937
  msgctxt "Help tab submit ticket button"
938
  msgid "Submit a ticket"
939
  msgstr "Отправить обращение"
940
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
941
  #: templates/panel/premium-tab.php:30
942
  msgctxt "Premium Tab"
943
  msgid "Get the premium version to unlock advanced features"
@@ -954,97 +1016,103 @@ msgid "Plugin premium features images"
954
  msgstr "Изображения премиум-функций плагина"
955
 
956
  #. translators: alt attribute of main image tag.
957
- #: templates/panel/premium-tab.php:51
958
  msgctxt "Premium Tab"
959
  msgid "And so much more!"
960
  msgstr "И многое другое!"
961
 
962
  #: templates/panel/premium-tab.php:53
 
 
 
 
 
 
963
  msgctxt "Premium Tab"
964
  msgid "Check the free vs premium features >"
965
  msgstr "Проверьте бесплатные и премиум функции >"
966
 
967
- #: templates/panel/premium-tab.php:58
968
  msgctxt "Premium Tab"
969
  msgid "Get the premium version"
970
  msgstr "Получите премиум-версию"
971
 
972
- #: yit-functions.php:1926
973
  msgctxt "Post action"
974
  msgid "Preview"
975
  msgstr "Предварительный просмотр"
976
 
977
- #: yit-functions.php:1935
978
  msgctxt "Post action"
979
  msgid "View"
980
  msgstr "Просмотреть"
981
 
982
- #: yit-functions.php:1946
983
  msgctxt "Post action"
984
  msgid "Edit"
985
  msgstr "Изменить"
986
 
987
- #: yit-functions.php:1954
988
  msgctxt "Post action"
989
  msgid "Duplicate"
990
  msgstr "Дублировать"
991
 
992
- #: yit-functions.php:1966
993
  msgctxt "Post action"
994
  msgid "Restore"
995
  msgstr "Восстановить"
996
 
997
- #: yit-functions.php:1974
998
  msgctxt "Post action"
999
  msgid "Trash"
1000
  msgstr "Корзина"
1001
 
1002
- #: yit-functions.php:1991
1003
  msgctxt "Post action"
1004
  msgid "Delete Permanently"
1005
  msgstr "Удалить навсегда"
1006
 
1007
- #: yit-functions.php:2088
1008
  msgctxt "Term action"
1009
  msgid "View"
1010
  msgstr "Просмотреть"
1011
 
1012
- #: yit-functions.php:2098
1013
  msgctxt "Term action"
1014
  msgid "Edit"
1015
  msgstr "Изменить"
1016
 
1017
- #: yit-functions.php:2106
1018
  msgctxt "Term action"
1019
  msgid "Duplicate"
1020
  msgstr "Дублировать"
1021
 
1022
- #: yit-functions.php:2119
1023
  msgctxt "Term action"
1024
  msgid "Delete"
1025
  msgstr "Удалить"
1026
 
1027
- #: yit-plugin.php:84
1028
  msgctxt "Plugin Row Meta"
1029
  msgid "Live Demo"
1030
  msgstr "Живая Демонстрация"
1031
 
1032
- #: yit-plugin.php:88
1033
  msgctxt "Plugin Row Meta"
1034
  msgid "Documentation"
1035
  msgstr "Документация"
1036
 
1037
- #: yit-plugin.php:92
1038
  msgctxt "Plugin Row Meta"
1039
  msgid "Support"
1040
  msgstr "Поддержка"
1041
 
1042
- #: yit-plugin.php:96
1043
  msgctxt "Plugin Row Meta"
1044
  msgid "Premium version"
1045
  msgstr "Премиум версия"
1046
 
1047
- #: yit-plugin.php:201
1048
  msgctxt "Action links"
1049
  msgid "Settings"
1050
  msgstr "Настройки"
4
  msgstr ""
5
  "Project-Id-Version: YITH Framework\n"
6
  "Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
7
+ "POT-Creation-Date: 2022-08-02 12:02:23+00:00\n"
8
  "PO-Revision-Date: 2022-04-05 17:22:32+0000\n"
9
  "Language: ru\n"
10
  "MIME-Version: 1.0\n"
14
  "10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);\n"
15
  "X-Generator: GlotPress/3.0.0-alpha.2\n"
16
 
17
+ #: includes/class-yit-assets.php:146 yit-functions.php:2006
18
  msgid "Confirm trash"
19
  msgstr "Подтвердить корзину"
20
 
21
+ #: includes/class-yit-assets.php:147
22
  msgid "Are you sure you want to trash the selected items?"
23
  msgstr "Вы уверены, что хотите переместить в корзину выбранные элементы?"
24
 
25
+ #: includes/class-yit-assets.php:149 includes/class-yit-assets.php:153
26
  #: templates/sysinfo/tabs/main.php:42 templates/sysinfo/tabs/main.php:50
27
+ #: yit-functions.php:2008 yit-functions.php:2026
28
  msgid "No"
29
  msgstr "Нет"
30
 
31
+ #: includes/class-yit-assets.php:150 yit-functions.php:2024
32
+ #: yit-functions.php:2152
33
  msgid "Confirm delete"
34
  msgstr "Подтвердите удаление"
35
 
36
+ #: includes/class-yit-assets.php:151
37
  msgid "Are you sure you want to delete the selected items?"
38
  msgstr "Вы уверены, что хотите удалить выбранные элементы?"
39
 
40
+ #: includes/class-yit-assets.php:151 yit-functions.php:1940
41
+ #: yit-functions.php:2100
42
  msgid ""
43
  "This action cannot be undone and you will not be able to recover this data."
44
  msgstr "Это действие нельзя отменить, и вы не сможете восстановить эти данные."
45
 
46
+ #: includes/class-yit-assets.php:172
47
  msgid "Clear"
48
  msgstr "Очистить"
49
 
50
+ #: includes/class-yit-assets.php:173
51
  msgid "Clear color"
52
  msgstr "Очистить цвет"
53
 
54
+ #: includes/class-yit-assets.php:174
55
  msgid "Default"
56
  msgstr "По умолчанию"
57
 
58
+ #: includes/class-yit-assets.php:175
59
  msgid "Select default color"
60
  msgstr "Выберите цвет по умолчанию"
61
 
62
+ #: includes/class-yit-assets.php:176
63
  msgid "Select Color"
64
  msgstr "Выберите цвет"
65
 
66
+ #: includes/class-yit-assets.php:177
67
  msgid "Color value"
68
  msgstr "Цвет значения"
69
 
73
  "При выполнении вашего запроса произошла ошибка; пожалуйста, повторите "
74
  "попытку позже."
75
 
76
+ #: includes/class-yit-plugin-panel-woocommerce.php:430
77
  msgid "The changes you have made will be lost if you leave this page."
78
  msgstr ""
79
  "Внесенные вами изменения будут потеряны, если вы покинете эту страницу."
86
  msgid "Settings"
87
  msgstr "Настройки"
88
 
89
+ #: includes/class-yit-plugin-panel.php:455
90
+ #: includes/class-yit-plugin-panel.php:458
91
  msgid "How to install premium version"
92
  msgstr "Как установить премиум версию"
93
 
94
+ #: includes/class-yit-plugin-panel.php:655
95
+ #: includes/class-yit-plugin-subpanel.php:133
96
  msgid "Save Changes"
97
  msgstr "Сохранить Изменения"
98
 
99
  #: includes/class-yit-plugin-panel.php:663
100
+ #: includes/class-yit-plugin-subpanel.php:140
101
+ #: templates/panel/woocommerce/woocommerce-form.php:15
102
  msgid ""
103
  "If you continue with this action, you will reset all options in this page."
104
  msgstr ""
105
  "Если вы продолжите это действие, вы сбросите все параметры на этой странице."
106
 
107
  #: includes/class-yit-plugin-panel.php:663
108
+ #: includes/class-yit-plugin-subpanel.php:140
109
+ #: templates/panel/woocommerce/woocommerce-form.php:15
110
  msgid "Are you sure?"
111
  msgstr "Вы уверены?"
112
 
113
  #: includes/class-yit-plugin-panel.php:667
114
+ #: includes/class-yit-plugin-subpanel.php:143
115
  msgid "Reset to default"
116
  msgstr "Сброс до заводских настроек"
117
 
118
+ #: includes/class-yit-plugin-panel.php:1074
119
  msgid ""
120
  "The element you have entered already exists. Please, enter another name."
121
  msgstr "Введенный вами элемент уже существует. Пожалуйста, введите другое имя."
122
 
123
+ #: includes/class-yit-plugin-panel.php:1075
124
  msgid "Settings saved"
125
  msgstr "Настройки сохранены"
126
 
127
+ #: includes/class-yit-plugin-panel.php:1076
128
  msgid "Settings reset"
129
  msgstr "Сбросить настройки"
130
 
131
+ #: includes/class-yit-plugin-panel.php:1077
132
  msgid "Element deleted correctly."
133
  msgstr "Элемент удален правильно."
134
 
135
+ #: includes/class-yit-plugin-panel.php:1078
136
+ #: includes/class-yit-plugin-panel.php:1079
137
  msgid "Element updated correctly."
138
  msgstr "Элемент обновлен правильно."
139
 
140
+ #: includes/class-yit-plugin-panel.php:1080
141
  msgid "Database imported correctly."
142
  msgstr "База данных импортирована правильно."
143
 
144
+ #: includes/class-yit-plugin-panel.php:1081
145
  msgid "An error has occurred during import. Please try again."
146
  msgstr "Во время импорта произошла ошибка. Пожалуйста, попробуйте еще раз."
147
 
148
+ #: includes/class-yit-plugin-panel.php:1082
149
  msgid "The added file is not valid."
150
  msgstr "Добавленный файл недействителен."
151
 
152
+ #: includes/class-yit-plugin-panel.php:1083
153
  msgid "Sorry, import is disabled."
154
  msgstr "Извините, импорт отключен."
155
 
156
+ #: includes/class-yit-plugin-panel.php:1084
157
  msgid "Sorting successful."
158
  msgstr "Сортировка выполнена успешно."
159
 
160
+ #: includes/class-yit-plugin-panel.php:1573
161
  msgid "We need your support"
162
  msgstr "Нам нужна ваша поддержка"
163
 
164
+ #: includes/class-yit-plugin-panel.php:1574
165
  msgid "to keep updating and improving the plugin. Please,"
166
  msgstr "чтобы продолжать обновлять и улучшать плагин. Пожалуйста,"
167
 
168
+ #: includes/class-yit-plugin-panel.php:1576
169
  msgid "help us by leaving a good review"
170
  msgstr "помогите нам, оставив хороший отзыв"
171
 
172
+ #: includes/class-yit-plugin-panel.php:1577
173
  msgid ":) Thanks!"
174
  msgstr ":) Благодарим!"
175
 
208
  "как для YITH WooCommerce Wishlist, YITH WooCommerce Ajax Search и т.д.) "
209
  "будут перемещены из предыдущего места в меню YITH."
210
 
211
+ #: includes/class-yith-bh-onboarding.php:85
212
+ msgid "It is not possible save the options"
213
+ msgstr ""
214
+
215
  #: includes/class-yith-dashboard.php:35
216
  msgid "YITH Latest Updates"
217
  msgstr "Последние обновления YITH"
412
  "Системная проверка не может определить, какая версия %1$s установлена, из-за "
413
  "проблемы с соединением между вашим сайтом и нашим сервером."
414
 
415
+ #: templates/bh-onboarding/onboarding-tabs.php:63
416
+ msgid "Save"
417
+ msgstr ""
418
+
419
  #: templates/fields/ajax-customers.php:41
420
  msgid "Search for a customer..."
421
  msgstr ""
543
  msgid "Reset"
544
  msgstr "Сброс"
545
 
546
+ #: templates/panel/woocommerce/woocommerce-form.php:29
547
+ #: templates/panel/woocommerce/woocommerce-form.php:33
548
  msgid "Save Options"
549
  msgstr "Сохранить Настройки"
550
 
551
+ #: templates/panel/woocommerce/woocommerce-form.php:33
552
  msgid "Options Saved"
553
  msgstr "Настройки Сохранены"
554
 
555
+ #: templates/panel/woocommerce/woocommerce-form.php:43
556
  msgid "Reset Defaults"
557
  msgstr "Сброс до настроек по умолчанию"
558
 
680
  "Данные: %1$.2fMB | Индекс: %2$.2fMB | Свободно: %3$.2fMB | Движок: %4$s"
681
 
682
  #. translators: %s is the title of the post object.
683
+ #: yit-functions.php:1938
684
  msgid "Are you sure you want to move \"%s\" to trash?"
685
  msgstr "Вы уверены, что хотите переместить в корзину \"%s\"?"
686
 
687
  #. translators: %s is the title of the post object.
688
+ #: yit-functions.php:1940 yit-functions.php:2100
689
  msgid "Are you sure you want to delete \"%s\"?"
690
  msgstr "Вы уверены, что хотите удалить \"%s\"?"
691
 
692
+ #: yit-functions.php:2038 yit-functions.php:2046 yit-functions.php:2163
693
  msgid "Further actions"
694
  msgstr "Дальнейшие действия"
695
 
696
+ #: yit-plugin.php:233
697
  msgid "License"
698
  msgstr "Лицензия"
699
 
700
+ #. translators: 1. Plugin(s) name(s).
701
+ #: yit-plugin.php:272
702
+ msgid ""
703
+ "%s was deactivated as you're running an higher tier version of the same "
704
+ "plugin."
705
+ msgid_plural ""
706
+ "%s were deactivated as you're running higher tier versions of the same "
707
+ "plugins."
708
+ msgstr[0] ""
709
+ msgstr[1] ""
710
+ msgstr[2] ""
711
+
712
  #. Author of the plugin/theme
713
  msgid "YITH"
714
  msgstr "YITH"
724
  msgid "YITH"
725
  msgstr "YITH"
726
 
727
+ #: includes/class-yit-assets.php:134
728
  msgctxt "Button text"
729
  msgid "Confirm"
730
  msgstr "Подтвердить"
731
 
732
+ #: includes/class-yit-assets.php:135
733
  msgctxt "Button text"
734
  msgid "Cancel"
735
  msgstr "Отмена"
736
 
737
+ #: includes/class-yit-assets.php:148 yit-functions.php:2009
738
  msgctxt "Trash confirmation action"
739
  msgid "Yes, move to trash"
740
  msgstr "Да, удалить в корзину"
741
 
742
+ #: includes/class-yit-assets.php:152 yit-functions.php:2027
743
+ #: yit-functions.php:2154
744
  msgctxt "Delete confirmation action"
745
  msgid "Yes, delete"
746
  msgstr "Да, удалить"
747
 
 
 
 
 
 
748
  #. translators: 1. Plugin name.
749
+ #: includes/class-yit-plugin-panel.php:803
750
  msgctxt "Help tab default title"
751
  msgid "Thank you for purchasing %s!"
752
  msgstr "Благодарим вас за покупку %s!"
753
 
754
+ #: includes/class-yit-plugin-panel.php:803
755
+ #, fuzzy
756
+ msgctxt "Help tab default title"
757
+ msgid "Thank you for using %s!"
758
+ msgstr "Благодарим вас за покупку %s!"
759
+
760
+ #: includes/class-yit-plugin-panel.php:815
761
  msgctxt "Help tab default description"
762
  msgid ""
763
  "We want to help you enjoy a wonderful experience with all of our products."
765
  "Мы хотим помочь вам получить удовольствие от использования всех наших "
766
  "продуктов."
767
 
768
+ #: includes/class-yit-plugin-panel.php:866
769
  msgctxt "Premium tab name"
770
  msgid "Get premium"
771
  msgstr "Получите премиум"
772
 
773
+ #: includes/class-yit-plugin-panel.php:878
774
+ msgctxt "Help tab name"
775
+ msgid "Help"
776
+ msgstr "Помощь"
777
+
778
  #: includes/class-yith-dashboard.php:96
779
  msgctxt "Plugin FW"
780
  msgid "View Changelog"
889
  msgstr "НЕТ"
890
 
891
  #. translators: 1. Url to EN playlist.
892
+ #: templates/panel/help-tab.php:89
893
  msgctxt "Help tab view all video link"
894
  msgid ""
895
  "Check the full <a href=\"%s\" target=\"_blank\">Playlist on Youtube</a> to "
898
  "Посмотрите полный <a href=\"%s\" target=\"_blank\">плейлист на Youtube</a>, "
899
  "чтобы узнать больше >"
900
 
901
+ #: templates/panel/help-tab.php:96
902
  msgctxt "Help tab Watch Videotutorials link"
903
  msgid "Videos are also available in:"
904
  msgstr "Видеоматериалы также доступны в:"
905
 
906
+ #: templates/panel/help-tab.php:126
907
  msgctxt "Help tab Read Documentation link"
908
  msgid "Read the documentation"
909
  msgstr "Прочтите документацию"
910
 
911
+ #: templates/panel/help-tab.php:129
912
  msgctxt "Help tab Read Documentation link"
913
  msgid "to learn how the plugin works from the basics."
914
  msgstr ""
915
 
916
+ #: templates/panel/help-tab.php:139
917
  msgctxt "Help tab Watch video tutorials link"
918
  msgid "Watch our video tutorials"
919
  msgstr "Посмотрите наши видеоуроки"
920
 
921
+ #: templates/panel/help-tab.php:142
922
  msgctxt "Help tab Watch video tutorials link"
923
  msgid "to see some helpful use cases."
924
  msgstr ""
925
 
926
+ #: templates/panel/help-tab.php:152
927
  msgctxt "Help tab view FAQs link"
928
  msgid "Check the FAQs"
929
  msgstr "Проверьте ответы на часто задаваемые вопросы"
930
 
931
+ #: templates/panel/help-tab.php:155
932
  msgctxt "Help tab view FAQs link"
933
  msgid "to find answers to your doubts."
934
  msgstr "найти ответы на свои сомнения."
935
 
936
+ #: templates/panel/help-tab.php:170
937
  msgctxt "Help tab FAQ title"
938
  msgid "Last FAQs in our Help Center"
939
  msgstr "Последние часто задаваемые вопросы в нашем Справочном Центре"
940
 
941
+ #: templates/panel/help-tab.php:184
942
  msgctxt "Help tab FAQ link"
943
  msgid "View all FAQs >"
944
  msgstr "Просмотреть все часто задаваемые вопросы >"
945
 
946
+ #: templates/panel/help-tab.php:193
947
  msgctxt "Help tab submit ticket title"
948
  msgid "Need help?"
949
  msgstr "Нужна помощь?"
950
 
951
+ #: templates/panel/help-tab.php:196
952
  msgctxt "Help tab submit ticket description"
953
  msgid ""
954
  "If you are experiencing any technical issues, ask for help from our "
959
  "разработчикам. Отправьте заявку через нашу службу поддержки, и мы поможем "
960
  "вам как можно скорее."
961
 
962
+ #: templates/panel/help-tab.php:204
963
  msgctxt "Help tab submit ticket button"
964
  msgid "Submit a ticket"
965
  msgstr "Отправить обращение"
966
 
967
+ #: templates/panel/help-tab.php:216 templates/panel/help-tab.php:218
968
+ #: templates/panel/help-tab.php:223
969
+ #, fuzzy
970
+ msgctxt "Help tab documentation"
971
+ msgid "Read the plugin documentation"
972
+ msgstr "Прочтите документацию"
973
+
974
+ #: templates/panel/help-tab.php:220
975
+ msgctxt "Help tab documentation"
976
+ msgid "to learn how it works from the basics."
977
+ msgstr ""
978
+
979
+ #: templates/panel/help-tab.php:231 templates/panel/help-tab.php:233
980
+ #, fuzzy
981
+ msgctxt "Help tab support"
982
+ msgid "Need some help?"
983
+ msgstr "Нужна помощь?"
984
+
985
+ #: templates/panel/help-tab.php:235
986
+ msgctxt "Help tab support"
987
+ msgid "From DIY to full-service help"
988
+ msgstr ""
989
+
990
+ #: templates/panel/help-tab.php:238
991
+ msgctxt "Help tab support"
992
+ msgid ""
993
+ "Call or chat 24/7 with our support agents, or let our experts build your "
994
+ "site."
995
+ msgstr ""
996
+
997
+ #: templates/panel/help-tab.php:241
998
+ #, fuzzy
999
+ msgctxt "Help tab support"
1000
+ msgid "Yes, I need help"
1001
+ msgstr "Нужна помощь?"
1002
+
1003
  #: templates/panel/premium-tab.php:30
1004
  msgctxt "Premium Tab"
1005
  msgid "Get the premium version to unlock advanced features"
1016
  msgstr "Изображения премиум-функций плагина"
1017
 
1018
  #. translators: alt attribute of main image tag.
1019
+ #: templates/panel/premium-tab.php:51 templates/panel/premium-tab.php:58
1020
  msgctxt "Premium Tab"
1021
  msgid "And so much more!"
1022
  msgstr "И многое другое!"
1023
 
1024
  #: templates/panel/premium-tab.php:53
1025
+ #, fuzzy
1026
+ msgctxt "Premium Tab"
1027
+ msgid "Check the premium features >"
1028
+ msgstr "Проверьте бесплатные и премиум функции >"
1029
+
1030
+ #: templates/panel/premium-tab.php:60
1031
  msgctxt "Premium Tab"
1032
  msgid "Check the free vs premium features >"
1033
  msgstr "Проверьте бесплатные и премиум функции >"
1034
 
1035
+ #: templates/panel/premium-tab.php:65
1036
  msgctxt "Premium Tab"
1037
  msgid "Get the premium version"
1038
  msgstr "Получите премиум-версию"
1039
 
1040
+ #: yit-functions.php:1952
1041
  msgctxt "Post action"
1042
  msgid "Preview"
1043
  msgstr "Предварительный просмотр"
1044
 
1045
+ #: yit-functions.php:1961
1046
  msgctxt "Post action"
1047
  msgid "View"
1048
  msgstr "Просмотреть"
1049
 
1050
+ #: yit-functions.php:1972
1051
  msgctxt "Post action"
1052
  msgid "Edit"
1053
  msgstr "Изменить"
1054
 
1055
+ #: yit-functions.php:1980
1056
  msgctxt "Post action"
1057
  msgid "Duplicate"
1058
  msgstr "Дублировать"
1059
 
1060
+ #: yit-functions.php:1992
1061
  msgctxt "Post action"
1062
  msgid "Restore"
1063
  msgstr "Восстановить"
1064
 
1065
+ #: yit-functions.php:2000
1066
  msgctxt "Post action"
1067
  msgid "Trash"
1068
  msgstr "Корзина"
1069
 
1070
+ #: yit-functions.php:2017
1071
  msgctxt "Post action"
1072
  msgid "Delete Permanently"
1073
  msgstr "Удалить навсегда"
1074
 
1075
+ #: yit-functions.php:2114
1076
  msgctxt "Term action"
1077
  msgid "View"
1078
  msgstr "Просмотреть"
1079
 
1080
+ #: yit-functions.php:2124
1081
  msgctxt "Term action"
1082
  msgid "Edit"
1083
  msgstr "Изменить"
1084
 
1085
+ #: yit-functions.php:2132
1086
  msgctxt "Term action"
1087
  msgid "Duplicate"
1088
  msgstr "Дублировать"
1089
 
1090
+ #: yit-functions.php:2145
1091
  msgctxt "Term action"
1092
  msgid "Delete"
1093
  msgstr "Удалить"
1094
 
1095
+ #: yit-plugin.php:85
1096
  msgctxt "Plugin Row Meta"
1097
  msgid "Live Demo"
1098
  msgstr "Живая Демонстрация"
1099
 
1100
+ #: yit-plugin.php:89
1101
  msgctxt "Plugin Row Meta"
1102
  msgid "Documentation"
1103
  msgstr "Документация"
1104
 
1105
+ #: yit-plugin.php:93
1106
  msgctxt "Plugin Row Meta"
1107
  msgid "Support"
1108
  msgstr "Поддержка"
1109
 
1110
+ #: yit-plugin.php:97
1111
  msgctxt "Plugin Row Meta"
1112
  msgid "Premium version"
1113
  msgstr "Премиум версия"
1114
 
1115
+ #: yit-plugin.php:229
1116
  msgctxt "Action links"
1117
  msgid "Settings"
1118
  msgstr "Настройки"
plugin-fw/languages/yith-plugin-fw-zh_CN.mo ADDED
Binary file
plugin-fw/languages/yith-plugin-fw-zh_CN.po ADDED
@@ -0,0 +1,1091 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of YITH Framework in Chinese
2
+ # This file is distributed under the same license as the YITH Framework package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: YITH Framework\n"
6
+ "Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
7
+ "POT-Creation-Date: 2022-08-02 12:02:23+00:00\n"
8
+ "PO-Revision-Date: 2022-06-29 13:12:18+0000\n"
9
+ "Language: zh\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=1; plural=0;\n"
14
+ "X-Generator: GlotPress/3.0.0-alpha.2\n"
15
+
16
+ #: includes/class-yit-assets.php:146 yit-functions.php:2006
17
+ msgid "Confirm trash"
18
+ msgstr "確認丟棄"
19
+
20
+ #: includes/class-yit-assets.php:147
21
+ msgid "Are you sure you want to trash the selected items?"
22
+ msgstr "你確定要將所選的項目移至垃圾桶嗎?"
23
+
24
+ #: includes/class-yit-assets.php:149 includes/class-yit-assets.php:153
25
+ #: templates/sysinfo/tabs/main.php:42 templates/sysinfo/tabs/main.php:50
26
+ #: yit-functions.php:2008 yit-functions.php:2026
27
+ msgid "No"
28
+ msgstr "不"
29
+
30
+ #: includes/class-yit-assets.php:150 yit-functions.php:2024
31
+ #: yit-functions.php:2152
32
+ msgid "Confirm delete"
33
+ msgstr "確認刪除"
34
+
35
+ #: includes/class-yit-assets.php:151
36
+ msgid "Are you sure you want to delete the selected items?"
37
+ msgstr "你確定要刪除所選的項目嗎?"
38
+
39
+ #: includes/class-yit-assets.php:151 yit-functions.php:1940
40
+ #: yit-functions.php:2100
41
+ msgid ""
42
+ "This action cannot be undone and you will not be able to recover this data."
43
+ msgstr "此操作無法撤消,您將無法恢復此數據。"
44
+
45
+ #: includes/class-yit-assets.php:172
46
+ msgid "Clear"
47
+ msgstr "清除"
48
+
49
+ #: includes/class-yit-assets.php:173
50
+ msgid "Clear color"
51
+ msgstr "清除顏色"
52
+
53
+ #: includes/class-yit-assets.php:174
54
+ msgid "Default"
55
+ msgstr "預設"
56
+
57
+ #: includes/class-yit-assets.php:175
58
+ msgid "Select default color"
59
+ msgstr "選擇預設顏色"
60
+
61
+ #: includes/class-yit-assets.php:176
62
+ msgid "Select Color"
63
+ msgstr "選擇顏色"
64
+
65
+ #: includes/class-yit-assets.php:177
66
+ msgid "Color value"
67
+ msgstr "顏色數值"
68
+
69
+ #: includes/class-yit-help-desk.php:152
70
+ msgid "There was an error with your request; please try again later."
71
+ msgstr "您的請求有誤; 請稍後再試。"
72
+
73
+ #: includes/class-yit-plugin-panel-woocommerce.php:430
74
+ msgid "The changes you have made will be lost if you leave this page."
75
+ msgstr "如果你離開這個頁面,這些改變將會遺失"
76
+
77
+ #: includes/class-yit-plugin-panel.php:83
78
+ msgid "Plugin Settings"
79
+ msgstr "外掛設定"
80
+
81
+ #: includes/class-yit-plugin-panel.php:84
82
+ msgid "Settings"
83
+ msgstr "設定"
84
+
85
+ #: includes/class-yit-plugin-panel.php:455
86
+ #: includes/class-yit-plugin-panel.php:458
87
+ msgid "How to install premium version"
88
+ msgstr "如何安裝高級版"
89
+
90
+ #: includes/class-yit-plugin-panel.php:655
91
+ #: includes/class-yit-plugin-subpanel.php:133
92
+ msgid "Save Changes"
93
+ msgstr "儲存變更"
94
+
95
+ #: includes/class-yit-plugin-panel.php:663
96
+ #: includes/class-yit-plugin-subpanel.php:140
97
+ #: templates/panel/woocommerce/woocommerce-form.php:15
98
+ msgid ""
99
+ "If you continue with this action, you will reset all options in this page."
100
+ msgstr "如果你繼續這個動作,你將會重設這個頁面所有的選項"
101
+
102
+ #: includes/class-yit-plugin-panel.php:663
103
+ #: includes/class-yit-plugin-subpanel.php:140
104
+ #: templates/panel/woocommerce/woocommerce-form.php:15
105
+ msgid "Are you sure?"
106
+ msgstr "你確定嗎?"
107
+
108
+ #: includes/class-yit-plugin-panel.php:667
109
+ #: includes/class-yit-plugin-subpanel.php:143
110
+ msgid "Reset to default"
111
+ msgstr "重置為預設值"
112
+
113
+ #: includes/class-yit-plugin-panel.php:1074
114
+ msgid ""
115
+ "The element you have entered already exists. Please, enter another name."
116
+ msgstr "你輸入的這個元素已經存在,請輸入另一個名稱"
117
+
118
+ #: includes/class-yit-plugin-panel.php:1075
119
+ msgid "Settings saved"
120
+ msgstr "設定已經儲存"
121
+
122
+ #: includes/class-yit-plugin-panel.php:1076
123
+ msgid "Settings reset"
124
+ msgstr "重置設定"
125
+
126
+ #: includes/class-yit-plugin-panel.php:1077
127
+ msgid "Element deleted correctly."
128
+ msgstr "元素已被確實刪除"
129
+
130
+ #: includes/class-yit-plugin-panel.php:1078
131
+ #: includes/class-yit-plugin-panel.php:1079
132
+ msgid "Element updated correctly."
133
+ msgstr "元素已正確更新。"
134
+
135
+ #: includes/class-yit-plugin-panel.php:1080
136
+ msgid "Database imported correctly."
137
+ msgstr "資料庫已被正確匯入"
138
+
139
+ #: includes/class-yit-plugin-panel.php:1081
140
+ msgid "An error has occurred during import. Please try again."
141
+ msgstr "匯入過程中發生一個錯誤,請再試一次"
142
+
143
+ #: includes/class-yit-plugin-panel.php:1082
144
+ msgid "The added file is not valid."
145
+ msgstr "添加的檔案無效"
146
+
147
+ #: includes/class-yit-plugin-panel.php:1083
148
+ msgid "Sorry, import is disabled."
149
+ msgstr "抱歉,匯入功能被關閉"
150
+
151
+ #: includes/class-yit-plugin-panel.php:1084
152
+ msgid "Sorting successful."
153
+ msgstr "已順利排序"
154
+
155
+ #: includes/class-yit-plugin-panel.php:1573
156
+ msgid "We need your support"
157
+ msgstr "我們需要你的支援"
158
+
159
+ #: includes/class-yit-plugin-panel.php:1574
160
+ msgid "to keep updating and improving the plugin. Please,"
161
+ msgstr "請不斷保持更新與改進外掛"
162
+
163
+ #: includes/class-yit-plugin-panel.php:1576
164
+ msgid "help us by leaving a good review"
165
+ msgstr "留下好的評論幫助我們更進步"
166
+
167
+ #: includes/class-yit-plugin-panel.php:1577
168
+ msgid ":) Thanks!"
169
+ msgstr ":) 謝謝!"
170
+
171
+ #: includes/class-yit-pointers.php:80
172
+ msgid "Plugins Activated"
173
+ msgstr "外掛已啟動"
174
+
175
+ #: includes/class-yit-pointers.php:81
176
+ msgid ""
177
+ "From now on, you can find all plugin options in YITH menu. Plugin "
178
+ "customization settings will be available as a new entry in YITH menu."
179
+ msgstr ""
180
+ "從現在開始,您可以在 YITH 選單中找到所有外掛選項。 外掛預設在 YITH 選單下的新"
181
+ "項目。"
182
+
183
+ #. translators: 1. YITH site link; 2. WordPress site link.
184
+ #: includes/class-yit-pointers.php:84 includes/class-yit-pointers.php:100
185
+ msgid "Discover all our plugins available on: %1$s and %2$s"
186
+ msgstr "探索我們所有可用的外掛:%1$s 和 %2$s"
187
+
188
+ #: includes/class-yit-pointers.php:96
189
+ msgid "Plugins Upgraded"
190
+ msgstr "外掛已升級"
191
+
192
+ #: includes/class-yit-pointers.php:97
193
+ msgid ""
194
+ "From now on, you can find the option panel of YITH plugins in YITH menu. "
195
+ "Every time one of our plugins is added, a new entry will be added to this "
196
+ "menu. For example, after the update, plugin options (such as for YITH "
197
+ "WooCommerce Wishlist, YITH WooCommerce Ajax Search, etc.) will be moved from "
198
+ "previous location to YITH menu."
199
+ msgstr ""
200
+ "從現在開始,您可以在 YITH 選單中找到 YITH 外掛的選項面板。 每次添加我們的外掛"
201
+ "時,都會在此選單中添加一個新條目。 例如,更新後,外掛選項(例如 YITH "
202
+ "WooCommerce Wishlist、YITH WooCommerce Ajax 搜尋等)將從之前的位置移動到 "
203
+ "YITH 選單。"
204
+
205
+ #: includes/class-yith-bh-onboarding.php:85
206
+ msgid "It is not possible save the options"
207
+ msgstr ""
208
+
209
+ #: includes/class-yith-dashboard.php:35
210
+ msgid "YITH Latest Updates"
211
+ msgstr "YITH 最新更新"
212
+
213
+ #: includes/class-yith-dashboard.php:36
214
+ msgid "Latest news from YITH Blog"
215
+ msgstr "來自 YITH 部落格的最新消息"
216
+
217
+ #: includes/class-yith-dashboard.php:56
218
+ msgid "RSS Error:"
219
+ msgstr "RSS 錯誤:"
220
+
221
+ #: includes/class-yith-dashboard.php:63
222
+ msgid ""
223
+ "An error has occurred, which probably means the feed is down. Try again "
224
+ "later."
225
+ msgstr "發生錯誤,這可能意味著 Feed 已關閉。 稍後再試。"
226
+
227
+ #. translators: %s is the name of the post type (example Back to "Membership
228
+ #. Plans").
229
+ #: includes/class-yith-post-type-admin.php:286
230
+ msgid "Back to \"%s\""
231
+ msgstr "返回至 \"%s\""
232
+
233
+ #: includes/class-yith-post-type-admin.php:286
234
+ msgid "Back to the list"
235
+ msgstr "返回至列表"
236
+
237
+ #: includes/class-yith-system-status.php:110
238
+ msgid "WordPress Version"
239
+ msgstr "WordPress 版本"
240
+
241
+ #: includes/class-yith-system-status.php:111
242
+ msgid "WooCommerce Version"
243
+ msgstr "WooCommerce 版本"
244
+
245
+ #: includes/class-yith-system-status.php:112
246
+ msgid "Available Memory"
247
+ msgstr "可用記憶體"
248
+
249
+ #: includes/class-yith-system-status.php:113
250
+ msgid "PHP Version"
251
+ msgstr "PHP 版本"
252
+
253
+ #: includes/class-yith-system-status.php:114
254
+ msgid "TLS Version"
255
+ msgstr "TLS 版本"
256
+
257
+ #: includes/class-yith-system-status.php:115
258
+ msgid "WordPress Cron"
259
+ msgstr "WordPress Cron 工作排程"
260
+
261
+ #: includes/class-yith-system-status.php:116
262
+ msgid "SimpleXML"
263
+ msgstr "SimpleXML"
264
+
265
+ #: includes/class-yith-system-status.php:117
266
+ msgid "MultiByte String"
267
+ msgstr "MultiByte 字串"
268
+
269
+ #: includes/class-yith-system-status.php:118
270
+ msgid "ImageMagick Version"
271
+ msgstr "ImageMagick 版本"
272
+
273
+ #: includes/class-yith-system-status.php:119
274
+ msgid "GD Library"
275
+ msgstr "GD 圖形庫"
276
+
277
+ #: includes/class-yith-system-status.php:120
278
+ msgid "Iconv Module"
279
+ msgstr "Iconv 模組"
280
+
281
+ #: includes/class-yith-system-status.php:121
282
+ msgid "OPCache Save Comments"
283
+ msgstr "OPCache 儲存評論"
284
+
285
+ #: includes/class-yith-system-status.php:122
286
+ msgid "URL FOpen"
287
+ msgstr "URL FOpen"
288
+
289
+ #: includes/class-yith-system-status.php:140
290
+ #: includes/class-yith-system-status.php:141
291
+ #: templates/sysinfo/system-information-panel.php:11
292
+ msgid "System Status"
293
+ msgstr "系統狀態"
294
+
295
+ #: includes/class-yith-system-status.php:183
296
+ msgid "YITH Plugins"
297
+ msgstr "YITH 外掛"
298
+
299
+ #: includes/class-yith-system-status.php:191
300
+ msgid "WooCommerce"
301
+ msgstr "WooCommerce"
302
+
303
+ #: includes/class-yith-system-status.php:342
304
+ msgid "Warning!"
305
+ msgstr "警告!"
306
+
307
+ #. translators: %1$s open link tag, %2$s open link tag
308
+ #: includes/class-yith-system-status.php:346
309
+ msgid ""
310
+ "The system check has detected some compatibility issues on your installation."
311
+ "%1$sClick here%2$s to know more"
312
+ msgstr ""
313
+ "系統檢查檢測到您的安裝存在一些相容性問題。%1$s 點擊此處 %2$s 了解更多訊息"
314
+
315
+ #: includes/class-yith-system-status.php:488
316
+ msgid "Enabled"
317
+ msgstr "啟用"
318
+
319
+ #: includes/class-yith-system-status.php:488
320
+ msgid "Disabled"
321
+ msgstr "關閉"
322
+
323
+ #: includes/class-yith-system-status.php:493
324
+ msgid "N/A"
325
+ msgstr "不詳"
326
+
327
+ #. translators: %1$s plugin name, %2$s requirement name
328
+ #: includes/class-yith-system-status.php:520
329
+ msgid "%1$s needs %2$s enabled"
330
+ msgstr "%1$s 需要 %2$s 啟動"
331
+
332
+ #. translators: %1$s plugin name, %2$s required memory amount
333
+ #: includes/class-yith-system-status.php:523
334
+ msgid "%1$s needs at least %2$s of available memory"
335
+ msgstr "%1$s 需要最少 %2$s 的可用記憶體"
336
+
337
+ #. translators: %1$s plugin name, %2$s version number
338
+ #: includes/class-yith-system-status.php:526
339
+ msgid "%1$s needs at least %2$s version"
340
+ msgstr "%1$s 需要最低 %2$s 的版本"
341
+
342
+ #: includes/class-yith-system-status.php:550
343
+ msgid ""
344
+ "Update it to the latest version in order to benefit of all new features and "
345
+ "security updates."
346
+ msgstr "將其更新到最新版本,以便從所有新功能和安全更新中受益。"
347
+
348
+ #: includes/class-yith-system-status.php:554
349
+ #: includes/class-yith-system-status.php:560
350
+ msgid "Contact your hosting company in order to update it."
351
+ msgstr "聯絡您的網站主機托管公司進行更新"
352
+
353
+ #: includes/class-yith-system-status.php:558
354
+ msgid "Contact your hosting company in order to install it."
355
+ msgstr "聯絡您的網站主機托管公司進行安裝"
356
+
357
+ #. translators: %1$s code, %2$s file name
358
+ #: includes/class-yith-system-status.php:565
359
+ msgid "Remove %1$s from %2$s file"
360
+ msgstr "從 %1$s 到 %2$s 移除這些檔案"
361
+
362
+ #: includes/class-yith-system-status.php:573
363
+ msgid "Contact your hosting company in order to enable it."
364
+ msgstr "聯絡你的主機托管公司去啟動"
365
+
366
+ #. translators: %1$s opening link tag, %2$s closing link tag
367
+ #: includes/class-yith-system-status.php:577
368
+ #: includes/class-yith-system-status.php:600
369
+ msgid ""
370
+ "Read more %1$shere%2$s or contact your hosting company in order to increase "
371
+ "it."
372
+ msgstr "閱讀更多 %1$shere%2$s 或聯繫您的託管公司以增加它。"
373
+
374
+ #. translators: %s recommended memory amount
375
+ #: includes/class-yith-system-status.php:597
376
+ msgid ""
377
+ "For optimal functioning of our plugins, we suggest setting at least %s of "
378
+ "available memory"
379
+ msgstr "為了使我們的外掛發揮最佳功能,我們建議至少設置 %s 的可用記憶體"
380
+
381
+ #. translators: %1$s TLS label, %2$s cURL label
382
+ #: includes/class-yith-system-status.php:605
383
+ msgid ""
384
+ "The system check cannot determine which %1$s version is installed because "
385
+ "%2$s module is disabled. Ask your hosting company to enable it."
386
+ msgstr ""
387
+ "系統檢查無法確定安裝了哪個 %1$s 版本,因為 %2$s 模組已禁用。 要求您的主機託管"
388
+ "公司啟用它。"
389
+
390
+ #. translators: %1$s TLS label
391
+ #: includes/class-yith-system-status.php:608
392
+ msgid ""
393
+ "The system check cannot determine which %1$s version is installed due to a "
394
+ "connection issue between your site and our server."
395
+ msgstr ""
396
+ "由於您的網站和我們的伺服器之間的連接問題,系統檢查無法確定安裝了哪個 %1$s 版"
397
+ "本。"
398
+
399
+ #: templates/bh-onboarding/onboarding-tabs.php:63
400
+ msgid "Save"
401
+ msgstr ""
402
+
403
+ #: templates/fields/ajax-customers.php:41
404
+ msgid "Search for a customer..."
405
+ msgstr "搜尋顧客..."
406
+
407
+ #. translators: 1. user display name; 2. user ID; 3. user email.
408
+ #: templates/fields/ajax-customers.php:68
409
+ #: templates/fields/ajax-customers.php:79
410
+ msgid "%1$s (#%2$s &ndash; %3$s)"
411
+ msgstr "%1$s (#%2$s &ndash; %3$s)"
412
+
413
+ #: templates/fields/ajax-posts.php:41
414
+ msgid "Search for a post..."
415
+ msgstr "搜尋文章..."
416
+
417
+ #: templates/fields/ajax-products.php:16
418
+ msgid "Search for a product..."
419
+ msgstr "搜尋商品..."
420
+
421
+ #: templates/fields/ajax-terms.php:41
422
+ msgid "Search for a category..."
423
+ msgstr "搜尋分類..."
424
+
425
+ #: templates/fields/customtabs.php:17
426
+ msgid "Close all"
427
+ msgstr "全部關閉"
428
+
429
+ #: templates/fields/customtabs.php:17
430
+ msgid "Expand all"
431
+ msgstr "全部展開"
432
+
433
+ #: templates/fields/customtabs.php:25 templates/fields/customtabs.php:68
434
+ msgid "Remove"
435
+ msgstr "移除"
436
+
437
+ #: templates/fields/customtabs.php:34 templates/fields/customtabs.php:76
438
+ msgid "Name"
439
+ msgstr "名字"
440
+
441
+ #: templates/fields/customtabs.php:40 templates/fields/customtabs.php:81
442
+ msgid "Value"
443
+ msgstr "數值"
444
+
445
+ #: templates/fields/customtabs.php:41 templates/fields/customtabs.php:82
446
+ msgid "Content of the tab. (HTML is supported)"
447
+ msgstr "頁籤內容(支援 HTML)"
448
+
449
+ #: templates/fields/customtabs.php:52
450
+ msgid "Add custom product tab"
451
+ msgstr "增加自訂商品頁籤"
452
+
453
+ #: templates/fields/customtabs.php:93
454
+ msgid "Do you want to remove the custom tab?"
455
+ msgstr "請問你想要移除這個自訂的頁籤嗎?"
456
+
457
+ #: templates/fields/date-format.php:65
458
+ msgid "Custom:"
459
+ msgstr "自訂:"
460
+
461
+ #: templates/fields/date-format.php:70
462
+ msgid "Preview:"
463
+ msgstr "預覽:"
464
+
465
+ #: templates/fields/icons.php:78
466
+ msgid "Set Default"
467
+ msgstr "設成預設"
468
+
469
+ #: templates/fields/image-gallery.php:29 templates/fields/image-gallery.php:40
470
+ msgid "Delete image"
471
+ msgstr "刪除圖片"
472
+
473
+ #: templates/fields/image-gallery.php:37
474
+ msgid "Add Images to Gallery"
475
+ msgstr "增加圖片至藝廊"
476
+
477
+ #: templates/fields/image-gallery.php:38
478
+ msgid "Add to gallery"
479
+ msgstr "增加至藝廊"
480
+
481
+ #: templates/fields/image-gallery.php:39
482
+ msgid "Add images"
483
+ msgstr "增加圖片"
484
+
485
+ #: templates/fields/image-gallery.php:41
486
+ msgid "Delete"
487
+ msgstr "刪除"
488
+
489
+ #: templates/fields/select-buttons.php:19
490
+ msgid "Add All"
491
+ msgstr "增加全部"
492
+
493
+ #: templates/fields/select-buttons.php:20
494
+ msgid "Remove All"
495
+ msgstr "移除全部"
496
+
497
+ #: templates/fields/sidebars.php:20
498
+ msgid "Left sidebar"
499
+ msgstr "左側小工具"
500
+
501
+ #: templates/fields/sidebars.php:23
502
+ msgid "Right sidebar"
503
+ msgstr "右側小工具"
504
+
505
+ #: templates/fields/sidebars.php:26 templates/fields/sidebars.php:29
506
+ msgid "No sidebar"
507
+ msgstr "沒有小工具"
508
+
509
+ #: templates/fields/sidebars.php:39
510
+ msgid "Left Sidebar"
511
+ msgstr "左側小工具"
512
+
513
+ #: templates/fields/sidebars.php:41 templates/fields/sidebars.php:56
514
+ msgid "Choose a sidebar"
515
+ msgstr "選擇一個小工具"
516
+
517
+ #: templates/fields/sidebars.php:54
518
+ msgid "Right Sidebar"
519
+ msgstr "右側小工具"
520
+
521
+ #: templates/fields/upload.php:34
522
+ #: templates/panel/woocommerce/woocommerce-upload.php:37
523
+ msgid "Upload"
524
+ msgstr "上傳"
525
+
526
+ #: templates/fields/upload.php:39
527
+ msgid "Reset"
528
+ msgstr "重置"
529
+
530
+ #: templates/panel/woocommerce/woocommerce-form.php:29
531
+ #: templates/panel/woocommerce/woocommerce-form.php:33
532
+ msgid "Save Options"
533
+ msgstr "儲存選項"
534
+
535
+ #: templates/panel/woocommerce/woocommerce-form.php:33
536
+ msgid "Options Saved"
537
+ msgstr "選項已儲存"
538
+
539
+ #: templates/panel/woocommerce/woocommerce-form.php:43
540
+ msgid "Reset Defaults"
541
+ msgstr "重置為預設值"
542
+
543
+ #: templates/sysinfo/system-information-panel.php:12
544
+ msgid "PHPInfo"
545
+ msgstr "PHP 信息"
546
+
547
+ #: templates/sysinfo/system-information-panel.php:13
548
+ #: templates/sysinfo/tabs/error-log.php:25
549
+ msgid "Log Files"
550
+ msgstr "紀錄檔"
551
+
552
+ #: templates/sysinfo/system-information-panel.php:22
553
+ msgid "YITH System Information"
554
+ msgstr "YITH 系統信息"
555
+
556
+ #: templates/sysinfo/tabs/error-log.php:13
557
+ msgid "WP debug.log file"
558
+ msgstr "WP 除錯日誌檔"
559
+
560
+ #: templates/sysinfo/tabs/error-log.php:18
561
+ msgid "PHP error_log file"
562
+ msgstr "PHP 錯誤日誌檔"
563
+
564
+ #: templates/sysinfo/tabs/error-log.php:60
565
+ msgid "Download"
566
+ msgstr "下載"
567
+
568
+ #: templates/sysinfo/tabs/error-log.php:72
569
+ msgid "The file size exceeds 8 megabytes so it must be downloaded"
570
+ msgstr "檔案大小超過 8 兆位元,因此必須下載"
571
+
572
+ #. translators: %s file name.
573
+ #: templates/sysinfo/tabs/error-log.php:96
574
+ msgid ""
575
+ "No Log file available. Enable the WordPress debug by adding this in the %s "
576
+ "file of your installation"
577
+ msgstr ""
578
+ "沒有可用的日誌文件。 通過將其添加到安裝的 %s 文件中來啟用 WordPress 除錯"
579
+
580
+ #: templates/sysinfo/tabs/error-log.php:105
581
+ msgid "Copied!"
582
+ msgstr "已複製!"
583
+
584
+ #: templates/sysinfo/tabs/error-log.php:105
585
+ msgid "Copy Code"
586
+ msgstr "複製程式碼"
587
+
588
+ #: templates/sysinfo/tabs/main.php:17
589
+ msgid "Site Info"
590
+ msgstr "網站信息"
591
+
592
+ #: templates/sysinfo/tabs/main.php:22
593
+ msgid "Site URL"
594
+ msgstr "網站網址"
595
+
596
+ #: templates/sysinfo/tabs/main.php:31
597
+ msgid "Output IP Address"
598
+ msgstr "輸出 IP 位置"
599
+
600
+ #: templates/sysinfo/tabs/main.php:39
601
+ msgid "Defined WP_CACHE"
602
+ msgstr "已定義 WP_CACHE"
603
+
604
+ #: templates/sysinfo/tabs/main.php:42 templates/sysinfo/tabs/main.php:50
605
+ msgid "Yes"
606
+ msgstr "是"
607
+
608
+ #: templates/sysinfo/tabs/main.php:47
609
+ msgid "External object cache"
610
+ msgstr "外部物件快取"
611
+
612
+ #: templates/sysinfo/tabs/main.php:55
613
+ msgid "YITH Plugin Framework Version"
614
+ msgstr "YITH 外掛 Framework 版本"
615
+
616
+ #. translators: %s is the name of the plugin that is loading the framework.
617
+ #: templates/sysinfo/tabs/main.php:64
618
+ msgid "loaded by %s"
619
+ msgstr "讀取了 %s"
620
+
621
+ #: templates/sysinfo/tabs/main.php:73
622
+ msgid "Plugins Requirements"
623
+ msgstr "外掛需求"
624
+
625
+ #: templates/sysinfo/tabs/main.php:108
626
+ msgid "Database Info"
627
+ msgstr "資料庫信息"
628
+
629
+ #: templates/sysinfo/tabs/main.php:113
630
+ msgid "MySQL version"
631
+ msgstr "MySQL 版本"
632
+
633
+ #. Translators: %s: Codex link.
634
+ #: templates/sysinfo/tabs/main.php:123
635
+ msgid "WordPress recommends a minimum MySQL version of 5.6. See: %s"
636
+ msgstr "WordPress 建議至少要有 MySQL 5.6. 以上版本,請查看: %s"
637
+
638
+ #: templates/sysinfo/tabs/main.php:123
639
+ msgid "WordPress requirements"
640
+ msgstr "WordPress 要求"
641
+
642
+ #: templates/sysinfo/tabs/main.php:130
643
+ msgid "Total Database Size"
644
+ msgstr "總資料庫大小"
645
+
646
+ #: templates/sysinfo/tabs/main.php:138
647
+ msgid "Database Data Size"
648
+ msgstr "資料庫數據大小"
649
+
650
+ #: templates/sysinfo/tabs/main.php:146
651
+ msgid "Database Index Size"
652
+ msgstr "資料庫索引大小"
653
+
654
+ #: templates/sysinfo/tabs/main.php:154
655
+ msgid "Database Free Size"
656
+ msgstr "資料庫可用大小"
657
+
658
+ #. Translators: %1$f: Table size, %2$f: Index size, %3$f: Free size, %4$s
659
+ #. Engine.
660
+ #: templates/sysinfo/tabs/main.php:168
661
+ msgid "Data: %1$.2fMB | Index: %2$.2fMB | Free: %3$.2fMB | Engine: %4$s"
662
+ msgstr "資料數據: %1$.2fMB | 索引: %2$.2fMB | 可用: %3$.2fMB | 引擎: %4$s"
663
+
664
+ #. translators: %s is the title of the post object.
665
+ #: yit-functions.php:1938
666
+ msgid "Are you sure you want to move \"%s\" to trash?"
667
+ msgstr "您確定要將 \"%s\" 丟進垃圾桶嗎?"
668
+
669
+ #. translators: %s is the title of the post object.
670
+ #: yit-functions.php:1940 yit-functions.php:2100
671
+ msgid "Are you sure you want to delete \"%s\"?"
672
+ msgstr "您確定要刪除 \"%s\" 嗎?"
673
+
674
+ #: yit-functions.php:2038 yit-functions.php:2046 yit-functions.php:2163
675
+ msgid "Further actions"
676
+ msgstr "進一步動作"
677
+
678
+ #: yit-plugin.php:233
679
+ msgid "License"
680
+ msgstr "授權"
681
+
682
+ #. translators: 1. Plugin(s) name(s).
683
+ #: yit-plugin.php:272
684
+ msgid ""
685
+ "%s was deactivated as you're running an higher tier version of the same "
686
+ "plugin."
687
+ msgid_plural ""
688
+ "%s were deactivated as you're running higher tier versions of the same "
689
+ "plugins."
690
+ msgstr[0] ""
691
+
692
+ #. Author of the plugin/theme
693
+ msgid "YITH"
694
+ msgstr "YITH"
695
+
696
+ #. translators: %s it the Elementor Widget title.
697
+ #: includes/builders/elementor/class-yith-elementor-widget.php:252
698
+ msgctxt "Elementor Widget - section title"
699
+ msgid "%s - Options"
700
+ msgstr "%s - 選項"
701
+
702
+ #: includes/builders/gutenberg/class-yith-gutenberg.php:149
703
+ msgctxt "[gutenberg]: Category Name"
704
+ msgid "YITH"
705
+ msgstr "YITH"
706
+
707
+ #: includes/class-yit-assets.php:134
708
+ msgctxt "Button text"
709
+ msgid "Confirm"
710
+ msgstr "確認"
711
+
712
+ #: includes/class-yit-assets.php:135
713
+ msgctxt "Button text"
714
+ msgid "Cancel"
715
+ msgstr "取消"
716
+
717
+ #: includes/class-yit-assets.php:148 yit-functions.php:2009
718
+ msgctxt "Trash confirmation action"
719
+ msgid "Yes, move to trash"
720
+ msgstr "是的,將它移至垃圾桶"
721
+
722
+ #: includes/class-yit-assets.php:152 yit-functions.php:2027
723
+ #: yit-functions.php:2154
724
+ msgctxt "Delete confirmation action"
725
+ msgid "Yes, delete"
726
+ msgstr "是的,刪除"
727
+
728
+ #. translators: 1. Plugin name.
729
+ #: includes/class-yit-plugin-panel.php:803
730
+ msgctxt "Help tab default title"
731
+ msgid "Thank you for purchasing %s!"
732
+ msgstr "感謝您購買 %s !"
733
+
734
+ #: includes/class-yit-plugin-panel.php:803
735
+ #, fuzzy
736
+ msgctxt "Help tab default title"
737
+ msgid "Thank you for using %s!"
738
+ msgstr "感謝您購買 %s !"
739
+
740
+ #: includes/class-yit-plugin-panel.php:815
741
+ msgctxt "Help tab default description"
742
+ msgid ""
743
+ "We want to help you enjoy a wonderful experience with all of our products."
744
+ msgstr "我們希望幫助您享受我們所有產品的美妙體驗。"
745
+
746
+ #: includes/class-yit-plugin-panel.php:866
747
+ msgctxt "Premium tab name"
748
+ msgid "Get premium"
749
+ msgstr "取得高級版"
750
+
751
+ #: includes/class-yit-plugin-panel.php:878
752
+ msgctxt "Help tab name"
753
+ msgid "Help"
754
+ msgstr "幫助"
755
+
756
+ #: includes/class-yith-dashboard.php:96
757
+ msgctxt "Plugin FW"
758
+ msgid "View Changelog"
759
+ msgstr "查看修改紀錄"
760
+
761
+ #: includes/class-yith-dashboard.php:97
762
+ msgctxt "Plugin FW"
763
+ msgid "Latest update released on"
764
+ msgstr "最近一次更新於"
765
+
766
+ #: includes/class-yith-dashboard.php:137
767
+ msgctxt "Button label"
768
+ msgid "Close"
769
+ msgstr "關閉"
770
+
771
+ #: includes/privacy/class-yith-privacy.php:61
772
+ msgctxt "Privacy Policy Guide Title"
773
+ msgid "YITH Plugins"
774
+ msgstr "YITH 外掛"
775
+
776
+ #: includes/privacy/class-yith-privacy.php:93
777
+ msgctxt "Privacy Policy Content"
778
+ msgid ""
779
+ "This sample language includes the basics around what personal data your "
780
+ "store may be collecting, storing and sharing, as well as who may have access "
781
+ "to that data. Depending on what settings are enabled and which additional "
782
+ "plugins are used, the specific information shared by your store will vary. "
783
+ "We recommend consulting with a lawyer when deciding what information to "
784
+ "disclose on your privacy policy."
785
+ msgstr ""
786
+ "此示例語言包括有關您的商店可能收集、保存和共享哪些個人數據以及誰可以訪問該數"
787
+ "據的基礎知識。 根據啟用的設置和使用的附加外掛,您的商店共享的具體信息會有所不"
788
+ "同。 在決定在您的隱私政策中披露哪些信息時,我們建議您諮詢律師。"
789
+
790
+ #: includes/privacy/class-yith-privacy.php:97
791
+ msgctxt "Privacy Policy Content"
792
+ msgid "What we collect and store"
793
+ msgstr "我們收集和保存的內容"
794
+
795
+ #: includes/privacy/class-yith-privacy.php:100
796
+ msgctxt "Privacy Policy Content"
797
+ msgid "Who on our team has access"
798
+ msgstr "我們團隊中的哪些人有權訪問"
799
+
800
+ #: includes/privacy/class-yith-privacy.php:103
801
+ msgctxt "Privacy Policy Content"
802
+ msgid "What we share with others"
803
+ msgstr "我們與他人分享的內容"
804
+
805
+ #: includes/privacy/class-yith-privacy.php:106
806
+ msgctxt "Privacy Policy Content"
807
+ msgid "Payments"
808
+ msgstr "付款"
809
+
810
+ #: templates/fields/copy-to-clipboard.php:41
811
+ msgctxt "Copy-to-clipboard message"
812
+ msgid "Copied!"
813
+ msgstr "已複製!"
814
+
815
+ #: templates/fields/copy-to-clipboard.php:45
816
+ msgctxt "Copy-to-clipboard button text"
817
+ msgid "Copy"
818
+ msgstr "複製"
819
+
820
+ #: templates/fields/dimensions.php:13
821
+ msgctxt "Position in the \"Dimensions\" field"
822
+ msgid "Top"
823
+ msgstr "上"
824
+
825
+ #: templates/fields/dimensions.php:14
826
+ msgctxt "Position in the \"Dimensions\" field"
827
+ msgid "Right"
828
+ msgstr "右"
829
+
830
+ #: templates/fields/dimensions.php:15
831
+ msgctxt "Position in the \"Dimensions\" field"
832
+ msgid "Bottom"
833
+ msgstr "下"
834
+
835
+ #: templates/fields/dimensions.php:16
836
+ msgctxt "Position in the \"Dimensions\" field"
837
+ msgid "Left"
838
+ msgstr "左"
839
+
840
+ #: templates/fields/dimensions.php:94
841
+ msgctxt "Tooltip in the \"Dimensions\" field"
842
+ msgid "Link values together"
843
+ msgstr "一起連接的數值"
844
+
845
+ #: templates/fields/image-dimensions.php:18
846
+ msgctxt "Image width field label"
847
+ msgid "Width"
848
+ msgstr "寬"
849
+
850
+ #: templates/fields/image-dimensions.php:23
851
+ msgctxt "Image height field label"
852
+ msgid "Height"
853
+ msgstr "高"
854
+
855
+ #: templates/fields/onoff.php:28
856
+ msgctxt "YES/NO button: use MAX 4 characters!"
857
+ msgid "YES"
858
+ msgstr "是"
859
+
860
+ #: templates/fields/onoff.php:29
861
+ msgctxt "YES/NO button: use MAX 4 characters!"
862
+ msgid "NO"
863
+ msgstr "不"
864
+
865
+ #. translators: 1. Url to EN playlist.
866
+ #: templates/panel/help-tab.php:89
867
+ msgctxt "Help tab view all video link"
868
+ msgid ""
869
+ "Check the full <a href=\"%s\" target=\"_blank\">Playlist on Youtube</a> to "
870
+ "learn more >"
871
+ msgstr ""
872
+ "查看全部的 <a href=\"%s\" target=\"_blank\">Youtube</a> 播放清單去學習更多 >"
873
+
874
+ #: templates/panel/help-tab.php:96
875
+ msgctxt "Help tab Watch Videotutorials link"
876
+ msgid "Videos are also available in:"
877
+ msgstr "影片也可用於:"
878
+
879
+ #: templates/panel/help-tab.php:126
880
+ msgctxt "Help tab Read Documentation link"
881
+ msgid "Read the documentation"
882
+ msgstr "閱讀說明文件"
883
+
884
+ #: templates/panel/help-tab.php:129
885
+ msgctxt "Help tab Read Documentation link"
886
+ msgid "to learn how the plugin works from the basics."
887
+ msgstr "了解外掛的基礎工作原理"
888
+
889
+ #: templates/panel/help-tab.php:139
890
+ msgctxt "Help tab Watch video tutorials link"
891
+ msgid "Watch our video tutorials"
892
+ msgstr "查看我們的教學影片"
893
+
894
+ #: templates/panel/help-tab.php:142
895
+ msgctxt "Help tab Watch video tutorials link"
896
+ msgid "to see some helpful use cases."
897
+ msgstr "查看一些有用的案例"
898
+
899
+ #: templates/panel/help-tab.php:152
900
+ msgctxt "Help tab view FAQs link"
901
+ msgid "Check the FAQs"
902
+ msgstr "檢查問與答"
903
+
904
+ #: templates/panel/help-tab.php:155
905
+ msgctxt "Help tab view FAQs link"
906
+ msgid "to find answers to your doubts."
907
+ msgstr "找到你的問題答案"
908
+
909
+ #: templates/panel/help-tab.php:170
910
+ msgctxt "Help tab FAQ title"
911
+ msgid "Last FAQs in our Help Center"
912
+ msgstr "在我們的幫助中心的最新問答"
913
+
914
+ #: templates/panel/help-tab.php:184
915
+ msgctxt "Help tab FAQ link"
916
+ msgid "View all FAQs >"
917
+ msgstr "查看所有的問與答 >"
918
+
919
+ #: templates/panel/help-tab.php:193
920
+ msgctxt "Help tab submit ticket title"
921
+ msgid "Need help?"
922
+ msgstr "需要幫忙?"
923
+
924
+ #: templates/panel/help-tab.php:196
925
+ msgctxt "Help tab submit ticket description"
926
+ msgid ""
927
+ "If you are experiencing any technical issues, ask for help from our "
928
+ "developers. Submit a ticket through our support desk and we will help you as "
929
+ "soon as possible."
930
+ msgstr ""
931
+ "如果您遇到任何技術問題,請向我們的開發人員尋求幫助。 通過我們的支援後台提交工"
932
+ "作單,我們將盡快為您提供幫助。"
933
+
934
+ #: templates/panel/help-tab.php:204
935
+ msgctxt "Help tab submit ticket button"
936
+ msgid "Submit a ticket"
937
+ msgstr "提交一張工作單"
938
+
939
+ #: templates/panel/help-tab.php:216 templates/panel/help-tab.php:218
940
+ #: templates/panel/help-tab.php:223
941
+ #, fuzzy
942
+ msgctxt "Help tab documentation"
943
+ msgid "Read the plugin documentation"
944
+ msgstr "閱讀說明文件"
945
+
946
+ #: templates/panel/help-tab.php:220
947
+ #, fuzzy
948
+ msgctxt "Help tab documentation"
949
+ msgid "to learn how it works from the basics."
950
+ msgstr "了解外掛的基礎工作原理"
951
+
952
+ #: templates/panel/help-tab.php:231 templates/panel/help-tab.php:233
953
+ #, fuzzy
954
+ msgctxt "Help tab support"
955
+ msgid "Need some help?"
956
+ msgstr "需要幫忙?"
957
+
958
+ #: templates/panel/help-tab.php:235
959
+ msgctxt "Help tab support"
960
+ msgid "From DIY to full-service help"
961
+ msgstr ""
962
+
963
+ #: templates/panel/help-tab.php:238
964
+ msgctxt "Help tab support"
965
+ msgid ""
966
+ "Call or chat 24/7 with our support agents, or let our experts build your "
967
+ "site."
968
+ msgstr ""
969
+
970
+ #: templates/panel/help-tab.php:241
971
+ #, fuzzy
972
+ msgctxt "Help tab support"
973
+ msgid "Yes, I need help"
974
+ msgstr "需要幫忙?"
975
+
976
+ #: templates/panel/premium-tab.php:30
977
+ msgctxt "Premium Tab"
978
+ msgid "Get the premium version to unlock advanced features"
979
+ msgstr "取得高級版來解鎖進階的功能特色"
980
+
981
+ #: templates/panel/premium-tab.php:34
982
+ msgctxt "Premium Tab"
983
+ msgid "Get premium"
984
+ msgstr "取得高級版"
985
+
986
+ #: templates/panel/premium-tab.php:39
987
+ msgctxt "Premium Tab"
988
+ msgid "Plugin premium features images"
989
+ msgstr "高級版外掛特色圖片"
990
+
991
+ #. translators: alt attribute of main image tag.
992
+ #: templates/panel/premium-tab.php:51 templates/panel/premium-tab.php:58
993
+ msgctxt "Premium Tab"
994
+ msgid "And so much more!"
995
+ msgstr "還有更多!"
996
+
997
+ #: templates/panel/premium-tab.php:53
998
+ #, fuzzy
999
+ msgctxt "Premium Tab"
1000
+ msgid "Check the premium features >"
1001
+ msgstr "查看免費板與高級版的特色比較"
1002
+
1003
+ #: templates/panel/premium-tab.php:60
1004
+ msgctxt "Premium Tab"
1005
+ msgid "Check the free vs premium features >"
1006
+ msgstr "查看免費板與高級版的特色比較"
1007
+
1008
+ #: templates/panel/premium-tab.php:65
1009
+ msgctxt "Premium Tab"
1010
+ msgid "Get the premium version"
1011
+ msgstr "取得高級版本"
1012
+
1013
+ #: yit-functions.php:1952
1014
+ msgctxt "Post action"
1015
+ msgid "Preview"
1016
+ msgstr "預覽"
1017
+
1018
+ #: yit-functions.php:1961
1019
+ msgctxt "Post action"
1020
+ msgid "View"
1021
+ msgstr "查看"
1022
+
1023
+ #: yit-functions.php:1972
1024
+ msgctxt "Post action"
1025
+ msgid "Edit"
1026
+ msgstr "編輯"
1027
+
1028
+ #: yit-functions.php:1980
1029
+ msgctxt "Post action"
1030
+ msgid "Duplicate"
1031
+ msgstr "複製"
1032
+
1033
+ #: yit-functions.php:1992
1034
+ msgctxt "Post action"
1035
+ msgid "Restore"
1036
+ msgstr "還原"
1037
+
1038
+ #: yit-functions.php:2000
1039
+ msgctxt "Post action"
1040
+ msgid "Trash"
1041
+ msgstr "垃圾桶"
1042
+
1043
+ #: yit-functions.php:2017
1044
+ msgctxt "Post action"
1045
+ msgid "Delete Permanently"
1046
+ msgstr "永久刪除"
1047
+
1048
+ #: yit-functions.php:2114
1049
+ msgctxt "Term action"
1050
+ msgid "View"
1051
+ msgstr "查看"
1052
+
1053
+ #: yit-functions.php:2124
1054
+ msgctxt "Term action"
1055
+ msgid "Edit"
1056
+ msgstr "編輯"
1057
+
1058
+ #: yit-functions.php:2132
1059
+ msgctxt "Term action"
1060
+ msgid "Duplicate"
1061
+ msgstr "複製"
1062
+
1063
+ #: yit-functions.php:2145
1064
+ msgctxt "Term action"
1065
+ msgid "Delete"
1066
+ msgstr "刪除"
1067
+
1068
+ #: yit-plugin.php:85
1069
+ msgctxt "Plugin Row Meta"
1070
+ msgid "Live Demo"
1071
+ msgstr "即時演示"
1072
+
1073
+ #: yit-plugin.php:89
1074
+ msgctxt "Plugin Row Meta"
1075
+ msgid "Documentation"
1076
+ msgstr "說明文件"
1077
+
1078
+ #: yit-plugin.php:93
1079
+ msgctxt "Plugin Row Meta"
1080
+ msgid "Support"
1081
+ msgstr "支援"
1082
+
1083
+ #: yit-plugin.php:97
1084
+ msgctxt "Plugin Row Meta"
1085
+ msgid "Premium version"
1086
+ msgstr "高級版本"
1087
+
1088
+ #: yit-plugin.php:229
1089
+ msgctxt "Action links"
1090
+ msgid "Settings"
1091
+ msgstr "設定"
plugin-fw/languages/yith-plugin-fw.pot CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: \n"
6
  "Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
7
- "POT-Creation-Date: 2022-04-13 12:14:07+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -24,55 +24,55 @@ msgstr ""
24
  "X-Textdomain-Support: yes\n"
25
  "X-Generator: grunt-wp-i18n 1.0.3\n"
26
 
27
- #: includes/class-yit-assets.php:144 yit-functions.php:1980
28
  msgid "Confirm trash"
29
  msgstr ""
30
 
31
- #: includes/class-yit-assets.php:145
32
  msgid "Are you sure you want to trash the selected items?"
33
  msgstr ""
34
 
35
- #: includes/class-yit-assets.php:147 includes/class-yit-assets.php:151
36
  #: templates/sysinfo/tabs/main.php:42 templates/sysinfo/tabs/main.php:50
37
- #: yit-functions.php:1982 yit-functions.php:2000
38
  msgid "No"
39
  msgstr ""
40
 
41
- #: includes/class-yit-assets.php:148 yit-functions.php:1998
42
- #: yit-functions.php:2126
43
  msgid "Confirm delete"
44
  msgstr ""
45
 
46
- #: includes/class-yit-assets.php:149
47
  msgid "Are you sure you want to delete the selected items?"
48
  msgstr ""
49
 
50
- #: includes/class-yit-assets.php:149 yit-functions.php:1914
51
- #: yit-functions.php:2074
52
  msgid "This action cannot be undone and you will not be able to recover this data."
53
  msgstr ""
54
 
55
- #: includes/class-yit-assets.php:162
56
  msgid "Clear"
57
  msgstr ""
58
 
59
- #: includes/class-yit-assets.php:163
60
  msgid "Clear color"
61
  msgstr ""
62
 
63
- #: includes/class-yit-assets.php:164
64
  msgid "Default"
65
  msgstr ""
66
 
67
- #: includes/class-yit-assets.php:165
68
  msgid "Select default color"
69
  msgstr ""
70
 
71
- #: includes/class-yit-assets.php:166
72
  msgid "Select Color"
73
  msgstr ""
74
 
75
- #: includes/class-yit-assets.php:167
76
  msgid "Color value"
77
  msgstr ""
78
 
@@ -80,7 +80,7 @@ msgstr ""
80
  msgid "There was an error with your request; please try again later."
81
  msgstr ""
82
 
83
- #: includes/class-yit-plugin-panel-woocommerce.php:429
84
  msgid "The changes you have made will be lost if you leave this page."
85
  msgstr ""
86
 
@@ -92,87 +92,87 @@ msgstr ""
92
  msgid "Settings"
93
  msgstr ""
94
 
95
- #: includes/class-yit-plugin-panel.php:454
96
- #: includes/class-yit-plugin-panel.php:457
97
  msgid "How to install premium version"
98
  msgstr ""
99
 
100
- #: includes/class-yit-plugin-panel.php:658
101
- #: includes/class-yit-plugin-subpanel.php:132
102
  msgid "Save Changes"
103
  msgstr ""
104
 
105
  #: includes/class-yit-plugin-panel.php:663
106
- #: includes/class-yit-plugin-subpanel.php:136
107
- #: templates/panel/woocommerce/woocommerce-form.php:14
108
  msgid "If you continue with this action, you will reset all options in this page."
109
  msgstr ""
110
 
111
  #: includes/class-yit-plugin-panel.php:663
112
- #: includes/class-yit-plugin-subpanel.php:136
113
- #: templates/panel/woocommerce/woocommerce-form.php:14
114
  msgid "Are you sure?"
115
  msgstr ""
116
 
117
  #: includes/class-yit-plugin-panel.php:667
118
- #: includes/class-yit-plugin-subpanel.php:139
119
  msgid "Reset to default"
120
  msgstr ""
121
 
122
- #: includes/class-yit-plugin-panel.php:1047
123
  msgid "The element you have entered already exists. Please, enter another name."
124
  msgstr ""
125
 
126
- #: includes/class-yit-plugin-panel.php:1048
127
  msgid "Settings saved"
128
  msgstr ""
129
 
130
- #: includes/class-yit-plugin-panel.php:1049
131
  msgid "Settings reset"
132
  msgstr ""
133
 
134
- #: includes/class-yit-plugin-panel.php:1050
135
  msgid "Element deleted correctly."
136
  msgstr ""
137
 
138
- #: includes/class-yit-plugin-panel.php:1051
139
- #: includes/class-yit-plugin-panel.php:1052
140
  msgid "Element updated correctly."
141
  msgstr ""
142
 
143
- #: includes/class-yit-plugin-panel.php:1053
144
  msgid "Database imported correctly."
145
  msgstr ""
146
 
147
- #: includes/class-yit-plugin-panel.php:1054
148
  msgid "An error has occurred during import. Please try again."
149
  msgstr ""
150
 
151
- #: includes/class-yit-plugin-panel.php:1055
152
  msgid "The added file is not valid."
153
  msgstr ""
154
 
155
- #: includes/class-yit-plugin-panel.php:1056
156
  msgid "Sorry, import is disabled."
157
  msgstr ""
158
 
159
- #: includes/class-yit-plugin-panel.php:1057
160
  msgid "Sorting successful."
161
  msgstr ""
162
 
163
- #: includes/class-yit-plugin-panel.php:1525
164
  msgid "We need your support"
165
  msgstr ""
166
 
167
- #: includes/class-yit-plugin-panel.php:1526
168
  msgid "to keep updating and improving the plugin. Please,"
169
  msgstr ""
170
 
171
- #: includes/class-yit-plugin-panel.php:1528
172
  msgid "help us by leaving a good review"
173
  msgstr ""
174
 
175
- #: includes/class-yit-plugin-panel.php:1529
176
  msgid ":) Thanks!"
177
  msgstr ""
178
 
@@ -204,6 +204,10 @@ msgid ""
204
  "from previous location to YITH menu."
205
  msgstr ""
206
 
 
 
 
 
207
  #: includes/class-yith-dashboard.php:35
208
  msgid "YITH Latest Updates"
209
  msgstr ""
@@ -389,6 +393,10 @@ msgid ""
389
  "connection issue between your site and our server."
390
  msgstr ""
391
 
 
 
 
 
392
  #: templates/fields/ajax-customers.php:41
393
  msgid "Search for a customer..."
394
  msgstr ""
@@ -516,16 +524,16 @@ msgstr ""
516
  msgid "Reset"
517
  msgstr ""
518
 
519
- #: templates/panel/woocommerce/woocommerce-form.php:28
520
- #: templates/panel/woocommerce/woocommerce-form.php:32
521
  msgid "Save Options"
522
  msgstr ""
523
 
524
- #: templates/panel/woocommerce/woocommerce-form.php:32
525
  msgid "Options Saved"
526
  msgstr ""
527
 
528
- #: templates/panel/woocommerce/woocommerce-form.php:38
529
  msgid "Reset Defaults"
530
  msgstr ""
531
 
@@ -649,24 +657,35 @@ msgstr ""
649
  msgid "Data: %1$.2fMB | Index: %2$.2fMB | Free: %3$.2fMB | Engine: %4$s"
650
  msgstr ""
651
 
652
- #: yit-functions.php:1912
653
  #. translators: %s is the title of the post object.
654
  msgid "Are you sure you want to move \"%s\" to trash?"
655
  msgstr ""
656
 
657
- #: yit-functions.php:1914 yit-functions.php:2074
658
  #. translators: %s is the title of the post object.
659
  msgid "Are you sure you want to delete \"%s\"?"
660
  msgstr ""
661
 
662
- #: yit-functions.php:2012 yit-functions.php:2020 yit-functions.php:2137
663
  msgid "Further actions"
664
  msgstr ""
665
 
666
- #: yit-plugin.php:205
667
  msgid "License"
668
  msgstr ""
669
 
 
 
 
 
 
 
 
 
 
 
 
670
  #. Author of the plugin/theme
671
  msgid "YITH"
672
  msgstr ""
@@ -682,48 +701,53 @@ msgctxt "[gutenberg]: Category Name"
682
  msgid "YITH"
683
  msgstr ""
684
 
685
- #: includes/class-yit-assets.php:132
686
  msgctxt "Button text"
687
  msgid "Confirm"
688
  msgstr ""
689
 
690
- #: includes/class-yit-assets.php:133
691
  msgctxt "Button text"
692
  msgid "Cancel"
693
  msgstr ""
694
 
695
- #: includes/class-yit-assets.php:146 yit-functions.php:1983
696
  msgctxt "Trash confirmation action"
697
  msgid "Yes, move to trash"
698
  msgstr ""
699
 
700
- #: includes/class-yit-assets.php:150 yit-functions.php:2001
701
- #: yit-functions.php:2128
702
  msgctxt "Delete confirmation action"
703
  msgid "Yes, delete"
704
  msgstr ""
705
 
706
- #: includes/class-yit-plugin-panel.php:491
707
- msgctxt "Help tab name"
708
- msgid "Help"
709
- msgstr ""
710
-
711
- #: includes/class-yit-plugin-panel.php:805
712
  #. translators: 1. Plugin name.
713
  msgctxt "Help tab default title"
714
  msgid "Thank you for purchasing %s!"
715
  msgstr ""
716
 
717
- #: includes/class-yit-plugin-panel.php:806
 
 
 
 
 
718
  msgctxt "Help tab default description"
719
  msgid "We want to help you enjoy a wonderful experience with all of our products."
720
  msgstr ""
721
 
722
- #: includes/class-yit-plugin-panel.php:853
723
  msgctxt "Premium tab name"
724
  msgid "Get premium"
725
  msgstr ""
726
 
 
 
 
 
 
727
  #: includes/class-yith-dashboard.php:96
728
  msgctxt "Plugin FW"
729
  msgid "View Changelog"
@@ -830,7 +854,7 @@ msgctxt "YES/NO button: use MAX 4 characters!"
830
  msgid "NO"
831
  msgstr ""
832
 
833
- #: templates/panel/help-tab.php:87
834
  #. translators: 1. Url to EN playlist.
835
  msgctxt "Help tab view all video link"
836
  msgid ""
@@ -838,57 +862,57 @@ msgid ""
838
  "learn more >"
839
  msgstr ""
840
 
841
- #: templates/panel/help-tab.php:94
842
  msgctxt "Help tab Watch Videotutorials link"
843
  msgid "Videos are also available in:"
844
  msgstr ""
845
 
846
- #: templates/panel/help-tab.php:124
847
  msgctxt "Help tab Read Documentation link"
848
  msgid "Read the documentation"
849
  msgstr ""
850
 
851
- #: templates/panel/help-tab.php:127
852
  msgctxt "Help tab Read Documentation link"
853
  msgid "to learn how the plugin works from the basics."
854
  msgstr ""
855
 
856
- #: templates/panel/help-tab.php:137
857
  msgctxt "Help tab Watch video tutorials link"
858
  msgid "Watch our video tutorials"
859
  msgstr ""
860
 
861
- #: templates/panel/help-tab.php:140
862
  msgctxt "Help tab Watch video tutorials link"
863
  msgid "to see some helpful use cases."
864
  msgstr ""
865
 
866
- #: templates/panel/help-tab.php:150
867
  msgctxt "Help tab view FAQs link"
868
  msgid "Check the FAQs"
869
  msgstr ""
870
 
871
- #: templates/panel/help-tab.php:153
872
  msgctxt "Help tab view FAQs link"
873
  msgid "to find answers to your doubts."
874
  msgstr ""
875
 
876
- #: templates/panel/help-tab.php:169
877
  msgctxt "Help tab FAQ title"
878
  msgid "Last FAQs in our Help Center"
879
  msgstr ""
880
 
881
- #: templates/panel/help-tab.php:183
882
  msgctxt "Help tab FAQ link"
883
  msgid "View all FAQs >"
884
  msgstr ""
885
 
886
- #: templates/panel/help-tab.php:192
887
  msgctxt "Help tab submit ticket title"
888
  msgid "Need help?"
889
  msgstr ""
890
 
891
- #: templates/panel/help-tab.php:195
892
  msgctxt "Help tab submit ticket description"
893
  msgid ""
894
  "If you are experiencing any technical issues, ask for help from our "
@@ -896,11 +920,44 @@ msgid ""
896
  "as soon as possible."
897
  msgstr ""
898
 
899
- #: templates/panel/help-tab.php:203
900
  msgctxt "Help tab submit ticket button"
901
  msgid "Submit a ticket"
902
  msgstr ""
903
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
904
  #: templates/panel/premium-tab.php:30
905
  msgctxt "Premium Tab"
906
  msgid "Get the premium version to unlock advanced features"
@@ -916,7 +973,7 @@ msgctxt "Premium Tab"
916
  msgid "Plugin premium features images"
917
  msgstr ""
918
 
919
- #: templates/panel/premium-tab.php:51
920
  #. translators: alt attribute of main image tag.
921
  msgctxt "Premium Tab"
922
  msgid "And so much more!"
@@ -924,90 +981,95 @@ msgstr ""
924
 
925
  #: templates/panel/premium-tab.php:53
926
  msgctxt "Premium Tab"
 
 
 
 
 
927
  msgid "Check the free vs premium features >"
928
  msgstr ""
929
 
930
- #: templates/panel/premium-tab.php:58
931
  msgctxt "Premium Tab"
932
  msgid "Get the premium version"
933
  msgstr ""
934
 
935
- #: yit-functions.php:1926
936
  msgctxt "Post action"
937
  msgid "Preview"
938
  msgstr ""
939
 
940
- #: yit-functions.php:1935
941
  msgctxt "Post action"
942
  msgid "View"
943
  msgstr ""
944
 
945
- #: yit-functions.php:1946
946
  msgctxt "Post action"
947
  msgid "Edit"
948
  msgstr ""
949
 
950
- #: yit-functions.php:1954
951
  msgctxt "Post action"
952
  msgid "Duplicate"
953
  msgstr ""
954
 
955
- #: yit-functions.php:1966
956
  msgctxt "Post action"
957
  msgid "Restore"
958
  msgstr ""
959
 
960
- #: yit-functions.php:1974
961
  msgctxt "Post action"
962
  msgid "Trash"
963
  msgstr ""
964
 
965
- #: yit-functions.php:1991
966
  msgctxt "Post action"
967
  msgid "Delete Permanently"
968
  msgstr ""
969
 
970
- #: yit-functions.php:2088
971
  msgctxt "Term action"
972
  msgid "View"
973
  msgstr ""
974
 
975
- #: yit-functions.php:2098
976
  msgctxt "Term action"
977
  msgid "Edit"
978
  msgstr ""
979
 
980
- #: yit-functions.php:2106
981
  msgctxt "Term action"
982
  msgid "Duplicate"
983
  msgstr ""
984
 
985
- #: yit-functions.php:2119
986
  msgctxt "Term action"
987
  msgid "Delete"
988
  msgstr ""
989
 
990
- #: yit-plugin.php:84
991
  msgctxt "Plugin Row Meta"
992
  msgid "Live Demo"
993
  msgstr ""
994
 
995
- #: yit-plugin.php:88
996
  msgctxt "Plugin Row Meta"
997
  msgid "Documentation"
998
  msgstr ""
999
 
1000
- #: yit-plugin.php:92
1001
  msgctxt "Plugin Row Meta"
1002
  msgid "Support"
1003
  msgstr ""
1004
 
1005
- #: yit-plugin.php:96
1006
  msgctxt "Plugin Row Meta"
1007
  msgid "Premium version"
1008
  msgstr ""
1009
 
1010
- #: yit-plugin.php:201
1011
  msgctxt "Action links"
1012
  msgid "Settings"
1013
  msgstr ""
4
  msgstr ""
5
  "Project-Id-Version: \n"
6
  "Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
7
+ "POT-Creation-Date: 2022-08-02 12:02:23+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
24
  "X-Textdomain-Support: yes\n"
25
  "X-Generator: grunt-wp-i18n 1.0.3\n"
26
 
27
+ #: includes/class-yit-assets.php:146 yit-functions.php:2006
28
  msgid "Confirm trash"
29
  msgstr ""
30
 
31
+ #: includes/class-yit-assets.php:147
32
  msgid "Are you sure you want to trash the selected items?"
33
  msgstr ""
34
 
35
+ #: includes/class-yit-assets.php:149 includes/class-yit-assets.php:153
36
  #: templates/sysinfo/tabs/main.php:42 templates/sysinfo/tabs/main.php:50
37
+ #: yit-functions.php:2008 yit-functions.php:2026
38
  msgid "No"
39
  msgstr ""
40
 
41
+ #: includes/class-yit-assets.php:150 yit-functions.php:2024
42
+ #: yit-functions.php:2152
43
  msgid "Confirm delete"
44
  msgstr ""
45
 
46
+ #: includes/class-yit-assets.php:151
47
  msgid "Are you sure you want to delete the selected items?"
48
  msgstr ""
49
 
50
+ #: includes/class-yit-assets.php:151 yit-functions.php:1940
51
+ #: yit-functions.php:2100
52
  msgid "This action cannot be undone and you will not be able to recover this data."
53
  msgstr ""
54
 
55
+ #: includes/class-yit-assets.php:172
56
  msgid "Clear"
57
  msgstr ""
58
 
59
+ #: includes/class-yit-assets.php:173
60
  msgid "Clear color"
61
  msgstr ""
62
 
63
+ #: includes/class-yit-assets.php:174
64
  msgid "Default"
65
  msgstr ""
66
 
67
+ #: includes/class-yit-assets.php:175
68
  msgid "Select default color"
69
  msgstr ""
70
 
71
+ #: includes/class-yit-assets.php:176
72
  msgid "Select Color"
73
  msgstr ""
74
 
75
+ #: includes/class-yit-assets.php:177
76
  msgid "Color value"
77
  msgstr ""
78
 
80
  msgid "There was an error with your request; please try again later."
81
  msgstr ""
82
 
83
+ #: includes/class-yit-plugin-panel-woocommerce.php:430
84
  msgid "The changes you have made will be lost if you leave this page."
85
  msgstr ""
86
 
92
  msgid "Settings"
93
  msgstr ""
94
 
95
+ #: includes/class-yit-plugin-panel.php:455
96
+ #: includes/class-yit-plugin-panel.php:458
97
  msgid "How to install premium version"
98
  msgstr ""
99
 
100
+ #: includes/class-yit-plugin-panel.php:655
101
+ #: includes/class-yit-plugin-subpanel.php:133
102
  msgid "Save Changes"
103
  msgstr ""
104
 
105
  #: includes/class-yit-plugin-panel.php:663
106
+ #: includes/class-yit-plugin-subpanel.php:140
107
+ #: templates/panel/woocommerce/woocommerce-form.php:15
108
  msgid "If you continue with this action, you will reset all options in this page."
109
  msgstr ""
110
 
111
  #: includes/class-yit-plugin-panel.php:663
112
+ #: includes/class-yit-plugin-subpanel.php:140
113
+ #: templates/panel/woocommerce/woocommerce-form.php:15
114
  msgid "Are you sure?"
115
  msgstr ""
116
 
117
  #: includes/class-yit-plugin-panel.php:667
118
+ #: includes/class-yit-plugin-subpanel.php:143
119
  msgid "Reset to default"
120
  msgstr ""
121
 
122
+ #: includes/class-yit-plugin-panel.php:1074
123
  msgid "The element you have entered already exists. Please, enter another name."
124
  msgstr ""
125
 
126
+ #: includes/class-yit-plugin-panel.php:1075
127
  msgid "Settings saved"
128
  msgstr ""
129
 
130
+ #: includes/class-yit-plugin-panel.php:1076
131
  msgid "Settings reset"
132
  msgstr ""
133
 
134
+ #: includes/class-yit-plugin-panel.php:1077
135
  msgid "Element deleted correctly."
136
  msgstr ""
137
 
138
+ #: includes/class-yit-plugin-panel.php:1078
139
+ #: includes/class-yit-plugin-panel.php:1079
140
  msgid "Element updated correctly."
141
  msgstr ""
142
 
143
+ #: includes/class-yit-plugin-panel.php:1080
144
  msgid "Database imported correctly."
145
  msgstr ""
146
 
147
+ #: includes/class-yit-plugin-panel.php:1081
148
  msgid "An error has occurred during import. Please try again."
149
  msgstr ""
150
 
151
+ #: includes/class-yit-plugin-panel.php:1082
152
  msgid "The added file is not valid."
153
  msgstr ""
154
 
155
+ #: includes/class-yit-plugin-panel.php:1083
156
  msgid "Sorry, import is disabled."
157
  msgstr ""
158
 
159
+ #: includes/class-yit-plugin-panel.php:1084
160
  msgid "Sorting successful."
161
  msgstr ""
162
 
163
+ #: includes/class-yit-plugin-panel.php:1573
164
  msgid "We need your support"
165
  msgstr ""
166
 
167
+ #: includes/class-yit-plugin-panel.php:1574
168
  msgid "to keep updating and improving the plugin. Please,"
169
  msgstr ""
170
 
171
+ #: includes/class-yit-plugin-panel.php:1576
172
  msgid "help us by leaving a good review"
173
  msgstr ""
174
 
175
+ #: includes/class-yit-plugin-panel.php:1577
176
  msgid ":) Thanks!"
177
  msgstr ""
178
 
204
  "from previous location to YITH menu."
205
  msgstr ""
206
 
207
+ #: includes/class-yith-bh-onboarding.php:85
208
+ msgid "It is not possible save the options"
209
+ msgstr ""
210
+
211
  #: includes/class-yith-dashboard.php:35
212
  msgid "YITH Latest Updates"
213
  msgstr ""
393
  "connection issue between your site and our server."
394
  msgstr ""
395
 
396
+ #: templates/bh-onboarding/onboarding-tabs.php:63
397
+ msgid "Save"
398
+ msgstr ""
399
+
400
  #: templates/fields/ajax-customers.php:41
401
  msgid "Search for a customer..."
402
  msgstr ""
524
  msgid "Reset"
525
  msgstr ""
526
 
527
+ #: templates/panel/woocommerce/woocommerce-form.php:29
528
+ #: templates/panel/woocommerce/woocommerce-form.php:33
529
  msgid "Save Options"
530
  msgstr ""
531
 
532
+ #: templates/panel/woocommerce/woocommerce-form.php:33
533
  msgid "Options Saved"
534
  msgstr ""
535
 
536
+ #: templates/panel/woocommerce/woocommerce-form.php:43
537
  msgid "Reset Defaults"
538
  msgstr ""
539
 
657
  msgid "Data: %1$.2fMB | Index: %2$.2fMB | Free: %3$.2fMB | Engine: %4$s"
658
  msgstr ""
659
 
660
+ #: yit-functions.php:1938
661
  #. translators: %s is the title of the post object.
662
  msgid "Are you sure you want to move \"%s\" to trash?"
663
  msgstr ""
664
 
665
+ #: yit-functions.php:1940 yit-functions.php:2100
666
  #. translators: %s is the title of the post object.
667
  msgid "Are you sure you want to delete \"%s\"?"
668
  msgstr ""
669
 
670
+ #: yit-functions.php:2038 yit-functions.php:2046 yit-functions.php:2163
671
  msgid "Further actions"
672
  msgstr ""
673
 
674
+ #: yit-plugin.php:233
675
  msgid "License"
676
  msgstr ""
677
 
678
+ #: yit-plugin.php:272
679
+ #. translators: 1. Plugin(s) name(s).
680
+ msgid ""
681
+ "%s was deactivated as you're running an higher tier version of the same "
682
+ "plugin."
683
+ msgid_plural ""
684
+ "%s were deactivated as you're running higher tier versions of the same "
685
+ "plugins."
686
+ msgstr[0] ""
687
+ msgstr[1] ""
688
+
689
  #. Author of the plugin/theme
690
  msgid "YITH"
691
  msgstr ""
701
  msgid "YITH"
702
  msgstr ""
703
 
704
+ #: includes/class-yit-assets.php:134
705
  msgctxt "Button text"
706
  msgid "Confirm"
707
  msgstr ""
708
 
709
+ #: includes/class-yit-assets.php:135
710
  msgctxt "Button text"
711
  msgid "Cancel"
712
  msgstr ""
713
 
714
+ #: includes/class-yit-assets.php:148 yit-functions.php:2009
715
  msgctxt "Trash confirmation action"
716
  msgid "Yes, move to trash"
717
  msgstr ""
718
 
719
+ #: includes/class-yit-assets.php:152 yit-functions.php:2027
720
+ #: yit-functions.php:2154
721
  msgctxt "Delete confirmation action"
722
  msgid "Yes, delete"
723
  msgstr ""
724
 
725
+ #: includes/class-yit-plugin-panel.php:803
 
 
 
 
 
726
  #. translators: 1. Plugin name.
727
  msgctxt "Help tab default title"
728
  msgid "Thank you for purchasing %s!"
729
  msgstr ""
730
 
731
+ #: includes/class-yit-plugin-panel.php:803
732
+ msgctxt "Help tab default title"
733
+ msgid "Thank you for using %s!"
734
+ msgstr ""
735
+
736
+ #: includes/class-yit-plugin-panel.php:815
737
  msgctxt "Help tab default description"
738
  msgid "We want to help you enjoy a wonderful experience with all of our products."
739
  msgstr ""
740
 
741
+ #: includes/class-yit-plugin-panel.php:866
742
  msgctxt "Premium tab name"
743
  msgid "Get premium"
744
  msgstr ""
745
 
746
+ #: includes/class-yit-plugin-panel.php:878
747
+ msgctxt "Help tab name"
748
+ msgid "Help"
749
+ msgstr ""
750
+
751
  #: includes/class-yith-dashboard.php:96
752
  msgctxt "Plugin FW"
753
  msgid "View Changelog"
854
  msgid "NO"
855
  msgstr ""
856
 
857
+ #: templates/panel/help-tab.php:89
858
  #. translators: 1. Url to EN playlist.
859
  msgctxt "Help tab view all video link"
860
  msgid ""
862
  "learn more >"
863
  msgstr ""
864
 
865
+ #: templates/panel/help-tab.php:96
866
  msgctxt "Help tab Watch Videotutorials link"
867
  msgid "Videos are also available in:"
868
  msgstr ""
869
 
870
+ #: templates/panel/help-tab.php:126
871
  msgctxt "Help tab Read Documentation link"
872
  msgid "Read the documentation"
873
  msgstr ""
874
 
875
+ #: templates/panel/help-tab.php:129
876
  msgctxt "Help tab Read Documentation link"
877
  msgid "to learn how the plugin works from the basics."
878
  msgstr ""
879
 
880
+ #: templates/panel/help-tab.php:139
881
  msgctxt "Help tab Watch video tutorials link"
882
  msgid "Watch our video tutorials"
883
  msgstr ""
884
 
885
+ #: templates/panel/help-tab.php:142
886
  msgctxt "Help tab Watch video tutorials link"
887
  msgid "to see some helpful use cases."
888
  msgstr ""
889
 
890
+ #: templates/panel/help-tab.php:152
891
  msgctxt "Help tab view FAQs link"
892
  msgid "Check the FAQs"
893
  msgstr ""
894
 
895
+ #: templates/panel/help-tab.php:155
896
  msgctxt "Help tab view FAQs link"
897
  msgid "to find answers to your doubts."
898
  msgstr ""
899
 
900
+ #: templates/panel/help-tab.php:170
901
  msgctxt "Help tab FAQ title"
902
  msgid "Last FAQs in our Help Center"
903
  msgstr ""
904
 
905
+ #: templates/panel/help-tab.php:184
906
  msgctxt "Help tab FAQ link"
907
  msgid "View all FAQs >"
908
  msgstr ""
909
 
910
+ #: templates/panel/help-tab.php:193
911
  msgctxt "Help tab submit ticket title"
912
  msgid "Need help?"
913
  msgstr ""
914
 
915
+ #: templates/panel/help-tab.php:196
916
  msgctxt "Help tab submit ticket description"
917
  msgid ""
918
  "If you are experiencing any technical issues, ask for help from our "
920
  "as soon as possible."
921
  msgstr ""
922
 
923
+ #: templates/panel/help-tab.php:204
924
  msgctxt "Help tab submit ticket button"
925
  msgid "Submit a ticket"
926
  msgstr ""
927
 
928
+ #: templates/panel/help-tab.php:216 templates/panel/help-tab.php:218
929
+ #: templates/panel/help-tab.php:223
930
+ msgctxt "Help tab documentation"
931
+ msgid "Read the plugin documentation"
932
+ msgstr ""
933
+
934
+ #: templates/panel/help-tab.php:220
935
+ msgctxt "Help tab documentation"
936
+ msgid "to learn how it works from the basics."
937
+ msgstr ""
938
+
939
+ #: templates/panel/help-tab.php:231 templates/panel/help-tab.php:233
940
+ msgctxt "Help tab support"
941
+ msgid "Need some help?"
942
+ msgstr ""
943
+
944
+ #: templates/panel/help-tab.php:235
945
+ msgctxt "Help tab support"
946
+ msgid "From DIY to full-service help"
947
+ msgstr ""
948
+
949
+ #: templates/panel/help-tab.php:238
950
+ msgctxt "Help tab support"
951
+ msgid ""
952
+ "Call or chat 24/7 with our support agents, or let our experts build your "
953
+ "site."
954
+ msgstr ""
955
+
956
+ #: templates/panel/help-tab.php:241
957
+ msgctxt "Help tab support"
958
+ msgid "Yes, I need help"
959
+ msgstr ""
960
+
961
  #: templates/panel/premium-tab.php:30
962
  msgctxt "Premium Tab"
963
  msgid "Get the premium version to unlock advanced features"
973
  msgid "Plugin premium features images"
974
  msgstr ""
975
 
976
+ #: templates/panel/premium-tab.php:51 templates/panel/premium-tab.php:58
977
  #. translators: alt attribute of main image tag.
978
  msgctxt "Premium Tab"
979
  msgid "And so much more!"
981
 
982
  #: templates/panel/premium-tab.php:53
983
  msgctxt "Premium Tab"
984
+ msgid "Check the premium features >"
985
+ msgstr ""
986
+
987
+ #: templates/panel/premium-tab.php:60
988
+ msgctxt "Premium Tab"
989
  msgid "Check the free vs premium features >"
990
  msgstr ""
991
 
992
+ #: templates/panel/premium-tab.php:65
993
  msgctxt "Premium Tab"
994
  msgid "Get the premium version"
995
  msgstr ""
996
 
997
+ #: yit-functions.php:1952
998
  msgctxt "Post action"
999
  msgid "Preview"
1000
  msgstr ""
1001
 
1002
+ #: yit-functions.php:1961
1003
  msgctxt "Post action"
1004
  msgid "View"
1005
  msgstr ""
1006
 
1007
+ #: yit-functions.php:1972
1008
  msgctxt "Post action"
1009
  msgid "Edit"
1010
  msgstr ""
1011
 
1012
+ #: yit-functions.php:1980
1013
  msgctxt "Post action"
1014
  msgid "Duplicate"
1015
  msgstr ""
1016
 
1017
+ #: yit-functions.php:1992
1018
  msgctxt "Post action"
1019
  msgid "Restore"
1020
  msgstr ""
1021
 
1022
+ #: yit-functions.php:2000
1023
  msgctxt "Post action"
1024
  msgid "Trash"
1025
  msgstr ""
1026
 
1027
+ #: yit-functions.php:2017
1028
  msgctxt "Post action"
1029
  msgid "Delete Permanently"
1030
  msgstr ""
1031
 
1032
+ #: yit-functions.php:2114
1033
  msgctxt "Term action"
1034
  msgid "View"
1035
  msgstr ""
1036
 
1037
+ #: yit-functions.php:2124
1038
  msgctxt "Term action"
1039
  msgid "Edit"
1040
  msgstr ""
1041
 
1042
+ #: yit-functions.php:2132
1043
  msgctxt "Term action"
1044
  msgid "Duplicate"
1045
  msgstr ""
1046
 
1047
+ #: yit-functions.php:2145
1048
  msgctxt "Term action"
1049
  msgid "Delete"
1050
  msgstr ""
1051
 
1052
+ #: yit-plugin.php:85
1053
  msgctxt "Plugin Row Meta"
1054
  msgid "Live Demo"
1055
  msgstr ""
1056
 
1057
+ #: yit-plugin.php:89
1058
  msgctxt "Plugin Row Meta"
1059
  msgid "Documentation"
1060
  msgstr ""
1061
 
1062
+ #: yit-plugin.php:93
1063
  msgctxt "Plugin Row Meta"
1064
  msgid "Support"
1065
  msgstr ""
1066
 
1067
+ #: yit-plugin.php:97
1068
  msgctxt "Plugin Row Meta"
1069
  msgid "Premium version"
1070
  msgstr ""
1071
 
1072
+ #: yit-plugin.php:229
1073
  msgctxt "Action links"
1074
  msgid "Settings"
1075
  msgstr ""
plugin-fw/templates/bh-onboarding/onboarding-tabs.php ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * The Template for displaying the BH Onboarding tabs.
4
+ *
5
+ * @var array $options The premium tab options array.
6
+ *
7
+ * @package YITH\PluginFramework\Templates
8
+ * @author Emanuela Castorina <emanuela.castorina@yithemes.com>
9
+ * @since 3.9.11
10
+ */
11
+
12
+ defined( 'ABSPATH' ) || exit; // Exit if accessed directly.
13
+ $tabs = $options['tabs'];
14
+ ?>
15
+ <div class="woocommerce yith-plugin-fw-panel" id="yith-bh-onboarding">
16
+ <header>
17
+ <div class="yith-bh-onboarding-logo">
18
+ <?php if ( isset( $options['logo'] ) ) : ?>
19
+ <div class="logo">
20
+ <img src="<?php echo esc_url( $options['logo'] ); ?>" width="150"/>
21
+ </div>
22
+ <?php endif; ?>
23
+ <?php if ( isset( $options['claim'] ) ) : ?>
24
+ <div class="claim"><?php echo esc_html( $options['claim'] ); ?></div>
25
+ <?php endif; ?>
26
+ </div>
27
+ <div class="yith-bh-onboarding-plugin-description">
28
+ <?php if ( isset( $options['plugin-description'] ) ) : ?>
29
+ <div class="plugin-description"><?php echo wp_kses_post( $options['plugin-description'] ); ?></div>
30
+ <?php endif; ?>
31
+ </div>
32
+ </header>
33
+ <div class="yith-bh-onboarding-tabs yith-plugin-ui">
34
+ <ul class="yith-bh-onboarding-tabs__nav">
35
+ <?php
36
+ $c = 0;
37
+ foreach ( $tabs as $key => $tab ) :
38
+ ?>
39
+ <li class="yith-bh-onboarding-tabs__nav__link <?php echo ! ( $c ++ ) ? 'selected' : ''; ?>" data-tab="<?php esc_attr_e( $key ); ?>"><?php echo esc_html( $tab['title'] ); ?></li>
40
+ <?php
41
+ endforeach;
42
+ ?>
43
+ </ul>
44
+ <div class="yith-bh-onboarding-tabs__content yith-plugin-fw yit-admin-panel-container">
45
+ <?php foreach ( $tabs as $key => $tab ) : ?>
46
+ <?php if ( isset( $tab['options'] ) ) : ?>
47
+ <div class="yith-bh-onboarding-tabs__tab" id="<?php echo esc_attr( $key ); ?>">
48
+ <p class="yith-bh-onboarding-tab-description"><?php echo wp_kses_post( $tab['description'] ); ?></p>
49
+ <form class="yith-bh-onboarding-tabs__form" id="plugin-fw-wc">
50
+ <table class="form-table">
51
+ <?php
52
+ foreach ( $tab['options'] as $name => $option ) {
53
+ YIT_Plugin_Panel_WooCommerce::add_yith_field( $option );
54
+ }
55
+ ?>
56
+ </table>
57
+ <?php if ( isset( $tab['show_save_button'] ) && $tab['show_save_button'] ) : ?>
58
+ <input type="hidden" name="yith-plugin" value="<?php echo esc_attr( $options['slug'] ); ?>">
59
+ <input type="hidden" name="action" value="yith_bh_onboarding">
60
+ <input type="hidden" name="tab" value="<?php echo esc_attr( $key ); ?>">
61
+ <?php wp_nonce_field( 'yith-bh-onboarding-save-options' ); ?>
62
+ <div class="submit-area">
63
+ <button id="yith-bh-save-button" class="button button-primary"><?php echo esc_html__( 'Save', 'yith-plugin-fw' ); ?></button>
64
+ </div>
65
+ <?php endif; ?>
66
+ </form>
67
+ </div>
68
+ <?php
69
+ endif;
70
+ endforeach;
71
+
72
+ ?>
73
+ </div>
74
+
75
+ </div>
plugin-fw/templates/panel/help-tab.php CHANGED
@@ -6,6 +6,8 @@
6
  * @var string $current_tab The current tab.
7
  * @var string $current_sub_tab The current sub-tab.
8
  * @var array $latest_articles Latest HC articles.
 
 
9
  *
10
  * @package YITH\PluginFramework\Templates
11
  */
@@ -54,7 +56,7 @@ if ( $has_default_playlist ) {
54
  }
55
  ?>
56
 
57
- <div id='yith_plugin_fw_panel_help_tab' class='yith-plugin-fw-panel-help-tab-container'>
58
  <div class="yith-plugin-fw-panel-help-tab-content">
59
  <?php if ( $the_title ) : ?>
60
  <h2 class="yith-plugin-fw-panel-help-tab-title"><?php echo wp_kses_post( $the_title ); ?></h2>
@@ -66,7 +68,7 @@ if ( $has_default_playlist ) {
66
  </p>
67
  <?php endif; ?>
68
 
69
- <?php if ( $has_video || $has_additional_links ) : ?>
70
  <div class="row">
71
  <?php if ( $video_url ) : ?>
72
  <div class="yith-plugin-fw-help-tab-video <?php echo $has_additional_links ? 'column-left' : 'full-width'; ?>">
@@ -161,8 +163,7 @@ if ( $has_default_playlist ) {
161
  </div>
162
  <?php endif; ?>
163
 
164
-
165
- <?php if ( $show_articles || $show_submit_ticket ) : ?>
166
  <div class="row">
167
  <?php if ( $show_articles ) : ?>
168
  <div class="yith-plugin-fw-hc-articles <?php echo $show_submit_ticket ? 'column-left' : 'full-width'; ?>">
@@ -205,7 +206,44 @@ if ( $has_default_playlist ) {
205
  </div>
206
  </div>
207
  <?php endif; ?>
208
- <?php endif; ?>
209
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
210
  </div>
211
  </div>
6
  * @var string $current_tab The current tab.
7
  * @var string $current_sub_tab The current sub-tab.
8
  * @var array $latest_articles Latest HC articles.
9
+ * @var bool $is_extended Whether current plugin is an Extended version.
10
+ * @var bool $is_premium Whether current plugin is a Premium version.
11
  *
12
  * @package YITH\PluginFramework\Templates
13
  */
56
  }
57
  ?>
58
 
59
+ <div id='yith_plugin_fw_panel_help_tab' class='yith-plugin-fw-panel-help-tab-container <?php echo esc_attr( $is_extended ? 'extended' : '' ); ?>'>
60
  <div class="yith-plugin-fw-panel-help-tab-content">
61
  <?php if ( $the_title ) : ?>
62
  <h2 class="yith-plugin-fw-panel-help-tab-title"><?php echo wp_kses_post( $the_title ); ?></h2>
68
  </p>
69
  <?php endif; ?>
70
 
71
+ <?php if ( $is_premium && ( $has_video || $has_additional_links ) ) : ?>
72
  <div class="row">
73
  <?php if ( $video_url ) : ?>
74
  <div class="yith-plugin-fw-help-tab-video <?php echo $has_additional_links ? 'column-left' : 'full-width'; ?>">
163
  </div>
164
  <?php endif; ?>
165
 
166
+ <?php if ( $is_premium && ( $show_articles || $show_submit_ticket ) ) : ?>
 
167
  <div class="row">
168
  <?php if ( $show_articles ) : ?>
169
  <div class="yith-plugin-fw-hc-articles <?php echo $show_submit_ticket ? 'column-left' : 'full-width'; ?>">
206
  </div>
207
  </div>
208
  <?php endif; ?>
209
+ </div>
210
+ <?php endif; ?>
211
+
212
+ <?php if ( $is_extended ) : ?>
213
+ <div class="row">
214
+ <?php if ( $options['doc_url'] ) : ?>
215
+ <div class="box-with-image">
216
+ <img src="<?php echo esc_url( YIT_CORE_PLUGIN_URL ); ?>/assets/images/help-tab/documentation.svg" alt="<?php echo esc_attr_x( 'Read the plugin documentation', 'Help tab documentation', 'yith-plugin-fw' ); ?>">
217
+ <div class="box-content">
218
+ <h3><?php echo esc_html_x( 'Read the plugin documentation', 'Help tab documentation', 'yith-plugin-fw' ); ?></h3>
219
+ <p>
220
+ <?php echo esc_html_x( 'to learn how it works from the basics.', 'Help tab documentation', 'yith-plugin-fw' ); ?>
221
+ </p>
222
+ <a target="_blank" href="<?php echo esc_url( $options['doc_url'] ); ?>" class="button yith-plugin-fw__button--secondary">
223
+ <?php echo esc_html_x( 'Read the plugin documentation', 'Help tab documentation', 'yith-plugin-fw' ); ?>
224
+ </a>
225
+ </div>
226
+ </div>
227
+ <?php endif; ?>
228
+
229
+ <?php if ( $show_submit_ticket ) : ?>
230
+ <div class="box-with-image">
231
+ <img src="<?php echo esc_url( YIT_CORE_PLUGIN_URL ); ?>/assets/images/help-tab/support-desk.svg" alt="<?php echo esc_attr_x( 'Need some help?', 'Help tab support', 'yith-plugin-fw' ); ?>">
232
+ <div class="box-content">
233
+ <h3><?php echo esc_html_x( 'Need some help?', 'Help tab support', 'yith-plugin-fw' ); ?></h3>
234
+ <p>
235
+ <b><?php echo esc_html_x( 'From DIY to full-service help', 'Help tab support', 'yith-plugin-fw' ); ?></b>
236
+ </p>
237
+ <p>
238
+ <?php echo esc_html_x( 'Call or chat 24/7 with our support agents, or let our experts build your site.', 'Help tab support', 'yith-plugin-fw' ); ?>
239
+ </p>
240
+ <a href="<?php echo esc_url( $options['submit_ticket_url'] ); ?>" class="yit-plugin-fw-submit-ticket-button button yith-plugin-fw__button--secondary">
241
+ <?php echo esc_html_x( 'Yes, I need help', 'Help tab support', 'yith-plugin-fw' ); ?>
242
+ </a>
243
+ </div>
244
+ </div>
245
+ <?php endif; ?>
246
+ </div>
247
+ <?php endif; ?>
248
  </div>
249
  </div>
plugin-fw/templates/panel/premium-tab.php CHANGED
@@ -13,12 +13,12 @@
13
 
14
  defined( 'ABSPATH' ) || exit; // Exit if accessed directly.
15
 
16
- list( $premium_features, $main_image_url, $show_free_vs_premium ) = yith_plugin_fw_extract( $options, 'premium_features', 'main_image_url', 'show_free_vs_premium_link' );
17
 
18
- $get_premium_url = yith_plugin_fw_add_utm_data( $premium_url, $plugin_slug, 'button-upgrade', 'wp-free-dashboard' );
19
 
20
  if ( $show_free_vs_premium ) {
21
- $free_vs_premium_url = yith_plugin_fw_add_utm_data( $premium_url, $plugin_slug, 'button-compare', 'wp-free-dashboard' );
22
  }
23
 
24
  ?>
@@ -46,7 +46,14 @@ if ( $show_free_vs_premium ) {
46
  </span>
47
  </div>
48
  <?php endforeach; ?>
49
- <?php if ( $show_free_vs_premium ) : ?>
 
 
 
 
 
 
 
50
  <span class="yith-plugin-fw-panel-premium-tab__free-vs-premium">
51
  <?php echo esc_html_x( 'And so much more!', 'Premium Tab', 'yith-plugin-fw' ); ?>
52
  <a href="<?php echo esc_url( $free_vs_premium_url . '#tab-free_vs_premium_tab' ); ?>" target="_blank">
13
 
14
  defined( 'ABSPATH' ) || exit; // Exit if accessed directly.
15
 
16
+ list( $premium_features, $main_image_url, $show_free_vs_premium, $show_premium_landing_link ) = yith_plugin_fw_extract( $options, 'premium_features', 'main_image_url', 'show_free_vs_premium_link', 'show_premium_landing_link' );
17
 
18
+ $get_premium_url = yith_plugin_fw_add_utm_data( $premium_url, $plugin_slug, 'button-upgrade', yith_plugin_fw_panel_utm_source( $this ) );
19
 
20
  if ( $show_free_vs_premium ) {
21
+ $free_vs_premium_url = yith_plugin_fw_add_utm_data( $premium_url, $plugin_slug, 'button-compare', yith_plugin_fw_panel_utm_source( $this ) );
22
  }
23
 
24
  ?>
46
  </span>
47
  </div>
48
  <?php endforeach; ?>
49
+ <?php if ( $show_premium_landing_link ) : ?>
50
+ <span class="yith-plugin-fw-panel-premium-tab__free-vs-premium">
51
+ <?php echo esc_html_x( 'And so much more!', 'Premium Tab', 'yith-plugin-fw' ); ?>
52
+ <a href="<?php echo esc_url( $get_premium_url ); ?>" target="_blank">
53
+ <?php echo esc_html_x( 'Check the premium features >', 'Premium Tab', 'yith-plugin-fw' ); ?>
54
+ </a>
55
+ </span>
56
+ <?php elseif ( $show_free_vs_premium ) : ?>
57
  <span class="yith-plugin-fw-panel-premium-tab__free-vs-premium">
58
  <?php echo esc_html_x( 'And so much more!', 'Premium Tab', 'yith-plugin-fw' ); ?>
59
  <a href="<?php echo esc_url( $free_vs_premium_url . '#tab-free_vs_premium_tab' ); ?>" target="_blank">
plugin-fw/templates/panel/woocommerce/woocommerce-form.php CHANGED
@@ -30,7 +30,7 @@ $reset_warning = __( 'If you continue with this action, you will reset all optio
30
  </p>
31
 
32
  <?php if ( apply_filters( 'yit_framework_show_float_save_button', true ) ) : ?>
33
- <button id="yith-plugin-fw-float-save-button" class="button button-primary yith-plugin-fw-animate__appear-from-bottom" data-default-label="<?php esc_attr_e( 'Save Options', 'yith-plugin-fw' ); ?>" data-saved-label="<?php esc_attr_e( 'Options Saved', 'yith-plugin-fw' ); ?>"><i class="yith-icon yith-icon-save"></i> <?php esc_html_e( 'Save Options', 'yith-plugin-fw' ); ?></button>
34
  <?php endif; ?>
35
 
36
  <input type="hidden" name="page" value="<?php echo esc_attr( $this->settings['page'] ); ?>"/>
30
  </p>
31
 
32
  <?php if ( apply_filters( 'yit_framework_show_float_save_button', true ) ) : ?>
33
+ <button id="yith-plugin-fw-float-save-button" class="button button-primary yith-plugin-fw-animate__appear-from-bottom" data-default-label="<?php esc_attr_e( 'Save Options', 'yith-plugin-fw' ); ?>" data-saved-label="<?php esc_attr_e( 'Options Saved', 'yith-plugin-fw' ); ?>"><?php esc_html_e( 'Save Options', 'yith-plugin-fw' ); ?></button>
34
  <?php endif; ?>
35
 
36
  <input type="hidden" name="page" value="<?php echo esc_attr( $this->settings['page'] ); ?>"/>
plugin-fw/yit-deactive-plugin.php CHANGED
@@ -13,26 +13,77 @@ if ( ! function_exists( 'yit_deactive_free_version' ) ) {
13
  *
14
  * @param string $to_deactivate The constant name of the plugin to deactivate.
15
  * @param string $to_activate The path of the File of the plugin to activate.
 
 
16
  */
17
  function yit_deactive_free_version( $to_deactivate, $to_activate ) {
 
 
 
 
 
 
 
 
 
 
 
 
18
  if ( ! function_exists( 'is_plugin_active' ) ) {
19
  require_once ABSPATH . 'wp-admin/includes/plugin.php';
20
  }
21
 
22
- if ( defined( $to_deactivate ) && is_plugin_active( constant( $to_deactivate ) ) ) {
23
- deactivate_plugins( constant( $to_deactivate ) );
 
 
 
 
 
 
 
24
 
25
- if ( ! function_exists( 'wp_create_nonce' ) ) {
26
- header( 'Location: plugins.php' );
27
- exit();
28
  }
29
 
30
- global $status, $page, $s;
31
- $redirect = 'plugins.php?action=activate&plugin=' . $to_activate . '&plugin_status=' . $status . '&paged=' . $page . '&s=' . $s;
32
- $redirect = esc_url_raw( add_query_arg( '_wpnonce', wp_create_nonce( 'activate-plugin_' . $to_activate ), $redirect ) );
33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
  header( 'Location: ' . $redirect );
35
- exit();
36
  }
 
 
37
  }
38
  }
13
  *
14
  * @param string $to_deactivate The constant name of the plugin to deactivate.
15
  * @param string $to_activate The path of the File of the plugin to activate.
16
+ *
17
+ * @deprecated 3.9.8
18
  */
19
  function yit_deactive_free_version( $to_deactivate, $to_activate ) {
20
+ yith_deactivate_plugins( $to_deactivate, $to_activate );
21
+ }
22
+ }
23
+
24
+ if ( ! function_exists( 'yith_deactivate_plugins' ) ) {
25
+ /**
26
+ * Deactivate a list of plugins, and terminates activating another plugin.
27
+ *
28
+ * @param string|string[] $to_deactivate The constant name of the plugin(s) to deactivate.
29
+ * @param string $to_activate The path of the File of the plugin to activate.
30
+ */
31
+ function yith_deactivate_plugins( $to_deactivate, $to_activate = false ) {
32
  if ( ! function_exists( 'is_plugin_active' ) ) {
33
  require_once ABSPATH . 'wp-admin/includes/plugin.php';
34
  }
35
 
36
+ $deactivated = array();
37
+ $to_deactivate = (array) $to_deactivate;
38
+
39
+ foreach ( $to_deactivate as $plugin_to_deactivate ) {
40
+ if ( ! defined( $plugin_to_deactivate ) ) {
41
+ continue;
42
+ }
43
+
44
+ $plugin_to_deactivate_init = constant( $plugin_to_deactivate );
45
 
46
+ if ( ! is_plugin_active( $plugin_to_deactivate_init ) ) {
47
+ continue;
 
48
  }
49
 
50
+ deactivate_plugins( $plugin_to_deactivate_init );
 
 
51
 
52
+ $deactivated[] = $plugin_to_deactivate_init;
53
+ }
54
+
55
+ if ( empty( $deactivated ) ) {
56
+ return;
57
+ }
58
+
59
+ global $status, $page, $s;
60
+
61
+ $query_params = array(
62
+ 'yith_deactivated_plugins' => implode( ',', $deactivated ),
63
+ 'plugin_status' => $status,
64
+ 'paged' => $page,
65
+ 's' => $s,
66
+ );
67
+
68
+ if ( $to_activate && function_exists( 'wp_create_nonce' ) ) {
69
+ $query_params = array_merge(
70
+ $query_params,
71
+ array(
72
+ 'action' => 'activate',
73
+ 'plugin' => $to_activate,
74
+ '_wpnonce' => wp_create_nonce( 'activate-plugin_' . $to_activate ),
75
+ )
76
+ );
77
+ }
78
+
79
+ $redirect = esc_url_raw( add_query_arg( $query_params, admin_url( 'plugins.php' ) ) );
80
+
81
+ if ( function_exists( 'wp_safe_redirect' ) ) {
82
+ wp_safe_redirect( $redirect );
83
+ } else {
84
  header( 'Location: ' . $redirect );
 
85
  }
86
+
87
+ die;
88
  }
89
  }
plugin-fw/yit-functions.php CHANGED
@@ -1756,8 +1756,13 @@ if ( ! function_exists( 'yith_plugin_fw_add_utm_data' ) ) {
1756
  *
1757
  * @since 3.6.10
1758
  */
1759
- function yith_plugin_fw_add_utm_data( $url, $slug, $campaign = 'plugin-version-author-uri', $source = 'wp-dashboard' ) {
1760
  $url = trailingslashit( $url );
 
 
 
 
 
1761
  if ( ! empty( $slug ) ) {
1762
  $utm_track_data = array(
1763
  'utm_source' => $source,
@@ -1772,6 +1777,27 @@ if ( ! function_exists( 'yith_plugin_fw_add_utm_data' ) ) {
1772
  }
1773
  }
1774
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1775
  if ( ! function_exists( 'yith_plugin_fw_include_fw_template' ) ) {
1776
  /**
1777
  * Include a FW template
1756
  *
1757
  * @since 3.6.10
1758
  */
1759
+ function yith_plugin_fw_add_utm_data( $url, $slug, $campaign = 'plugin-version-author-uri', $source = false ) {
1760
  $url = trailingslashit( $url );
1761
+
1762
+ if ( ! $source ) {
1763
+ $source = yith_plugin_fw_panel_utm_source();
1764
+ }
1765
+
1766
  if ( ! empty( $slug ) ) {
1767
  $utm_track_data = array(
1768
  'utm_source' => $source,
1777
  }
1778
  }
1779
 
1780
+ if ( ! function_exists( 'yith_plugin_fw_panel_utm_source' ) ) {
1781
+ /**
1782
+ * Generates default UTM source for the dashboard
1783
+ *
1784
+ * @param YIT_Plugin_Panel $panel Panel object.
1785
+ *
1786
+ * @since 3.6.10
1787
+ */
1788
+ function yith_plugin_fw_panel_utm_source( $panel = false ) {
1789
+ if ( $panel->is_free() ) {
1790
+ return 'wp-free-dashboard';
1791
+ }
1792
+
1793
+ if ( $panel->is_extended() ) {
1794
+ return 'wp-extended-dashboard';
1795
+ }
1796
+
1797
+ return 'wp-dashboard';
1798
+ }
1799
+ }
1800
+
1801
  if ( ! function_exists( 'yith_plugin_fw_include_fw_template' ) ) {
1802
  /**
1803
  * Include a FW template
plugin-fw/yit-plugin.php CHANGED
@@ -37,6 +37,7 @@ require_once 'includes/privacy/class-yith-privacy.php';
37
  require_once 'includes/privacy/class-yith-privacy-plugin-abstract.php';
38
  require_once 'includes/class-yith-system-status.php';
39
  require_once 'includes/class-yith-post-type-admin.php';
 
40
 
41
  // Gutenberg Support.
42
  if ( class_exists( 'WP_Block_Type_Registry' ) ) {
@@ -110,17 +111,36 @@ if ( ! function_exists( 'yit_plugin_fw_row_meta' ) ) {
110
  $plugin_data,
111
  $status
112
  );
113
- $fields = isset( $new_row_meta_args['to_show'] ) ? $new_row_meta_args['to_show'] : array();
114
- $slug = isset( $new_row_meta_args['slug'] ) ? $new_row_meta_args['slug'] : '';
115
- $is_premium = isset( $new_row_meta_args['is_premium'] ) ? $new_row_meta_args['is_premium'] : '';
 
116
  $utm_campaign = 'plugin-version-author-uri';
117
- $utm_source = $is_premium ? 'wp-premium-dashboard' : 'wp-free-dashboard';
118
 
119
- if ( ! ! $is_premium ) {
120
- $to_remove = array_search( 'premium_version', $fields, true );
 
 
 
 
121
 
122
- if ( false !== $to_remove ) {
123
- unset( $fields[ $to_remove ] );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
124
  }
125
  }
126
 
@@ -147,11 +167,12 @@ if ( ! function_exists( 'yit_plugin_fw_row_meta' ) ) {
147
  if ( ! empty( $slug ) ) {
148
  if ( 'support' === $field ) {
149
  $support_field = true === $is_premium ? 'premium_support' : 'free_support';
 
150
  if ( ! empty( $base_uri[ $support_field ] ) ) {
151
  $url = $base_uri[ $support_field ];
152
  }
153
 
154
- if ( 'free_support' === $support_field ) {
155
  $url = $url . $slug;
156
  }
157
  } else {
@@ -163,7 +184,10 @@ if ( ! function_exists( 'yit_plugin_fw_row_meta' ) ) {
163
  }
164
 
165
  if ( ! empty( $url ) && ! empty( $label ) ) {
166
- $url = yith_plugin_fw_add_utm_data( $url, $slug, $utm_campaign, $utm_source );
 
 
 
167
  $plugin_meta[] = sprintf( '<a href="%s" target="_blank"><span class="%s"></span>%s</a>', $url, $icon, $label );
168
  }
169
  }
@@ -174,8 +198,12 @@ if ( ! function_exists( 'yit_plugin_fw_row_meta' ) ) {
174
  }
175
 
176
  if ( isset( $plugin_meta[2] ) ) {
177
- $utm_plugin_uri = yith_plugin_fw_add_utm_data( $plugin_data['PluginURI'], $slug, $utm_campaign, $utm_source );
178
- $plugin_meta[2] = str_replace( $plugin_data['PluginURI'], $utm_plugin_uri, $plugin_meta[2] );
 
 
 
 
179
  }
180
 
181
  return $plugin_meta;
@@ -208,3 +236,53 @@ if ( ! function_exists( 'yith_add_action_links' ) ) {
208
  return $links;
209
  }
210
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  require_once 'includes/privacy/class-yith-privacy-plugin-abstract.php';
38
  require_once 'includes/class-yith-system-status.php';
39
  require_once 'includes/class-yith-post-type-admin.php';
40
+ require_once 'includes/class-yith-bh-onboarding.php';
41
 
42
  // Gutenberg Support.
43
  if ( class_exists( 'WP_Block_Type_Registry' ) ) {
111
  $plugin_data,
112
  $status
113
  );
114
+ $fields = $new_row_meta_args['to_show'] ?? array();
115
+ $slug = $new_row_meta_args['slug'] ?? '';
116
+ $is_extended = $new_row_meta_args['is_extended'] ?? ( false !== strpos( $plugin_file, '-extended' ) );
117
+ $is_premium = $new_row_meta_args['is_premium'] ?? ( false !== strpos( $plugin_file, '-premium' ) );
118
  $utm_campaign = 'plugin-version-author-uri';
 
119
 
120
+ if ( $is_premium ) {
121
+ $utm_source = 'wp-premium-dashboard';
122
+ $to_remove = array( 'premium_version' );
123
+ } elseif ( $is_extended ) {
124
+ $utm_source = 'wp-extended-dashboard';
125
+ $to_remove = array( 'live_demo' );
126
 
127
+ // set custom base uri.
128
+ $base_uri['documentation'] = 'https://www.bluehost.com/help/article/';
129
+ $base_uri['free_support'] = add_query_arg( array( 'page' => 'bluehost' ), admin_url( 'admin.php' ) ) . '#/help';
130
+ } else {
131
+ $utm_source = 'wp-free-dashboard';
132
+ }
133
+
134
+ // remove meta not required for current plugin.
135
+ if ( ! empty( $to_remove ) ) {
136
+ foreach ( $to_remove as $item_to_remove ) {
137
+ $item_to_remove_pos = array_search( $item_to_remove, $fields, true );
138
+
139
+ if ( false === $item_to_remove_pos ) {
140
+ continue;
141
+ }
142
+
143
+ unset( $fields[ $item_to_remove_pos ] );
144
  }
145
  }
146
 
167
  if ( ! empty( $slug ) ) {
168
  if ( 'support' === $field ) {
169
  $support_field = true === $is_premium ? 'premium_support' : 'free_support';
170
+
171
  if ( ! empty( $base_uri[ $support_field ] ) ) {
172
  $url = $base_uri[ $support_field ];
173
  }
174
 
175
+ if ( 'free_support' === $support_field && ! $is_extended ) {
176
  $url = $url . $slug;
177
  }
178
  } else {
184
  }
185
 
186
  if ( ! empty( $url ) && ! empty( $label ) ) {
187
+ if ( ! ( $is_extended && in_array( $field, array( 'support', 'documentation' ), true ) ) ) {
188
+ $url = yith_plugin_fw_add_utm_data( $url, $slug, $utm_campaign, $utm_source );
189
+ }
190
+
191
  $plugin_meta[] = sprintf( '<a href="%s" target="_blank"><span class="%s"></span>%s</a>', $url, $icon, $label );
192
  }
193
  }
198
  }
199
 
200
  if ( isset( $plugin_meta[2] ) ) {
201
+ if ( $is_extended ) {
202
+ unset( $plugin_meta[2] );
203
+ } else {
204
+ $utm_plugin_uri = yith_plugin_fw_add_utm_data( $plugin_data['PluginURI'], $slug, $utm_campaign, $utm_source );
205
+ $plugin_meta[2] = str_replace( $plugin_data['PluginURI'], $utm_plugin_uri, $plugin_meta[2] );
206
+ }
207
  }
208
 
209
  return $plugin_meta;
236
  return $links;
237
  }
238
  }
239
+
240
+ if ( ! function_exists( 'yith_plugin_fw_print_deactivation_message' ) ) {
241
+ /**
242
+ * Prints message about plugins deactivation, due to multiple versions active of the same software active at the same time
243
+ *
244
+ * @return void
245
+ * @since 3.9.8
246
+ */
247
+ function yith_plugin_fw_print_deactivation_message() {
248
+ global $pagenow;
249
+
250
+ // phpcs:disable WordPress.Security.NonceVerification
251
+ if ( 'plugins.php' !== $pagenow || ! isset( $_GET['yith_deactivated_plugins'] ) ) {
252
+ return;
253
+ }
254
+
255
+ $names = sanitize_text_field( wp_unslash( $_GET['yith_deactivated_plugins'] ) );
256
+ $names = explode( ',', $names );
257
+ $names = array_map(
258
+ function ( $init_file ) {
259
+ $name = get_plugin_data( WP_PLUGIN_DIR . '/' . $init_file )['Name'] ?? '';
260
+ if ( ! $name ) {
261
+ $name = str_replace( array( '-', 'init.php', '/' ), ' ', $init_file );
262
+ $name = str_replace( array( 'yith', 'woocommerce', 'wordpress' ), array( 'YITH', 'WooCommerce', 'WordPress' ), $name );
263
+ $name = trim( ucwords( $name ) );
264
+ }
265
+
266
+ return $name;
267
+ },
268
+ $names
269
+ );
270
+
271
+ // translators: 1. Plugin(s) name(s).
272
+ $message = _n(
273
+ '%s was deactivated as you\'re running an higher tier version of the same plugin.',
274
+ '%s were deactivated as you\'re running higher tier versions of the same plugins.',
275
+ count( $names ),
276
+ 'yit-plugin-fw'
277
+ );
278
+ $message = sprintf( $message, implode( ', ', $names ) );
279
+ ?>
280
+ <div class="notice">
281
+ <p><?php echo esc_html( $message ); ?></p>
282
+ </div>
283
+ <?php
284
+ // phpcs:enable
285
+ }
286
+ }
287
+
288
+ add_action( 'admin_notices', 'yith_plugin_fw_print_deactivation_message' );