blob: 2a18448587956a86d9a040769fd4401875344f9d (
plain)
1
2
3
4
5
6
7
8
9
10
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>;
|