webpivottable
Advanced tools
Comparing version 6.0.0-beta.6 to 6.0.0-beta.7
{ | ||
"name": "webpivottable", | ||
"version": "6.0.0-beta.6", | ||
"version": "6.0.0-beta.7", | ||
"description": "A pure javascript pivot table and pivot chart component.", | ||
@@ -5,0 +5,0 @@ "author": { |
@@ -12,3 +12,3 @@ --- | ||
*WebPivotTable APIs are all asynchorize function and return as a Promise. | ||
*WebPivotTable APIs are all asynchronous function and return as a Promise. | ||
@@ -21,17 +21,10 @@ Below is standard syntax to call APIs: | ||
wpt[apiName](params1, params2, ..., paramsn) | ||
.then( function(response) {}) | ||
.then( function(response) {}, function(error) {}) | ||
; | ||
``` | ||
First, we need get WebPivotTable object, then call $emit method of this object's $eventBus props, | ||
passing with API name together with a list of params. | ||
First, we need get WebPivotTable object, then call api method passing with a list of params. | ||
Since event bus is asynchronous, we should pass callbacks as params if we want to add some logic when API call succeed | ||
with response or failed with error.<br><br> | ||
For asynchronous api, we can chain a then function with success callback and error callback.<br><br> | ||
<div class="Alert Alert--info"> | ||
Except "$emit" method, "$eventBus" has an "$on" method to be used to listen to some events emit from WebPivotTable. | ||
See [Events](/doc/events) for more details. | ||
</div> | ||
@@ -61,6 +54,6 @@ <h2 id="set-locale">`setLocale`</h2> | ||
<h2 id="set-data-array"> `setDataArray` </h2> | ||
<h2 id="set-data-array"> `setWptFromDataArray` </h2> | ||
```javascript | ||
wpt.setDataArray(attrArray, dataArray, dataUrl); | ||
wpt.setWptFromDataArray(attrArray, dataArray, url, type); | ||
``` | ||
@@ -71,3 +64,4 @@ | Param Name | Param Type | Optional | Description | | ||
| `dataArray` | `array` | no | Array of data rows, each row is also an array of values. example: [["dep1", "area1", 1000, ...], ..., ["dep6", "area2", 2000,...]] | | ||
| `dataUrl` | `string` | yes | Url for track the source data, This is just for tracking, pass "" if not know or no need. | | ||
| `url` | `string` | yes | Url for track the source data, This is just for tracking, pass "" if not know or no need. | | ||
| `type` | `string` | yes | type for track the source data, This is just for tracking, pass "" if not know or no need. | | ||
@@ -78,3 +72,3 @@ Load source data from data array | ||
- This is major API to load source data into WebPivotTable, it was | ||
used by `setCsvUrl` and `setCsvRawData` internally. Actually, developers | ||
used by `setWptFromCsvUrl` and `setWptFromExcelUrl` internally. Actually, developers | ||
can load any kinds of data from any other resources, like SQL databases, | ||
@@ -84,11 +78,11 @@ and format them as attrArray and dataArray, then load them into WebPivotTable. | ||
<h2 id="set-csv-url"> `setCsvUrl` </h2> | ||
<h2 id="set-csv-url"> `setWptFromCsvUrl` </h2> | ||
```javascript | ||
wpt.setCsvUrl(csvUrl, separator); | ||
wpt.setWptFromCsvUrl(url, delimiter); | ||
``` | ||
| Param Name | Param Type | Optional | Description | | ||
|------------------|---------------|------------|----------------------------------------------------------------------------------------------------------------------------------------| | ||
| `csvUrl` | `string` | no | URL String of CSV file | | ||
| `separator` | `string` | yes | separator char for CSV file, default is "," | | ||
| `url` | `string` | no | URL String of CSV file | | ||
| `delimiter` | `string` | yes | separator char for CSV file, default is "," | | ||
@@ -98,69 +92,69 @@ Load source data from CSV file URL | ||
<h2 id="set-excel-url"> `setWptFromExcelUrl` </h2> | ||
<h2 id="set-wpt-string"> `setWptString` </h2> | ||
```javascript | ||
wpt.setWptString(wptString); | ||
wpt.setWptFromExcelUrl(url, delimiter); | ||
``` | ||
| Param Name | Param Type | Optional | Description | | ||
|------------------|---------------|------------|----------------------------------------------------------------------------------------------------------------------------------------| | ||
| `wptString` | `string` | no | pre-saved WPT format string | | ||
| `url` | `string` | no | URL String of CSV file | | ||
| `delimiter` | `string` | yes | separator char for CSV file, default is "," | | ||
Load WPT format String | ||
Load source data from excel file URL | ||
<h2 id="set-web-service"> `setWptFromWebService` </h2> | ||
<h2 id="set-wpt-object"> `setWptObject` </h2> | ||
```javascript | ||
wpt.setWptObject(wptObject); | ||
wpt.setWptFromWebService(url); | ||
``` | ||
| Param Name | Param Type | Optional | Description | | ||
|------------------|---------------|------------|----------------------------------------------------------------------------------------------------------------------------------------| | ||
| `wptObject` | `object` | no | pre-saved WPT format JSON object | | ||
| `url` | `string` | no | URL String of web service endpoint | | ||
Load WPT format JSON Oject | ||
Load source data from web service URL | ||
<h2 id="set-gss-url"> `setWptFromGoogleSpreadSheet` </h2> | ||
<h2 id="set-wpt"> `setWpt` </h2> | ||
```javascript | ||
wpt.setWpt(wpt); | ||
wpt.setWptFromGoogleSpreadSheet(url); | ||
``` | ||
| Param Name | Param Type | Optional | Description | | ||
|------------------|---------------|------------|----------------------------------------------------------------------------------------------------------------------------------------| | ||
| `wpt` | `string\object` | no | pre-saved WPT format String or JSON object | | ||
| `url` | `string` | no | URL String of google spread sheet | | ||
Load WPT format String or JSON Object with updated first source data | ||
Load source data from google spreadsheet URL | ||
<h2 id="generate-wpt-string"> `generateWptString` </h2> | ||
<h2 id="set-wpt-string"> `setWptFromWptUrl` </h2> | ||
```javascript | ||
wpt.generateWptString(ignoreData); | ||
wpt.setWptFromWptUrl(url); | ||
``` | ||
| Param Name | Param Type | Optional | Description | | ||
|------------------|---------------|------------|----------------------------------------------------------------------------------------------------------------------------------------| | ||
| `ignoreData` | `bool` | no | if equal to true, ignore data and fields, only save options and controls | | ||
| `url` | `string` | no | Url of wpt file | | ||
Generate WPT format string | ||
Load WPT format String | ||
<h2 id="generate-wpt-json"> `generateWptJSON` </h2> | ||
<h2 id="set-wpt"> `setWpt` </h2> | ||
```javascript | ||
wpt.generateWptJSON(ignoreData); | ||
wpt.setWpt(wpt); | ||
``` | ||
| Param Name | Param Type | Optional | Description | | ||
|------------------|---------------|------------|----------------------------------------------------------------------------------------------------------------------------------------| | ||
| `ignoreData` | `bool` | no | if equal to true, ignore data and fields, only save options and controls | | ||
| `wpt` | `string\object` | no | pre-saved WPT format String or JSON object | | ||
Generate WPT format JSON object | ||
Load WPT format String or JSON Object with updated first source data | ||
<h2 id="set-olap-cube"> `setOlapCube` </h2> | ||
<h2 id="set-olap-cube"> `setWptFromOlapCube` </h2> | ||
```javascript | ||
wpt.setOlapCube(olapData); | ||
wpt.setWptFromOlapCube(olapData); | ||
``` | ||
@@ -182,24 +176,40 @@ | Param Name | Param Type | Optional | Description | | ||
<h2 id="set-web-service-data-url"> `setWebServiceDataUrl` </h2> | ||
<h2 id="generate-wpt-string"> `generateWptString` </h2> | ||
```javascript | ||
wpt.setWebServiceDataUrl(wsDataUrl); | ||
wpt.generateWptString(ignoreData); | ||
``` | ||
| Param Name | Param Type | Optional | Description | | ||
|------------------|---------------|------------|----------------------------------------------------------------------------------------------------------------------------------------| | ||
| `wsDataUrl` | `string` | no | URL String of Web Service Data URL | | ||
| `ignoreData` | `bool` | no | if equal to true, ignore data and fields, only save options and controls | | ||
Load source data from WebService URL and create a new WPT with a new Sheet | ||
Generate WPT format string | ||
Notes: | ||
- The Web Service should return a JSON object | ||
<h2 id="generate-wpt-json"> `generateWptJSON` </h2> | ||
```javascript | ||
wpt.generateWptJSON(ignoreData); | ||
``` | ||
{ | ||
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. | ||
| Param Name | Param Type | Optional | Description | | ||
|------------------|---------------|------------|----------------------------------------------------------------------------------------------------------------------------------------| | ||
| `ignoreData` | `bool` | no | if equal to true, ignore data and fields, only save options and controls | | ||
Generate WPT format JSON object | ||
<h2 id="set-source-object"> `setSourceObject` </h2> | ||
```javascript | ||
wpt.setSourceObject(source); | ||
``` | ||
| Param Name | Param Type | Optional | Description | | ||
|------------------|---------------|------------|----------------------------------------------------------------------------------------------------------------------------------------| | ||
| `source` | `object` | no | use external object as data source | | ||
<h2 id="get-source-object"> `getSourceObject` </h2> | ||
```javascript | ||
wpt.getSourceObject(); | ||
``` | ||
return Source object |
@@ -7,7 +7,2 @@ --- | ||
<div class="Alert Alert--orange"> | ||
Events are available in Pro edition only. | ||
</div> | ||
<h2 id="how-to-listen-to-events"> How to listen to events? </h2> | ||
@@ -23,12 +18,6 @@ | ||
<div class="Alert Alert--orange"> | ||
In order to listen to events, we need enable corresponding custom handler first, | ||
see [customHandlers Option](/doc/options#custom-handlers) for more details. | ||
</div> | ||
<h2 id="new-wpt">`CONNECT_SOURCE`</h2> | ||
<h2 id="new-wpt">`EVENT_CONNECT_SOURCE`</h2> | ||
```javascript | ||
wpt.addEventListener(wpt.events.EVENT_CONNECT_SOURCE, function(payload){}); | ||
wpt.addEventListener(wpt.Constants.eventType.CONNECT_SOURCE, function(source){}); | ||
``` | ||
@@ -38,3 +27,3 @@ | ||
|------------------|---------------|------------|-----------------------------| | ||
|`payload` | `object` | no | payload object | | ||
|`source` | `object` | no | payload object | | ||
@@ -45,3 +34,3 @@ | ||
```javascript | ||
wpt.addEventListener(wpt.events.EVENT_OPEN_WPT, function(payload){}); | ||
wpt.addEventListener(wpt.Constants.eventType.OPEN_WPT, function(payload){}); | ||
``` | ||
@@ -57,3 +46,3 @@ | ||
```javascript | ||
wpt.addEventListener(wpt.events.EVENT_SAVE_WPT, function(payload){}); | ||
wpt.addEventListener(wpt.Constants.eventType.SAVE_WPT, function(payload){}); | ||
``` | ||
@@ -69,3 +58,3 @@ | ||
```javascript | ||
wpt.addEventListener(wpt.events.EVENT_DRILL_THROUGH, function(payload){}); | ||
wpt.addEventListener(wpt.Constants.eventType.DRILL_THROUGH, function(payload){}); | ||
``` | ||
@@ -72,0 +61,0 @@ |
@@ -8,3 +8,3 @@ [ | ||
"contents": [ | ||
{ "to": "#what-39-s-pivot-table-", "name": "What's Pivot Table?" }, | ||
{ "to": "#whats-pivot-table-", "name": "What's Pivot Table?" }, | ||
{ "to": "#pivot-table-examples", "name": "Pivot Table Examples" }, | ||
@@ -11,0 +11,0 @@ { "to": "#history-of-pivot-table", "name": "History of Pivot Table" } |
@@ -49,6 +49,2 @@ --- | ||
<div class="Alert Alert--orange"> | ||
`setOption` API is one of serveral APIs which are availabe on both Free edition and Pro edition. | ||
</div> | ||
@@ -399,3 +395,3 @@ <h2 id="leave-page-warning"> `leavePageWarning` </h2> | ||
<h2 id="custom-handlers"> `customHandlers` <span class="Alert Alert--orange"> Pro edition only.</span> </h2> | ||
<h2 id="custom-handlers"> `customHandlers` </h2> | ||
@@ -409,93 +405,5 @@ | Option | Type | Default | Description | | ||
This custom Handlers only available in Pro Edition. | ||
These options only enable/disable custom handlers, the real custom handler should be passing in event listener. | ||
Please see [How to listen To Events](/doc/events#how-to-listen-to-events) for more details. | ||
<h2 id="custom-buttons"> `customButtons` <span class="Alert Alert--orange"> Pro edition only.</span> </h2> | ||
| Option | Type | Default | Description | | ||
|----------------------|----------|----------|-----------------------------| | ||
| `customButtons` | `array` | [] | Add Custom buttons on top bar | | ||
Each customButton is an object: | ||
| Property | Type | value | Description | | ||
|---------------------|-----------|-----------------------|--------------------------------| | ||
| position | `string` | `left, center, right` | Position on top bar | | ||
| type | `string` | `button, select` | button type | | ||
| label | `string` | '' | label of `button` or placeholder of `select` , if labelTranslation is true, then this label will be come from language files | | ||
| labelTranslation | `bool` | 0 | whether label come from language files | | ||
| title | `string` | '' | title of `button` (not apply to `select`), if titleTranslation is true, then this title will be come from language files | | ||
| titleTranslation | `bool` | 0 | whether title come from language files | | ||
| style | `string` | '' | custom style for button | | ||
| eventName | `string` | '' | Event name for onclick (`button`) or onchange (`select`) | | ||
| value | `string` | '' | value for `select` | | ||
| options | `array` | [] | options for `select` | | ||
``` | ||
[ | ||
{ | ||
position: "left", | ||
type: "button", | ||
label: "Button1", | ||
labelTranslation: 0, | ||
title: "Custom button 1", | ||
titleTranslation: 0, | ||
style: "color: #000; font-weight: 300;", | ||
eventName: "customButton1" | ||
}, | ||
{ | ||
position: "center", | ||
type: "button", | ||
label: "Button2", | ||
labelTranslation: 0, | ||
title: "", | ||
titleTranslation: 0, | ||
style: "color: #000; font-weight: 300;", | ||
eventName: "customButton2" | ||
}, | ||
{ | ||
position: "right", | ||
type: "select", | ||
label: "Please select", | ||
labelTranslation: 0, | ||
style: "width:200px; margin-top: 1px;", | ||
value: "value2", | ||
options: [{ | ||
label: "label1", value: "value1" | ||
}, { | ||
label: "label2", value: "value2" | ||
}, { | ||
label: "label3", value: "value3" | ||
}], | ||
eventName: "customButton3" | ||
} | ||
] | ||
``` | ||
This options only add button/select to top bar, the click handler for button and change handler for select | ||
should be passing in event listener. | ||
Please see [How to listen To Events](/doc/events#how-to-listen-to-events) for more details. | ||
For example: | ||
``` | ||
wpt.$eventBus.$on('customButton1', function(payload){ | ||
console.log("custom Button 1 click", payload); | ||
}); | ||
wpt.$eventBus.$on('customButton2', function(payload){ | ||
console.log("custom Button 2 click", payload); | ||
}); | ||
wpt.$eventBus.$on('customButton3', function(payload){ | ||
console.log("custom Button 3 (select) changed", payload); | ||
}); | ||
``` | ||
<h2 id="filestack"> `filestack` </h2> | ||
@@ -511,100 +419,2 @@ | ||
<h2 id="source"> `source` </h2> | ||
``` | ||
source: { // Default options for each new source | ||
navigationPanel: { // Navigation Panel | ||
show: 1, // show/hide: 1/0 | ||
position:'right', // position: 'left', 'top', 'right', 'bottom' | ||
stacked: 0, // stack fields area or not: 1/0 | ||
width: 300, // width, only for left and right | ||
height: 200 // height, only for top and bottom | ||
}, | ||
fieldsListFilter: "", | ||
fieldsListSort: 0, // -1 descend, 1- ascend, 0-no sort | ||
grid: { | ||
cellWidth: 120, | ||
cellHeight: 21 | ||
} | ||
} | ||
``` | ||
<h2 id="report"> `report` </h2> | ||
``` | ||
report: { // Default options for each new report | ||
navigationPanel: { // Navigation Panel | ||
show: 1, // show/hide: 1/0 | ||
position:'right', // position: 'left', 'top', 'right', 'bottom' | ||
stacked: 0, // stack fields area or not: 1/0 | ||
width: 300, // width, only for left and right | ||
height: 200 // height, only for top and bottom | ||
}, | ||
width: 1000, | ||
header: { | ||
width: { | ||
value: 100, | ||
measure: "%" // %, px, | ||
}, | ||
height: { | ||
auto: true, | ||
value: 100, | ||
measure: "px" | ||
}, | ||
padding: { | ||
top: 10, | ||
right: 10, | ||
bottom: 10, | ||
left: 10 | ||
}, | ||
title: { | ||
enabled: true, | ||
align: 'center', // left, center, right | ||
margin: { | ||
top: 10, | ||
right: 10, | ||
bottom: 10, | ||
left: 10 | ||
}, | ||
fontSize: 28, | ||
fontWeight: "bold" | ||
} | ||
}, | ||
component: { | ||
width: { | ||
value: 50, | ||
measure: "%" // %, px, | ||
}, | ||
height: { | ||
auto: true, | ||
value: 300, | ||
measure: "px" | ||
}, | ||
title: { | ||
enabled: true, | ||
align: 'center', // left, center, right | ||
margin: { | ||
top: 10, | ||
right: 10, | ||
bottom: 10, | ||
left: 10 | ||
}, | ||
fontSize: 24, | ||
fontWeight: "bold" | ||
}, | ||
content:{ | ||
align: 'center', // left, center, right | ||
margin: { | ||
top: 10, | ||
right: 10, | ||
bottom: 10, | ||
left: 10 | ||
} | ||
} | ||
} | ||
}, | ||
``` | ||
<h2 id="sheet"> `sheet` </h2> | ||
@@ -611,0 +421,0 @@ |
@@ -10,5 +10,2 @@ --- | ||
There are two editions of WebPivotTable: Free edition and Pro edition. | ||
Free edition has almost the same functionalities as Pro edition except that Free edition does not provide some [APIs](/doc/apis). | ||
## Installation | ||
@@ -74,3 +71,3 @@ | ||
```html | ||
<script type="text/javascript" src="./dist/webpivottable.js"></script> | ||
<script type="text/javascript" src="./dist/wpt.js"></script> | ||
``` | ||
@@ -106,3 +103,3 @@ | ||
<script type="text/javascript" src="./dist/webpivottable.js"></script> | ||
<script type="text/javascript" src="./dist/wpt.js"></script> | ||
@@ -109,0 +106,0 @@ </head> |
@@ -6,2 +6,12 @@ --- | ||
## Version 6.0.0 | ||
Released on April 28th, 2018 | ||
Version 6.0.0 (V6) is a new redesign of WebPivotTable. | ||
List below are outstanding improvements of V6 compare to previous version V5: | ||
## Version 5.0.0 | ||
@@ -8,0 +18,0 @@ Released on April 28th, 2018 |
@@ -9,3 +9,3 @@ --- | ||
format: "WPT", | ||
version: "3.0", | ||
version: "4.0", | ||
source: {}, | ||
@@ -12,0 +12,0 @@ options: {} |
{ | ||
"Msg_LeavingPage": "Bitte den WPT-Bericht vor verlassen speichern. Nicht gespeicherte Daten gehen verloren!", | ||
"Msg_LoadDataFirst": "Drop a csv/excel/wpt file here or", | ||
"Msg_ChooseFieldsFirst": "Um einen Bericht zu erstellen, wählen Sie aus der Felder-Liste.", | ||
"Msg_LoadSourceInstruction": "Drop a csv/excel/wpt file here or", | ||
"Msg_PivotInstruction": "Um einen Bericht zu erstellen, wählen Sie aus der Felder-Liste.", | ||
"Msg_SwitchToPivotGrid": "Switch to Pivot grid", | ||
@@ -18,5 +18,2 @@ "Msg_SwitchToPivotChart": "Switch to Pivot Chart", | ||
"Msg_NotValidWptFormat": "Das ist keine gültige WebPivotTable Datei.", | ||
"Msg_OLAP_NoDataSource": "Es wurde keine Datenquelle auf diesem Server gefunden: ", | ||
"Msg_OLAP_NoCatalog": "Es wurde kein Catalog für diese Datenquelle gefunden: ", | ||
"Msg_OLAP_NoDimension": "Es wurde keine Dimension für den Cube gefunden: ", | ||
@@ -26,10 +23,7 @@ "Msg_InputFileUrl": "Bitte URL für die Datei eingeben.", | ||
"Msg_NoDataLoaded": "Keine Daten geladen", | ||
"Msg_DataLoaded": "Daten erfolgreich geladen", | ||
"Msg_InputPublicSpreadsheetUrl": "Bitte Google Spreadsheet URL eingeben.", | ||
"Msg_InputGSStUrl": "Bitte Google Spreadsheet URL.", | ||
"Msg_InputWebServiceUrl": "Bitte geben Sie eine Web-Service-URL ein.", | ||
"Msg_LoadingGSSData": "Google Spreadsheet Daten werden geladen ", | ||
"Msg_InvalidData": "No data or invalid data", | ||
"Msg_TooManyRows": "Too many rows which more than supported maximum rows", | ||
"Msg_InputXmlaServerUrl": "Bitte XMLA Server URL eingeben.", | ||
"Msg_LoadingWSData": "Laden von Daten aus Web-Service", | ||
"Msg_WrongWSData": "Die zurückgelieferten Daten sind nicht kompatibel. ", | ||
@@ -42,6 +36,2 @@ "Msg_DiscoveringDataSources": "Entdecken datasources: ", | ||
"Msg_LoadingCubeData": "OLAP-Cube Daten werden geladen ", | ||
"Msg_DataSourcesLoaded": "DataSources loaded", | ||
"Msg_CatalogsLoaded": "Catalogs loaded", | ||
"Msg_CubesLoaded": "Cubes loaded", | ||
"Msg_CubeDataLoaded": "Cube data loaded", | ||
"Msg_SelectDataSource": "Please select a data source", | ||
@@ -53,8 +43,4 @@ "Msg_SelectCatalog": "Please select a catalog", | ||
"Msg_GeneratingPivotData": "Generating pivot data...", | ||
"Msg_PivotDataGenerated": "Pivot data generated.", | ||
"Msg_DrillThroughDataRetrieved": "Drill through data retrieved.", | ||
"Msg_ManuallyInclude": "Please manually pickup labels which should be included", | ||
"Msg_ManuallyExclude": "Please manually pickup labels which should be excluded", | ||
"Msg_RunMdxStatement": "Diese MDX-Anweisung auf dem OLAP-Cube ausführen", | ||
"Msg_FormatExpression": "You can use any validate javascript expression in formula.", | ||
@@ -108,3 +94,2 @@ | ||
"Lbl_Source": "Quelle", | ||
"Lbl_Sheet": "Blatt", | ||
"Lbl_PivotGrid": "Pivot Grid", | ||
@@ -123,3 +108,2 @@ "Lbl_PivotChart": "Pivot Chart", | ||
"Lbl_WebServiceUrl": "Web-Service-URL", | ||
"Lbl_FileContent": "File Content", | ||
"Lbl_FileName": "Dateiname", | ||
@@ -130,10 +114,8 @@ "Lbl_IgnoreData": "Nur Pivotoptionen speichern und die Daten nicht speichern.", | ||
"Lbl_SelectLocalFile": "Select a local file", | ||
"Lbl_LocalDrive": "lokale Datei", | ||
"Lbl_EnterFileUrl": "Datei URL:", | ||
"Lbl_EnterWptUrl": "WPT Datei URL:", | ||
"Lbl_Samples": "Proben", | ||
"Lbl_PublicSpreadsheetUrl": "Öffentliche Spreadsheet URL:", | ||
"Lbl_GSSUrl": "Öffentliche Spreadsheet URL:", | ||
"Lbl_XmlaServerUrl": "XMLA Server URL:", | ||
"Lbl_Delimiter": "Trennzeichen", | ||
"Lbl_ExcelWorkbook": "Excel Workbook", | ||
"Lbl_DataSource": "Datenquelle: ", | ||
@@ -160,7 +142,2 @@ "Lbl_Catalog": "Catalog: ", | ||
"Lbl_ShowSubtotalColumns": "Zwischensumme Spalten", | ||
"Lbl_SwitchGridChart": "Tabelle & Diagramm tauschen", | ||
"Lbl_TileHorizontal": "Horizontal anordnen", | ||
"Lbl_TileVertical": "Vertikal anordnen", | ||
"Lbl_GridOnly": "Nur die Tabelle anzeigen", | ||
"Lbl_ChartOnly": "Nur das Diagramm anzeigen", | ||
@@ -202,3 +179,2 @@ "Lbl_SwapAxis": "Zeilen und Spalten vertauschen", | ||
"Lbl_ThousandsSep": "Tausendertrennzeichen", | ||
"Lbl_DrillThroughMaxRows": "Standard-OLAP-Cube Drill Through maximale Zeilenanzahl:", | ||
"Lbl_ClickToDrillThrough": "Für DrillThrough klicken.", | ||
@@ -345,4 +321,2 @@ "Lbl_DoubleClickToDrillThrough": "Für DrillThrough klicken doppelklicken.", | ||
"Lbl_ManuallyExclude": "Manually exclude", | ||
"Lbl_Grid": "Grid", | ||
"Lbl_Chart": "Chart", | ||
"Lbl_SelectAll": "Alle", | ||
@@ -349,0 +323,0 @@ "Lbl_SelectNone": "Keine", |
{ | ||
"Msg_LeavingPage": "Please save WPT report before you leave the page, otherwise you may lose your work!", | ||
"Msg_LoadDataFirst": "Drop a csv/excel/wpt file here or", | ||
"Msg_ChooseFieldsFirst": "To build a report, choose fields from Fields List.", | ||
"Msg_LoadSourceInstruction": "Drop a csv/excel/wpt file here or", | ||
"Msg_PivotInstruction": "To build a report, choose fields from Fields List.", | ||
"Msg_SwitchToPivotGrid": "Switch to Pivot grid", | ||
@@ -17,5 +17,2 @@ "Msg_SwitchToPivotChart": "Switch to Pivot Chart", | ||
"Msg_NotValidWptFormat": "Not a valid WPT file.", | ||
"Msg_OLAP_NoDataSource": "No DataSource found at this Server: ", | ||
"Msg_OLAP_NoCatalog": "No Catalog found at this DataSource: ", | ||
"Msg_OLAP_NoDimension": "No Dimension found at this Cube: ", | ||
@@ -25,10 +22,7 @@ "Msg_InputFileUrl": "Please input File URL.", | ||
"Msg_NoDataLoaded": "No data loaded", | ||
"Msg_DataLoaded": "Data loaded successfully", | ||
"Msg_InputPublicSpreadsheetUrl": "Please input public google spreadsheet URL.", | ||
"Msg_InputGSStUrl": "Please input public google spreadsheet URL.", | ||
"Msg_InputWebServiceUrl": "Please input web service URL.", | ||
"Msg_LoadingGSSData": "Loading Google spreadsheet data ", | ||
"Msg_InvalidData": "No data or invalid data", | ||
"Msg_TooManyRows": "Too many rows which more than supported maximum rows", | ||
"Msg_InputXmlaServerUrl": "Please input XMLA Server URL.", | ||
"Msg_LoadingWSData": "Loading data from web service", | ||
"Msg_WrongWSData": "Return data is not compatiable. ", | ||
@@ -41,6 +35,2 @@ "Msg_DiscoveringDataSources": "Discovering datasources: ", | ||
"Msg_LoadingCubeData": "Loading OLAP cube data ", | ||
"Msg_DataSourcesLoaded": "DataSources loaded", | ||
"Msg_CatalogsLoaded": "Catalogs loaded", | ||
"Msg_CubesLoaded": "Cubes loaded", | ||
"Msg_CubeDataLoaded": "Cube data loaded", | ||
"Msg_SelectDataSource": "Please select a data source", | ||
@@ -52,8 +42,4 @@ "Msg_SelectCatalog": "Please select a catalog", | ||
"Msg_GeneratingPivotData": "Generating pivot data...", | ||
"Msg_PivotDataGenerated": "Pivot data generated.", | ||
"Msg_DrillThroughDataRetrieved": "Drill through data retrieved.", | ||
"Msg_ManuallyInclude": "Please manually pickup labels which should be included", | ||
"Msg_ManuallyExclude": "Please manually pickup labels which should be excluded", | ||
"Msg_RunMdxStatement": "Execuate this MDX statement on OLAP Cube", | ||
"Msg_FormatExpression": "You can use any validate javascript expression in formula.", | ||
@@ -107,3 +93,2 @@ | ||
"Lbl_Source": "Data Source", | ||
"Lbl_Sheet": "Sheet", | ||
"Lbl_PivotGrid": "Pivot Grid", | ||
@@ -122,3 +107,2 @@ "Lbl_PivotChart": "Pivot Chart", | ||
"Lbl_WebServiceUrl": "Web Service URL", | ||
"Lbl_FileContent": "File Content", | ||
"Lbl_FileName": "File Name", | ||
@@ -129,10 +113,8 @@ "Lbl_IgnoreData": "Don't save data, save pivot options only.", | ||
"Lbl_SelectLocalFile": "Select a local file", | ||
"Lbl_LocalDrive": "Local File", | ||
"Lbl_EnterFileUrl": "File URL:", | ||
"Lbl_EnterWptUrl": "WPT file URL:", | ||
"Lbl_Samples": "Samples", | ||
"Lbl_PublicSpreadsheetUrl": "Public Spreadsheet URL:", | ||
"Lbl_GSSUrl": "Public Spreadsheet URL:", | ||
"Lbl_XmlaServerUrl": "XMLA Server URL:", | ||
"Lbl_Delimiter": "Delimiter", | ||
"Lbl_ExcelWorkbook": "Excel Workbook", | ||
"Lbl_DataSource": "DataSource: ", | ||
@@ -159,7 +141,2 @@ "Lbl_Catalog": "Catalog: ", | ||
"Lbl_ShowSubtotalColumns": "Subtotal Columns", | ||
"Lbl_SwitchGridChart": "Switch Grid & Chart", | ||
"Lbl_TileHorizontal": "Tile Horizontal", | ||
"Lbl_TileVertical": "Tile Vertical", | ||
"Lbl_GridOnly": "Show Grid Only", | ||
"Lbl_ChartOnly": "Show Chart Only", | ||
@@ -201,3 +178,2 @@ "Lbl_SwapAxis": "Swap Rows and Columns", | ||
"Lbl_ThousandsSep": "Thousands Separator", | ||
"Lbl_DrillThroughMaxRows": "Default Olap Cube Drill Through Max Rows:", | ||
"Lbl_ClickToDrillThrough": "Click to drill through.", | ||
@@ -344,4 +320,2 @@ "Lbl_DoubleClickToDrillThrough": "DoubleClick to drill through.", | ||
"Lbl_ManuallyExclude": "Manually exclude", | ||
"Lbl_Grid": "Grid", | ||
"Lbl_Chart": "Chart", | ||
"Lbl_SelectAll": "All", | ||
@@ -353,251 +327,4 @@ "Lbl_SelectNone": "None", | ||
"Lbl_NegativeNumbers": "Negative Numbers", | ||
"Lbl_NoSpecificFormat": "No specific format.", | ||
"Lbl_NoSpecificFormat": "No specific format." | ||
"Msg_SortsInstruction": "Sort selected subsets of your data. Click sort menu at the top of each data column to enter into sort setting.", | ||
"source.all": "All", | ||
"source.blank": "Blank", | ||
"source.columns": "Columns", | ||
"source.columns.show.all": "Show all columns", | ||
"source.dialog.after.split": "After Splitting", | ||
"source.dialog.before.value": "before the cell's value", | ||
"source.dialog.by.field.lengths": "by field lengths", | ||
"source.dialog.by.separator": "by separator", | ||
"source.dialog.cannot.same": "If specified, the note column cannot be the same as the key column or the value column.", | ||
"source.dialog.char.encoding": "Character encoding", | ||
"source.dialog.column.at.most": "columns at most (leave blank for no limit)", | ||
"source.dialog.contain.names": "(containing original columns' names)", | ||
"source.dialog.contain.values": "(containing original cells' values)", | ||
"source.dialog.content": "Content", | ||
"source.dialog.drag.column": "Drag columns to re-order", | ||
"source.dialog.drop.column": "Drop columns here to remove", | ||
"source.dialog.enter.separator": "Enter separator to use between values", | ||
"source.dialog.error": "Error", | ||
"source.dialog.expression": "Expression", | ||
"source.dialog.fill.other": "Fill down in other columns", | ||
"source.dialog.followed.by": "followed by", | ||
"source.dialog.from.column": "From Column", | ||
"source.dialog.help": "Help", | ||
"source.dialog.history": "History", | ||
"source.dialog.how.many.rows": "How many rows to transpose?", | ||
"source.dialog.how.split": "How to Split Column", | ||
"source.dialog.ignore.blank": "Ignore blank cells", | ||
"source.dialog.ignore.facets": "Ignore facets and filters and export all rows", | ||
"source.dialog.internal.error": "Internal error", | ||
"source.dialog.key.column": "Key Column", | ||
"source.dialog.language": "Language", | ||
"source.dialog.last.column": "last column", | ||
"source.dialog.line.separator": "Line separator", | ||
"source.dialog.list.int": "List of integers separated by commas, e.g., 5, 7, 15", | ||
"source.dialog.milli": "milliseconds", | ||
"source.dialog.no.syntax.error": "No syntax error", | ||
"source.dialog.note.column": "Note Column (optional)", | ||
"source.dialog.one.column": "One column", | ||
"source.dialog.out.col.header": "Output column headers", | ||
"source.dialog.out.empty.row": "Output empty rows (ie all cells null)", | ||
"source.dialog.prepend.name": "prepend the original column's name to each cell", | ||
"source.dialog.preview": "Preview", | ||
"source.dialog.re.transform": "Re-transform up to", | ||
"source.dialog.regular.expression": "regular expression", | ||
"source.dialog.remove.column": "Remove this column", | ||
"source.dialog.select.column.value": "Please select one key column and one value column that are different from one another.", | ||
"source.dialog.separator": "Separator", | ||
"source.dialog.split.into": "Split into", | ||
"source.dialog.starred": "Starred", | ||
"source.dialog.throttle.delay": "Throttle delay", | ||
"source.dialog.times.change": "times until no change", | ||
"source.dialog.to.column": "To Column", | ||
"source.dialog.transpose.into": "Transpose into", | ||
"source.dialog.two.new.columns": "Two new columns", | ||
"source.dialog.url.fetch": "Formulate the URLs to fetch:", | ||
"source.dialog.value.column": "Value Column", | ||
"source.dialog.what.separator": "What separator currently separates the values?", | ||
"source.edit.apply": "Apply", | ||
"source.edit.apply.to.all": "Apply to All Identical Cells", | ||
"source.error": "Error", | ||
"source.export.data": "Export data", | ||
"source.filtered.total.rows": "{filtered} matching rows ({total} total)", | ||
"source.filters": "Filters", | ||
"source.filters.blank": "Blank", | ||
"source.filters.case.sensitive": "Case sensitive", | ||
"source.filters.change": "Change", | ||
"source.filters.cluster": "Cluster", | ||
"source.filters.count": "Count", | ||
"source.filters.count.choices": "{count} choices", | ||
"source.filters.edit": "Edit", | ||
"source.filters.edit.based.column": "Edit facet's expression based on column: {column}", | ||
"source.filters.edit.facet.expression": "Edit Facet's Expression", | ||
"source.filters.error": "Error", | ||
"source.filters.facet.by.count": "Facet by choice counts", | ||
"source.filters.facet.choices": "Facet Choices as Tab Separated Values", | ||
"source.filters.instruction": "Use facets and search to select subsets of your data to act on. Choose facet and search methods from the menus at the top of each data column.", | ||
"source.filters.invert": "Invet", | ||
"source.filters.loading": "Loading...", | ||
"source.filters.name": "Name", | ||
"source.filters.non.numeric": "Non-Numeric", | ||
"source.filters.non.time": "Non-Time", | ||
"source.filters.numeric": "Numeric", | ||
"source.filters.refreshing": "Refreshing filters ...", | ||
"source.filters.regular.expression": "Regular expression", | ||
"source.filters.remove.all": "Remove all", | ||
"source.filters.remove.facet": "Remove this facet", | ||
"source.filters.reset": "Reset", | ||
"source.filters.reset.all": "Reset all", | ||
"source.filters.set.choice.count": "Set choice count limit", | ||
"source.filters.sort.by": "Sort by", | ||
"source.filters.time": "Time", | ||
"source.filters.too.many.choices": "{count} choices total, too many to display", | ||
"source.first": "First", | ||
"source.format.csv": "Comma-separated values (CSV)", | ||
"source.format.custom.separator": "Custom separator", | ||
"source.format.html": "HTML table", | ||
"source.format.ods": "ODF spreadsheet", | ||
"source.format.tsv": "Tab-separated values (TSV)", | ||
"source.format.xls": "Excel (.xls)", | ||
"source.format.xlsx": "Excel 2007+ (.xlsx)", | ||
"source.history": "History", | ||
"source.history.apply": "Apply...", | ||
"source.history.extract": "Extract...", | ||
"source.history.instruction": "Don't worry about making mistakes. Every change you make will be shown here, and you can undo your changes anytime.", | ||
"source.history.refreshing": "Refreshing history ...", | ||
"source.last": "Last", | ||
"source.menu.add.based.column": "Add column based on this column", | ||
"source.menu.add.based.column.title": "Add column based on column {column}", | ||
"source.menu.add.by.urls": "Add column by fetching URLs", | ||
"source.menu.add.by.urls.title": "Add column by fetching URLs based on column {column}", | ||
"source.menu.blank.down": "Blank down", | ||
"source.menu.blank.out": "Blank out cells", | ||
"source.menu.bounded.log.facet": "1-bounded numeric log facet", | ||
"source.menu.cluster.edit": "Cluster and edit", | ||
"source.menu.collapse.white": "Collapse consecutive whitespace", | ||
"source.menu.columnize.column": "Columnize by key/value columns", | ||
"source.menu.convert.to.boolean": "Convert to Boolean type", | ||
"source.menu.convert.to.date": "Convert to Date type", | ||
"source.menu.convert.to.number": "Convert to Number type", | ||
"source.menu.convert.to.string": "Convert to String type", | ||
"source.menu.custom.facet.title": "Custom Facet on column {column}", | ||
"source.menu.custom.numeric.facet": "Custom Numeric Facet", | ||
"source.menu.custom.numeric.facet.title": "Custom Numeric Facet on column {column}", | ||
"source.menu.custom.text.facet": "Custom text facet", | ||
"source.menu.custom.text.transform": "Custom text transform on column: {column}", | ||
"source.menu.duplicates.facet": "Duplicates facet", | ||
"source.menu.facet.blank": "Facet by blank", | ||
"source.menu.facet.error": "Facet by error", | ||
"source.menu.facet.flag": "Facet by flag", | ||
"source.menu.facet.star": "Facet by star", | ||
"source.menu.fill.down": "Fill down", | ||
"source.menu.filter": "Filter", | ||
"source.menu.flag.rows": "Flag rows", | ||
"source.menu.flagged.rows": "Flagged rows", | ||
"source.menu.join.cells": "Join multi-valued cells", | ||
"source.menu.log.length.facet": "Log of text length facet", | ||
"source.menu.lowercase": "To lowercase", | ||
"source.menu.move.to.begin": "Move column to beginning", | ||
"source.menu.move.to.end": "Move column to end", | ||
"source.menu.move.to.left": "Move column left", | ||
"source.menu.move.to.right": "Move column right", | ||
"source.menu.numeric.facet": "Numeric facet", | ||
"source.menu.numeric.log.facet": "Numeric log facet", | ||
"source.menu.remove.column": "Remove this column", | ||
"source.menu.remove.matching": "Remove all matching rows", | ||
"source.menu.rename.column": "Rename this column", | ||
"source.menu.reorder.remove": "Re-order / remove columns", | ||
"source.menu.split.cells": "Split multi-valued cells", | ||
"source.menu.split.into.columns": "Split into several columns", | ||
"source.menu.split.into.columns.title": "Split column {column} into several columns", | ||
"source.menu.star.rows": "Star rows", | ||
"source.menu.starred.rows": "Starred Rows", | ||
"source.menu.text.facet": "Text facet", | ||
"source.menu.text.length.facet": "Text length facet", | ||
"source.menu.timeline.facet": "Timeline facet", | ||
"source.menu.titlecase": "To titlecase", | ||
"source.menu.transform": "Transform", | ||
"source.menu.transpose.cell.column": "Transpose cells in rows into columns", | ||
"source.menu.transpose.cell.row": "Transpose cells across columns into rows", | ||
"source.menu.trim.all": "Trim leading and trailing whitespace", | ||
"source.menu.unescape.html": "Unescape HTML entities", | ||
"source.menu.unflag.rows": "Unflag rows", | ||
"source.menu.unicode.facet": "Unicode char-code facet", | ||
"source.menu.unstar.rows": "Unstar rows", | ||
"source.menu.uppercase": "To uppercase", | ||
"source.menu.word.facet": "Word facet", | ||
"source.message.empty.column.name": "You must enter a column name.", | ||
"source.message.expect.two": "Expected an integer at least 2.", | ||
"source.message.not.valid.date": "Not a valid date.", | ||
"source.message.not.valid.number": "Not a valid number.", | ||
"source.message.specify.column.name": "Please specify the new column's name.", | ||
"source.message.specify.new.name": "Please specify the new key column's name.", | ||
"source.message.specify.new.value": "Please specify the new value column's name.", | ||
"source.message.specify.separator": "Please specify a separator.", | ||
"source.message.specify.separator.names": "Please specify the separator between original column names and cell values.", | ||
"source.message.warning.format": "The given field lengths are not properly formatted.", | ||
"source.message.warning.no.length": "No field length is specified.", | ||
"source.new.column.name": "New column name", | ||
"source.next": "Next", | ||
"source.previous": "Previous", | ||
"source.refreshing.data": "Refreshing data ...", | ||
"source.rows.per.page": "Rows per page", | ||
"source.sorts": "Sorts", | ||
"source.sorts.add.sort": "Add sort by this column", | ||
"source.sorts.blanks": "Blanks", | ||
"source.sorts.case.sensitive": "case sensitive", | ||
"source.sorts.earlist.first": "earliest first", | ||
"source.sorts.errors": "Errors", | ||
"source.sorts.false.true": "false then true", | ||
"source.sorts.forward": "forward", | ||
"source.sorts.instruction": "Sort selected subsets of your data. Click sort menu at the top of each data column to enter into sort setting.", | ||
"source.sorts.largest.first": "largest first", | ||
"source.sorts.latest.first": "latest first", | ||
"source.sorts.not.existing": "This sort based on a column (column id: {columnId} don't exist, please remove this sort.", | ||
"source.sorts.position.blanks.errors": "Position blanks and errors", | ||
"source.sorts.remove.all": "Remove all", | ||
"source.sorts.remove.sort": "Remove sort", | ||
"source.sorts.reorder.permanent": "Reorder rows permanently", | ||
"source.sorts.reverse": "Reverse", | ||
"source.sorts.smallest.first": "smallest first", | ||
"source.sorts.true.false": "true then false", | ||
"source.sorts.valid.values": "Valid values", | ||
"source.total.rows": "{total} rows", | ||
"system.align.bottom": "Align bottom", | ||
"system.align.center": "Align center", | ||
"system.align.left": "Align left", | ||
"system.align.middle": "Align middle", | ||
"system.align.right": "Align right", | ||
"system.align.top": "Align top", | ||
"system.cancel": "Cancel", | ||
"system.close": "Close", | ||
"system.delete": "Delete", | ||
"system.export": "Export", | ||
"system.filter": "Filter", | ||
"system.hide.navigation.panel": "Hide navigation panel", | ||
"system.label": "Label", | ||
"system.languages": "Languages", | ||
"system.last.modify": "Last modify", | ||
"system.locate.achieve.file": "Locate achieve file", | ||
"system.memory.mode": "Memory mode", | ||
"system.not.filter": "Not filter", | ||
"system.not.sort": "Not sort", | ||
"system.ok": "Ok", | ||
"system.olap.mode": "OLAP mode", | ||
"system.preview": "Preview", | ||
"system.project": "Project", | ||
"system.refresh": "Refresh", | ||
"system.search": "Search", | ||
"system.select": "Select", | ||
"system.select.all": "Select all", | ||
"system.setting": "Setting", | ||
"system.show.navigation.panel": "Show navigation panel", | ||
"system.sort": "Sort", | ||
"system.sort.ascend": "Sort ascend", | ||
"system.sort.descend": "Sort descend", | ||
"system.unselect": "Unselect", | ||
"system.unselect.all": "Unselect all", | ||
"system.update": "Update", | ||
"Lbl_RefineColumns": "Columns", | ||
"Lbl_RefineSorts": "Sorts", | ||
"Lbl_RefineFilters": "Filters", | ||
"Lbl_RefineHistory": "History", | ||
"Lbl_ShowAllColumns": "Show all columns" | ||
} |
{ | ||
"Msg_LeavingPage": "Please save WPT report before you leave the page, otherwise you may lose your work!", | ||
"Msg_LoadDataFirst": "Drop a csv/excel/wpt file here or", | ||
"Msg_ChooseFieldsFirst": "Para construir un informe, seleccione los campos de campos de lista.", | ||
"Msg_LoadSourceInstruction": "Drop a csv/excel/wpt file here or", | ||
"Msg_PivotInstruction": "Para construir un informe, seleccione los campos de campos de lista.", | ||
"Msg_SwitchToPivotGrid": "Switch to Pivot grid", | ||
@@ -17,5 +17,2 @@ "Msg_SwitchToPivotChart": "Switch to Pivot Chart", | ||
"Msg_NotValidWptFormat": "No es un archivo válido de WPT.", | ||
"Msg_OLAP_NoDataSource": "No se ha encontrado ninguna fuente de datos en este servidor: ", | ||
"Msg_OLAP_NoCatalog": "No se ha encontrado ningun catálogo en esta Fuente de datos: ", | ||
"Msg_OLAP_NoDimension": "No se han encontrado en esta dimensión de cubo: ", | ||
@@ -25,10 +22,7 @@ "Msg_InputFileUrl": "Por favor introduzca la URL del archivo.", | ||
"Msg_NoDataLoaded": "No data loaded", | ||
"Msg_DataLoaded": "Data loaded successfully", | ||
"Msg_InputPublicSpreadsheetUrl": "Por favor, introduzca la URL de la hoja de cálculo Google", | ||
"Msg_InputGSStUrl": "Por favor, introduzca la URL de la hoja de cálculo Google", | ||
"Msg_InputWebServiceUrl": "Please input web service URL.", | ||
"Msg_LoadingGSSData": "Cargando datos de las hojas de cálculo de Google ", | ||
"Msg_InvalidData": "No data or invalid data", | ||
"Msg_TooManyRows": "Too many rows which more than supported maximum rows", | ||
"Msg_InputXmlaServerUrl": "Por favor ingresar la URL del servidor XMLA.", | ||
"Msg_LoadingWSData": "Loading data from web service", | ||
"Msg_WrongWSData": "Return data is not compatiable. ", | ||
@@ -41,6 +35,2 @@ "Msg_DiscoveringDataSources": "Discovering datasources: ", | ||
"Msg_LoadingCubeData": "Cargando datos del cubo OLAP ", | ||
"Msg_DataSourcesLoaded": "DataSources loaded", | ||
"Msg_CatalogsLoaded": "Catalogs loaded", | ||
"Msg_CubesLoaded": "Cubes loaded", | ||
"Msg_CubeDataLoaded": "Cube data loaded", | ||
"Msg_SelectDataSource": "Please select a data source", | ||
@@ -52,8 +42,4 @@ "Msg_SelectCatalog": "Please select a catalog", | ||
"Msg_GeneratingPivotData": "Generating pivot data...", | ||
"Msg_PivotDataGenerated": "Pivot data generated.", | ||
"Msg_DrillThroughDataRetrieved": "Drill through data retrieved.", | ||
"Msg_ManuallyInclude": "Please manually pickup labels which should be included", | ||
"Msg_ManuallyExclude": "Please manually pickup labels which should be excluded", | ||
"Msg_RunMdxStatement": "Ejecutar esta instrucción en cubo OLAP", | ||
"Msg_FormatExpression": "You can use any validate javascript expression in formula.", | ||
@@ -106,3 +92,2 @@ | ||
"Lbl_Source": "Fuente", | ||
"Lbl_Sheet": "Sheet", | ||
"Lbl_PivotGrid": "Pivot Grid", | ||
@@ -121,3 +106,2 @@ "Lbl_PivotChart": "Pivot Chart", | ||
"Lbl_WebServiceUrl": "Web Service URL", | ||
"Lbl_FileContent": "File Content", | ||
"Lbl_FileName": "File Name", | ||
@@ -128,10 +112,8 @@ "Lbl_IgnoreData": "Don't save data, save pivot options only.", | ||
"Lbl_SelectLocalFile": "Select a local file", | ||
"Lbl_LocalDrive": "Archivo local", | ||
"Lbl_EnterFileUrl": "URL del documento:", | ||
"Lbl_EnterWptUrl": "Dirección URL del documento WPT:", | ||
"Lbl_Samples": "Samples", | ||
"Lbl_PublicSpreadsheetUrl": "Hoja de cálculo pública URL:", | ||
"Lbl_GSSUrl": "Hoja de cálculo pública URL:", | ||
"Lbl_XmlaServerUrl": "URL del servidor XMLA:", | ||
"Lbl_Delimiter": "Delimiter", | ||
"Lbl_ExcelWorkbook": "Excel Workbook", | ||
"Lbl_DataSource": "Fuente de datos: ", | ||
@@ -158,7 +140,2 @@ "Lbl_Catalog": "Catálogo: ", | ||
"Lbl_ShowSubtotalColumns": "Subtotal de columnas", | ||
"Lbl_SwitchGridChart": "Switch Grid & Chart", | ||
"Lbl_TileHorizontal": "División horizontal", | ||
"Lbl_TileVertical": "División Vertical", | ||
"Lbl_GridOnly": "Mostar solo tabla", | ||
"Lbl_ChartOnly": "Mostar solo gráfico", | ||
@@ -200,3 +177,2 @@ "Lbl_SwapAxis": "Intercambiar filas y columnas", | ||
"Lbl_ThousandsSep": "Separador de millares", | ||
"Lbl_DrillThroughMaxRows": "Número máximo de filas predeterminado para Drill Through en OLAP:", | ||
"Lbl_ClickToDrillThrough": "Click para obtener detalles.", | ||
@@ -343,4 +319,2 @@ "Lbl_DoubleClickToDrillThrough": "DoubleClick to drill through.", | ||
"Lbl_ManuallyExclude": "Manually exclude", | ||
"Lbl_Grid": "Grid", | ||
"Lbl_Chart": "Chart", | ||
"Lbl_SelectAll": "Todos", | ||
@@ -347,0 +321,0 @@ "Lbl_SelectNone": "Ninguno", |
{ | ||
"Msg_LeavingPage": "Please save WPT report before you leave the page, otherwise you may lose your work!", | ||
"Msg_LoadDataFirst": "Drop a csv/excel/wpt file here or", | ||
"Msg_ChooseFieldsFirst": "Per costruire un report, scegliere i campi dalla Lista Campi.", | ||
"Msg_LoadSourceInstruction": "Drop a csv/excel/wpt file here or", | ||
"Msg_PivotInstruction": "Per costruire un report, scegliere i campi dalla Lista Campi.", | ||
"Msg_SwitchToPivotGrid": "Switch to Pivot grid", | ||
@@ -17,5 +17,2 @@ "Msg_SwitchToPivotChart": "Switch to Pivot Chart", | ||
"Msg_NotValidWptFormat": "Non è un file di WPT valido.", | ||
"Msg_OLAP_NoDataSource": "Nessun DataSource trovato in questo Server: ", | ||
"Msg_OLAP_NoCatalog": "Nessun Catalogo trovato in questo DataSource: ", | ||
"Msg_OLAP_NoDimension": "Nessuna Dimensione trovata in questo Cubo: ", | ||
@@ -25,10 +22,7 @@ "Msg_InputFileUrl": "Si prega di inserire l'URL del file.", | ||
"Msg_NoDataLoaded": "No data loaded", | ||
"Msg_DataLoaded": "Data loaded successfully", | ||
"Msg_InputPublicSpreadsheetUrl": "Si prega di inserire l'URL publico del foglio di calcolo google.", | ||
"Msg_InputGSStUrl": "Si prega di inserire l'URL foglio di calcolo google.", | ||
"Msg_InputWebServiceUrl": "Please input web service URL.", | ||
"Msg_LoadingGSSData": "Caricamento dati Google foglio di calcolo ", | ||
"Msg_InvalidData": "No data or invalid data", | ||
"Msg_TooManyRows": "Too many rows which more than supported maximum rows", | ||
"Msg_InputXmlaServerUrl": "Si prega di inserire l'URL XMLA del Server.", | ||
"Msg_LoadingWSData": "Loading data from web service", | ||
"Msg_WrongWSData": "Return data is not compatiable. ", | ||
@@ -41,6 +35,2 @@ "Msg_DiscoveringDataSources": "Discovering datasources: ", | ||
"Msg_LoadingCubeData": "Caricamento dati OLAP ", | ||
"Msg_DataSourcesLoaded": "DataSources loaded", | ||
"Msg_CatalogsLoaded": "Catalogs loaded", | ||
"Msg_CubesLoaded": "Cubes loaded", | ||
"Msg_CubeDataLoaded": "Cube data loaded", | ||
"Msg_SelectDataSource": "Please select a data source", | ||
@@ -52,8 +42,4 @@ "Msg_SelectCatalog": "Please select a catalog", | ||
"Msg_GeneratingPivotData": "Generating pivot data...", | ||
"Msg_PivotDataGenerated": "Pivot data generated.", | ||
"Msg_DrillThroughDataRetrieved": "Drill through data retrieved.", | ||
"Msg_ManuallyInclude": "Please manually pickup labels which should be included", | ||
"Msg_ManuallyExclude": "Please manually pickup labels which should be excluded", | ||
"Msg_RunMdxStatement": "Eseguire questa dichiarazione MDX sul Cubo OLAP", | ||
"Msg_FormatExpression": "You can use any validate javascript expression in formula.", | ||
@@ -106,3 +92,2 @@ | ||
"Lbl_Source": "Data Source", | ||
"Lbl_Sheet": "Sheet", | ||
"Lbl_PivotGrid": "Pivot Grid", | ||
@@ -121,3 +106,2 @@ "Lbl_PivotChart": "Pivot Chart", | ||
"Lbl_WebServiceUrl": "Web Service URL", | ||
"Lbl_FileContent": "File Content", | ||
"Lbl_FileName": "File Name", | ||
@@ -128,10 +112,8 @@ "Lbl_IgnoreData": "Don't save data, save pivot options only.", | ||
"Lbl_SelectLocalFile": "Select a local file", | ||
"Lbl_LocalDrive": "File Locale", | ||
"Lbl_EnterFileUrl": "File URL:", | ||
"Lbl_EnterWptUrl": "URL file WPT:", | ||
"Lbl_Samples": "Samples", | ||
"Lbl_PublicSpreadsheetUrl": "URL Publico del Foglio di calcolo:", | ||
"Lbl_GSSUrl": "URL Publico del Foglio di calcolo:", | ||
"Lbl_XmlaServerUrl": "URL Server XMLA:", | ||
"Lbl_Delimiter": "Delimiter", | ||
"Lbl_ExcelWorkbook": "Excel Workbook", | ||
"Lbl_DataSource": "DataSource: ", | ||
@@ -158,7 +140,2 @@ "Lbl_Catalog": "Catalogo: ", | ||
"Lbl_ShowSubtotalColumns": "Subtotali Colonne", | ||
"Lbl_SwitchGridChart": "Switch Grid & Chart", | ||
"Lbl_TileHorizontal": "Tile Orizzontale", | ||
"Lbl_TileVertical": "Tile Verticale", | ||
"Lbl_GridOnly": "Mostra Solo la Griglia", | ||
"Lbl_ChartOnly": "Mostra Solo Grafico", | ||
@@ -200,3 +177,2 @@ "Lbl_SwapAxis": "Scambia le Righe con le Colonne", | ||
"Lbl_ThousandsSep": "Separatore Migliaia", | ||
"Lbl_DrillThroughMaxRows": "Default cubo OLAP Drill Through Max Righe:", | ||
"Lbl_ClickToDrillThrough": "Click to drill through.", | ||
@@ -343,4 +319,2 @@ "Lbl_DoubleClickToDrillThrough": "DoubleClick to drill through.", | ||
"Lbl_ManuallyExclude": "Manually exclude", | ||
"Lbl_Grid": "Grid", | ||
"Lbl_Chart": "Chart", | ||
"Lbl_SelectAll": "Tutti", | ||
@@ -347,0 +321,0 @@ "Lbl_SelectNone": "Nessuno", |
{ | ||
"Msg_LeavingPage": "Por favor, salve o relatório WPT antes de sair da página, senão você poderá perder seu trabalho!", | ||
"Msg_LoadDataFirst": "Drop a csv/excel/wpt file here or", | ||
"Msg_ChooseFieldsFirst": "Para construir um relatório, selecione os campos na lista de campos.", | ||
"Msg_LoadSourceInstruction": "Drop a csv/excel/wpt file here or", | ||
"Msg_PivotInstruction": "Para construir um relatório, selecione os campos na lista de campos.", | ||
"Msg_SwitchToPivotGrid": "Switch to Pivot grid", | ||
@@ -17,5 +17,2 @@ "Msg_SwitchToPivotChart": "Switch to Pivot Chart", | ||
"Msg_NotValidWptFormat": "Arquivo WPT inválido.", | ||
"Msg_OLAP_NoDataSource": "Nenhuma fonte de dados encontrada neste servidor: ", | ||
"Msg_OLAP_NoCatalog": "Nenhum Catálogo encontrado nesta Fonte de Dados: ", | ||
"Msg_OLAP_NoDimension": "Nenhuma Dimensão encontrada neste cubo: ", | ||
@@ -25,10 +22,7 @@ "Msg_InputFileUrl": "Favor informar a URL do arquivo de entrada.", | ||
"Msg_NoDataLoaded": "Nenhum dado carregado", | ||
"Msg_DataLoaded": "Dados carregados com sucesso", | ||
"Msg_InputPublicSpreadsheetUrl": "Favor informar a URL da planilha publica do google.", | ||
"Msg_InputGSStUrl": "Favor informar a URL da planilha do google.", | ||
"Msg_InputWebServiceUrl": "Por favor, entre com a URL do serviço web.", | ||
"Msg_LoadingGSSData": "Carregando dados da planilha Google ", | ||
"Msg_InvalidData": "No data or invalid data", | ||
"Msg_TooManyRows": "Too many rows which more than supported maximum rows", | ||
"Msg_InputXmlaServerUrl": "Favor informar a URL do servidor XMLA.", | ||
"Msg_LoadingWSData": "Carregando os dados do serviço web", | ||
"Msg_WrongWSData": "Dados retornados não são compatíveis. ", | ||
@@ -41,6 +35,2 @@ "Msg_DiscoveringDataSources": "Procurando fonte de dados: ", | ||
"Msg_LoadingCubeData": "Carregando dados do cubo OLAP ", | ||
"Msg_DataSourcesLoaded": "DataSources loaded", | ||
"Msg_CatalogsLoaded": "Catalogs loaded", | ||
"Msg_CubesLoaded": "Cubes loaded", | ||
"Msg_CubeDataLoaded": "Cube data loaded", | ||
"Msg_SelectDataSource": "Please select a data source", | ||
@@ -52,8 +42,4 @@ "Msg_SelectCatalog": "Please select a catalog", | ||
"Msg_GeneratingPivotData": "Generating pivot data...", | ||
"Msg_PivotDataGenerated": "Pivot data generated.", | ||
"Msg_DrillThroughDataRetrieved": "Drill through data retrieved.", | ||
"Msg_ManuallyInclude": "Please manually pickup labels which should be included", | ||
"Msg_ManuallyExclude": "Please manually pickup labels which should be excluded", | ||
"Msg_RunMdxStatement": "Executar esta consulta MDX no Cubo OLAP", | ||
"Msg_FormatExpression": "You can use any validate javascript expression in formula.", | ||
@@ -107,3 +93,2 @@ | ||
"Lbl_Source": "Fonte", | ||
"Lbl_Sheet": "Planilha", | ||
"Lbl_PivotGrid": "Pivot Grid", | ||
@@ -122,3 +107,2 @@ "Lbl_PivotChart": "Pivot Chart", | ||
"Lbl_WebServiceUrl": "URL do Serviço Web", | ||
"Lbl_FileContent": "File Content", | ||
"Lbl_FileName": "Nome do Arquivo", | ||
@@ -129,10 +113,8 @@ "Lbl_IgnoreData": "Não salvar os dados, salvar apenas as opções do pivo table.", | ||
"Lbl_SelectLocalFile": "Select a local file", | ||
"Lbl_LocalDrive":"Arquivo Local", | ||
"Lbl_EnterFileUrl": "URL Arquivo:", | ||
"Lbl_EnterWptUrl": "URL Arquivo WPT:", | ||
"Lbl_Samples": "Exemplos", | ||
"Lbl_PublicSpreadsheetUrl": "URL da Planilha Pública:", | ||
"Lbl_GSSUrl": "URL da Planilha Pública:", | ||
"Lbl_XmlaServerUrl": "URL Servidor XMLA:", | ||
"Lbl_Delimiter": "Delimitador", | ||
"Lbl_ExcelWorkbook": "Excel Workbook", | ||
"Lbl_DataSource": "Fonte de Dados: ", | ||
@@ -159,7 +141,2 @@ "Lbl_Catalog": "Catálogo: ", | ||
"Lbl_ShowSubtotalColumns": "Subtotal das Colunas", | ||
"Lbl_SwitchGridChart": "Mudar para Grid & Gráfico", | ||
"Lbl_TileHorizontal": "Dividir na Horizontal", | ||
"Lbl_TileVertical": "Dividir na Vertical", | ||
"Lbl_GridOnly": "Mostrar Somente o Grid", | ||
"Lbl_ChartOnly": "Mostrar Somente o Gráfico", | ||
@@ -201,3 +178,2 @@ "Lbl_SwapAxis": "Trocar Linhas e Colunas", | ||
"Lbl_ThousandsSep": "Separator de Milhar", | ||
"Lbl_DrillThroughMaxRows": "Padrão Máximo de Linhas para Detalhamento do Cubo Olap:", | ||
"Lbl_ClickToDrillThrough": "Clique para detalhar.", | ||
@@ -343,4 +319,2 @@ "Lbl_DoubleClickToDrillThrough": "Clique duplo para detalhar.", | ||
"Lbl_ManuallyExclude": "Manually exclude", | ||
"Lbl_Grid": "Grid", | ||
"Lbl_Chart": "Chart", | ||
"Lbl_SelectAll": "Todos", | ||
@@ -347,0 +321,0 @@ "Lbl_SelectNone": "Nenhum", |
{ | ||
"Msg_LeavingPage": "Lütfen WPT rapor sayfasını çıkmadan önce kaydedin, yoksa çalışmanızı kaybedebilirsiniz!", | ||
"Msg_LoadDataFirst": "Drop a csv/excel/wpt file here or", | ||
"Msg_ChooseFieldsFirst": "Bir rapor oluşturmak için , Alanlar Listesi'nde alanları seçin.", | ||
"Msg_LoadSourceInstruction": "Drop a csv/excel/wpt file here or", | ||
"Msg_PivotInstruction": "Bir rapor oluşturmak için , Alanlar Listesi'nde alanları seçin.", | ||
"Msg_SwitchToPivotGrid": "Switch to Pivot grid", | ||
@@ -18,5 +18,2 @@ "Msg_SwitchToPivotChart": "Switch to Pivot Chart", | ||
"Msg_NotValidWptFormat": "Geçerli bir WPT dosyası değil.", | ||
"Msg_OLAP_NoDataSource": "Bu sunucuda hiçbir veri kaynağı bulunamadı: ", | ||
"Msg_OLAP_NoCatalog": "Bu veri kaynağında hiçbir katalog bulunamadı: ", | ||
"Msg_OLAP_NoDimension": "Bu küpte hiçbir boyut bulunamadı: ", | ||
@@ -26,10 +23,7 @@ "Msg_InputFileUrl": "Lütfen dosya URL' sini girin.", | ||
"Msg_NoDataLoaded": "Hiç veri yüklenmedi", | ||
"Msg_DataLoaded": "Veri başarıyla yüklendi", | ||
"Msg_InputPublicSpreadsheetUrl": "Lütfen yayınlanan google spreadsheet URL' sini girin.", | ||
"Msg_InputGSStUrl": "Lütfen google spreadsheet URL' sini girin.", | ||
"Msg_InputWebServiceUrl": "Lütfen Web Servis URL' sini giriniz.", | ||
"Msg_LoadingGSSData": "Google spreadsheet verileri yükleniyor ", | ||
"Msg_InvalidData": "No data or invalid data", | ||
"Msg_TooManyRows": "Too many rows which more than supported maximum rows", | ||
"Msg_InputXmlaServerUrl": "Lütfen XMLA Sunucu URL' sini girin.", | ||
"Msg_LoadingWSData": "Web Servis' den veri yükleniyor", | ||
"Msg_WrongWSData": "Dönen veri uyumlu değil. ", | ||
@@ -42,6 +36,2 @@ "Msg_DiscoveringDataSources": "Discovering datasources: ", | ||
"Msg_LoadingCubeData": "OLAP veri kübü yükleniyor ", | ||
"Msg_DataSourcesLoaded": "DataSources loaded", | ||
"Msg_CatalogsLoaded": "Catalogs loaded", | ||
"Msg_CubesLoaded": "Cubes loaded", | ||
"Msg_CubeDataLoaded": "Cube data loaded", | ||
"Msg_SelectDataSource": "Please select a data source", | ||
@@ -53,8 +43,4 @@ "Msg_SelectCatalog": "Please select a catalog", | ||
"Msg_GeneratingPivotData": "Generating pivot data...", | ||
"Msg_PivotDataGenerated": "Pivot data generated.", | ||
"Msg_DrillThroughDataRetrieved": "Drill through data retrieved.", | ||
"Msg_ManuallyInclude": "Please manually pickup labels which should be included", | ||
"Msg_ManuallyExclude": "Please manually pickup labels which should be excluded", | ||
"Msg_RunMdxStatement": "Bu MDX durumunu OLAP Küpünde çalıştır", | ||
"Msg_FormatExpression": "You can use any validate javascript expression in formula.", | ||
@@ -108,3 +94,2 @@ | ||
"Lbl_Source": "Kaynak", | ||
"Lbl_Sheet": "Sayfa", | ||
"Lbl_PivotGrid": "Pivot Grid", | ||
@@ -123,3 +108,2 @@ "Lbl_PivotChart": "Pivot Chart", | ||
"Lbl_WebServiceUrl": "Web Servis URL' si", | ||
"Lbl_FileContent": "File Content", | ||
"Lbl_FileName": "Dosya Adı", | ||
@@ -130,10 +114,8 @@ "Lbl_IgnoreData": "Veri kaydetme, sadece pivot biçimini kaydet.", | ||
"Lbl_SelectLocalFile": "Select a local file", | ||
"Lbl_LocalDrive": "Lokal Dosya", | ||
"Lbl_EnterFileUrl": "Dosya URL' si:", | ||
"Lbl_EnterWptUrl": "WPT dosya URL' si:", | ||
"Lbl_Samples": "Örnekler", | ||
"Lbl_PublicSpreadsheetUrl": "Yayınlanan Spreadsheet URL' si:", | ||
"Lbl_GSSUrl": "Yayınlanan Spreadsheet URL' si:", | ||
"Lbl_XmlaServerUrl": "XMLA Sunucu URL' si:", | ||
"Lbl_Delimiter": "Delimiter", | ||
"Lbl_ExcelWorkbook": "Excel Workbook", | ||
"Lbl_DataSource": "Veri Kaynağı: ", | ||
@@ -160,7 +142,2 @@ "Lbl_Catalog": "Katalog: ", | ||
"Lbl_ShowSubtotalColumns": "Sütun Ara Toplam", | ||
"Lbl_SwitchGridChart": "Grid & Grafik Yer Değiştir", | ||
"Lbl_TileHorizontal": "Dikey Döşe", | ||
"Lbl_TileVertical": "Yatay Döşe", | ||
"Lbl_GridOnly": "Sadece Grid' i Göster", | ||
"Lbl_ChartOnly": "Sadece Grafiği' ı Göster", | ||
@@ -202,3 +179,2 @@ "Lbl_SwapAxis": "Satır ile Sütunları Yer Değiştir", | ||
"Lbl_ThousandsSep": "Binlik Ayıracı", | ||
"Lbl_DrillThroughMaxRows": "Default Olap Cube Drill Through Max Rows:", | ||
"Lbl_ClickToDrillThrough": "Detay için tıklayın.", | ||
@@ -344,4 +320,4 @@ "Lbl_DoubleClickToDrillThrough": "DoubleClick to drill through.", | ||
"Lbl_ManuallyExclude": "Manually exclude", | ||
"Lbl_Grid": "Grid", | ||
"Lbl_Chart": "Chart", | ||
"Lbl_SelectAll": "Alle", | ||
"Lbl_SelectNone": "Keine", | ||
@@ -348,0 +324,0 @@ "Lbl_Prefix": "Başına", |
{ | ||
"Msg_LeavingPage": "在离开页面前请保存你的WPT报表,否则你将丢失你所有的操作!", | ||
"Msg_LoadDataFirst": "拖拉一个csv/excel/wpt文件到这里, 或者", | ||
"Msg_ChooseFieldsFirst": "为创建报表,请从字段列表中选取字段", | ||
"Msg_LoadSourceInstruction": "拖拉一个csv/excel/wpt文件到这里, 或者", | ||
"Msg_PivotInstruction": "为创建报表,请从字段列表中选取字段", | ||
"Msg_SwitchToPivotGrid": "切换到透视表格", | ||
@@ -17,5 +17,2 @@ "Msg_SwitchToPivotChart": "切换到透视图", | ||
"Msg_NotValidWptFormat": "不是一个有效的WEB数据透视表文件.", | ||
"Msg_OLAP_NoDataSource": "在这个服务器上没有发现数据源: ", | ||
"Msg_OLAP_NoCatalog": "在这个数据源没有发现目录: ", | ||
"Msg_OLAP_NoDimension": "在这个多维数据集没有发现维字段: ", | ||
@@ -25,10 +22,7 @@ "Msg_InputFileUrl": "请输入文件URL.", | ||
"Msg_NoDataLoaded": "没有数据被加载", | ||
"Msg_DataLoaded": "数据已经加载好", | ||
"Msg_InputPublicSpreadsheetUrl": "请输入公开的google电子数据表URL.", | ||
"Msg_InputGSStUrl": "请输入google电子数据表URL.", | ||
"Msg_InputWebServiceUrl": "请输入Web服务URL.", | ||
"Msg_LoadingGSSData": "正在加载Google电子数据表数据", | ||
"Msg_InvalidData": "没有数据或者是无效的数据", | ||
"Msg_TooManyRows": "数据太大,超过了能够支持的最大记录数", | ||
"Msg_InputXmlaServerUrl": "请输入XMLA服务器URL.", | ||
"Msg_LoadingWSData": "从Web 服务加载数据", | ||
"Msg_WrongWSData": "返回的数据不兼容。", | ||
@@ -41,6 +35,2 @@ "Msg_DiscoveringDataSources": "正在查找数据源: ", | ||
"Msg_LoadingCubeData": "正在加载OLAP多维数据集数据", | ||
"Msg_DataSourcesLoaded": "数据源已经加载", | ||
"Msg_CatalogsLoaded": "分类已经加载", | ||
"Msg_CubesLoaded": "多维数据集已经加载", | ||
"Msg_CubeDataLoaded": "多维数据集数据已经加载", | ||
"Msg_SelectDataSource": "请选择一个数据源", | ||
@@ -52,8 +42,4 @@ "Msg_SelectCatalog": "请选择一个分类", | ||
"Msg_GeneratingPivotData": "正在生成透视数据...", | ||
"Msg_PivotDataGenerated": "透视数据已经生成", | ||
"Msg_DrillThroughDataRetrieved": "钻取数据已经提取", | ||
"Msg_ManuallyInclude": "请手工选择所有要包含在内的标签", | ||
"Msg_ManuallyExclude": "请手工选择所有要剔除在外的标签", | ||
"Msg_RunMdxStatement": "在OLAP多维数据集执行该MDX语句", | ||
"Msg_FormatExpression": "在公式中您可以使用任何有效的javascript表达式.", | ||
@@ -106,3 +92,2 @@ | ||
"Lbl_Source": "数据源", | ||
"Lbl_Sheet": "工作薄", | ||
"Lbl_PivotGrid": "透视表格", | ||
@@ -121,3 +106,2 @@ "Lbl_PivotChart": "透视图", | ||
"Lbl_WebServiceUrl": "Web服务URL", | ||
"Lbl_FileContent": "文件内容", | ||
"Lbl_FileName": "文件名", | ||
@@ -128,10 +112,8 @@ "Lbl_IgnoreData": "不保存数据,只保存操作选项。", | ||
"Lbl_SelectLocalFile": "请选择一个本地文件", | ||
"Lbl_LocalDrive":"本地文件", | ||
"Lbl_EnterFileUrl": "文件URL:", | ||
"Lbl_EnterWptUrl": "WPT文件URL:", | ||
"Lbl_Samples": "样例", | ||
"Lbl_PublicSpreadsheetUrl": "公开的电子数据表URL:", | ||
"Lbl_GSSUrl": "公开的电子数据表URL:", | ||
"Lbl_XmlaServerUrl": "XMLA服务器URL:", | ||
"Lbl_Delimiter": "定界符", | ||
"Lbl_ExcelWorkbook":"Excel工作薄", | ||
"Lbl_DataSource": "数据源: ", | ||
@@ -158,7 +140,2 @@ "Lbl_Catalog": "目录: ", | ||
"Lbl_ShowSubtotalColumns": "小计列", | ||
"Lbl_SwitchGridChart": "切换表格与图表", | ||
"Lbl_TileHorizontal": "水平平铺", | ||
"Lbl_TileVertical": "垂直平铺", | ||
"Lbl_GridOnly": "只显示表格", | ||
"Lbl_ChartOnly": "只显示图表", | ||
@@ -200,3 +177,2 @@ "Lbl_SwapAxis": "行列字段互换", | ||
"Lbl_ThousandsSep": "千位分割符", | ||
"Lbl_DrillThroughMaxRows": "缺省OLAP多维数据集钻取最大行数:", | ||
"Lbl_ClickToDrillThrough": "点击进行钻取。", | ||
@@ -342,4 +318,2 @@ "Lbl_DoubleClickToDrillThrough": "双击进行钻取。", | ||
"Lbl_ManuallyExclude": "手工排除", | ||
"Lbl_Grid": "表格", | ||
"Lbl_Chart": "图表", | ||
"Lbl_SelectAll": "全选", | ||
@@ -346,0 +320,0 @@ "Lbl_SelectNone": "全不选", |
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
3019081
12724