16 lines
519 B
TypeScript
16 lines
519 B
TypeScript
![]() |
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;
|