diff options
| author | Joe Carstairs <jcarstairs@scottlogic.com> | 2023-08-04 21:12:12 +0100 |
|---|---|---|
| committer | Joe Carstairs <jcarstairs@scottlogic.com> | 2023-08-04 21:12:12 +0100 |
| commit | d494739e4823424bb54d81e21b57e4725544eb07 (patch) | |
| tree | c48674bd43ca613dc2b6b33d122e4418b05d93ba /frontend/src/i18n | |
| parent | ab2f15dcc05350567b08460679c87d7e01af87a6 (diff) | |
WIP tidy up later
Diffstat (limited to 'frontend/src/i18n')
| -rw-r--r-- | frontend/src/i18n/translations/pages/furthsettins.ts | 11 | ||||
| -rw-r--r-- | frontend/src/i18n/translations/site.ts | 4 |
2 files changed, 15 insertions, 0 deletions
diff --git a/frontend/src/i18n/translations/pages/furthsettins.ts b/frontend/src/i18n/translations/pages/furthsettins.ts new file mode 100644 index 0000000..c46e2ad --- /dev/null +++ b/frontend/src/i18n/translations/pages/furthsettins.ts @@ -0,0 +1,11 @@ +import type { TranslationsDictionary } from "../../../types/TranslationsDictionary"; + +const furthsettinsTranslations = { + 'title': { + 'sco': 'Furthsettins', + 'en-GB': 'Publications', + }, +}; + +type Keys = keyof typeof furthsettinsTranslations; +export default furthsettinsTranslations 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 index 1172846..6699619 100644 --- a/frontend/src/i18n/translations/site.ts +++ b/frontend/src/i18n/translations/site.ts @@ -8,6 +8,10 @@ const siteTranslations = { 'description': { 'sco': 'The wabsteid o the Scots Leid Associe', 'en-GB': 'The website of the Scots Language Society', + }, + 'lallans': { + 'sco': 'Lallans', + 'en-GB': 'Lallans', } }; |
