This commit is contained in:
Meadowsys 2023-03-27 01:10:56 -07:00
parent c9d51b980c
commit 06336e40ec
No known key found for this signature in database
GPG Key ID: 9E9BB6D25186E719

View File

@ -80,9 +80,9 @@ class I18n {
updateConfigs() {
/** @type {string} */
this.primaryLanguage = atom.config.get("core.languageSettings.primaryLanguage");
this.primaryLanguage = this.config.get("core.languageSettings.primaryLanguage");
/** @type {Array<string>} */
this.fallbackLanguages = atom.config.get("core.languageSettings.fallbackLanguages");
this.fallbackLanguages = this.config.get("core.languageSettings.fallbackLanguages");
}
registerStrings(packageId, strings) {