saleor-dashboard/src/components/BulkAttributeUnassignDialog/messages.ts
Michał Droń d5c9a3dae8
Add trailing commas (#2062)
* Require trailing commas

* Add trailing commas

* Add trailing commas in testUtils dir

* Add trailing commas
2022-06-21 11:36:55 +02:00

17 lines
558 B
TypeScript

import { defineMessages } from "react-intl";
const messages = defineMessages({
confirmBtn: {
id: "QZVD+5",
defaultMessage: "Unassign and save",
description: "button, unassign attribute from object",
},
content: {
id: "XwrKOi",
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;