[SSE mobile] Bug 48387

This commit is contained in:
JuliaSvinareva 2021-06-28 14:39:33 +03:00
parent 5fee8bdb34
commit 175a2a0d44
2 changed files with 66 additions and 2 deletions

View file

@ -28,7 +28,39 @@
"txtXAxis": "X Axis",
"txtYAxis": "Y Axis",
"txtArt": "Your text here",
"txtAccent": "Accent"
"txtAccent": "Accent",
"txtTable": "Table",
"txtPrintArea": "Print_Area",
"txtConfidential": "Confidential",
"txtPreparedBy": "Prepared by",
"txtPage": "Page",
"txtPageOf": "Page %1 of %2",
"txtPages": "Pages",
"txtDate": "Date",
"txtTime": "Time",
"txtTab": "Tab",
"txtFile": "File",
"txtColumn": "Column",
"txtRow": "Row",
"txtByField": "%1 of %2",
"txtAll": "(All)",
"txtValues": "Values",
"txtGrandTotal": "Grand Total",
"txtRowLbls": "Row Labels",
"txtColLbls": "Column Labels",
"txtMultiSelect": "Multi-Select (Alt+S)",
"txtClearFilter": "Clear Filter (Alt+C)",
"txtBlank": "(blank)",
"txtGroup": "Group",
"txtSeconds": "Seconds",
"txtMinutes": "Minutes",
"txtHours": "Hours",
"txtDays": "Days",
"txtMonths": "Months",
"txtQuarters": "Quarters",
"txtYears": "Years",
"txtOr": "%1 or %2",
"txtQuarter": "Qtr"
},
"textGuest": "Guest",
"textAnonymous": "Anonymous",

View file

@ -221,7 +221,39 @@ class MainController extends Component {
'Diagram Title': _t.txtDiagramTitle,
'X Axis': _t.txtXAxis,
'Y Axis': _t.txtYAxis,
'Your text here': _t.txtArt
'Your text here': _t.txtArt,
'Table': _t.txtTable,
'Print_Area': _t.txtPrintArea,
'Confidential': _t.txtConfidential,
'Prepared by ': _t.txtPreparedBy + ' ',
'Page': _t.txtPage,
'Page %1 of %2': _t.txtPageOf,
'Pages': _t.txtPages,
'Date': _t.txtDate,
'Time': _t.txtTime,
'Tab': _t.txtTab,
'File': _t.txtFile,
'Column': _t.txtColumn,
'Row': _t.txtRow,
'%1 of %2': _t.txtByField,
'(All)': _t.txtAll,
'Values': _t.txtValues,
'Grand Total': _t.txtGrandTotal,
'Row Labels': _t.txtRowLbls,
'Column Labels': _t.txtColLbls,
'Multi-Select (Alt+S)': _t.txtMultiSelect,
'Clear Filter (Alt+C)': _t.txtClearFilter,
'(blank)': _t.txtBlank,
'Group': _t.txtGroup,
'Seconds': _t.txtSeconds,
'Minutes': _t.txtMinutes,
'Hours': _t.txtHours,
'Days': _t.txtDays,
'Months': _t.txtMonths,
'Quarters': _t.txtQuarters,
'Years': _t.txtYears,
'%1 or %2': _t.txtOr,
'Qtr': _t.txtQuarter
};
styleNames.forEach(function(item){
translate[item] = _t['txtStyle_' + item.replace(/ /g, '_')] || item;