2021-09-30 12:51:13 +00:00
|
|
|
import { defineMessages } from "react-intl";
|
|
|
|
|
|
|
|
export const messages = defineMessages({
|
|
|
|
assignVariantDialogHeader: {
|
|
|
|
defaultMessage: "Assign Product",
|
|
|
|
description: "dialog header"
|
|
|
|
},
|
|
|
|
assignProductDialogButton: {
|
2022-03-21 11:29:08 +00:00
|
|
|
defaultMessage: "Assign and save",
|
2021-09-30 12:51:13 +00:00
|
|
|
description: "button"
|
|
|
|
},
|
|
|
|
assignProductDialogContent: {
|
|
|
|
defaultMessage: "Search Products"
|
|
|
|
},
|
|
|
|
assignProductDialogSearch: {
|
|
|
|
defaultMessage: "Search by product name, attribute, product type etc..."
|
|
|
|
}
|
|
|
|
});
|