summaryrefslogtreecommitdiff
path: root/frontend/src/i18n
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-05 21:16:45 +0100
committerJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-05 21:18:16 +0100
commit90254344d599bc977c0661f7c9681b7509a9076e (patch)
treed5c521f154994a33e0d09db48971d1a967a6f543 /frontend/src/i18n
parent97147d56d93c7949fdccf22abe569b1b9d7a22ab (diff)
Moves to root folder
Diffstat (limited to 'frontend/src/i18n')
-rw-r--r--frontend/src/i18n/locales.ts16
-rw-r--r--frontend/src/i18n/translate.ts9
-rw-r--r--frontend/src/i18n/translations/pages/home.ts11
-rw-r--r--frontend/src/i18n/translations/site.ts15
4 files changed, 0 insertions, 51 deletions
diff --git a/frontend/src/i18n/locales.ts b/frontend/src/i18n/locales.ts
deleted file mode 100644
index 4192e3f..0000000
--- a/frontend/src/i18n/locales.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-import type Locale from '../types/Locale';
-
-// Use the magic of TypeScript to guarantee completeness
-const localesHash: { [key in Locale]: 1 } = {
- 'sco': 1,
- 'en-GB': 1,
-};
-
-// Use the magic of TypeScript to guarantee that the
-// default locale is a locale, but also have const
-// string type
-const defaultLocaleAsLocale: Locale = 'sco';
-const defaultLocale: 'sco' = defaultLocaleAsLocale;
-
-export { defaultLocale };
-export default Object.keys(localesHash) as Locale[]; \ No newline at end of file
diff --git a/frontend/src/i18n/translate.ts b/frontend/src/i18n/translate.ts
deleted file mode 100644
index c0d5620..0000000
--- a/frontend/src/i18n/translate.ts
+++ /dev/null
@@ -1,9 +0,0 @@
-import type Locale from "../types/Locale";
-import type { TranslationsDictionary } from "../types/TranslationsDictionary";
-import { defaultLocale } from "./locales";
-
-export default function(locale: Locale) {
- return function<T extends string>(dict: TranslationsDictionary<T>, key: T) {
- return dict[key][locale] ?? dict[key][defaultLocale];
- }
-} \ No newline at end of file
diff --git a/frontend/src/i18n/translations/pages/home.ts b/frontend/src/i18n/translations/pages/home.ts
deleted file mode 100644
index 1415024..0000000
--- a/frontend/src/i18n/translations/pages/home.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-import type { TranslationsDictionary } from "../../../types/TranslationsDictionary";
-
-const homeTranslations = {
- 'title': {
- 'sco': 'Hame',
- 'en-GB': 'Home',
- },
-};
-
-type Keys = keyof typeof homeTranslations;
-export default homeTranslations as TranslationsDictionary<Keys>; \ No newline at end of file
diff --git a/frontend/src/i18n/translations/site.ts b/frontend/src/i18n/translations/site.ts
deleted file mode 100644
index 1172846..0000000
--- a/frontend/src/i18n/translations/site.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-import type { TranslationsDictionary } from "../../types/TranslationsDictionary";
-
-const siteTranslations = {
- 'title': {
- 'sco': 'Scots Leid Associe',
- 'en-GB': 'Scots Language Society',
- },
- 'description': {
- 'sco': 'The wabsteid o the Scots Leid Associe',
- 'en-GB': 'The website of the Scots Language Society',
- }
-};
-
-type Keys = keyof typeof siteTranslations;
-export default siteTranslations as TranslationsDictionary<Keys>; \ No newline at end of file