2021-08-16 13:44:00 +00:00
|
|
|
import { defineMessages } from "react-intl";
|
|
|
|
|
|
|
|
export const giftCardCreateDialogMessages = defineMessages({
|
|
|
|
title: {
|
|
|
|
defaultMessage: "Issue gift card",
|
|
|
|
description: "GiftCardCreateDialog title"
|
|
|
|
},
|
|
|
|
amountLabel: {
|
|
|
|
defaultMessage: "Enter amount",
|
|
|
|
description: "GiftCardCreateDialog amount label"
|
|
|
|
},
|
|
|
|
issueButtonLabel: {
|
|
|
|
defaultMessage: "Issue",
|
|
|
|
description: "GiftCardCreateDialog issue button label"
|
|
|
|
},
|
|
|
|
customerLabel: {
|
|
|
|
defaultMessage: "Customer",
|
|
|
|
description: "GiftCardCreateDialog customer label"
|
|
|
|
},
|
|
|
|
noteLabel: {
|
|
|
|
defaultMessage: "Note",
|
|
|
|
description: "GiftCardCreateDialog note label"
|
|
|
|
},
|
|
|
|
noteSubtitle: {
|
|
|
|
defaultMessage:
|
|
|
|
"Why was this gift card issued. This note will not be shown to the customer. Note will be stored in gift card history",
|
|
|
|
description: "GiftCardCreateDialog note subtitle"
|
|
|
|
},
|
|
|
|
createdGiftCardLabel: {
|
|
|
|
defaultMessage: "This is the code of a created gift card:",
|
|
|
|
description: "GiftCardCreateDialog created gift card label"
|
|
|
|
},
|
|
|
|
copyCodeLabel: {
|
|
|
|
defaultMessage: "Copy code",
|
|
|
|
description: "GiftCardCreateDialog copy code label"
|
|
|
|
},
|
|
|
|
copiedToClipboardTitle: {
|
|
|
|
defaultMessage: "Copied to clipboard",
|
|
|
|
description: "GiftCardCreateDialog copied to clipboard title"
|
|
|
|
},
|
|
|
|
createdSuccessAlertTitle: {
|
|
|
|
defaultMessage: "Successfully created gift card",
|
|
|
|
description: "GiftCardCreateDialog createdSuccessAlertTitle"
|
2021-09-14 13:57:02 +00:00
|
|
|
},
|
|
|
|
requiresActivationLabel: {
|
|
|
|
defaultMessage: "Requires activation",
|
|
|
|
description: "GiftCarUpdateDetailsExpirySection requires activation label"
|
|
|
|
},
|
|
|
|
requiresActivationCaption: {
|
|
|
|
defaultMessage: "All issued cards require activation by staff before use.",
|
|
|
|
description: "GiftCarUpdateDetailsExpirySection requires activation caption"
|
2021-08-16 13:44:00 +00:00
|
|
|
}
|
|
|
|
});
|