I am trying to translate the columns as follows:
Ext.define ("Element.locale.ru.office.view.element.workstationList.WorkstationList", {override: "Ews.office.view.element.workstationList.WorkstationList", title: "List of Jobs", columns: [ {dataIndex: "PARAMS", text: "Parameters"}]});
In the hope that according to dataIndex, sencha will only replace text with an automatic machine (a similar mechanism is involved in the field inheritance in models).
But alas, there is nothing of the kind here and what is happening is happening. The columns parameter is overwritten with a new one; as a result, all column settings are lost.
Sandbox https://fiddle.sencha.com/#view/editor&fiddle/1q4p
How to localize table columns?