diff options
| author | ivarlovlie <git@ivarlovlie.no> | 2022-09-24 09:37:08 +0200 |
|---|---|---|
| committer | ivarlovlie <git@ivarlovlie.no> | 2022-09-24 09:37:08 +0200 |
| commit | ccb88c7e04b731b71fef33ea34082ea12f10ad3e (patch) | |
| tree | ae678ee4688d25c26d9125e77c31e0a2f0746876 /apps/kit/src/lib/i18n/en | |
| parent | 551b32a9ebba360d437003b73831f117172be06e (diff) | |
| download | greatoffice-ccb88c7e04b731b71fef33ea34082ea12f10ad3e.tar.xz greatoffice-ccb88c7e04b731b71fef33ea34082ea12f10ad3e.zip | |
refactor: Misc i18n changes/additions
Diffstat (limited to 'apps/kit/src/lib/i18n/en')
| -rw-r--r-- | apps/kit/src/lib/i18n/en/index.ts | 57 |
1 files changed, 33 insertions, 24 deletions
diff --git a/apps/kit/src/lib/i18n/en/index.ts b/apps/kit/src/lib/i18n/en/index.ts index f3def1b..6a0c3ac 100644 --- a/apps/kit/src/lib/i18n/en/index.ts +++ b/apps/kit/src/lib/i18n/en/index.ts @@ -1,14 +1,39 @@ -import type {BaseTranslation} from "../i18n-types"; +import type { BaseTranslation } from "../i18n-types"; const en: BaseTranslation = { + common: { + or: "Or", + logIn: "Log in", + password: "Password", + active: "Active", + reset: "Reset", + description: "Description", + save: "Save", + create: "Create", + archived: "Archived", + emailAddress: "Email address", + name: "Name", + color: "Color", + profile: "Profile", + logout: "Log out", + labels: "Labels", + categories: "Categories", + of: "{0} of {1}", + category: "Category", + isRequired: "{0} is required", + submit: "Submit", + send: "Send {0}", + request: "Request", + success: "Success", + tryAgainSoon: "Kindly try again soon", + unexpectedError: "An unexpected error occured", + }, nav: { home: "Home", data: "Data", settings: "Settings", usermenu: { - logout: "Log out", logoutTitle: "Log out of your profile", - profile: "Profile", profileTitle: "Administrate your profile", toggleTitle: "Toggle user menu", } @@ -17,46 +42,28 @@ const en: BaseTranslation = { dataTablePaginator: { goToPrevPage: "Go to previous page", goToNextPage: "Go to next page", - of: "of", }, categoryForm: { - name: "Name", - color: "Color", defaultLabels: "Default labels", labelsPlaceholder: "Search or create" }, settingsCategoriesTile: { deleteAllConfirm: "Are you sure you want to delete this category?\nThis will delete all relating entries!", - active: "Active", - archived: "Archived", - name: "Name", - color: "Color", editEntry: "Edit entry", deleteEntry: "Delete entry", noCategories: "No categories", - categories: "Categories" }, settingsLabelsTile: { deleteAllConfirm: "Are you sure you want to delete this label?\nIt will be removed from all related entries!", - active: "Active", - archived: "Archived", - name: "Name", - color: "Color", editEntry: "Edit label", deleteEntry: "Delete label", noLabels: "No labels", - labels: "Labels" }, entryForm: { entryUpdateError: "An error occured while updating the entry, try again soon.", entryCreateError: "An error occured while creating the entry, try again soon.", errDescriptionReq: "Description is required", - reset: "Reset", - description: "Description", - save: "Save", - create: "Create", category: { - category: "Category", placeholder: "Search or create", noResults: "No categories available (Create a new one by searching for it)", errisRequired: "Category is required", @@ -123,14 +130,16 @@ const en: BaseTranslation = { }, login: { loginToYourAccount: "Log in to your account", - or: "Or", createANewAccount: "create a new account", - emailAddress: "Email address", password: "Password", notMyComputer: "This is not my computer", forgotPassword: "Forgot your password?", - logIn: "Log in" }, + reset: { + resetPassword: "Request a password reset", + gotoLoginPage: "Go to login page", + requestSentMessage: "If we find your email address in our systems, you will receive an email with instructions on how to set a new password for your account." + } }; export default en; |
