[DE mobile] Fix Bug 56219

This commit is contained in:
Julia Radzhabova 2022-03-23 15:22:14 +03:00
parent 9b0fcef925
commit 8d61730356

View file

@ -283,10 +283,18 @@ class MainController extends Component {
.then ( result => {
window["flat_desine"] = true;
const {t} = this.props;
let _translate = t('Main.SDK', {returnObjects:true});
for (let item in _translate) {
if (_translate.hasOwnProperty(item)) {
const str = _translate[item];
if (item[item.length-1]===' ' && str[str.length-1]!==' ')
_translate[item] += ' ';
}
}
this.api = new Asc.asc_docs_api({
'id-view' : 'editor_sdk',
'mobile' : true,
'translate': t('Main.SDK', {returnObjects:true})
'translate': _translate
});
Common.Notifications.trigger('engineCreated', this.api);