Update index.js

Adding Hebrew language
This commit is contained in:
start-life
2025-09-12 03:26:08 +03:00
committed by GitHub
parent b8c6cf4ac1
commit 0dd52eceb3

View File

@@ -23,7 +23,8 @@ class I18nManager {
'ja': { name: 'Japanese', nativeName: '日本語' }, 'ja': { name: 'Japanese', nativeName: '日本語' },
'ko': { name: 'Korean', nativeName: '한국어' }, 'ko': { name: 'Korean', nativeName: '한국어' },
'fr': { name: 'French', nativeName: 'Français' }, 'fr': { name: 'French', nativeName: 'Français' },
'es': { name: 'Spanish', nativeName: 'Español' } 'es': { name: 'Spanish', nativeName: 'Español' },
'he': { name: 'Hebrew', nativeName: 'עברית' }
}; };
this.currentLocale = this.getLanguageFromSettings(); this.currentLocale = this.getLanguageFromSettings();
@@ -338,4 +339,4 @@ class I18nManager {
export const i18n = new I18nManager(); export const i18n = new I18nManager();
// Export for global access (will be attached to window) // Export for global access (will be attached to window)
export default i18n; export default i18n;