Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/witty-foxes-thank.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@rocket.chat/meteor": patch
"@rocket.chat/i18n": patch
---

Fixes a typo in the app update success toast
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const AppDetailsPage = ({ id }: AppDetailsPageProps): ReactElement => {
})),
);
reset(data);
dispatchToastMessage({ type: 'success', message: `${name} settings saved succesfully` });
dispatchToastMessage({ type: 'success', message: t('App_Settings_Saved_Successfully', { appName: name }) });
} catch (e: any) {
handleAPIError(e);
}
Expand Down
1 change: 1 addition & 0 deletions packages/i18n/src/locales/en.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -562,6 +562,7 @@
"api-bypass-rate-limit_description": "Permission to call api without rate limitation",
"APIs": "APIs",
"App_Info": "App Info",
"App_Settings_Saved_Successfully": "{{appName}} saved successfully",
"Apps_context_enterprise": "Enterprise",
"App_has_been_disabled_addon_message_one": "The app {{appNames}} has been disabled because of an invalid add-on. A valid add-on subscription is required to re-enable it",
"App_has_been_disabled_addon_message_other": "The apps {{appNames}} have been disabled because of invalid add-ons. A valid add-on subscription is required to re-enable them",
Expand Down
Loading