aboutsummaryrefslogtreecommitdiffstats
path: root/apps/kit/src/lib/i18n/en/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'apps/kit/src/lib/i18n/en/index.ts')
-rw-r--r--apps/kit/src/lib/i18n/en/index.ts57
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;