From 86c6c817fd45e0714c76f2d6753d88ebd9311b45 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Thu, 28 Mar 2024 10:43:51 +0300 Subject: [PATCH 1/2] [DE PE SSE mobile] Optimize translations --- .../mobile/utils/processArrayScripts.js | 15 ++ .../mobile/src/controller/Main.jsx | 27 +-- .../mobile/src/controller/Main.jsx | 52 ++++-- .../presentationeditor/mobile/src/lib/i18n.js | 9 + apps/spreadsheeteditor/mobile/locale/en.json | 144 ++++++++------- .../mobile/src/controller/Main.jsx | 165 ++++++++++-------- apps/spreadsheeteditor/mobile/src/lib/i18n.js | 9 + 7 files changed, 253 insertions(+), 168 deletions(-) create mode 100644 apps/common/mobile/utils/processArrayScripts.js diff --git a/apps/common/mobile/utils/processArrayScripts.js b/apps/common/mobile/utils/processArrayScripts.js new file mode 100644 index 0000000000..29c88e4210 --- /dev/null +++ b/apps/common/mobile/utils/processArrayScripts.js @@ -0,0 +1,15 @@ +export const processArrayScripts = async (array, fn) => { + const results = []; + + for (const item of array) { + try { + const data = await fn(item); + results.push(data); + } catch (error) { + console.log(`Error with processing element ${item}:`, error); + continue; + } + } + + return results; +}; \ No newline at end of file diff --git a/apps/documenteditor/mobile/src/controller/Main.jsx b/apps/documenteditor/mobile/src/controller/Main.jsx index 2f62f32683..95df12145a 100644 --- a/apps/documenteditor/mobile/src/controller/Main.jsx +++ b/apps/documenteditor/mobile/src/controller/Main.jsx @@ -19,6 +19,7 @@ import PluginsController from '../../../../common/mobile/lib/controller/Plugins. import EncodingController from "./Encoding"; import DropdownListController from "./DropdownList"; import { Device } from '../../../../common/mobile/utils/device'; +import { processArrayScripts } from '../../../../common/mobile/utils/processArrayScripts.js'; @inject( "users", @@ -385,35 +386,13 @@ class MainController extends Component { } }; - const _process_array = async (array, fn) => { - const results = []; - - for (const item of array) { - try { - const data = await fn(item); - results.push(data); - } catch (error) { - console.log(`Error with processing element ${item}:`, error); - continue; - } - } - - return results; - }; - - _process_array(dep_scripts, promise_get_script) + processArrayScripts(dep_scripts, promise_get_script) .then(() => { window["flat_desine"] = true; const { t } = this.props; let _translate = t('Main.SDK', { returnObjects: true }); - if (typeof _translate === 'object') { - Object.entries(_translate).forEach(([key, value]) => { - if (key.endsWith(' ') && !value.endsWith(' ')) { - _translate[key] = value + ' '; - } - }); - } else { + if (!(typeof _translate === 'object' && _translate !== null && Object.keys(_translate).length > 0)) { _translate = this.fallbackSdkTranslations } diff --git a/apps/presentationeditor/mobile/src/controller/Main.jsx b/apps/presentationeditor/mobile/src/controller/Main.jsx index 699f13223e..4b98740b74 100644 --- a/apps/presentationeditor/mobile/src/controller/Main.jsx +++ b/apps/presentationeditor/mobile/src/controller/Main.jsx @@ -16,6 +16,7 @@ import About from '../../../../common/mobile/lib/view/About'; import PluginsController from '../../../../common/mobile/lib/controller/Plugins.jsx'; import { Device } from '../../../../common/mobile/utils/device'; import { Themes } from '../../../../common/mobile/lib/controller/Themes.jsx'; +import { processArrayScripts } from '../../../../common/mobile/utils/processArrayScripts.js'; @inject( "users", @@ -38,6 +39,31 @@ class MainController extends Component { this.LoadingDocument = -256; this.ApplyEditRights = -255; + this.fallbackSdkTranslations = { + "Chart": "Chart", + "Click to add first slide": "Click to add first slide", + "Click to add notes": "Click to add notes", + "ClipArt": "Clip Art", + "Date and time": "Date and time", + "Diagram": "Diagram", + "Diagram Title": "Chart Title", + "Footer": "Footer", + "Header": "Header", + "Image": "Image", + "Loading": "Loading", + "Media": "Media", + "None": "None", + "Picture": "Picture", + "Series": "Series", + "Slide number": "Slide number", + "Slide subtitle": "Slide subtitle", + "Slide text": "Slide text", + "Slide title": "Slide title", + "Table": "Table", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here" + } this._state = { licenseType: false, @@ -191,30 +217,24 @@ class MainController extends Component { this.api.Resize(); }; - const _process_array = (array, fn) => { - let results = []; - return array.reduce(function(p, item) { - return p.then(function() { - return fn(item).then(function(data) { - results.push(data); - return results; - }); - }); - }, Promise.resolve()); - }; + processArrayScripts(dep_scripts, promise_get_script) + .then(() => { + const { t } = this.props; + let _translate = t('Controller.Main.SDK', { returnObjects:true }) + + if (!(typeof _translate === 'object' && _translate !== null && Object.keys(_translate).length > 0)) { + _translate = this.fallbackSdkTranslations + } - _process_array(dep_scripts, promise_get_script) - .then ( result => { - const {t} = this.props; this.api = new Asc.asc_docs_api({ 'id-view': 'editor_sdk', 'mobile': true, - 'translate': t('Controller.Main.SDK', {returnObjects:true}) + 'translate': _translate }); Common.Notifications.trigger('engineCreated', this.api); - this.appOptions = {}; + this.appOptions = {}; this.bindEvents(); let value = LocalStorage.getItem("pe-settings-fontrender"); diff --git a/apps/presentationeditor/mobile/src/lib/i18n.js b/apps/presentationeditor/mobile/src/lib/i18n.js index d77f77191e..53080f3cd0 100644 --- a/apps/presentationeditor/mobile/src/lib/i18n.js +++ b/apps/presentationeditor/mobile/src/lib/i18n.js @@ -15,6 +15,15 @@ i18n.use(initReactI18next) react: { useSuspense: false, }, + }).then(() => { + console.log("i18next is ready"); + }) + .catch((error) => { + console.error("i18next initialization error:", error); }); +i18n.on('failedLoading', (lng, ns, msg) => { + console.log(msg); +}); + export default i18n; \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/en.json b/apps/spreadsheeteditor/mobile/locale/en.json index e194d02977..1408b335d7 100644 --- a/apps/spreadsheeteditor/mobile/locale/en.json +++ b/apps/spreadsheeteditor/mobile/locale/en.json @@ -101,65 +101,91 @@ "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", "notcriticalErrorTitle": "Warning", "SDK": { - "txtAccent": "Accent", - "txtAll": "(All)", - "txtArt": "Your text here", - "txtBlank": "(blank)", - "txtByField": "%1 of %2", - "txtClearFilter": "Clear Filter (Alt+C)", - "txtColLbls": "Column Labels", - "txtColumn": "Column", - "txtConfidential": "Confidential", - "txtDate": "Date", - "txtDays": "Days", - "txtDiagramTitle": "Chart Title", - "txtFile": "File", - "txtGrandTotal": "Grand Total", - "txtGroup": "Group", - "txtHours": "Hours", - "txtMinutes": "Minutes", - "txtMonths": "Months", - "txtMultiSelect": "Multi-Select (Alt+S)", - "txtOr": "%1 or %2", - "txtPage": "Page", - "txtPageOf": "Page %1 of %2", - "txtPages": "Pages", - "txtPreparedBy": "Prepared by", - "txtPrintArea": "Print_Area", - "txtQuarter": "Qtr", - "txtQuarters": "Quarters", - "txtRow": "Row", - "txtRowLbls": "Row Labels", - "txtSeconds": "Seconds", - "txtSeries": "Series", - "txtStyle_Bad": "Bad", - "txtStyle_Calculation": "Calculation", - "txtStyle_Check_Cell": "Check Cell", - "txtStyle_Comma": "Comma", - "txtStyle_Currency": "Currency", - "txtStyle_Explanatory_Text": "Explanatory Text", - "txtStyle_Good": "Good", - "txtStyle_Heading_1": "Heading 1", - "txtStyle_Heading_2": "Heading 2", - "txtStyle_Heading_3": "Heading 3", - "txtStyle_Heading_4": "Heading 4", - "txtStyle_Input": "Input", - "txtStyle_Linked_Cell": "Linked Cell", - "txtStyle_Neutral": "Neutral", - "txtStyle_Normal": "Normal", - "txtStyle_Note": "Note", - "txtStyle_Output": "Output", - "txtStyle_Percent": "Percent", - "txtStyle_Title": "Title", - "txtStyle_Total": "Total", - "txtStyle_Warning_Text": "Warning Text", - "txtTab": "Tab", - "txtTable": "Table", - "txtTime": "Time", - "txtValues": "Values", - "txtXAxis": "X Axis", - "txtYAxis": "Y Axis", - "txtYears": "Years" + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "Anonymous", "textBuyNow": "Visit website", diff --git a/apps/spreadsheeteditor/mobile/src/controller/Main.jsx b/apps/spreadsheeteditor/mobile/src/controller/Main.jsx index 9ca01233ad..ef3b4ebeb7 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Main.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Main.jsx @@ -21,9 +21,9 @@ import PluginsController from '../../../../common/mobile/lib/controller/Plugins. import EncodingController from "./Encoding"; import DropdownListController from "./DropdownList"; import { StatusbarController } from "./Statusbar"; -import { useTranslation } from 'react-i18next'; import { Device } from '../../../../common/mobile/utils/device'; import { Themes } from '../../../../common/mobile/lib/controller/Themes.jsx'; +import { processArrayScripts } from '../../../../common/mobile/utils/processArrayScripts.js'; @inject( "users", @@ -47,6 +47,93 @@ class MainController extends Component { this.ApplyEditRights = -255; this.InitApplication = -254; this.isShowOpenDialog = false; + this.fallbackSdkTranslations = { + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" + } this._state = { licenseType: false, @@ -239,80 +326,20 @@ class MainController extends Component { //} }; - const _process_array = (array, fn) => { - let results = []; - return array.reduce(function(p, item) { - return p.then(function() { - return fn(item).then(function(data) { - results.push(data); - return results; - }); - }); - }, Promise.resolve()); - }; + processArrayScripts(dep_scripts, promise_get_script) + .then(() => { + const { t } = this.props; + let _translate = t('Controller.Main.SDK', { returnObjects:true }) - _process_array(dep_scripts, promise_get_script) - .then ( result => { - const {t} = this.props; - const _t = t('Controller.Main.SDK', {returnObjects:true}) - const styleNames = ['Normal', 'Neutral', 'Bad', 'Good', 'Input', 'Output', 'Calculation', 'Check Cell', 'Explanatory Text', 'Note', 'Linked Cell', 'Warning Text', - 'Heading 1', 'Heading 2', 'Heading 3', 'Heading 4', 'Title', 'Total', 'Currency', 'Percent', 'Comma']; - const translate = { - 'Series': _t.txtSeries, - 'Diagram Title': _t.txtDiagramTitle, - 'X Axis': _t.txtXAxis, - 'Y Axis': _t.txtYAxis, - '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; - }); - translate['Currency [0]'] = _t.txtStyle_Currency + ' [0]'; - translate['Comma [0]'] = _t.txtStyle_Comma + ' [0]'; - - for (let i=1; i<7; i++) { - translate['Accent'+i] = _t.txtAccent + i; - translate['20% - Accent'+i] = '20% - ' + _t.txtAccent + i; - translate['40% - Accent'+i] = '40% - ' + _t.txtAccent + i; - translate['60% - Accent'+i] = '60% - ' + _t.txtAccent + i; + if (!(typeof _translate === 'object' && _translate !== null && Object.keys(_translate).length > 0)) { + _translate = this.fallbackSdkTranslations } + this.api = new Asc.spreadsheet_api({ 'id-view': 'editor_sdk', 'id-input': 'idx-cell-content', 'mobile': true, - 'translate': translate + 'translate': _translate }); Common.Notifications.trigger('engineCreated', this.api); diff --git a/apps/spreadsheeteditor/mobile/src/lib/i18n.js b/apps/spreadsheeteditor/mobile/src/lib/i18n.js index d77f77191e..53080f3cd0 100644 --- a/apps/spreadsheeteditor/mobile/src/lib/i18n.js +++ b/apps/spreadsheeteditor/mobile/src/lib/i18n.js @@ -15,6 +15,15 @@ i18n.use(initReactI18next) react: { useSuspense: false, }, + }).then(() => { + console.log("i18next is ready"); + }) + .catch((error) => { + console.error("i18next initialization error:", error); }); +i18n.on('failedLoading', (lng, ns, msg) => { + console.log(msg); +}); + export default i18n; \ No newline at end of file From 872ae73bd0fad6d5d767d620cc858835f692aee9 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Thu, 28 Mar 2024 10:46:59 +0300 Subject: [PATCH 2/2] [SSE mobile] Updated translations --- apps/spreadsheeteditor/mobile/locale/ar.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/az.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/be.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/bg.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/ca.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/cs.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/da.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/de.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/el.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/es.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/eu.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/fr.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/gl.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/hu.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/hy.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/id.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/it.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/ja.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/ko.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/lo.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/lv.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/ms.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/nl.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/pl.json | 87 ++++++++++++++++++- .../mobile/locale/pt-pt.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/pt.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/ro.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/ru.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/si.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/sk.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/sl.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/sr.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/tr.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/uk.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/vi.json | 87 ++++++++++++++++++- .../mobile/locale/zh-tw.json | 87 ++++++++++++++++++- apps/spreadsheeteditor/mobile/locale/zh.json | 87 ++++++++++++++++++- 37 files changed, 3182 insertions(+), 37 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/locale/ar.json b/apps/spreadsheeteditor/mobile/locale/ar.json index c1f6e4a58e..b92840a473 100644 --- a/apps/spreadsheeteditor/mobile/locale/ar.json +++ b/apps/spreadsheeteditor/mobile/locale/ar.json @@ -159,7 +159,92 @@ "txtValues": "القيم", "txtXAxis": "محور السينات", "txtYAxis": "محور الصادات", - "txtYears": "السنوات" + "txtYears": "السنوات", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "مجهول", "textBuyNow": "زيارة الموقع", diff --git a/apps/spreadsheeteditor/mobile/locale/az.json b/apps/spreadsheeteditor/mobile/locale/az.json index 2b4843df52..dfc495f6f5 100644 --- a/apps/spreadsheeteditor/mobile/locale/az.json +++ b/apps/spreadsheeteditor/mobile/locale/az.json @@ -159,7 +159,92 @@ "txtValues": "Dəyərlər", "txtXAxis": "X Oxu", "txtYAxis": "Y Oxu", - "txtYears": "İllər" + "txtYears": "İllər", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "Anonim", "textBuyNow": "Veb sayta daxil olun", diff --git a/apps/spreadsheeteditor/mobile/locale/be.json b/apps/spreadsheeteditor/mobile/locale/be.json index b488b40032..9a8fc5bc85 100644 --- a/apps/spreadsheeteditor/mobile/locale/be.json +++ b/apps/spreadsheeteditor/mobile/locale/be.json @@ -154,7 +154,92 @@ "txtStyle_Total": "Total", "txtTab": "Tab", "txtTable": "Table", - "txtTime": "Time" + "txtTime": "Time", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "Ананімны карыстальнік", "textClose": "Закрыць", diff --git a/apps/spreadsheeteditor/mobile/locale/bg.json b/apps/spreadsheeteditor/mobile/locale/bg.json index 4cf09725c3..e023e13acb 100644 --- a/apps/spreadsheeteditor/mobile/locale/bg.json +++ b/apps/spreadsheeteditor/mobile/locale/bg.json @@ -594,7 +594,92 @@ "txtValues": "Values", "txtXAxis": "X Axis", "txtYAxis": "Y Axis", - "txtYears": "Years" + "txtYears": "Years", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "Anonymous", "textBuyNow": "Visit website", diff --git a/apps/spreadsheeteditor/mobile/locale/ca.json b/apps/spreadsheeteditor/mobile/locale/ca.json index 62a6440ad4..7c7f9ea90d 100644 --- a/apps/spreadsheeteditor/mobile/locale/ca.json +++ b/apps/spreadsheeteditor/mobile/locale/ca.json @@ -159,7 +159,92 @@ "txtValues": "Valors", "txtXAxis": "Eix X", "txtYAxis": "Eix Y", - "txtYears": "Anys" + "txtYears": "Anys", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "Anònim", "textBuyNow": "Visitar el lloc web", diff --git a/apps/spreadsheeteditor/mobile/locale/cs.json b/apps/spreadsheeteditor/mobile/locale/cs.json index 8cfed555a2..c7ddcbcfbb 100644 --- a/apps/spreadsheeteditor/mobile/locale/cs.json +++ b/apps/spreadsheeteditor/mobile/locale/cs.json @@ -159,7 +159,92 @@ "txtValues": "Hodnoty", "txtXAxis": "Osa X", "txtYAxis": "Osa Y", - "txtYears": "roky" + "txtYears": "roky", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "Anonymní", "textBuyNow": "Navštívit webovou stránku", diff --git a/apps/spreadsheeteditor/mobile/locale/da.json b/apps/spreadsheeteditor/mobile/locale/da.json index 33e916ceb8..96b715ce21 100644 --- a/apps/spreadsheeteditor/mobile/locale/da.json +++ b/apps/spreadsheeteditor/mobile/locale/da.json @@ -154,7 +154,92 @@ "txtYears": "år", "txtStyle_Title": "Title", "txtStyle_Total": "Total", - "txtTime": "Time" + "txtTime": "Time", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "Anonymt", "textBuyNow": "Besøg hjemmeside", diff --git a/apps/spreadsheeteditor/mobile/locale/de.json b/apps/spreadsheeteditor/mobile/locale/de.json index 1435a1542f..f8bd092b16 100644 --- a/apps/spreadsheeteditor/mobile/locale/de.json +++ b/apps/spreadsheeteditor/mobile/locale/de.json @@ -159,7 +159,92 @@ "txtValues": "Werte", "txtXAxis": "Achse X", "txtYAxis": "Achse Y", - "txtYears": "Jahre" + "txtYears": "Jahre", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "Anonym", "textBuyNow": "Webseite besuchen", diff --git a/apps/spreadsheeteditor/mobile/locale/el.json b/apps/spreadsheeteditor/mobile/locale/el.json index 805f25c8c0..2a30662adf 100644 --- a/apps/spreadsheeteditor/mobile/locale/el.json +++ b/apps/spreadsheeteditor/mobile/locale/el.json @@ -159,7 +159,92 @@ "txtValues": "Τιμές", "txtXAxis": "Άξονας Χ", "txtYAxis": "Άξονας Υ", - "txtYears": "Έτη" + "txtYears": "Έτη", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "Ανώνυμος", "textBuyNow": "Επισκεφθείτε τον ιστότοπο", diff --git a/apps/spreadsheeteditor/mobile/locale/es.json b/apps/spreadsheeteditor/mobile/locale/es.json index 385a9b3b35..56dc89e055 100644 --- a/apps/spreadsheeteditor/mobile/locale/es.json +++ b/apps/spreadsheeteditor/mobile/locale/es.json @@ -159,7 +159,92 @@ "txtValues": "Valores", "txtXAxis": "Eje X", "txtYAxis": "Eje Y", - "txtYears": "Años" + "txtYears": "Años", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "Anónimo", "textBuyNow": "Visitar sitio web", diff --git a/apps/spreadsheeteditor/mobile/locale/eu.json b/apps/spreadsheeteditor/mobile/locale/eu.json index 3269a5274d..f35df167a0 100644 --- a/apps/spreadsheeteditor/mobile/locale/eu.json +++ b/apps/spreadsheeteditor/mobile/locale/eu.json @@ -159,7 +159,92 @@ "txtValues": "Balioak", "txtXAxis": "X ardatza", "txtYAxis": "Y ardatza", - "txtYears": "Urteak" + "txtYears": "Urteak", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "Anonimoa", "textBuyNow": "Bisitatu webgunea", diff --git a/apps/spreadsheeteditor/mobile/locale/fr.json b/apps/spreadsheeteditor/mobile/locale/fr.json index 805180a143..7a80737768 100644 --- a/apps/spreadsheeteditor/mobile/locale/fr.json +++ b/apps/spreadsheeteditor/mobile/locale/fr.json @@ -159,7 +159,92 @@ "txtValues": "Valeurs", "txtXAxis": "Axe X", "txtYAxis": "Axe Y", - "txtYears": "Années" + "txtYears": "Années", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "Anonyme", "textBuyNow": "Visiter le site web", diff --git a/apps/spreadsheeteditor/mobile/locale/gl.json b/apps/spreadsheeteditor/mobile/locale/gl.json index a27f3e2538..a05c00edaf 100644 --- a/apps/spreadsheeteditor/mobile/locale/gl.json +++ b/apps/spreadsheeteditor/mobile/locale/gl.json @@ -159,7 +159,92 @@ "txtValues": "Valores", "txtXAxis": "Eixo X", "txtYAxis": "Eixo Y", - "txtYears": "Anos" + "txtYears": "Anos", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "Anónimo", "textBuyNow": "Visitar sitio web", diff --git a/apps/spreadsheeteditor/mobile/locale/hu.json b/apps/spreadsheeteditor/mobile/locale/hu.json index b27ee2ebcf..f1a4b00862 100644 --- a/apps/spreadsheeteditor/mobile/locale/hu.json +++ b/apps/spreadsheeteditor/mobile/locale/hu.json @@ -159,7 +159,92 @@ "txtValues": "Értékek", "txtXAxis": "X tengely", "txtYAxis": "Y tengely", - "txtYears": "Évek" + "txtYears": "Évek", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "Anonim", "textBuyNow": "Weboldal megnyitása", diff --git a/apps/spreadsheeteditor/mobile/locale/hy.json b/apps/spreadsheeteditor/mobile/locale/hy.json index aac384c164..f286ffdad8 100644 --- a/apps/spreadsheeteditor/mobile/locale/hy.json +++ b/apps/spreadsheeteditor/mobile/locale/hy.json @@ -159,7 +159,92 @@ "txtValues": "Արժեքներ", "txtXAxis": "X առանցք", "txtYAxis": "Y առանցք", - "txtYears": "Տարիներ" + "txtYears": "Տարիներ", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "Անանուն", "textBuyNow": "Այցելել կայք", diff --git a/apps/spreadsheeteditor/mobile/locale/id.json b/apps/spreadsheeteditor/mobile/locale/id.json index d230688e89..cfce1e4892 100644 --- a/apps/spreadsheeteditor/mobile/locale/id.json +++ b/apps/spreadsheeteditor/mobile/locale/id.json @@ -159,7 +159,92 @@ "txtValues": "Nilai", "txtXAxis": "Sumbu X", "txtYAxis": "Sumbu Y", - "txtYears": "Tahun" + "txtYears": "Tahun", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "Anonim", "textBuyNow": "Kunjungi website", diff --git a/apps/spreadsheeteditor/mobile/locale/it.json b/apps/spreadsheeteditor/mobile/locale/it.json index da06e928c8..29d7d08f92 100644 --- a/apps/spreadsheeteditor/mobile/locale/it.json +++ b/apps/spreadsheeteditor/mobile/locale/it.json @@ -159,7 +159,92 @@ "txtValues": "Valori", "txtXAxis": "Asse X", "txtYAxis": "Asse Y", - "txtYears": "Anni" + "txtYears": "Anni", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "Anonimo", "textBuyNow": "Visitare il sito web", diff --git a/apps/spreadsheeteditor/mobile/locale/ja.json b/apps/spreadsheeteditor/mobile/locale/ja.json index bd61630e2e..f330aefef6 100644 --- a/apps/spreadsheeteditor/mobile/locale/ja.json +++ b/apps/spreadsheeteditor/mobile/locale/ja.json @@ -159,7 +159,92 @@ "txtValues": "値", "txtXAxis": "X 軸", "txtYAxis": "Y 軸", - "txtYears": "年" + "txtYears": "年", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "匿名者", "textBuyNow": "ウェブサイトを訪問する", diff --git a/apps/spreadsheeteditor/mobile/locale/ko.json b/apps/spreadsheeteditor/mobile/locale/ko.json index e45f95ae70..2e252f8594 100644 --- a/apps/spreadsheeteditor/mobile/locale/ko.json +++ b/apps/spreadsheeteditor/mobile/locale/ko.json @@ -159,7 +159,92 @@ "txtValues": "값", "txtXAxis": "X 축", "txtYAxis": "Y 축", - "txtYears": "년" + "txtYears": "년", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "익명", "textBuyNow": "웹 사이트 방문", diff --git a/apps/spreadsheeteditor/mobile/locale/lo.json b/apps/spreadsheeteditor/mobile/locale/lo.json index deb0ca73f1..d8f459c390 100644 --- a/apps/spreadsheeteditor/mobile/locale/lo.json +++ b/apps/spreadsheeteditor/mobile/locale/lo.json @@ -159,7 +159,92 @@ "txtValues": "ຄ່າ", "txtXAxis": "ແກນ X", "txtYAxis": "ແກນ Y", - "txtYears": "ປີ" + "txtYears": "ປີ", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "ບໍ່ລະບຸຊື່", "textBuyNow": "ເຂົ້າໄປຍັງເວັບໄຊ", diff --git a/apps/spreadsheeteditor/mobile/locale/lv.json b/apps/spreadsheeteditor/mobile/locale/lv.json index 6cd0db9a90..1803c25caf 100644 --- a/apps/spreadsheeteditor/mobile/locale/lv.json +++ b/apps/spreadsheeteditor/mobile/locale/lv.json @@ -159,7 +159,92 @@ "txtValues": "Vērtības", "txtXAxis": "X ass", "txtYAxis": "Y ass", - "txtYears": "Gadi" + "txtYears": "Gadi", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "Anonīms", "textBuyNow": "Apmeklēt vietni", diff --git a/apps/spreadsheeteditor/mobile/locale/ms.json b/apps/spreadsheeteditor/mobile/locale/ms.json index e97249df0b..caa6a8a6a4 100644 --- a/apps/spreadsheeteditor/mobile/locale/ms.json +++ b/apps/spreadsheeteditor/mobile/locale/ms.json @@ -159,7 +159,92 @@ "txtValues": "Nilai", "txtXAxis": "Paksi X", "txtYAxis": "Paksi X", - "txtYears": "Tahun" + "txtYears": "Tahun", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "Tanpa Nama", "textBuyNow": "Lihat laman web", diff --git a/apps/spreadsheeteditor/mobile/locale/nl.json b/apps/spreadsheeteditor/mobile/locale/nl.json index 7f2428ec64..b35ce1eef1 100644 --- a/apps/spreadsheeteditor/mobile/locale/nl.json +++ b/apps/spreadsheeteditor/mobile/locale/nl.json @@ -159,7 +159,92 @@ "txtValues": "Waarden", "txtXAxis": "X-as", "txtYAxis": "Y-as", - "txtYears": "Jaren" + "txtYears": "Jaren", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "Anoniem", "textBuyNow": "Website bezoeken", diff --git a/apps/spreadsheeteditor/mobile/locale/pl.json b/apps/spreadsheeteditor/mobile/locale/pl.json index 5d2bf248a0..49d0b233dc 100644 --- a/apps/spreadsheeteditor/mobile/locale/pl.json +++ b/apps/spreadsheeteditor/mobile/locale/pl.json @@ -151,7 +151,92 @@ "txtValues": "Values", "txtXAxis": "X Axis", "txtYAxis": "Y Axis", - "txtYears": "Years" + "txtYears": "Years", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "Gość", "criticalErrorTitle": "Error", diff --git a/apps/spreadsheeteditor/mobile/locale/pt-pt.json b/apps/spreadsheeteditor/mobile/locale/pt-pt.json index f8bb1029ff..04a89520ae 100644 --- a/apps/spreadsheeteditor/mobile/locale/pt-pt.json +++ b/apps/spreadsheeteditor/mobile/locale/pt-pt.json @@ -159,7 +159,92 @@ "txtValues": "Valores", "txtXAxis": "Eixo X", "txtYAxis": "Eixo Y", - "txtYears": "Anos" + "txtYears": "Anos", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "Anónimo", "textBuyNow": "Visitar site", diff --git a/apps/spreadsheeteditor/mobile/locale/pt.json b/apps/spreadsheeteditor/mobile/locale/pt.json index fb588bb3e1..dd936916c5 100644 --- a/apps/spreadsheeteditor/mobile/locale/pt.json +++ b/apps/spreadsheeteditor/mobile/locale/pt.json @@ -159,7 +159,92 @@ "txtValues": "Valores", "txtXAxis": "Eixo X", "txtYAxis": "Eixo Y", - "txtYears": "Anos" + "txtYears": "Anos", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "Anônimo", "textBuyNow": "Visitar website", diff --git a/apps/spreadsheeteditor/mobile/locale/ro.json b/apps/spreadsheeteditor/mobile/locale/ro.json index 7b9747d75a..d4d15c4e17 100644 --- a/apps/spreadsheeteditor/mobile/locale/ro.json +++ b/apps/spreadsheeteditor/mobile/locale/ro.json @@ -159,7 +159,92 @@ "txtValues": "Valori", "txtXAxis": "Axa X", "txtYAxis": "Axa Y", - "txtYears": "Ani" + "txtYears": "Ani", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "Anonim", "textBuyNow": "Vizitarea site-ul Web", diff --git a/apps/spreadsheeteditor/mobile/locale/ru.json b/apps/spreadsheeteditor/mobile/locale/ru.json index 35133c8c3f..3a470f7a7c 100644 --- a/apps/spreadsheeteditor/mobile/locale/ru.json +++ b/apps/spreadsheeteditor/mobile/locale/ru.json @@ -159,7 +159,92 @@ "txtValues": "Значения", "txtXAxis": "Ось X", "txtYAxis": "Ось Y", - "txtYears": "Годы" + "txtYears": "Годы", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "Анонимный пользователь", "textBuyNow": "Перейти на сайт", diff --git a/apps/spreadsheeteditor/mobile/locale/si.json b/apps/spreadsheeteditor/mobile/locale/si.json index 27817e57eb..2e633710b4 100644 --- a/apps/spreadsheeteditor/mobile/locale/si.json +++ b/apps/spreadsheeteditor/mobile/locale/si.json @@ -159,7 +159,92 @@ "txtValues": "අගයන්", "txtXAxis": "X අක්‍ෂය", "txtYAxis": "Y අක්‍ෂය", - "txtYears": "අවුරුදු" + "txtYears": "අවුරුදු", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "නිර්නාමික", "textBuyNow": "අඩවියට ගොඩවෙන්න", diff --git a/apps/spreadsheeteditor/mobile/locale/sk.json b/apps/spreadsheeteditor/mobile/locale/sk.json index dd1ff87b5e..6a9dfc1178 100644 --- a/apps/spreadsheeteditor/mobile/locale/sk.json +++ b/apps/spreadsheeteditor/mobile/locale/sk.json @@ -159,7 +159,92 @@ "txtValues": "Hodnoty", "txtXAxis": "Os X", "txtYAxis": "Os Y", - "txtYears": "Roky" + "txtYears": "Roky", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "Anonymný", "textBuyNow": "Navštíviť webovú stránku", diff --git a/apps/spreadsheeteditor/mobile/locale/sl.json b/apps/spreadsheeteditor/mobile/locale/sl.json index 82f4fd929d..725811d0b4 100644 --- a/apps/spreadsheeteditor/mobile/locale/sl.json +++ b/apps/spreadsheeteditor/mobile/locale/sl.json @@ -70,7 +70,92 @@ "txtValues": "Values", "txtXAxis": "X Axis", "txtYAxis": "Y Axis", - "txtYears": "Years" + "txtYears": "Years", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "criticalErrorTitle": "Error", "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", diff --git a/apps/spreadsheeteditor/mobile/locale/sr.json b/apps/spreadsheeteditor/mobile/locale/sr.json index 16a34c5eee..8064aab412 100644 --- a/apps/spreadsheeteditor/mobile/locale/sr.json +++ b/apps/spreadsheeteditor/mobile/locale/sr.json @@ -159,7 +159,92 @@ "txtValues": "Vrednosti", "txtXAxis": "Osa X", "txtYAxis": "Osa Y", - "txtYears": "Godine" + "txtYears": "Godine", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "Anonimno", "textBuyNow": "Poseti veb sajt", diff --git a/apps/spreadsheeteditor/mobile/locale/tr.json b/apps/spreadsheeteditor/mobile/locale/tr.json index 78b1560dfb..697cd90b02 100644 --- a/apps/spreadsheeteditor/mobile/locale/tr.json +++ b/apps/spreadsheeteditor/mobile/locale/tr.json @@ -159,7 +159,92 @@ "txtValues": "Değerler", "txtXAxis": "X Ekseni", "txtYAxis": "Y Ekseni", - "txtYears": "yıl" + "txtYears": "yıl", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "Anonim", "textBuyNow": "Websitesini ziyaret edin", diff --git a/apps/spreadsheeteditor/mobile/locale/uk.json b/apps/spreadsheeteditor/mobile/locale/uk.json index 214ebb0bed..dff9b2a586 100644 --- a/apps/spreadsheeteditor/mobile/locale/uk.json +++ b/apps/spreadsheeteditor/mobile/locale/uk.json @@ -68,7 +68,92 @@ "txtValues": "Values", "txtXAxis": "X Axis", "txtYAxis": "Y Axis", - "txtYears": "Years" + "txtYears": "Years", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "Anonymous", "textBuyNow": "Visit website", diff --git a/apps/spreadsheeteditor/mobile/locale/vi.json b/apps/spreadsheeteditor/mobile/locale/vi.json index 531567ea90..4f49d7be4c 100644 --- a/apps/spreadsheeteditor/mobile/locale/vi.json +++ b/apps/spreadsheeteditor/mobile/locale/vi.json @@ -60,7 +60,92 @@ "txtValues": "Values", "txtXAxis": "X Axis", "txtYAxis": "Y Axis", - "txtYears": "Years" + "txtYears": "Years", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "warnLicenseAnonymous": "Truy cập bị từ chối cho người dùng ẩn danh.
Tải liệu này sẽ được mở ở dạng chỉ xem.", "criticalErrorTitle": "Error", diff --git a/apps/spreadsheeteditor/mobile/locale/zh-tw.json b/apps/spreadsheeteditor/mobile/locale/zh-tw.json index 727027d471..fb2f129011 100644 --- a/apps/spreadsheeteditor/mobile/locale/zh-tw.json +++ b/apps/spreadsheeteditor/mobile/locale/zh-tw.json @@ -159,7 +159,92 @@ "txtValues": "值", "txtXAxis": "X軸", "txtYAxis": "Y軸", - "txtYears": "年份" + "txtYears": "年份", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "匿名", "textBuyNow": "瀏覽網站", diff --git a/apps/spreadsheeteditor/mobile/locale/zh.json b/apps/spreadsheeteditor/mobile/locale/zh.json index 7f26ca792f..0a4e8c4fd1 100644 --- a/apps/spreadsheeteditor/mobile/locale/zh.json +++ b/apps/spreadsheeteditor/mobile/locale/zh.json @@ -159,7 +159,92 @@ "txtValues": "值", "txtXAxis": "X轴", "txtYAxis": "Y轴", - "txtYears": "年" + "txtYears": "年", + "Accent": "Accent", + "Accent1": "Accent1", + "Accent2": "Accent2", + "Accent3": "Accent3", + "Accent4": "Accent4", + "Accent5": "Accent5", + "Accent6": "Accent6", + "20% - Accent1": "20% - Accent1", + "20% - Accent2": "20% - Accent2", + "20% - Accent3": "20% - Accent3", + "20% - Accent4": "20% - Accent4", + "20% - Accent5": "20% - Accent5", + "20% - Accent6": "20% - Accent6", + "40% - Accent1": "40% - Accent1", + "40% - Accent2": "40% - Accent2", + "40% - Accent3": "40% - Accent3", + "40% - Accent4": "40% - Accent4", + "40% - Accent5": "40% - Accent5", + "40% - Accent6": "40% - Accent6", + "60% - Accent1": "60% - Accent1", + "60% - Accent2": "60% - Accent2", + "60% - Accent3": "60% - Accent3", + "60% - Accent4": "60% - Accent4", + "60% - Accent5": "60% - Accent5", + "60% - Accent6": "60% - Accent6", + "(All)": "(All)", + "Your text here": "Your text here", + "(blank)": "(blank)", + "%1 of %2": "%1 of %2", + "Clear Filter (Alt+C)": "Clear Filter (Alt+C)", + "Column Labels": "Column Labels", + "Column": "Column", + "Confidential": "Confidential", + "Date": "Date", + "Days": "Days", + "Diagram Title": "Chart Title", + "File": "File", + "Grand Total": "Grand Total", + "Group": "Group", + "Hours": "Hours", + "Minutes": "Minutes", + "Months": "Months", + "Multi-Select (Alt+S)": "Multi-Select (Alt+S)", + "%1 or %2": "%1 or %2", + "Page": "Page", + "Page %1 of %2": "Page %1 of %2", + "Pages": "Pages", + "Prepared by": "Prepared by", + "Print_Area": "Print_Area", + "Qtr": "Qtr", + "Quarters": "Quarters", + "Row": "Row", + "Row Labels": "Row Labels", + "Seconds": "Seconds", + "Series": "Series", + "Bad": "Bad", + "Calculation": "Calculation", + "Check Cell": "Check Cell", + "Comma": "Comma", + "Comma [0]": "Comma [0]", + "Currency": "Currency", + "Currency [0]": "Currency [0]", + "Explanatory Text": "Explanatory Text", + "Good": "Good", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Input": "Input", + "Linked Cell": "Linked Cell", + "Neutral": "Neutral", + "Normal": "Normal", + "Note": "Note", + "Output": "Output", + "Percent": "Percent", + "Title": "Title", + "Total": "Total", + "Warning Text": "Warning Text", + "Tab": "Tab", + "Table": "Table", + "Time": "Time", + "Values": "Values", + "X Axis": "X Axis", + "Y Axis": "Y Axis", + "Years": "Years" }, "textAnonymous": "匿名用户", "textBuyNow": "访问网站",