diff options
| author | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-25 17:56:03 +0100 |
|---|---|---|
| committer | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-25 17:56:03 +0100 |
| commit | 40921a489269e84f6930eaab7df955c4afd5ce7f (patch) | |
| tree | b1287c92fc9427f1bae85813b25236d3f20a12b7 /src/i18n/translations | |
| parent | 7c31c4cf897fef56dd05bc6afd6fc405f026c5e2 (diff) | |
Adds an RSS feed with news items
Diffstat (limited to 'src/i18n/translations')
| -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>; |
