Quicksave

This commit is contained in:
Mawoka
2025-08-22 12:33:15 +02:00
parent bd659895ad
commit 51f1d74cf2
45 changed files with 15682 additions and 2572 deletions
+3 -2
View File
@@ -45,7 +45,7 @@ export class I18nService {
initialize(): void {
this.i18n.use(LanguageDetector).init({
// lng: INITIAL_LANGUAGE,
compatibilityJSON: 'v3',
compatibilityJSON: 'v4',
fallbackLng: 'en',
debug: false,
defaultNS: 'translation',
@@ -61,7 +61,8 @@ export class I18nService {
detection: {
order: ['querystring', 'cookie', 'localStorage', 'navigator'],
lookupQuerystring: 'lng',
lookupLocalStorage: 'language'
lookupLocalStorage: 'language',
lookupSessionStorage: true
}
});
this.i18n.addResourceBundle('en', 'translation', en);