Add ink integration UI and media playback

This commit is contained in:
2026-05-15 21:23:46 +02:00
parent 44dc64f830
commit f2e786d5bc
89 changed files with 6561 additions and 556 deletions
+1 -1
View File
@@ -239,7 +239,7 @@ class TextProcessorModule extends BaseModule {
}
normalizeHyphenationLocale(locale) {
const normalized = String(locale || 'en-us').toLowerCase();
const normalized = String(locale || 'en-us').trim().toLowerCase().replace('_', '-');
if (normalized === 'en') return 'en-us';
if (normalized === 'de-de') return 'de';
return normalized;