Merge pull request #582 from the-luap/feat/slovenian-locale-580

feat(i18n): add Slovenian (sl) language support
This commit is contained in:
Paul Nothaft
2026-05-29 22:05:32 +02:00
committed by GitHub
4 changed files with 3421 additions and 0 deletions
+1
View File
@@ -164,6 +164,7 @@ async function getRecipientLanguage(email, eventId = null) {
{ domains: ['.br', '.pt'], language: 'pt' },
{ domains: ['.ru', '.su'], language: 'ru' },
{ domains: ['.es'], language: 'es' },
{ domains: ['.si'], language: 'sl' },
];
for (const { domains, language: lang } of domainLanguageMap) {
if (domains.some(d => domain.endsWith(d))) {