forked from forcedotcom/commerce-on-lightning-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlabels.js
More file actions
31 lines (30 loc) · 947 Bytes
/
labels.js
File metadata and controls
31 lines (30 loc) · 947 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
* Copyright (c) 2023, salesforce.com, inc.
* All rights reserved.
* SPDX-License-Identifier: Apache-2.0
* For full license text, see the LICENSE file in the repo
* root or https://opensource.org/licenses/apache-2-0/
*/
import actionViewCart from '@salesforce/label/c.Product_ModalAddToCart_actionViewCart';
import actionContinueShopping from '@salesforce/label/c.Product_ModalAddToCart_actionContinueShopping';
import messageSuccessfullyAddedToCart from '@salesforce/label/c.Product_ModalAddToCart_messageSuccessfullyAddedToCart';
/**
* Internationalization labels.
*/
export const Labels = {
/**
* A label of the form "View Cart".
* @type {string}
*/
actionViewCart,
/**
* A label of the form "Continue Shopping".
* @type {string}
*/
actionContinueShopping,
/**
* A label of the form "Item was added to cart".
* @type {string}
*/
messageSuccessfullyAddedToCart,
};