diff options
Diffstat (limited to 'src/i18n')
| -rw-r--r-- | src/i18n/translations/pages/rss.xml.ts | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/i18n/translations/pages/rss.xml.ts b/src/i18n/translations/pages/rss.xml.ts new file mode 100644 index 0000000..919110d --- /dev/null +++ b/src/i18n/translations/pages/rss.xml.ts @@ -0,0 +1,15 @@ +import type { TranslationsDictionary } from '$types/TranslationsDictionary'; + +const tFeed = { + title: { + sco: () => 'Scots Leid Associe News', + 'en-GB': () => 'Scots Language Society News', + }, + description: { + sco: () => 'The latest updates frae the Scots Leid Associe', + 'en-GB': () => 'The latest updates from the Scots Language Society', + }, +}; + +type Raw = typeof tFeed; +export default tFeed as TranslationsDictionary<Raw>; |
