
* Support apps in dashboard navigation * Update macaw-ui sidebar Trigger CI * Update app routing * Update app extensions schema * Update navigation external app routing * Refactor sidebar extension menu items open handling * Update macaw-ui * Update messages * Update prettier config * Refactor * Update extensions manu item active indication * Update macaw-ui
16 lines
408 B
TypeScript
16 lines
408 B
TypeScript
import { defineMessages } from "react-intl";
|
|
|
|
export const appMessages = defineMessages({
|
|
failedToFetchAppSettings: {
|
|
defaultMessage: "Failed to fetch app settings",
|
|
description: "app settings error"
|
|
},
|
|
appActivated: {
|
|
defaultMessage: "App activated",
|
|
description: "snackbar text"
|
|
},
|
|
appDeactivated: {
|
|
defaultMessage: "App deactivated",
|
|
description: "snackbar text"
|
|
}
|
|
});
|