webpivottable
Advanced tools
Comparing version 6.0.0-beta.1 to 6.0.0-beta.2
{ | ||
"name": "webpivottable", | ||
"version": "6.0.0-beta.1", | ||
"version": "6.0.0-beta.2", | ||
"description": "A pure javascript pivot table and pivot chart component.", | ||
@@ -5,0 +5,0 @@ "author": { |
@@ -12,11 +12,4 @@ --- | ||
*WebPivotTable APIs are implemented based on event bus mechanism. An event bus is a mechanism that allows different components | ||
to communicate with each other without knowing about each other. A component can send an event to the event bus without | ||
knowing who will pick it up or how many others will pick it up. Components can also listen to events on an event bus, | ||
without knowing who sent the events. That way, components can communicate without depending on each other.* | ||
*WebPivotTable APIs are all asynchorize function and return as a Promise. | ||
There is an "$eventBus" property of initialed WebPivotTable object. This property is an event bus. We can use it to emit events to | ||
WebPivotTable and trigger some internal logic of WebPivotTable. This event emit mechanism is the key how APIs works. | ||
Below is standard syntax to call APIs: | ||
@@ -27,3 +20,5 @@ | ||
wpt.$eventBus.$emit(apiName, params1, params2, ..., paramsn); | ||
wpt[apiName](params1, params2, ..., paramsn) | ||
.then( function(response) {}) | ||
; | ||
``` | ||
@@ -46,3 +41,3 @@ | ||
```javascript | ||
wpt.$eventBus.$emit("setLocale", locale); | ||
wpt.setLocale(locale); | ||
``` | ||
@@ -57,3 +52,3 @@ | Param Name | Param Type | Optional | Description | | ||
```javascript | ||
wpt.$eventBus.$emit("setOptions", options); | ||
wpt.setOptions(options); | ||
``` | ||
@@ -71,3 +66,3 @@ | Param Name | Param Type | Optional | Description | | ||
```javascript | ||
wpt.$eventBus.$emit("setDataArray", attrArray, dataArray, dataUrl, wptObject, successCB, errorCB); | ||
wpt.setDataArray(attrArray, dataArray, dataUrl); | ||
``` | ||
@@ -79,5 +74,2 @@ | Param Name | Param Type | Optional | Description | | ||
| `dataUrl` | `string` | yes | Url for track the source data, This is just for tracking, pass "" if not know or no need. | | ||
| `wptObject` | `object` | yes | pre-saved wpt JSON object | | ||
| `successCB` | `function` | yes | success callback, in this callback, current wpt object will be published as first parameter | | ||
| `errorCB` | `function` | yes | error callback, in this callback, error object will be published as first parameter | | ||
@@ -87,4 +79,2 @@ Load source data from data array | ||
Notes: | ||
- If `wptObject` is not null, use it as pre-saved pivot selections | ||
- This is major API to load source data into WebPivotTable, it was | ||
@@ -99,3 +89,3 @@ used by `setCsvUrl` and `setCsvRawData` internally. Actually, developers | ||
```javascript | ||
wpt.$eventBus.$emit("setCsvUrl", csvUrl, separator, wptObject, successCB, errorCB); | ||
wpt.setCsvUrl(csvUrl, separator); | ||
``` | ||
@@ -106,10 +96,5 @@ | Param Name | Param Type | Optional | Description | | ||
| `separator` | `string` | yes | separator char for CSV file, default is "," | | ||
| `wptObject` | `object` | yes | pre-saved wpt JSON object | | ||
| `successCB` | `function` | yes | success callback, in this callback, current wpt object will be published as first parameter | | ||
| `errorCB` | `function` | yes | error callback, in this callback, error object will be published as first parameter | | ||
Load source data from CSV file URL | ||
Notes: | ||
- If `wptObject` is not null, use it as pre-saved pivot selections | ||
@@ -120,3 +105,3 @@ | ||
```javascript | ||
wpt.$eventBus.$emit("setWptString", wptString, dataObject, successCB, errorCB); | ||
wpt.setWptString(wptString); | ||
``` | ||
@@ -126,5 +111,2 @@ | Param Name | Param Type | Optional | Description | | ||
| `wptString` | `string` | no | pre-saved WPT format string | | ||
| `dataObject` | `object` | yes | if exist, use this as data and fields of first source , format {data:[], fields:[]} | | ||
| `successCB` | `function` | yes | success callback, in this callback, current wpt object will be published as first parameter | | ||
| `errorCB` | `function` | yes | error callback, in this callback, error object will be published as first parameter | | ||
@@ -138,3 +120,3 @@ Load WPT format String | ||
```javascript | ||
wpt.$eventBus.$emit("setWptObject", wptObject, dataObject, successCB, errorCB); | ||
wpt.setWptObject(wptObject); | ||
``` | ||
@@ -144,5 +126,2 @@ | Param Name | Param Type | Optional | Description | | ||
| `wptObject` | `object` | no | pre-saved WPT format JSON object | | ||
| `dataObject` | `object` | yes | if exist, use this as data and fields of first source , format {data:[], fields:[]} | | ||
| `successCB` | `function` | yes | success callback, in this callback, current wpt object will be published as first parameter | | ||
| `errorCB` | `function` | yes | error callback, in this callback, error object will be published as first parameter | | ||
@@ -156,3 +135,3 @@ Load WPT format JSON Oject | ||
```javascript | ||
wpt.$eventBus.$emit("setWpt", wpt, dataObject, successCB, errorCB); | ||
wpt.setWpt(wpt); | ||
``` | ||
@@ -162,5 +141,2 @@ | Param Name | Param Type | Optional | Description | | ||
| `wpt` | `string\object` | no | pre-saved WPT format String or JSON object | | ||
| `dataObject` | `object` | yes | if exist, use this as data and fields of first source , format {data:[], fields:[]} | | ||
| `successCB` | `function` | yes | success callback, in this callback, current wpt object will be published as first parameter | | ||
| `errorCB` | `function` | yes | error callback, in this callback, error object will be published as first parameter | | ||
@@ -173,3 +149,3 @@ Load WPT format String or JSON Object with updated first source data | ||
```javascript | ||
wpt.$eventBus.$emit("generateWptString", ignoreData, successCB); | ||
wpt.generateWptString(ignoreData); | ||
``` | ||
@@ -179,3 +155,2 @@ | Param Name | Param Type | Optional | Description | | ||
| `ignoreData` | `bool` | no | if equal to true, ignore data and fields, only save options and controls | | ||
| `successCB` | `function` | yes | success callback, in this callback, generate wptString will be published as first parameter | | ||
@@ -188,3 +163,3 @@ Generate WPT format string | ||
```javascript | ||
wpt.$eventBus.$emit("generateWptJSON", ignoreData, successCB); | ||
wpt.generateWptJSON(ignoreData); | ||
``` | ||
@@ -194,3 +169,2 @@ | Param Name | Param Type | Optional | Description | | ||
| `ignoreData` | `bool` | no | if equal to true, ignore data and fields, only save options and controls | | ||
| `successCB` | `function` | yes | success callback, in this callback, generate wpt object will be published as first parameter | | ||
@@ -203,3 +177,3 @@ Generate WPT format JSON object | ||
```javascript | ||
wpt.$eventBus.$emit("setOlapCube", olapData, successCB, errorCB); | ||
wpt.setOlapCube(olapData); | ||
``` | ||
@@ -209,4 +183,2 @@ | Param Name | Param Type | Optional | Description | | ||
| `olapData` | `Object` | no | Object of OLAP Cube Information | | ||
| `successCB` | `function` | yes | success callback, in this callback, current wpt object will be published as first parameter | | ||
| `errorCB` | `function` | yes | error callback, in this callback, error object will be published as first parameter | | ||
@@ -227,3 +199,3 @@ Load OLAP Cube | ||
```javascript | ||
wpt.$eventBus.$emit("setWebServiceDataUrl", wsDataUrl, wptObject, successCB, errorCB); | ||
wpt.setWebServiceDataUrl(wsDataUrl); | ||
``` | ||
@@ -233,5 +205,2 @@ | Param Name | Param Type | Optional | Description | | ||
| `wsDataUrl` | `string` | no | URL String of Web Service Data URL | | ||
| `wptObject` | `object` | yes | pre-saved wpt JSON object | | ||
| `successCB` | `function` | yes | success callback, in this callback, current wpt object will be published as first parameter | | ||
| `errorCB` | `function` | yes | error callback, in this callback, error object will be published as first parameter | | ||
@@ -241,4 +210,2 @@ Load source data from WebService URL and create a new WPT with a new Sheet | ||
Notes: | ||
- If `wptObject` is not null, use it as pre-saved pivot selections | ||
- The Web Service should return a JSON object | ||
@@ -255,24 +222,1 @@ ``` | ||
<h2 id="add-web-service-data-url"> `addWebServiceDataUrl` </h2> | ||
```javascript | ||
wpt.$eventBus.$emit("addWebServiceDataUrl", wsDataUrl, successCB, errorCB); | ||
``` | ||
| Param Name | Param Type | Optional | Description | | ||
|------------------|---------------|------------|----------------------------------------------------------------------------------------------------------------------------------------| | ||
| `wsDataUrl` | `string` | no | URL String of Web Service Data URL | | ||
| `successCB` | `function` | yes | success callback, in this callback, current wpt object will be published as first parameter | | ||
| `errorCB` | `function` | yes | error callback, in this callback, error object will be published as first parameter | | ||
Add a new source data from WebService URL | ||
Notes: | ||
- The Web Service should return a JSON object | ||
``` | ||
{ | ||
attrArray: [], | ||
dataArray: [] | ||
} | ||
``` | ||
- This is a very useful API to access data in SQL databases or any other data storages | ||
since Web Service access is cross domain and can be provided by any backend technologies. |
@@ -14,7 +14,2 @@ --- | ||
Like [Calling APIs](/doc/apis#how-to-call-apis), Listen to WebPivotTable Events is implemented based on event bus mechanism as well. | ||
There is an "$eventBus" property of initialed WebPivotTable object. This property is an event bus. | ||
We can use "$on" method to listen to all events emit from WebPivotTable. | ||
Below is standard syntax for listen to events: | ||
@@ -25,6 +20,4 @@ | ||
wpt.$eventBus.$on(eventName, eventHandler); | ||
wpt.addEventListener(eventName, eventHandler); | ||
``` | ||
First, we need get WebPivotTable object, then call $on method of this object's $eventBus props, | ||
passing with event name together with event handler. | ||
@@ -37,6 +30,6 @@ <div class="Alert Alert--orange"> | ||
<h2 id="new-wpt">`newWpt`</h2> | ||
<h2 id="new-wpt">`EVENT_CONNECT_SOURCE`</h2> | ||
```javascript | ||
wpt.$eventBus.$on("newWpt", function(payload){}); | ||
wpt.addEventListener(wpt.events.EVENT_CONNECT_SOURCE, function(payload){}); | ||
``` | ||
@@ -52,3 +45,3 @@ | ||
```javascript | ||
wpt.$eventBus.$on("openWpt", function(payload){}); | ||
wpt.addEventListener(wpt.events.EVENT_OPEN_WPT, function(payload){}); | ||
``` | ||
@@ -64,3 +57,3 @@ | ||
```javascript | ||
wpt.$eventBus.$on("saveWpt", function(payload){}); | ||
wpt.addEventListener(wpt.events.EVENT_SAVE_WPT, function(payload){}); | ||
``` | ||
@@ -76,3 +69,3 @@ | ||
```javascript | ||
wpt.$eventBus.$on("drillThrough", function(payload){}); | ||
wpt.addEventListener(wpt.events.EVENT_DRILL_THROUGH, function(payload){}); | ||
``` | ||
@@ -79,0 +72,0 @@ |
@@ -40,3 +40,3 @@ --- | ||
wpt.$eventBus.$emit('setOptions', { | ||
wpt.setOptions({ | ||
localeFilePath: "./lang/", | ||
@@ -271,3 +271,3 @@ locale: "en", | ||
| `uiFlags.reportEditable` | `bool` | 1 | add/rename/remove/change report or not | | ||
| `uiFlags.sourceRefine` | `bool` | 1 | show/hide source refine data | | ||
| `uiFlags.dataRefine` | `bool` | 1 | show/hide source refine data | | ||
| `uiFlags.sourceExportToCsv` | `bool` | 1 | show/hide source "Export to csv" | | ||
@@ -274,0 +274,0 @@ | `uiFlags.sourceExportToExcel` | `bool` | 1 | show/hide source "Export to Excel" | |
@@ -10,11 +10,6 @@ --- | ||
version: "3.0", | ||
view: WptConstants.VIEW_SOURCE, // Default view: 'SOURCE', 'SHEET', 'REPORT' | ||
sources: [], | ||
sheets: [], | ||
reports: [], | ||
activeSourceId: null, | ||
activeSheetId: null, | ||
activeReportId: null, | ||
source: {}, | ||
options: {} | ||
} | ||
``` |
@@ -5,10 +5,14 @@ { | ||
"Msg_ChooseFieldsFirst": "Um einen Bericht zu erstellen, wählen Sie aus der Felder-Liste.", | ||
"Msg_CloseModal": "Schließen und zurückkehren zu Hauptansicht", | ||
"Msg_NewWpt": "Neuen WebPivotTable erstellen", | ||
"Msg_OpenWpt": "WebPivotTable Datei öffnen (.wpt)", | ||
"Msg_SaveWpt": "WebPivotTable speichern", | ||
"Msg_FullScreen": "Vollbild-Modus", | ||
"Msg_NewWptWithSource": "Datenquelle auswählen um neuen WebPivotTable zu erstellen", | ||
"Msg_ShowNavigationPanel": "Navigationsleiste anzeigen", | ||
"Msg_HideNavigationPanel": "Navigationsleiste verbergen", | ||
"Msg_SwitchToPivotGrid": "Switch to Pivot grid", | ||
"Msg_SwitchToPivotChart": "Switch to Pivot Chart", | ||
"Msg_OpenSourceView": "Open Source View", | ||
"Msg_BackToWpt": "Return to WPT", | ||
"Msg_ConnectSource": "Connect New Data Source", | ||
"Msg_OpenWpt": "Open Saved WPT", | ||
"Msg_SaveWpt": "Save WPT", | ||
"Msg_ResetWpt": "Reset WPT", | ||
"Msg_EnterFullScreen": "Vollbild-Modus", | ||
"Msg_ExitFullScreen": "Vollbild-Modus", | ||
"Msg_ShowControlPanel": "Navigationsleiste anzeigen", | ||
"Msg_HideControlPanel": "Navigationsleiste verbergen", | ||
"Msg_NotValidWptFormat": "Das ist keine gültige WebPivotTable Datei.", | ||
@@ -108,7 +112,8 @@ "Err_OLAP_NoDataSource": "Es wurde keine Datenquelle auf diesem Server gefunden: ", | ||
"Lbl_Sheet": "Blatt", | ||
"Lbl_Report": "Bericht", | ||
"Lbl_SourceName": "Quellenname: ", | ||
"Lbl_SheetName": "Blattname", | ||
"Lbl_ReportName": "Berichtsname", | ||
"Lbl_PivotGrid": "Pivot Grid", | ||
"Lbl_PivotChart": "Pivot Chart", | ||
"Lbl_Export": "Export", | ||
"Lbl_RowsPerPage": "/page", | ||
"Lbl_MemoryMode": "Memory Mode", | ||
@@ -360,6 +365,4 @@ "Lbl_CsvFile": "CSV Datei (.csv)", | ||
"Lbl_NegativeNumbers": "Negative Zahl", | ||
"Lbl_NoSpecificFormat": "Kein bestimmtes Format.", | ||
"Lbl_NoSpecificFormat": "Kein bestimmtes Format." | ||
"Lbl_RefineData": "Sauber, zu transformieren , zu verfeinern, die Daten" | ||
} |
{ | ||
"Msg_LeavingPage": "Please save WPT report before you leave the page, otherwise you may lose your work!", | ||
"Msg_LoadDataFirst": "No data source yet, please click top right MenuBar to connect a data source or drag and drop a data source file to here.", | ||
"Msg_LoadDataFirst": "Please drop a csv/excel/wpt file here or select a source from the menu.", | ||
"Msg_ChooseFieldsFirst": "To build a report, choose fields from Fields List.", | ||
"Msg_CloseModal": "Close & return to main view", | ||
"Msg_NewWpt": "Create new WebPivotTable", | ||
"Msg_OpenWpt": "Open WebPivotTable File (.wpt)", | ||
"Msg_SaveWpt": "Save WebPivotTable", | ||
"Msg_FullScreen": "Full Screen Mode", | ||
"Msg_NewWptWithSource": "Select data source to create new WebPivotTable", | ||
"Msg_ShowNavigationPanel": "Show Navigation Panel", | ||
"Msg_HideNavigationPanel": "Hide Navigation Panel", | ||
"Msg_NotValidWptFormat": "Not a valid WebPivotTable file.", | ||
"Msg_SwitchToPivotGrid": "Switch to Pivot grid", | ||
"Msg_SwitchToPivotChart": "Switch to Pivot Chart", | ||
"Msg_BackToWpt": "Return to WPT", | ||
"Msg_ConnectSource": "Connect New Data Source", | ||
"Msg_OpenWpt": "Open Saved WPT", | ||
"Msg_SaveWpt": "Save WPT", | ||
"Msg_ResetWpt": "Reset WPT", | ||
"Msg_EnterFullScreen": "Enter Full Screen", | ||
"Msg_ExitFullScreen": "Exit Full Screen", | ||
"Msg_ShowControlPanel": "Show control Panel", | ||
"Msg_HideControlPanel": "Hide control Panel", | ||
"Msg_NotValidWptFormat": "Not a valid WPT file.", | ||
"Err_OLAP_NoDataSource": "No DataSource found at this Server: ", | ||
@@ -105,9 +108,10 @@ "Err_OLAP_NoCatalog": "No Catalog found at this DataSource: ", | ||
"Lbl_Source": "Source", | ||
"Lbl_Source": "Data Source", | ||
"Lbl_Sheet": "Sheet", | ||
"Lbl_Report": "Report", | ||
"Lbl_SourceName": "Source Name", | ||
"Lbl_SheetName": "Sheet Name", | ||
"Lbl_ReportName": "Report Name", | ||
"Lbl_PivotGrid": "Pivot Grid", | ||
"Lbl_PivotChart": "Pivot Chart", | ||
"Lbl_Export": "Export", | ||
"Lbl_RowsPerPage": "/page", | ||
"Lbl_MemoryMode": "Memory Mode", | ||
@@ -606,5 +610,4 @@ "Lbl_CsvFile": "CSV File (.csv)", | ||
"Lbl_RefineHistory": "History", | ||
"Lbl_ShowAllColumns": "Show all columns", | ||
"Lbl_RefineData": "Clean, transform, refine the data" | ||
"Lbl_ShowAllColumns": "Show all columns" | ||
} |
@@ -5,11 +5,14 @@ { | ||
"Msg_ChooseFieldsFirst": "Para construir un informe, seleccione los campos de campos de lista.", | ||
"Msg_CloseModal": "Close & return to main view", | ||
"Msg_NewWpt": "Create new WebPivotTable", | ||
"Msg_OpenWpt": "Abrir archivo de WebPivotTable (.wpt)", | ||
"Msg_SaveWpt": "Guardar tabla dinámica", | ||
"Msg_FullScreen": "Modo de pantalla completa", | ||
"Msg_NewWptWithSource": "Select data source to create new WebPivotTable", | ||
"Msg_ShowNavigationPanel": "Mostrar lista de campos", | ||
"Msg_HideNavigationPanel": "Ocultar lista de campos", | ||
"Msg_NotValidWptFormat": "No es un archivo válido de WebPivotTable.", | ||
"Msg_SwitchToPivotGrid": "Switch to Pivot grid", | ||
"Msg_SwitchToPivotChart": "Switch to Pivot Chart", | ||
"Msg_BackToWpt": "Return to WPT", | ||
"Msg_ConnectSource": "Connect New Data Source", | ||
"Msg_OpenWpt": "Open Saved WPT", | ||
"Msg_SaveWpt": "Save WPT", | ||
"Msg_ResetWpt": "Reset WPT", | ||
"Msg_EnterFullScreen": "pantalla completa", | ||
"Msg_ExitFullScreen": "pantalla completa", | ||
"Msg_ShowControlPanel": "Mostrar lista de campos", | ||
"Msg_HideControlPanel": "Ocultar lista de campos", | ||
"Msg_NotValidWptFormat": "No es un archivo válido de WPT.", | ||
"Err_OLAP_NoDataSource": "No se ha encontrado ninguna fuente de datos en este servidor: ", | ||
@@ -107,7 +110,8 @@ "Err_OLAP_NoCatalog": "No se ha encontrado ningun catálogo en esta Fuente de datos: ", | ||
"Lbl_Sheet": "Sheet", | ||
"Lbl_Report": "Reporte", | ||
"Lbl_SourceName": "Source Name", | ||
"Lbl_SheetName": "Sheet Name", | ||
"Lbl_ReportName": "Report Name", | ||
"Lbl_PivotGrid": "Pivot Grid", | ||
"Lbl_PivotChart": "Pivot Chart", | ||
"Lbl_Export": "Export", | ||
"Lbl_RowsPerPage": "/page", | ||
"Lbl_MemoryMode": "Memory Mode", | ||
@@ -359,5 +363,3 @@ "Lbl_CsvFile": "Archivo CSV (.csv)", | ||
"Lbl_NegativeNumbers": "Negative Numbers", | ||
"Lbl_NoSpecificFormat": "No specific format.", | ||
"Lbl_RefineData": "Clean, transform, refine the data" | ||
"Lbl_NoSpecificFormat": "No specific format." | ||
} |
@@ -5,11 +5,14 @@ { | ||
"Msg_ChooseFieldsFirst": "Per costruire un report, scegliere i campi dalla Lista Campi.", | ||
"Msg_CloseModal": "Close & return to main view", | ||
"Msg_NewWpt": "Create new WebPivotTable", | ||
"Msg_OpenWpt": "Apri il file WebPivotTable (.wpt)", | ||
"Msg_SaveWpt": "Salva WebPivotTable", | ||
"Msg_FullScreen": "Modo a Tutto Schermo", | ||
"Msg_NewWptWithSource": "Select data source to create new WebPivotTable", | ||
"Msg_ShowNavigationPanel": "Mostra Lista Campi Pivot", | ||
"Msg_HideNavigationPanel": "Nascondi Lista Campi Pivot", | ||
"Msg_NotValidWptFormat": "Non è un file di WebPivotTable valido.", | ||
"Msg_SwitchToPivotGrid": "Switch to Pivot grid", | ||
"Msg_SwitchToPivotChart": "Switch to Pivot Chart", | ||
"Msg_BackToWpt": "Return to WPT", | ||
"Msg_ConnectSource": "Connect New Data Source", | ||
"Msg_OpenWpt": "Open Saved WPT", | ||
"Msg_SaveWpt": "Save WPT", | ||
"Msg_ResetWpt": "Reset WPT", | ||
"Msg_EnterFullScreen": "Tutto Schermo", | ||
"Msg_ExitFullScreen": "Tutto Schermo", | ||
"Msg_ShowControlPanel": "Mostra Lista Campi Pivot", | ||
"Msg_HideControlPanel": "Nascondi Lista Campi Pivot", | ||
"Msg_NotValidWptFormat": "Non è un file di WPT valido.", | ||
"Err_OLAP_NoDataSource": "Nessun DataSource trovato in questo Server: ", | ||
@@ -105,9 +108,10 @@ "Err_OLAP_NoCatalog": "Nessun Catalogo trovato in questo DataSource: ", | ||
"Lbl_Source": "Source", | ||
"Lbl_Source": "Data Source", | ||
"Lbl_Sheet": "Sheet", | ||
"Lbl_Report": "Report", | ||
"Lbl_SourceName": "Source Name", | ||
"Lbl_SheetName": "Sheet Name", | ||
"Lbl_ReportName": "Report Name", | ||
"Lbl_PivotGrid": "Pivot Grid", | ||
"Lbl_PivotChart": "Pivot Chart", | ||
"Lbl_Export": "Export", | ||
"Lbl_RowsPerPage": "/page", | ||
"Lbl_MemoryMode": "Memory Mode", | ||
@@ -360,4 +364,2 @@ "Lbl_CsvFile": "CSV File (.csv)", | ||
"Lbl_NoSpecificFormat": "No specific format.", | ||
"Lbl_RefineData": "Clean, transform, refine the data" | ||
} |
@@ -5,11 +5,14 @@ { | ||
"Msg_ChooseFieldsFirst": "Para construir um relatório, selecione os campos na lista de campos.", | ||
"Msg_CloseModal": "Fechar & retornar para visão principal", | ||
"Msg_NewWpt": "Criar novo WebPivotTable", | ||
"Msg_OpenWpt": "Abrir arquivo WebPivotTable (.wpt)", | ||
"Msg_SaveWpt": "Salvar WebPivotTable", | ||
"Msg_FullScreen": "Modo Tela Cheia", | ||
"Msg_NewWptWithSource": "Selecione a fonte de dados para criar um novo WebPivotTable", | ||
"Msg_ShowNavigationPanel": "Mostar a Lista de Campos do Pivot", | ||
"Msg_HideNavigationPanel": "Esconder a Lista de Campos do Pivot", | ||
"Msg_NotValidWptFormat": "Arquivo WebPivotTable inválido.", | ||
"Msg_SwitchToPivotGrid": "Switch to Pivot grid", | ||
"Msg_SwitchToPivotChart": "Switch to Pivot Chart", | ||
"Msg_BackToWpt": "Return to WPT", | ||
"Msg_ConnectSource": "Connect New Data Source", | ||
"Msg_OpenWpt": "Open Saved WPT", | ||
"Msg_SaveWpt": "Save WPT", | ||
"Msg_ResetWpt": "Reset WPT", | ||
"Msg_EnterFullScreen": "Tela Cheia", | ||
"Msg_ExitFullScreen": "Tela Cheia", | ||
"Msg_ShowControlPanel": "Mostar a Lista de Campos do Pivot", | ||
"Msg_HideControlPanel": "Esconder a Lista de Campos do Pivot", | ||
"Msg_NotValidWptFormat": "Arquivo WPT inválido.", | ||
"Err_OLAP_NoDataSource": "Nenhuma fonte de dados encontrada neste servidor: ", | ||
@@ -108,7 +111,8 @@ "Err_OLAP_NoCatalog": "Nenhum Catálogo encontrado nesta Fonte de Dados: ", | ||
"Lbl_Sheet": "Planilha", | ||
"Lbl_Report": "Relatório", | ||
"Lbl_SourceName": "Nome da Fonte", | ||
"Lbl_SheetName": "Nome da Planilha", | ||
"Lbl_ReportName": "Nome do Relatório", | ||
"Lbl_PivotGrid": "Pivot Grid", | ||
"Lbl_PivotChart": "Pivot Chart", | ||
"Lbl_Export": "Export", | ||
"Lbl_RowsPerPage": "/page", | ||
"Lbl_MemoryMode": "Modo de Memória", | ||
@@ -360,4 +364,2 @@ "Lbl_CsvFile": "Arquivo CSV (.csv)", | ||
"Lbl_NoSpecificFormat": "Sem formato específico.", | ||
"Lbl_RefineData": "Limpar, transformar, refinar os dados" | ||
} |
@@ -5,11 +5,15 @@ { | ||
"Msg_ChooseFieldsFirst": "Bir rapor oluşturmak için , Alanlar Listesi'nde alanları seçin.", | ||
"Msg_CloseModal": "Close & return to main view", | ||
"Msg_NewWpt": "Yeni WebPivotTable oluştur", | ||
"Msg_OpenWpt": "WebPivotTable dosyası aç (.wpt)", | ||
"Msg_SaveWpt": "WebPivotTable' ı kaydet", | ||
"Msg_FullScreen": "Tam Ekran Modu", | ||
"Msg_NewWptWithSource": "Yeni WebPivotTable oluşturmak için veri kaynağı seçin.", | ||
"Msg_ShowNavigationPanel": "Pivot Alan Listesini Göster", | ||
"Msg_HideNavigationPanel": "Pivot Alan Listesini Gizle", | ||
"Msg_NotValidWptFormat": "Geçerli bir WebPivotTable dosyası değil.", | ||
"Msg_SwitchToPivotGrid": "Switch to Pivot grid", | ||
"Msg_SwitchToPivotChart": "Switch to Pivot Chart", | ||
"Msg_BackToWpt": "Return to WPT", | ||
"Msg_ConnectSource": "Connect New Data Source", | ||
"Msg_OpenWpt": "Open Saved WPT", | ||
"Msg_SaveWpt": "Save WPT", | ||
"Msg_ResetWpt": "Reset WPT", | ||
"Msg_EnterFullScreen": "Tam Ekran", | ||
"Msg_ExitFullScreen": "Tam Ekran", | ||
"Msg_ConnectSourceWithSource": "Yeni WPT oluşturmak için veri kaynağı seçin.", | ||
"Msg_ShowControlPanel": "Pivot Alan Listesini Göster", | ||
"Msg_HideControlPanel": "Pivot Alan Listesini Gizle", | ||
"Msg_NotValidWptFormat": "Geçerli bir WPT dosyası değil.", | ||
"Err_OLAP_NoDataSource": "Bu sunucuda hiçbir veri kaynağı bulunamadı: ", | ||
@@ -108,7 +112,8 @@ "Err_OLAP_NoCatalog": "Bu veri kaynağında hiçbir katalog bulunamadı: ", | ||
"Lbl_Sheet": "Sayfa", | ||
"Lbl_Report": "Rapor", | ||
"Lbl_SourceName": "Kaynak Adı", | ||
"Lbl_SheetName": "Sayfa Adı", | ||
"Lbl_ReportName": "Rapor Adı", | ||
"Lbl_PivotGrid": "Pivot Grid", | ||
"Lbl_PivotChart": "Pivot Chart", | ||
"Lbl_Export": "Export", | ||
"Lbl_RowsPerPage": "/page", | ||
"Lbl_MemoryMode": "Hafıza Modu", | ||
@@ -357,5 +362,3 @@ "Lbl_CsvFile": "CSV Dosyası (.csv)", | ||
"Lbl_NegativeNumbers": "Negatif Sayılar", | ||
"Lbl_NoSpecificFormat": "Belirli bir formatı yok.", | ||
"Lbl_RefineData": "Clean, transform, refine the data" | ||
"Lbl_NoSpecificFormat": "Belirli bir formatı yok." | ||
} |
@@ -5,10 +5,13 @@ { | ||
"Msg_ChooseFieldsFirst": "为创建报表,请从字段列表中选取字段", | ||
"Msg_CloseModal": "关闭并返回主视图", | ||
"Msg_NewWpt": "创建新的WEB数据透视表", | ||
"Msg_OpenWpt": "打开WEB数据透视表文件 (.wpt)", | ||
"Msg_SaveWpt": "保存WEB数据透视表", | ||
"Msg_FullScreen": "全屏模式", | ||
"Msg_NewWptWithSource": "选择数据源以创建新的WEB数据透视表", | ||
"Msg_ShowNavigationPanel": "显示导航面板", | ||
"Msg_HideNavigationPanel": "隐藏导航面板", | ||
"Msg_SwitchToPivotGrid": "切换到透视表格", | ||
"Msg_SwitchToPivotChart": "切换到透视图", | ||
"Msg_BackToWpt": "返回WPT", | ||
"Msg_ConnectSource": "连接新的数据源", | ||
"Msg_OpenWpt": "打开保存的WPT", | ||
"Msg_SaveWpt": "保存WPT", | ||
"Msg_ResetWpt": "重置WPT", | ||
"Msg_EnterFullScreen": "进入全屏", | ||
"Msg_ExitFullScreen": "退出全屏", | ||
"Msg_ShowControlPanel": "显示控制面板", | ||
"Msg_HideControlPanel": "隐藏控制面板", | ||
"Msg_NotValidWptFormat": "不是一个有效的WEB数据透视表文件.", | ||
@@ -107,7 +110,8 @@ "Err_OLAP_NoDataSource": "在这个服务器上没有发现数据源: ", | ||
"Lbl_Sheet": "工作薄", | ||
"Lbl_Report": "报表", | ||
"Lbl_SourceName": "数据源名", | ||
"Lbl_SheetName": "工作薄名", | ||
"Lbl_ReportName": "报表名", | ||
"Lbl_PivotGrid": "透视表格", | ||
"Lbl_PivotChart": "透视图", | ||
"Lbl_Export": "输出", | ||
"Lbl_RowsPerPage": "/页", | ||
"Lbl_MemoryMode": "内存模式", | ||
@@ -358,5 +362,3 @@ "Lbl_CsvFile": "CSV文件 (.csv)", | ||
"Lbl_NegativeNumbers": "负数", | ||
"Lbl_NoSpecificFormat": "没有特别格式。", | ||
"Lbl_RefineData": "清洗, 转换, 净化数据" | ||
"Lbl_NoSpecificFormat": "没有特别格式。" | ||
} |
@@ -0,0 +0,0 @@ /** |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
3098533
39
13553