i18n: Update zh-tw & refactor various strings (#1998)

* Fix incorrect tense in toast
* Rename create_entity to emphasize past tense
* Localize "Started XXX" toasts
* Localize new zh-tw texts
* Refactor "continue" into the "actions" group
This commit is contained in:
Still Hsu
2021-11-17 08:56:22 +08:00
committed by GitHub
parent fa077517d4
commit 89c7c022f6
16 changed files with 703 additions and 668 deletions

View File

@@ -102,7 +102,9 @@ export const ImportDialog: React.FC<IImportDialogProps> = (
file,
});
setIsRunning(false);
Toast.success({ content: "Started importing" });
Toast.success({
content: intl.formatMessage({ id: "toast.started_importing" }),
});
} catch (e) {
Toast.error(e);
} finally {