2022-03-21 11:29:08 +00:00
|
|
|
import { defineMessages } from "react-intl";
|
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
confirmBtn: {
|
2022-05-05 07:54:28 +00:00
|
|
|
id: "QZVD+5",
|
2022-03-21 11:29:08 +00:00
|
|
|
defaultMessage: "Unassign and save",
|
2022-06-21 09:36:55 +00:00
|
|
|
description: "button, unassign attribute from object",
|
2022-03-21 11:29:08 +00:00
|
|
|
},
|
|
|
|
content: {
|
2022-05-05 07:54:28 +00:00
|
|
|
id: "8uLHBY",
|
2022-03-21 11:29:08 +00:00
|
|
|
defaultMessage:
|
|
|
|
"Are you sure you want to unassign {attributeName} from {itemTypeName}?",
|
2022-06-21 09:36:55 +00:00
|
|
|
description: "unassign attribute from object",
|
|
|
|
},
|
2022-03-21 11:29:08 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
export default messages;
|