aboutsummaryrefslogtreecommitdiffstats
path: root/code/app/src/lib/i18n/en
diff options
context:
space:
mode:
authorivarlovlie <git@ivarlovlie.no>2022-12-09 03:57:12 +0100
committerivarlovlie <git@ivarlovlie.no>2022-12-09 03:57:12 +0100
commit4dbef3fcd7a14437d55c555cf10d50de8e50d7d1 (patch)
tree632589ecfcfb4dfddeafb71d0077257584b5e7ec /code/app/src/lib/i18n/en
parent914c75e0ceeb3e11ddd55e94bb461c26b0db5b7a (diff)
downloadgreatoffice-4dbef3fcd7a14437d55c555cf10d50de8e50d7d1.tar.xz
greatoffice-4dbef3fcd7a14437d55c555cf10d50de8e50d7d1.zip
feat: Move everything out of $lib
Diffstat (limited to 'code/app/src/lib/i18n/en')
-rw-r--r--code/app/src/lib/i18n/en/app/index.ts7
-rw-r--r--code/app/src/lib/i18n/en/index.ts59
2 files changed, 0 insertions, 66 deletions
diff --git a/code/app/src/lib/i18n/en/app/index.ts b/code/app/src/lib/i18n/en/app/index.ts
deleted file mode 100644
index 7ccfc97..0000000
--- a/code/app/src/lib/i18n/en/app/index.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-import type { BaseTranslation } from '../../i18n-types'
-
-const en_app: BaseTranslation = {
- members: "Members",
-}
-
-export default en_app \ No newline at end of file
diff --git a/code/app/src/lib/i18n/en/index.ts b/code/app/src/lib/i18n/en/index.ts
deleted file mode 100644
index fbf5423..0000000
--- a/code/app/src/lib/i18n/en/index.ts
+++ /dev/null
@@ -1,59 +0,0 @@
-import type { BaseTranslation } from "../i18n-types";
-
-const en: BaseTranslation = {
- or: "Or",
- name: "Name",
- emailAddress: "Email address",
- password: "Password",
- pageNotFound: "Page not found",
- noInternet: "It seems like your device does not have a internet connection, please check your connection.",
- reset: "Reset",
- of: "{0} of {1}",
- isRequired: "{0} is required",
- submit: "Submit",
- success: "Success",
- tryAgainSoon: "Try again soon",
- createANewAccount: "Create a new account",
- unexpectedError: "An unexpected error occured",
- notFound: "Not found",
- documentation: "Documentation",
- tos: "Terms of service",
- privacyPolicy: "Privacy policy",
- signIntoYourAccount: "Sign into your account",
- combobox: {
- search: "Search",
- noRecordsFound: "No records found",
- createRecordHelpText: "Create a record by typing the name in the search bar and pressing enter",
- createRecordButtonText: "Press enter or click here to create {0}"
- },
- signInPage: {
- notMyComputer: "This is not my computer",
- resetPassword: "Reset password",
- yourPasswordIsUpdated: "Your password is updated",
- signIn: "Sign In",
- yourNewPasswordIsApplied: "Your new password is applied",
- signInBelow: "Sign in below",
- yourAccountIsDisabled: "Your account is disabled",
- contactYourAdminIfDisabled: "Contact your administrator if this feels wrong",
- youHaveReachedInactivityLimit: "You've reached the hidden inactivity limit",
- feelFreeToSignInAgain: "Feel free to sign in again"
- },
- signUpPage: {
- createYourNewAccount: "Create your new account",
- },
- resetPasswordPage: {
- setANewPassword: "Set a new password",
- expired: "Expired",
- requestHasExpired: "Your request has expired",
- requestANewReset: "Request a new reset",
- invalidRequestTitle: "Your request is invalid",
- invalidRequestMessage: "This could be due to it being expired, nonexsistent or something else",
- newPassword: "New password",
- 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.",
- requestAPasswordReset: "Request a password reset",
- requestNotFound: "Your request was not found",
- submitANewRequestBelow: "Submit a new reset request below"
- }
-};
-
-export default en;