replace ß with ss for Swiss High German throughout codebase

This commit is contained in:
2026-03-23 07:46:34 +01:00
parent ee8cc8ec20
commit b42a8340ef
10 changed files with 65 additions and 65 deletions
+1 -1
View File
@@ -635,7 +635,7 @@ class DeepLTranslationService {
.replace(/ä/g, 'ae')
.replace(/ö/g, 'oe')
.replace(/ü/g, 'ue')
.replace(/ß/g, 'ss')
.replace(/ss/g, 'ss')
.replace(/[^a-z0-9]+/g, '-')
.replace(/^-+|-+$/g, '');
}