diff options
Diffstat (limited to 'src/i18n/translations/site.ts')
| -rw-r--r-- | src/i18n/translations/site.ts | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/i18n/translations/site.ts b/src/i18n/translations/site.ts new file mode 100644 index 0000000..6699619 --- /dev/null +++ b/src/i18n/translations/site.ts @@ -0,0 +1,19 @@ +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', + }, + 'lallans': { + 'sco': 'Lallans', + 'en-GB': 'Lallans', + } +}; + +type Keys = keyof typeof siteTranslations; +export default siteTranslations as TranslationsDictionary<Keys>;
\ No newline at end of file |
