aboutsummaryrefslogtreecommitdiffstats
path: root/code
diff options
context:
space:
mode:
Diffstat (limited to 'code')
-rw-r--r--code/app/src/lib/i18n/en/index.ts1
-rw-r--r--code/app/src/lib/i18n/i18n-types.ts8
-rw-r--r--code/app/src/lib/i18n/nb/index.ts1
3 files changed, 10 insertions, 0 deletions
diff --git a/code/app/src/lib/i18n/en/index.ts b/code/app/src/lib/i18n/en/index.ts
index e084a6c..1d6ff26 100644
--- a/code/app/src/lib/i18n/en/index.ts
+++ b/code/app/src/lib/i18n/en/index.ts
@@ -2,6 +2,7 @@ import type { BaseTranslation } from "../i18n-types";
const en: BaseTranslation = {
or: "Or",
+ name: "Name",
emailAddress: "Email address",
password: "Password",
pageNotFound: "Page not found",
diff --git a/code/app/src/lib/i18n/i18n-types.ts b/code/app/src/lib/i18n/i18n-types.ts
index 0df6d1a..2c564c4 100644
--- a/code/app/src/lib/i18n/i18n-types.ts
+++ b/code/app/src/lib/i18n/i18n-types.ts
@@ -22,6 +22,10 @@ type RootTranslation = {
*/
or: string
/**
+ * N​a​m​e
+ */
+ name: string
+ /**
* E​m​a​i​l​ ​a​d​d​r​e​s​s
*/
emailAddress: string
@@ -199,6 +203,10 @@ export type TranslationFunctions = {
*/
or: () => LocalizedString
/**
+ * Name
+ */
+ name: () => LocalizedString
+ /**
* Email address
*/
emailAddress: () => LocalizedString
diff --git a/code/app/src/lib/i18n/nb/index.ts b/code/app/src/lib/i18n/nb/index.ts
index fa81477..ef67504 100644
--- a/code/app/src/lib/i18n/nb/index.ts
+++ b/code/app/src/lib/i18n/nb/index.ts
@@ -2,6 +2,7 @@ import type { Translation } from "../i18n-types";
const nb: Translation = {
or: "Eller",
+ name: "Navn",
emailAddress: "E-postadresse",
password: "Passord",
pageNotFound: "Fant ikke siden",