@lightspeed/crane 3.3.0 → 3.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +33 -0
- package/UPGRADE.md +14 -0
- package/dist/cli.mjs +45 -61
- package/package.json +3 -2
- package/template/layouts/catalog/example-catalog/settings/design.ts +229 -1
- package/template/layouts/catalog/example-catalog/settings/layout.ts +1 -0
- package/template/layouts/catalog/example-catalog/settings/translations.ts +285 -1
- package/template/layouts/category/example-category/Main.vue +2 -1
- package/template/layouts/category/example-category/settings/design.ts +229 -1
- package/template/layouts/category/example-category/settings/layout.ts +1 -0
- package/template/layouts/category/example-category/settings/translations.ts +285 -1
- package/template/layouts/product/example-product/Main.vue +2 -1
- package/template/layouts/product/example-product/settings/layout.ts +1 -0
- package/template/preview/assets/close.svg +3 -0
- package/template/preview/assets/crane-logo.svg +16 -0
- package/template/preview/sections/preview.html +99 -1
- package/template/preview/shared/preview.ts +6 -4
- package/template/preview/vite.config.js +1 -0
- package/template/reference/sections/intro-slider/settings/translations.ts +1 -0
- package/template/sections/example-section/component/image/Image.vue +4 -3
- package/template/footers/example-footer/entity/color.ts +0 -4
- package/template/reference/sections/featured-products/entity/color.ts +0 -4
- package/template/reference/sections/intro-slider/entity/color.ts +0 -4
- package/template/reference/sections/trending-categories/entity/color.ts +0 -4
- package/template/sections/example-section/entity/color.ts +0 -4
|
@@ -1 +1,229 @@
|
|
|
1
|
-
|
|
1
|
+
import { design } from '@lightspeed/crane-api';
|
|
2
|
+
|
|
3
|
+
export default {
|
|
4
|
+
storefront_default_settings: design.accordion({
|
|
5
|
+
items: {
|
|
6
|
+
catalog_page_settings: {
|
|
7
|
+
label: '$label.accordion.catalog_page_settings',
|
|
8
|
+
editors: {
|
|
9
|
+
categoryViewMode: design.selectbox({
|
|
10
|
+
label: '$label.category_view.label',
|
|
11
|
+
description: '$label.category_view.description',
|
|
12
|
+
options: [
|
|
13
|
+
{ value: 'EXPANDED', label: '$label.category_view.expanded' },
|
|
14
|
+
{ value: 'COLLAPSED', label: '$label.category_view.collapsed' },
|
|
15
|
+
],
|
|
16
|
+
defaults: { value: 'COLLAPSED' },
|
|
17
|
+
}),
|
|
18
|
+
productFiltersVisibleOnCatalogPages: design.selectbox({
|
|
19
|
+
label: '$label.product_filter_placement.label',
|
|
20
|
+
options: [
|
|
21
|
+
{ value: 'true', label: '$label.product_filter_placement.all_pages' },
|
|
22
|
+
{ value: 'false', label: '$label.product_filter_placement.category_pages' },
|
|
23
|
+
],
|
|
24
|
+
defaults: { value: 'false' },
|
|
25
|
+
}),
|
|
26
|
+
productFiltersOrientationPosition: design.selectbox({
|
|
27
|
+
label: '$label.filter_panel_orientation.label',
|
|
28
|
+
options: [
|
|
29
|
+
{ value: 'VERTICAL', label: '$label.filter_panel_orientation.vertical' },
|
|
30
|
+
{ value: 'HORIZONTAL', label: '$label.filter_panel_orientation.horizontal' },
|
|
31
|
+
],
|
|
32
|
+
defaults: { value: 'VERTICAL' },
|
|
33
|
+
}),
|
|
34
|
+
filterPriority: design.info({
|
|
35
|
+
label: '$label.filter_priority.label',
|
|
36
|
+
description: '$label.filter_priority.description',
|
|
37
|
+
button: {
|
|
38
|
+
label: '$label.filter_priority.button',
|
|
39
|
+
link: '#product-filters:mode=sort',
|
|
40
|
+
},
|
|
41
|
+
}),
|
|
42
|
+
catalogPageDivider1: design.divider({
|
|
43
|
+
label: '$label.divider',
|
|
44
|
+
}),
|
|
45
|
+
productFiltersPositionOnCatalogPages: design.selectbox({
|
|
46
|
+
label: '$label.side_to_show_filters.label',
|
|
47
|
+
options: [
|
|
48
|
+
{ value: 'RIGHT', label: '$label.side_to_show_filters.right' },
|
|
49
|
+
{ value: 'LEFT', label: '$label.side_to_show_filters.left' },
|
|
50
|
+
],
|
|
51
|
+
defaults: { value: 'RIGHT' },
|
|
52
|
+
}),
|
|
53
|
+
productFiltersOpenedByDefaultOnCategoryPage: design.toggle({
|
|
54
|
+
label: '$label.expand_filter_panel.label',
|
|
55
|
+
defaults: { enabled: false },
|
|
56
|
+
}),
|
|
57
|
+
showSortViewAsOptions: design.toggle({
|
|
58
|
+
label: '$label.show_sort_by_options.label',
|
|
59
|
+
defaults: { enabled: true },
|
|
60
|
+
}),
|
|
61
|
+
showFooterMenu: design.toggle({
|
|
62
|
+
label: '$label.show_bottom_navigation_menu.label',
|
|
63
|
+
defaults: { enabled: true },
|
|
64
|
+
}),
|
|
65
|
+
showSigninLink: design.toggle({
|
|
66
|
+
label: '$label.show_signin_link.label',
|
|
67
|
+
defaults: { enabled: true },
|
|
68
|
+
}),
|
|
69
|
+
},
|
|
70
|
+
},
|
|
71
|
+
product_card_settings: {
|
|
72
|
+
label: '$label.accordion.product_card_settings',
|
|
73
|
+
editors: {
|
|
74
|
+
productCardSpacingType: design.selectbox({
|
|
75
|
+
label: '$label.card_grid_spacing.label',
|
|
76
|
+
description: '$label.card_grid_spacing.description',
|
|
77
|
+
options: [
|
|
78
|
+
{ value: 'NONE', label: '$label.card_grid_spacing.none' },
|
|
79
|
+
{ value: 'NARROW', label: '$label.card_grid_spacing.narrow' },
|
|
80
|
+
{ value: 'MEDIUM', label: '$label.card_grid_spacing.medium' },
|
|
81
|
+
{ value: 'WIDE', label: '$label.card_grid_spacing.wide' },
|
|
82
|
+
],
|
|
83
|
+
defaults: { value: 'WIDE' },
|
|
84
|
+
}),
|
|
85
|
+
productCardLayout: design.selectbox({
|
|
86
|
+
label: '$label.content_alignment.label',
|
|
87
|
+
options: [
|
|
88
|
+
{ value: 'CENTER', label: '$label.content_alignment.center' },
|
|
89
|
+
{ value: 'LEFT', label: '$label.content_alignment.left' },
|
|
90
|
+
{ value: 'JUSTIFY', label: '$label.content_alignment.justify' },
|
|
91
|
+
{ value: 'RIGHT', label: '$label.content_alignment.right' },
|
|
92
|
+
],
|
|
93
|
+
defaults: { value: 'CENTER' },
|
|
94
|
+
}),
|
|
95
|
+
imageAspectRatio: design.selectbox({
|
|
96
|
+
label: '$label.image_proportions.label',
|
|
97
|
+
options: [
|
|
98
|
+
{ value: 'SQUARE', label: '$label.image_proportions.square_1_1' },
|
|
99
|
+
{ value: 'PORTRAIT_0667', label: '$label.image_proportions.portrait_2_3' },
|
|
100
|
+
{ value: 'PORTRAIT_075', label: '$label.image_proportions.portrait_3_4' },
|
|
101
|
+
{ value: 'LANDSCAPE_1333', label: '$label.image_proportions.landscape_4_3' },
|
|
102
|
+
{ value: 'LANDSCAPE_15', label: '$label.image_proportions.landscape_2_3' },
|
|
103
|
+
],
|
|
104
|
+
defaults: { value: 'PORTRAIT_0667' },
|
|
105
|
+
}),
|
|
106
|
+
imageSize: design.selectbox({
|
|
107
|
+
label: '$label.card_size.label',
|
|
108
|
+
options: [
|
|
109
|
+
{ value: 'SMALL', label: '$label.card_size.small' },
|
|
110
|
+
{ value: 'MEDIUM', label: '$label.card_size.medium' },
|
|
111
|
+
{ value: 'LARGE', label: '$label.card_size.large' },
|
|
112
|
+
],
|
|
113
|
+
defaults: { value: 'LARGE' },
|
|
114
|
+
}),
|
|
115
|
+
productTitleBehavior: design.selectbox({
|
|
116
|
+
label: '$label.product_name.label',
|
|
117
|
+
options: [
|
|
118
|
+
{ value: 'SHOW', label: '$label.show' },
|
|
119
|
+
{ value: 'HIDE', label: '$label.do_not_show' },
|
|
120
|
+
{ value: 'SHOW_ON_HOVER', label: '$label.show_on_mouse_hover' },
|
|
121
|
+
],
|
|
122
|
+
defaults: { value: 'SHOW' },
|
|
123
|
+
}),
|
|
124
|
+
productSubtitleBehavior: design.selectbox({
|
|
125
|
+
label: '$label.product_subtitle.label',
|
|
126
|
+
options: [
|
|
127
|
+
{ value: 'SHOW', label: '$label.show' },
|
|
128
|
+
{ value: 'HIDE', label: '$label.do_not_show' },
|
|
129
|
+
{ value: 'SHOW_ON_HOVER', label: '$label.show_on_mouse_hover' },
|
|
130
|
+
],
|
|
131
|
+
defaults: { value: 'SHOW' },
|
|
132
|
+
}),
|
|
133
|
+
productPriceBehavior: design.selectbox({
|
|
134
|
+
label: '$label.price.label',
|
|
135
|
+
options: [
|
|
136
|
+
{ value: 'SHOW', label: '$label.show' },
|
|
137
|
+
{ value: 'HIDE', label: '$label.do_not_show' },
|
|
138
|
+
{ value: 'SHOW_ON_HOVER', label: '$label.show_on_mouse_hover' },
|
|
139
|
+
],
|
|
140
|
+
defaults: { value: 'SHOW' },
|
|
141
|
+
}),
|
|
142
|
+
productListSwatchesProductOptionBehavior: design.selectbox({
|
|
143
|
+
label: '$label.color_swatches.label',
|
|
144
|
+
description: '$label.color_swatches.description',
|
|
145
|
+
options: [
|
|
146
|
+
{ value: 'SHOW', label: '$label.show' },
|
|
147
|
+
{ value: 'HIDE', label: '$label.do_not_show' },
|
|
148
|
+
],
|
|
149
|
+
defaults: { value: 'HIDE' },
|
|
150
|
+
}),
|
|
151
|
+
productSkuBehavior: design.selectbox({
|
|
152
|
+
label: '$label.sku.label',
|
|
153
|
+
options: [
|
|
154
|
+
{ value: 'SHOW', label: '$label.show' },
|
|
155
|
+
{ value: 'HIDE', label: '$label.do_not_show' },
|
|
156
|
+
{ value: 'SHOW_ON_HOVER', label: '$label.show_on_mouse_hover' },
|
|
157
|
+
],
|
|
158
|
+
defaults: { value: 'HIDE' },
|
|
159
|
+
}),
|
|
160
|
+
productBuyButtonBehavior: design.selectbox({
|
|
161
|
+
label: '$label.buy_now_button.label',
|
|
162
|
+
options: [
|
|
163
|
+
{ value: 'SHOW', label: '$label.show' },
|
|
164
|
+
{ value: 'HIDE', label: '$label.do_not_show' },
|
|
165
|
+
{ value: 'SHOW_ON_HOVER', label: '$label.show_on_mouse_hover' },
|
|
166
|
+
],
|
|
167
|
+
defaults: { value: 'HIDE' },
|
|
168
|
+
}),
|
|
169
|
+
productRatingSectionBehavior: design.selectbox({
|
|
170
|
+
label: '$label.product_rating.label',
|
|
171
|
+
options: [
|
|
172
|
+
{ value: 'SHOW', label: '$label.show' },
|
|
173
|
+
{ value: 'HIDE', label: '$label.do_not_show' },
|
|
174
|
+
{ value: 'SHOW_ON_HOVER', label: '$label.show_on_mouse_hover' },
|
|
175
|
+
],
|
|
176
|
+
defaults: { value: 'SHOW' },
|
|
177
|
+
}),
|
|
178
|
+
productRatingViewBehavior: design.selectbox({
|
|
179
|
+
label: '$label.rating_view.label',
|
|
180
|
+
options: [
|
|
181
|
+
{ value: '5_STARS_VIEW', label: '$label.rating_view.five_stars' },
|
|
182
|
+
{ value: '1_STAR_VIEW', label: '$label.rating_view.one_star' },
|
|
183
|
+
],
|
|
184
|
+
defaults: { value: '5_STARS_VIEW' },
|
|
185
|
+
}),
|
|
186
|
+
showProductRatingAvg: design.toggle({
|
|
187
|
+
label: '$label.show_average_product_rating.label',
|
|
188
|
+
defaults: { enabled: true },
|
|
189
|
+
}),
|
|
190
|
+
showProductTotalNumberOfReview: design.toggle({
|
|
191
|
+
label: '$label.show_total_number_of_reviews.label',
|
|
192
|
+
defaults: { enabled: true },
|
|
193
|
+
}),
|
|
194
|
+
productCardDivider1: design.divider({
|
|
195
|
+
label: '$label.divider',
|
|
196
|
+
}),
|
|
197
|
+
showProductFrame: design.toggle({
|
|
198
|
+
label: '$label.show_product_card_frame.label',
|
|
199
|
+
defaults: { enabled: false },
|
|
200
|
+
}),
|
|
201
|
+
showProductImages: design.toggle({
|
|
202
|
+
label: '$label.show_main_product_image.label',
|
|
203
|
+
defaults: { enabled: true },
|
|
204
|
+
}),
|
|
205
|
+
showAdditionalImageOnHover: design.toggle({
|
|
206
|
+
label: '$label.show_additional_image_on_hover.label',
|
|
207
|
+
defaults: { enabled: false },
|
|
208
|
+
}),
|
|
209
|
+
},
|
|
210
|
+
},
|
|
211
|
+
categories_settings: {
|
|
212
|
+
label: '$label.accordion.categories_settings',
|
|
213
|
+
editors: {
|
|
214
|
+
categoryTitleBehavior: design.selectbox({
|
|
215
|
+
label: '$label.name_position.label',
|
|
216
|
+
options: [
|
|
217
|
+
{ value: 'SHOW_ON_IMAGE', label: '$label.name_position.on_the_image' },
|
|
218
|
+
{ value: 'SHOW_BELOW_IMAGE', label: '$label.name_position.below_the_image' },
|
|
219
|
+
{ value: 'SHOW_ON_HOVER', label: '$label.name_position.on_mouse_hover' },
|
|
220
|
+
{ value: 'HIDE', label: '$label.name_position.hide_category_names' },
|
|
221
|
+
{ value: 'SHOW_TEXT_ONLY', label: '$label.name_position.hide_category_images' },
|
|
222
|
+
],
|
|
223
|
+
defaults: { value: 'SHOW_ON_IMAGE' },
|
|
224
|
+
}),
|
|
225
|
+
},
|
|
226
|
+
},
|
|
227
|
+
},
|
|
228
|
+
}),
|
|
229
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default [] as const;
|
|
@@ -1 +1,285 @@
|
|
|
1
|
-
|
|
1
|
+
import { translation } from '@lightspeed/crane-api';
|
|
2
|
+
|
|
3
|
+
export default translation.init({
|
|
4
|
+
en: {
|
|
5
|
+
'$label.accordion.catalog_page_settings': 'Catalog page settings',
|
|
6
|
+
'$label.accordion.product_card_settings': 'Product card settings',
|
|
7
|
+
'$label.accordion.categories_settings': 'Categories settings',
|
|
8
|
+
|
|
9
|
+
'$label.show': 'Show',
|
|
10
|
+
'$label.do_not_show': 'Do not show',
|
|
11
|
+
'$label.show_on_mouse_hover': 'Show on mouse hover',
|
|
12
|
+
|
|
13
|
+
'$label.category_view.label': 'Category view',
|
|
14
|
+
'$label.category_view.description': 'Display products from root categories on respective category pages only. '
|
|
15
|
+
+ 'This option fits catalogs with a large number of products.',
|
|
16
|
+
'$label.category_view.expanded': 'Expanded categories',
|
|
17
|
+
'$label.category_view.collapsed': 'Collapsed categories',
|
|
18
|
+
|
|
19
|
+
'$label.product_filter_placement.label': 'Product filter placement',
|
|
20
|
+
'$label.product_filter_placement.category_pages': 'On category pages',
|
|
21
|
+
'$label.product_filter_placement.all_pages': 'On catalog and category pages',
|
|
22
|
+
|
|
23
|
+
'$label.filter_panel_orientation.label': 'Filter panel orientation',
|
|
24
|
+
'$label.filter_panel_orientation.vertical': 'Vertical',
|
|
25
|
+
'$label.filter_panel_orientation.horizontal': 'Horizontal',
|
|
26
|
+
|
|
27
|
+
'$label.filter_priority.label': 'Filter priority',
|
|
28
|
+
'$label.filter_priority.description': 'Up to 4 filters can be displayed horizontally. The rest are grouped '
|
|
29
|
+
+ 'under \u201COther filters\u201D. To show a certain filter horizontally, place it among the top 4 '
|
|
30
|
+
+ 'in filter sorting in the control panel.',
|
|
31
|
+
'$label.filter_priority.button': 'Sort product filters',
|
|
32
|
+
|
|
33
|
+
'$label.side_to_show_filters.label': 'Side to show filters',
|
|
34
|
+
'$label.side_to_show_filters.right': 'Right',
|
|
35
|
+
'$label.side_to_show_filters.left': 'Left',
|
|
36
|
+
|
|
37
|
+
'$label.expand_filter_panel.label': 'Expand filter panel',
|
|
38
|
+
'$label.show_sort_by_options.label': 'Show "Sort by" options',
|
|
39
|
+
'$label.show_bottom_navigation_menu.label': 'Show bottom navigation menu',
|
|
40
|
+
'$label.show_signin_link.label': 'Show "Sign In" link',
|
|
41
|
+
|
|
42
|
+
'$label.card_grid_spacing.label': 'Card grid spacing',
|
|
43
|
+
'$label.card_grid_spacing.description': 'Applies to both product and category cards.',
|
|
44
|
+
'$label.card_grid_spacing.none': 'None',
|
|
45
|
+
'$label.card_grid_spacing.narrow': 'Narrow',
|
|
46
|
+
'$label.card_grid_spacing.medium': 'Medium',
|
|
47
|
+
'$label.card_grid_spacing.wide': 'Wide',
|
|
48
|
+
|
|
49
|
+
'$label.content_alignment.label': 'Content alignment',
|
|
50
|
+
'$label.content_alignment.left': 'Left',
|
|
51
|
+
'$label.content_alignment.center': 'Center',
|
|
52
|
+
'$label.content_alignment.right': 'Right',
|
|
53
|
+
'$label.content_alignment.justify': 'Justify',
|
|
54
|
+
|
|
55
|
+
'$label.image_proportions.label': 'Image proportions',
|
|
56
|
+
'$label.image_proportions.portrait_2_3': 'Portrait (2:3)',
|
|
57
|
+
'$label.image_proportions.portrait_3_4': 'Portrait (3:4)',
|
|
58
|
+
'$label.image_proportions.square_1_1': 'Square (1:1)',
|
|
59
|
+
'$label.image_proportions.landscape_4_3': 'Landscape (4:3)',
|
|
60
|
+
'$label.image_proportions.landscape_2_3': 'Landscape (2:3)',
|
|
61
|
+
|
|
62
|
+
'$label.card_size.label': 'Card size',
|
|
63
|
+
'$label.card_size.small': 'Small',
|
|
64
|
+
'$label.card_size.medium': 'Medium',
|
|
65
|
+
'$label.card_size.large': 'Large',
|
|
66
|
+
|
|
67
|
+
'$label.product_name.label': 'Product name',
|
|
68
|
+
'$label.product_subtitle.label': 'Product subtitle',
|
|
69
|
+
'$label.price.label': 'Price',
|
|
70
|
+
|
|
71
|
+
'$label.color_swatches.label': 'Color swatches',
|
|
72
|
+
'$label.color_swatches.description': 'You can set up the appearance of color swatches in Product Details.',
|
|
73
|
+
|
|
74
|
+
'$label.sku.label': 'SKU',
|
|
75
|
+
'$label.buy_now_button.label': '"Buy now" button',
|
|
76
|
+
'$label.product_rating.label': 'Product rating',
|
|
77
|
+
|
|
78
|
+
'$label.rating_view.label': 'Rating view',
|
|
79
|
+
'$label.rating_view.five_stars': 'Five stars view',
|
|
80
|
+
'$label.rating_view.one_star': 'One star view',
|
|
81
|
+
|
|
82
|
+
'$label.show_average_product_rating.label': 'Show average product rating',
|
|
83
|
+
'$label.show_total_number_of_reviews.label': 'Show total number of reviews',
|
|
84
|
+
'$label.show_product_card_frame.label': 'Show product card frame',
|
|
85
|
+
'$label.show_main_product_image.label': 'Show main product image',
|
|
86
|
+
'$label.show_additional_image_on_hover.label': 'Show additional image on hover',
|
|
87
|
+
|
|
88
|
+
'$label.divider': '',
|
|
89
|
+
|
|
90
|
+
'$label.name_position.label': 'Name position',
|
|
91
|
+
'$label.name_position.on_the_image': 'On the image',
|
|
92
|
+
'$label.name_position.below_the_image': 'Below the image',
|
|
93
|
+
'$label.name_position.on_mouse_hover': 'On mouse hover',
|
|
94
|
+
'$label.name_position.hide_category_names': 'Hide category names',
|
|
95
|
+
'$label.name_position.hide_category_images': 'Hide category images',
|
|
96
|
+
},
|
|
97
|
+
|
|
98
|
+
nl: {
|
|
99
|
+
'$label.accordion.catalog_page_settings': 'Cataloguspagina-instellingen',
|
|
100
|
+
'$label.accordion.product_card_settings': 'Productkaart-instellingen',
|
|
101
|
+
'$label.accordion.categories_settings': 'Categorie-instellingen',
|
|
102
|
+
|
|
103
|
+
'$label.show': 'Tonen',
|
|
104
|
+
'$label.do_not_show': 'Niet tonen',
|
|
105
|
+
'$label.show_on_mouse_hover': 'Tonen bij muisaanwijzer',
|
|
106
|
+
|
|
107
|
+
'$label.category_view.label': 'Categorieweergave',
|
|
108
|
+
'$label.category_view.description': 'Toon producten uit hoofdcategorieën alleen op de bijbehorende categoriepagina\'s. '
|
|
109
|
+
+ 'Deze optie past bij catalogi met een groot aantal producten.',
|
|
110
|
+
'$label.category_view.expanded': 'Uitgevouwen categorieën',
|
|
111
|
+
'$label.category_view.collapsed': 'Samengevouwen categorieën',
|
|
112
|
+
|
|
113
|
+
'$label.product_filter_placement.label': 'Plaatsing productfilter',
|
|
114
|
+
'$label.product_filter_placement.category_pages': 'Op categoriepagina\'s',
|
|
115
|
+
'$label.product_filter_placement.all_pages': 'Op catalogus- en categoriepagina\'s',
|
|
116
|
+
|
|
117
|
+
'$label.filter_panel_orientation.label': 'Oriëntatie filterpaneel',
|
|
118
|
+
'$label.filter_panel_orientation.vertical': 'Verticaal',
|
|
119
|
+
'$label.filter_panel_orientation.horizontal': 'Horizontaal',
|
|
120
|
+
|
|
121
|
+
'$label.filter_priority.label': 'Filterprioriteit',
|
|
122
|
+
'$label.filter_priority.description': 'Er kunnen maximaal 4 filters horizontaal worden weergegeven. De rest wordt '
|
|
123
|
+
+ 'gegroepeerd onder \u201CAndere filters\u201D. Om een bepaald filter horizontaal weer te geven, '
|
|
124
|
+
+ 'plaatst u het bij de top 4 in de filtersortering in het configuratiescherm.',
|
|
125
|
+
'$label.filter_priority.button': 'Productfilters sorteren',
|
|
126
|
+
|
|
127
|
+
'$label.side_to_show_filters.label': 'Zijde om filters te tonen',
|
|
128
|
+
'$label.side_to_show_filters.right': 'Rechts',
|
|
129
|
+
'$label.side_to_show_filters.left': 'Links',
|
|
130
|
+
|
|
131
|
+
'$label.expand_filter_panel.label': 'Filterpaneel uitvouwen',
|
|
132
|
+
'$label.show_sort_by_options.label': 'Opties "Sorteren op" tonen',
|
|
133
|
+
'$label.show_bottom_navigation_menu.label': 'Onderste navigatiemenu tonen',
|
|
134
|
+
'$label.show_signin_link.label': 'Link "Aanmelden" tonen',
|
|
135
|
+
|
|
136
|
+
'$label.card_grid_spacing.label': 'Rasterafstand kaarten',
|
|
137
|
+
'$label.card_grid_spacing.description': 'Geldt voor zowel product- als categoriekaarten.',
|
|
138
|
+
'$label.card_grid_spacing.none': 'Geen',
|
|
139
|
+
'$label.card_grid_spacing.narrow': 'Smal',
|
|
140
|
+
'$label.card_grid_spacing.medium': 'Gemiddeld',
|
|
141
|
+
'$label.card_grid_spacing.wide': 'Breed',
|
|
142
|
+
|
|
143
|
+
'$label.content_alignment.label': 'Uitlijning inhoud',
|
|
144
|
+
'$label.content_alignment.left': 'Links',
|
|
145
|
+
'$label.content_alignment.center': 'Gecentreerd',
|
|
146
|
+
'$label.content_alignment.right': 'Rechts',
|
|
147
|
+
'$label.content_alignment.justify': 'Uitvullen',
|
|
148
|
+
|
|
149
|
+
'$label.image_proportions.label': 'Beeldverhoudingen',
|
|
150
|
+
'$label.image_proportions.portrait_2_3': 'Portret (2:3)',
|
|
151
|
+
'$label.image_proportions.portrait_3_4': 'Portret (3:4)',
|
|
152
|
+
'$label.image_proportions.square_1_1': 'Vierkant (1:1)',
|
|
153
|
+
'$label.image_proportions.landscape_4_3': 'Landschap (4:3)',
|
|
154
|
+
'$label.image_proportions.landscape_2_3': 'Landschap (2:3)',
|
|
155
|
+
|
|
156
|
+
'$label.card_size.label': 'Kaartgrootte',
|
|
157
|
+
'$label.card_size.small': 'Klein',
|
|
158
|
+
'$label.card_size.medium': 'Gemiddeld',
|
|
159
|
+
'$label.card_size.large': 'Groot',
|
|
160
|
+
|
|
161
|
+
'$label.product_name.label': 'Productnaam',
|
|
162
|
+
'$label.product_subtitle.label': 'Productondertitel',
|
|
163
|
+
'$label.price.label': 'Prijs',
|
|
164
|
+
|
|
165
|
+
'$label.color_swatches.label': 'Kleurstalen',
|
|
166
|
+
'$label.color_swatches.description': 'U kunt het uiterlijk van kleurstalen instellen in Productdetails.',
|
|
167
|
+
|
|
168
|
+
'$label.sku.label': 'SKU',
|
|
169
|
+
'$label.buy_now_button.label': 'Knop "Nu kopen"',
|
|
170
|
+
'$label.product_rating.label': 'Productbeoordeling',
|
|
171
|
+
|
|
172
|
+
'$label.rating_view.label': 'Beoordelingsweergave',
|
|
173
|
+
'$label.rating_view.five_stars': 'Vijf sterren weergave',
|
|
174
|
+
'$label.rating_view.one_star': 'Eén ster weergave',
|
|
175
|
+
|
|
176
|
+
'$label.show_average_product_rating.label': 'Gemiddelde productbeoordeling tonen',
|
|
177
|
+
'$label.show_total_number_of_reviews.label': 'Totaal aantal beoordelingen tonen',
|
|
178
|
+
'$label.show_product_card_frame.label': 'Productkaart kader tonen',
|
|
179
|
+
'$label.show_main_product_image.label': 'Hoofdproductafbeelding tonen',
|
|
180
|
+
'$label.show_additional_image_on_hover.label': 'Extra afbeelding tonen bij muisaanwijzer',
|
|
181
|
+
|
|
182
|
+
'$label.divider': '',
|
|
183
|
+
|
|
184
|
+
'$label.name_position.label': 'Naampositie',
|
|
185
|
+
'$label.name_position.on_the_image': 'Op de afbeelding',
|
|
186
|
+
'$label.name_position.below_the_image': 'Onder de afbeelding',
|
|
187
|
+
'$label.name_position.on_mouse_hover': 'Bij muisaanwijzer',
|
|
188
|
+
'$label.name_position.hide_category_names': 'Categorienamen verbergen',
|
|
189
|
+
'$label.name_position.hide_category_images': 'Categorieafbeeldingen verbergen',
|
|
190
|
+
},
|
|
191
|
+
|
|
192
|
+
fr: {
|
|
193
|
+
'$label.accordion.catalog_page_settings': 'Paramètres de la page catalogue',
|
|
194
|
+
'$label.accordion.product_card_settings': 'Paramètres de la fiche produit',
|
|
195
|
+
'$label.accordion.categories_settings': 'Paramètres des catégories',
|
|
196
|
+
|
|
197
|
+
'$label.show': 'Afficher',
|
|
198
|
+
'$label.do_not_show': 'Ne pas afficher',
|
|
199
|
+
'$label.show_on_mouse_hover': 'Afficher au survol de la souris',
|
|
200
|
+
|
|
201
|
+
'$label.category_view.label': 'Vue des catégories',
|
|
202
|
+
'$label.category_view.description': 'Affichez les produits des catégories racines uniquement sur les pages de catégories respectives. '
|
|
203
|
+
+ 'Cette option convient aux catalogues comportant un grand nombre de produits.',
|
|
204
|
+
'$label.category_view.expanded': 'Catégories dépliées',
|
|
205
|
+
'$label.category_view.collapsed': 'Catégories repliées',
|
|
206
|
+
|
|
207
|
+
'$label.product_filter_placement.label': 'Emplacement du filtre produit',
|
|
208
|
+
'$label.product_filter_placement.category_pages': 'Sur les pages de catégories',
|
|
209
|
+
'$label.product_filter_placement.all_pages': 'Sur les pages catalogue et catégories',
|
|
210
|
+
|
|
211
|
+
'$label.filter_panel_orientation.label': 'Orientation du panneau de filtres',
|
|
212
|
+
'$label.filter_panel_orientation.vertical': 'Vertical',
|
|
213
|
+
'$label.filter_panel_orientation.horizontal': 'Horizontal',
|
|
214
|
+
|
|
215
|
+
'$label.filter_priority.label': 'Priorité des filtres',
|
|
216
|
+
'$label.filter_priority.description': 'Jusqu\'à 4 filtres peuvent être affichés horizontalement. Les autres sont regroupés '
|
|
217
|
+
+ 'sous \u201CAutres filtres\u201D. Pour afficher un filtre horizontalement, placez-le parmi les 4 premiers '
|
|
218
|
+
+ 'dans le tri des filtres du panneau de configuration.',
|
|
219
|
+
'$label.filter_priority.button': 'Trier les filtres produits',
|
|
220
|
+
|
|
221
|
+
'$label.side_to_show_filters.label': 'Côté pour afficher les filtres',
|
|
222
|
+
'$label.side_to_show_filters.right': 'Droite',
|
|
223
|
+
'$label.side_to_show_filters.left': 'Gauche',
|
|
224
|
+
|
|
225
|
+
'$label.expand_filter_panel.label': 'Déplier le panneau de filtres',
|
|
226
|
+
'$label.show_sort_by_options.label': 'Afficher les options "Trier par"',
|
|
227
|
+
'$label.show_bottom_navigation_menu.label': 'Afficher le menu de navigation inférieur',
|
|
228
|
+
'$label.show_signin_link.label': 'Afficher le lien "Se connecter"',
|
|
229
|
+
|
|
230
|
+
'$label.card_grid_spacing.label': 'Espacement de la grille de cartes',
|
|
231
|
+
'$label.card_grid_spacing.description': 'S\'applique aux cartes de produits et de catégories.',
|
|
232
|
+
'$label.card_grid_spacing.none': 'Aucun',
|
|
233
|
+
'$label.card_grid_spacing.narrow': 'Étroit',
|
|
234
|
+
'$label.card_grid_spacing.medium': 'Moyen',
|
|
235
|
+
'$label.card_grid_spacing.wide': 'Large',
|
|
236
|
+
|
|
237
|
+
'$label.content_alignment.label': 'Alignement du contenu',
|
|
238
|
+
'$label.content_alignment.left': 'Gauche',
|
|
239
|
+
'$label.content_alignment.center': 'Centré',
|
|
240
|
+
'$label.content_alignment.right': 'Droite',
|
|
241
|
+
'$label.content_alignment.justify': 'Justifié',
|
|
242
|
+
|
|
243
|
+
'$label.image_proportions.label': 'Proportions de l\'image',
|
|
244
|
+
'$label.image_proportions.portrait_2_3': 'Portrait (2:3)',
|
|
245
|
+
'$label.image_proportions.portrait_3_4': 'Portrait (3:4)',
|
|
246
|
+
'$label.image_proportions.square_1_1': 'Carré (1:1)',
|
|
247
|
+
'$label.image_proportions.landscape_4_3': 'Paysage (4:3)',
|
|
248
|
+
'$label.image_proportions.landscape_2_3': 'Paysage (2:3)',
|
|
249
|
+
|
|
250
|
+
'$label.card_size.label': 'Taille de la carte',
|
|
251
|
+
'$label.card_size.small': 'Petit',
|
|
252
|
+
'$label.card_size.medium': 'Moyen',
|
|
253
|
+
'$label.card_size.large': 'Grand',
|
|
254
|
+
|
|
255
|
+
'$label.product_name.label': 'Nom du produit',
|
|
256
|
+
'$label.product_subtitle.label': 'Sous-titre du produit',
|
|
257
|
+
'$label.price.label': 'Prix',
|
|
258
|
+
|
|
259
|
+
'$label.color_swatches.label': 'Échantillons de couleurs',
|
|
260
|
+
'$label.color_swatches.description': 'Vous pouvez configurer l\'apparence des échantillons de couleurs dans les Détails du produit.',
|
|
261
|
+
|
|
262
|
+
'$label.sku.label': 'SKU',
|
|
263
|
+
'$label.buy_now_button.label': 'Bouton "Acheter maintenant"',
|
|
264
|
+
'$label.product_rating.label': 'Évaluation du produit',
|
|
265
|
+
|
|
266
|
+
'$label.rating_view.label': 'Vue des évaluations',
|
|
267
|
+
'$label.rating_view.five_stars': 'Vue cinq étoiles',
|
|
268
|
+
'$label.rating_view.one_star': 'Vue une étoile',
|
|
269
|
+
|
|
270
|
+
'$label.show_average_product_rating.label': 'Afficher la note moyenne du produit',
|
|
271
|
+
'$label.show_total_number_of_reviews.label': 'Afficher le nombre total d\'avis',
|
|
272
|
+
'$label.show_product_card_frame.label': 'Afficher le cadre de la fiche produit',
|
|
273
|
+
'$label.show_main_product_image.label': 'Afficher l\'image principale du produit',
|
|
274
|
+
'$label.show_additional_image_on_hover.label': 'Afficher une image supplémentaire au survol',
|
|
275
|
+
|
|
276
|
+
'$label.divider': '',
|
|
277
|
+
|
|
278
|
+
'$label.name_position.label': 'Position du nom',
|
|
279
|
+
'$label.name_position.on_the_image': 'Sur l\'image',
|
|
280
|
+
'$label.name_position.below_the_image': 'Sous l\'image',
|
|
281
|
+
'$label.name_position.on_mouse_hover': 'Au survol de la souris',
|
|
282
|
+
'$label.name_position.hide_category_names': 'Masquer les noms de catégories',
|
|
283
|
+
'$label.name_position.hide_category_images': 'Masquer les images de catégories',
|
|
284
|
+
},
|
|
285
|
+
});
|
|
@@ -13,7 +13,8 @@
|
|
|
13
13
|
</div>
|
|
14
14
|
<slot :name="Slot.REVIEW_LIST" />
|
|
15
15
|
<slot :name="Slot.RELATED_PRODUCTS" />
|
|
16
|
-
|
|
16
|
+
<!-- Footer navigation part of the page is hidden by default. Uncomment below slot to make it visible -->
|
|
17
|
+
<!-- <slot :name="Slot.BOTTOM_BAR" /> -->
|
|
17
18
|
</div>
|
|
18
19
|
</template>
|
|
19
20
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default [] as const;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_5165_10169)">
|
|
3
|
+
<path d="M-5.54181 -5.54102H33.5415V33.5423H-5.54181V-5.54102Z" fill="#191513"/>
|
|
4
|
+
<path d="M7 0.466797H21C24.6083 0.466797 27.5332 3.39174 27.5332 7V21C27.5332 24.6083 24.6083 27.5332 21 27.5332H7C3.39174 27.5332 0.466797 24.6083 0.466797 21V7C0.466797 3.39174 3.39174 0.466797 7 0.466797Z" fill="black" fill-opacity="0.01" stroke="url(#paint0_linear_5165_10169)" stroke-width="0.933333"/>
|
|
5
|
+
<path d="M14 5.25L14.8041 6.65321C14.9651 6.94359 14.9651 7.29841 14.8041 7.58868L10.0112 15.9274L12.279 19.8629C12.6328 20.4758 13.2923 20.8629 14 20.8629C14.7077 20.8629 15.3671 20.4758 15.721 19.8629L17.9888 15.9274L17.3936 14.8629L14.8203 19.3306C14.6595 19.6209 14.3378 19.7983 14.0161 19.7983C13.6783 19.7983 13.3727 19.6209 13.2119 19.3306L11.2335 15.9274L15.6888 8.18553L16.493 9.58873C16.6538 9.87903 16.6538 10.2338 16.493 10.5242L13.3888 15.9274L14 16.9919L17.3776 11.121L19.5972 14.9757C19.9349 15.5726 19.9349 16.2984 19.5972 16.8952L17.3454 20.8145C17.0076 21.4112 15.93 22.75 14 22.75C12.0699 22.75 11.0083 21.4112 10.6545 20.8145L8.4028 16.8952C8.06512 16.2984 8.06512 15.5726 8.4028 14.9757L14 5.25Z" fill="white"/>
|
|
6
|
+
</g>
|
|
7
|
+
<defs>
|
|
8
|
+
<linearGradient id="paint0_linear_5165_10169" x1="0" y1="0" x2="28" y2="28" gradientUnits="userSpaceOnUse">
|
|
9
|
+
<stop stop-color="white" stop-opacity="0.5"/>
|
|
10
|
+
<stop offset="1" stop-color="white" stop-opacity="0.16"/>
|
|
11
|
+
</linearGradient>
|
|
12
|
+
<clipPath id="clip0_5165_10169">
|
|
13
|
+
<rect width="28" height="28" rx="7" fill="white"/>
|
|
14
|
+
</clipPath>
|
|
15
|
+
</defs>
|
|
16
|
+
</svg>
|