Merge pull request 'language change fixed' (#441) from fix/about into release/v9.1.0

This commit is contained in:
Maxim Kadushkin
2025-09-09 22:30:22 +00:00

View File

@ -297,6 +297,12 @@
} else sdk.GetLocalFeatures = e => false;
CommonEvents.on('panel:show', onPanelShow.bind(this));
CommonEvents.on('lang:changed', () => {
if (this.view) {
this.view.$dialog.titleText = utils.Lang.actAbout;
$('#idx-about-version span', this.view.$body).text(utils.Lang.strVersion);
}
});
return this;
},