[SSE] Fix translation for table helper
This commit is contained in:
parent
f74fccee76
commit
88435fd465
|
@ -2456,19 +2456,15 @@ define([
|
|||
hint = me.txtThisRowHint;
|
||||
break;
|
||||
case Asc.c_oAscPopUpSelectorType.TableAll:
|
||||
name = caption = me.txtAllTable;
|
||||
hint = me.txtAllTableHint;
|
||||
break;
|
||||
case Asc.c_oAscPopUpSelectorType.TableData:
|
||||
name = caption = me.txtDataTable;
|
||||
hint = me.txtDataTableHint;
|
||||
break;
|
||||
case Asc.c_oAscPopUpSelectorType.TableHeaders:
|
||||
name = caption = me.txtHeadersTable;
|
||||
hint = me.txtHeadersTableHint;
|
||||
break;
|
||||
case Asc.c_oAscPopUpSelectorType.TableTotals:
|
||||
name = caption = me.txtTotalsTable;
|
||||
hint = me.txtTotalsTableHint;
|
||||
break;
|
||||
}
|
||||
|
@ -4003,10 +3999,6 @@ define([
|
|||
txtWarnUrl: 'Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?',
|
||||
txtThisRow: 'This Row',
|
||||
txtThisRowHint: 'Choose only this row of the specified column',
|
||||
txtAllTable: '#All',
|
||||
txtDataTable: '#Data',
|
||||
txtHeadersTable: '#Headers',
|
||||
txtTotalsTable: '#Totals',
|
||||
txtAllTableHint: 'Returns the entire contents of the table or specified table columns including column headers, data and total rows',
|
||||
txtDataTableHint: 'Returns the data cells of the table or specified table columns',
|
||||
txtHeadersTableHint: 'Returns the column headers for the table or specified table columns',
|
||||
|
|
|
@ -146,7 +146,11 @@ define([
|
|||
'Quarters': this.txtQuarters,
|
||||
'Years': this.txtYears,
|
||||
'%1 or %2': this.txtOr,
|
||||
'Qtr': this.txtQuarter
|
||||
'Qtr': this.txtQuarter,
|
||||
'All': this.txtAllTable,
|
||||
'Data': this.txtDataTable,
|
||||
'Headers': this.txtHeadersTable,
|
||||
'Totals': this.txtTotalsTable
|
||||
};
|
||||
|
||||
styleNames.forEach(function(item){
|
||||
|
@ -3400,7 +3404,11 @@ define([
|
|||
uploadDocFileCountMessage: 'No documents uploaded.',
|
||||
errorLoadingFont: 'Fonts are not loaded.<br>Please contact your Document Server administrator.',
|
||||
textNeedSynchronize: 'You have an updates',
|
||||
textChangesSaved: 'All changes saved'
|
||||
textChangesSaved: 'All changes saved',
|
||||
txtAllTable: 'All',
|
||||
txtDataTable: 'Data',
|
||||
txtHeadersTable: 'Headers',
|
||||
txtTotalsTable: 'Totals'
|
||||
}
|
||||
})(), SSE.Controllers.Main || {}))
|
||||
});
|
||||
|
|
|
@ -592,10 +592,6 @@
|
|||
"SSE.Controllers.DocumentHolder.txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?",
|
||||
"SSE.Controllers.DocumentHolder.txtThisRow": "This Row",
|
||||
"SSE.Controllers.DocumentHolder.txtThisRowHint": "Choose only this row of the specified column",
|
||||
"SSE.Controllers.DocumentHolder.txtAllTable": "#All",
|
||||
"SSE.Controllers.DocumentHolder.txtDataTable": "#Data",
|
||||
"SSE.Controllers.DocumentHolder.txtHeadersTable": "#Headers",
|
||||
"SSE.Controllers.DocumentHolder.txtTotalsTable": "#Totals",
|
||||
"SSE.Controllers.DocumentHolder.txtAllTableHint": "Returns the entire contents of the table or specified table columns including column headers, data and total rows",
|
||||
"SSE.Controllers.DocumentHolder.txtDataTableHint": "Returns the data cells of the table or specified table columns",
|
||||
"SSE.Controllers.DocumentHolder.txtHeadersTableHint": "Returns the column headers for the table or specified table columns",
|
||||
|
@ -1054,6 +1050,10 @@
|
|||
"SSE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact %1 sales team for personal upgrade terms.",
|
||||
"SSE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
|
||||
"SSE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
||||
"SSE.Controllers.Main.txtAllTable": "All",
|
||||
"SSE.Controllers.Main.txtDataTable": "Data",
|
||||
"SSE.Controllers.Main.txtHeadersTable": "Headers",
|
||||
"SSE.Controllers.Main.txtTotalsTable": "Totals",
|
||||
"SSE.Controllers.Print.strAllSheets": "All Sheets",
|
||||
"SSE.Controllers.Print.textFirstCol": "First column",
|
||||
"SSE.Controllers.Print.textFirstRow": "First row",
|
||||
|
|
|
@ -1041,6 +1041,10 @@
|
|||
"SSE.Controllers.Main.warnNoLicense": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт на просмотр.<br>Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.",
|
||||
"SSE.Controllers.Main.warnNoLicenseUsers": "Вы достигли лимита на одновременные подключения к редакторам %1.<br>Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.",
|
||||
"SSE.Controllers.Main.warnProcessRightsChange": "Вам было отказано в праве на редактирование этого файла.",
|
||||
"SSE.Controllers.Main.txtAllTable": "Все",
|
||||
"SSE.Controllers.Main.txtDataTable": "Данные",
|
||||
"SSE.Controllers.Main.txtHeadersTable": "Заголовки",
|
||||
"SSE.Controllers.Main.txtTotalsTable": "Итоги",
|
||||
"SSE.Controllers.Print.strAllSheets": "Все листы",
|
||||
"SSE.Controllers.Print.textFirstCol": "Первый столбец",
|
||||
"SSE.Controllers.Print.textFirstRow": "Первая строка",
|
||||
|
|
Loading…
Reference in a new issue