saleor-dashboard/src/components/BulkAttributeUnassignDialog/messages.ts

16 lines
519 B
TypeScript
Raw Normal View History

import { defineMessages } from "react-intl";
const messages = defineMessages({
confirmBtn: {
defaultMessage: "Unassign and save",
description: "button, unassign attribute from object"
},
content: {
defaultMessage:
"{counter,plural,one{Are you sure you want to unassign this attribute from {itemTypeName}?} other{Are you sure you want to unassign {attributeQuantity} attributes from {itemTypeName}?}}",
description: "unassign multiple attributes from item"
}
});
export default messages;