summaryrefslogtreecommitdiff
path: root/src/i18n/translations/components/languageLinks.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/i18n/translations/components/languageLinks.ts')
-rw-r--r--src/i18n/translations/components/languageLinks.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/i18n/translations/components/languageLinks.ts b/src/i18n/translations/components/languageLinks.ts
new file mode 100644
index 0000000..d3db24a
--- /dev/null
+++ b/src/i18n/translations/components/languageLinks.ts
@@ -0,0 +1,11 @@
+import type { TranslationsDictionary } from '../../../types/TranslationsDictionary';
+
+const languageLinksTranslations = {
+ 'language-link-text': {
+ sco: ({ language }: { language: string }) => `Get this page i ${language}`,
+ 'en-GB': ({ language }: { language: string }) => `Get this page in ${language}`,
+ },
+};
+
+type Raw = typeof languageLinksTranslations;
+export default languageLinksTranslations as TranslationsDictionary<Raw>;