@sapui5/sap.zen.dsh 1.107.0 → 1.108.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/sap/zen/dsh/.library +1 -1
- package/src/sap/zen/dsh/AnalyticGrid.js +25 -22
- package/src/sap/zen/dsh/AnalyticGridRenderer.js +4 -2
- package/src/sap/zen/dsh/Dsh.js +75 -73
- package/src/sap/zen/dsh/DshRenderer.js +20 -21
- package/src/sap/zen/dsh/firefly/ff8310.zen.buddha.js +5 -4
- package/src/sap/zen/dsh/library.js +2 -2
- package/src/sap/zen/dsh/widgets/ValueHelpDialog.js +2 -0
- package/src/sap/zen/dsh/i18/localization.properties +0 -796
package/package.json
CHANGED
package/src/sap/zen/dsh/.library
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<vendor>SAP SE</vendor>
|
|
5
5
|
<copyright>SAPUI5
|
|
6
6
|
(c) Copyright 2009-2021 SAP SE. All rights reserved</copyright>
|
|
7
|
-
<version>1.
|
|
7
|
+
<version>1.108.0</version>
|
|
8
8
|
<documentation>Design Studio Runtime Library. Intended only to be used within S/4 HANA Fiori applications.</documentation>
|
|
9
9
|
<appData>
|
|
10
10
|
<jsdoc xmlns="http://www.sap.com/ui5/buildext/jsdoc" >
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* SAPUI5
|
|
3
3
|
(c) Copyright 2009-2021 SAP SE. All rights reserved
|
|
4
4
|
*/
|
|
5
|
-
/*global sap
|
|
5
|
+
/*global sap */
|
|
6
6
|
sap.ui.define(
|
|
7
7
|
"sap/zen/dsh/AnalyticGrid",
|
|
8
8
|
[
|
|
@@ -10,9 +10,10 @@ sap.ui.define(
|
|
|
10
10
|
"sap/base/Log",
|
|
11
11
|
"sap/ui/core/Control",
|
|
12
12
|
"sap/ui/thirdparty/URI",
|
|
13
|
+
"sap/zen/dsh/AnalyticGridRenderer",
|
|
13
14
|
"sap/zen/dsh/library"
|
|
14
15
|
],
|
|
15
|
-
function (jQuery, Log, Control, URI ) {
|
|
16
|
+
function (jQuery, Log, Control, URI, AnalyticGridRenderer ) {
|
|
16
17
|
// Provides control sap.zen.dsh.AnalyticGrid.
|
|
17
18
|
/**
|
|
18
19
|
* Constructor for a new AnalyticGrid.
|
|
@@ -30,10 +31,9 @@ sap.ui.define(
|
|
|
30
31
|
* @deprecated since 1.89.0
|
|
31
32
|
* @experimental Since version 1.46.
|
|
32
33
|
* API is incomplete and may change incompatibly
|
|
33
|
-
* @
|
|
34
|
-
|
|
34
|
+
* @alias sap.zen.dsh.AnalyticGrid
|
|
35
35
|
*/
|
|
36
|
-
Control.extend(
|
|
36
|
+
var AnalyticGrid = Control.extend(
|
|
37
37
|
"sap.zen.dsh.AnalyticGrid", /** @lends sap.zen.dsh.AnalyticGrid.prototype */
|
|
38
38
|
{
|
|
39
39
|
metadata : {
|
|
@@ -88,7 +88,8 @@ sap.ui.define(
|
|
|
88
88
|
}
|
|
89
89
|
}
|
|
90
90
|
}
|
|
91
|
-
}
|
|
91
|
+
},
|
|
92
|
+
renderer: AnalyticGridRenderer
|
|
92
93
|
}
|
|
93
94
|
);
|
|
94
95
|
/**
|
|
@@ -100,13 +101,13 @@ sap.ui.define(
|
|
|
100
101
|
sap.zen.dsh.sapbi_page.getParameter = sap.zen.dsh.sapbi_page.getParameter || function(){return "";};
|
|
101
102
|
sap.zen.dsh.sapbi_MIMES_PIXEL = sap.zen.dsh.sapbi_MIMES_PIXEL || "";
|
|
102
103
|
sap.zen.dsh.doReplaceDots = true;
|
|
103
|
-
|
|
104
|
+
AnalyticGrid.prototype.init = function() {
|
|
104
105
|
this.parameters = {};
|
|
105
106
|
this.dshBaseUrl = URI(sap.ui.resource("sap.zen.dsh","rt/")).absoluteTo(window.location.pathname).toString();
|
|
106
107
|
sap.zen.dsh.sapbi_page.staticMimeUrlPrefix = this.dshBaseUrl;
|
|
107
108
|
this.repositoryUrl = URI(sap.ui.resource("sap.zen.dsh","applications/")).absoluteTo(window.location.pathname).toString();
|
|
108
109
|
};
|
|
109
|
-
|
|
110
|
+
AnalyticGrid.prototype._initializeInternal = function() {
|
|
110
111
|
if(this.initialized) {
|
|
111
112
|
this.page.forceFullNonDeltaRender();
|
|
112
113
|
return;
|
|
@@ -123,7 +124,7 @@ sap.ui.define(
|
|
|
123
124
|
that._createPage();
|
|
124
125
|
}, 0);
|
|
125
126
|
};
|
|
126
|
-
|
|
127
|
+
AnalyticGrid.prototype._createPage = function() {
|
|
127
128
|
sap.zen.dsh.scriptLoaded= true;
|
|
128
129
|
var that = this;
|
|
129
130
|
var oConfig = sap.ui.getCore().getConfiguration();
|
|
@@ -163,7 +164,7 @@ sap.ui.define(
|
|
|
163
164
|
designStudio.setNewBW(true);
|
|
164
165
|
this.page = designStudio.createPage();
|
|
165
166
|
if(!sap.zen.dsh.wnd){
|
|
166
|
-
|
|
167
|
+
sap.zen.dsh.wnd = {};
|
|
167
168
|
}
|
|
168
169
|
sap.zen.dsh.wnd[that.getId()+"Buddha"] = this.page;
|
|
169
170
|
sap.zen.dsh.sapbi_page = sap.zen.dsh.sapbi_page || {};
|
|
@@ -171,32 +172,32 @@ sap.ui.define(
|
|
|
171
172
|
sap.zen.dsh.sapbi_page.getParameter = function(){return "";};
|
|
172
173
|
sap.zen.dsh.sapbi_MIMES_PIXEL = "";
|
|
173
174
|
};
|
|
174
|
-
|
|
175
|
+
AnalyticGrid.prototype.onAfterRendering = function(){
|
|
175
176
|
this._initializeInternal();
|
|
176
177
|
};
|
|
177
|
-
|
|
178
|
+
AnalyticGrid.prototype._logoff = function(){
|
|
178
179
|
if (!this.loggedOff) {
|
|
179
180
|
this.loggedOff = true;
|
|
180
181
|
this._executeScript("APPLICATION.logoff();");
|
|
181
182
|
}
|
|
182
183
|
};
|
|
183
|
-
|
|
184
|
+
AnalyticGrid.prototype.exit = function(){
|
|
184
185
|
this._logoff();
|
|
185
186
|
var oRootAbsLayout = sap.ui.getCore().byId(this.sId + "ROOT_absolutelayout");
|
|
186
187
|
if (oRootAbsLayout) {
|
|
187
188
|
oRootAbsLayout.destroy();
|
|
188
189
|
}
|
|
189
190
|
};
|
|
190
|
-
|
|
191
|
+
AnalyticGrid.prototype._addParameter = function(name, value) {
|
|
191
192
|
this.parameters[name] = value;
|
|
192
193
|
};
|
|
193
|
-
|
|
194
|
+
AnalyticGrid.prototype._executeScript = function(script){
|
|
194
195
|
if (this.page) {
|
|
195
196
|
this.page.getWindow().increaseLock();
|
|
196
197
|
this.page.exec && this.page.exec(script);
|
|
197
198
|
}
|
|
198
199
|
};
|
|
199
|
-
|
|
200
|
+
AnalyticGrid.prototype.setSelection = function(oSelectionVariant) {
|
|
200
201
|
this.setProperty("selection", oSelectionVariant, true);
|
|
201
202
|
if (this.initialized) {
|
|
202
203
|
var oNavParams = this._buildNavParamObject(oSelectionVariant);
|
|
@@ -205,11 +206,11 @@ sap.ui.define(
|
|
|
205
206
|
}
|
|
206
207
|
return this;
|
|
207
208
|
};
|
|
208
|
-
|
|
209
|
+
AnalyticGrid.prototype.fireSelectionChange = function(mParameters) {
|
|
209
210
|
this.setProperty("selection", mParameters.selection, true);
|
|
210
211
|
return this.fireEvent("selectionChange", mParameters);
|
|
211
212
|
};
|
|
212
|
-
|
|
213
|
+
AnalyticGrid.prototype._buildNavParamObject = function(oSelectionVariant) {
|
|
213
214
|
function addValuesToObject(sObject, oValueHolder, sValue) {
|
|
214
215
|
if (!Object.prototype.hasOwnProperty.call(oValueHolder, sObject)) {
|
|
215
216
|
oValueHolder[sObject] = sValue;
|
|
@@ -259,18 +260,18 @@ sap.ui.define(
|
|
|
259
260
|
}
|
|
260
261
|
return oNavParams;
|
|
261
262
|
};
|
|
262
|
-
|
|
263
|
+
AnalyticGrid.prototype._initializeSelectionVariant = function(oSelectionVariant) {
|
|
263
264
|
var oNavParams = this._buildNavParamObject(oSelectionVariant);
|
|
264
265
|
if (!jQuery.isEmptyObject(oNavParams)) {
|
|
265
266
|
this._addParameter("NAV_PARAMS", JSON.stringify(oNavParams));
|
|
266
267
|
}
|
|
267
268
|
};
|
|
268
|
-
|
|
269
|
+
AnalyticGrid.prototype._initializeInnerAppState = function(sState) {
|
|
269
270
|
if (sState) {
|
|
270
271
|
this._addParameter("NAV_INITIAL_STATE", sState);
|
|
271
272
|
}
|
|
272
273
|
};
|
|
273
|
-
|
|
274
|
+
AnalyticGrid.prototype.setState = function (sState) {
|
|
274
275
|
this.setProperty("state", sState, true);
|
|
275
276
|
if (this.initialized) {
|
|
276
277
|
this.page.getWindow().getContext("BookmarkInternal").applyApplicationState(sState, true);
|
|
@@ -278,9 +279,11 @@ sap.ui.define(
|
|
|
278
279
|
}
|
|
279
280
|
return this;
|
|
280
281
|
};
|
|
281
|
-
|
|
282
|
+
AnalyticGrid.prototype.fireStateChange = function(mParameters) {
|
|
282
283
|
this.setProperty("state", mParameters.state, true);
|
|
283
284
|
return this.fireEvent("stateChange", mParameters);
|
|
284
285
|
};
|
|
286
|
+
|
|
287
|
+
return AnalyticGrid;
|
|
285
288
|
}
|
|
286
289
|
);
|
|
@@ -9,9 +9,11 @@ sap.ui.define(
|
|
|
9
9
|
"sap/base/Log",
|
|
10
10
|
"sap/zen/dsh/DshRenderer"
|
|
11
11
|
],
|
|
12
|
-
function(jQuery,Log){
|
|
12
|
+
function(jQuery,Log, DshRenderer){
|
|
13
13
|
Log.info("Loading Analytic Grid Renderer");
|
|
14
14
|
jQuery.sap.declare("sap.zen.dsh.AnalyticGridRenderer");
|
|
15
|
-
sap.zen.dsh.AnalyticGridRenderer =
|
|
15
|
+
sap.zen.dsh.AnalyticGridRenderer = DshRenderer;
|
|
16
|
+
|
|
17
|
+
return DshRenderer;
|
|
16
18
|
}
|
|
17
19
|
);
|
package/src/sap/zen/dsh/Dsh.js
CHANGED
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
* SAPUI5
|
|
3
3
|
(c) Copyright 2009-2021 SAP SE. All rights reserved
|
|
4
4
|
*/
|
|
5
|
-
/*global sap
|
|
6
|
-
sap.ui.define(
|
|
7
|
-
"sap/zen/dsh/Dsh",
|
|
5
|
+
/*global sap*/
|
|
6
|
+
sap.ui.define( "sap/zen/dsh/Dsh",
|
|
8
7
|
[
|
|
9
8
|
"jquery.sap.global",
|
|
10
9
|
"sap/zen/dsh/library",
|
|
11
10
|
"sap/ui/thirdparty/URI",
|
|
12
11
|
"sap/ui/core/Control",
|
|
12
|
+
"sap/zen/dsh/DshRenderer",
|
|
13
13
|
"sap/viz/library"
|
|
14
|
-
],function(jQuery, dshLib, URI, Control){
|
|
14
|
+
],function(jQuery, dshLib, URI, Control, DshRenderer){
|
|
15
15
|
"use strict";
|
|
16
16
|
/**
|
|
17
17
|
*
|
|
@@ -109,75 +109,77 @@ sap.ui.define(
|
|
|
109
109
|
* @since 1.44
|
|
110
110
|
* @name sap.zen.dsh.Dsh
|
|
111
111
|
*/
|
|
112
|
-
var Dsh = Control.extend("sap.zen.dsh.Dsh", /** @lends sap.zen.dsh.Dsh.prototype */ {
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
112
|
+
var Dsh = Control.extend("sap.zen.dsh.Dsh", /** @lends sap.zen.dsh.Dsh.prototype */ {
|
|
113
|
+
metadata : {
|
|
114
|
+
library : "sap.zen.dsh",
|
|
115
|
+
properties : {
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* Name of the Design Studio application to be opened.
|
|
119
|
+
*/
|
|
120
|
+
dshAppName : {
|
|
121
|
+
type : "string",
|
|
122
|
+
group : "Misc",
|
|
123
|
+
defaultValue : "0ANALYSIS"
|
|
124
|
+
},
|
|
125
|
+
/**
|
|
126
|
+
* Path to application specified by dshAppName
|
|
127
|
+
*/
|
|
128
|
+
repoPath : {type : "string", group : "Misc", defaultValue : null},
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* Desired width of the Design Studio Control
|
|
132
|
+
*/
|
|
133
|
+
width : {type : "sap.ui.core.CSSSize", group : "Misc", defaultValue : null},
|
|
134
|
+
|
|
135
|
+
/**
|
|
136
|
+
* Desired height of the Design Studio Control
|
|
137
|
+
*/
|
|
138
|
+
height : {type : "sap.ui.core.CSSSize", group : "Misc", defaultValue : null},
|
|
139
|
+
|
|
140
|
+
/**
|
|
141
|
+
* the type of deployment
|
|
142
|
+
*/
|
|
143
|
+
deployment : {type : "string", group : "Misc", defaultValue : "bw"},
|
|
144
|
+
|
|
145
|
+
/**
|
|
146
|
+
* the protocol
|
|
147
|
+
*/
|
|
148
|
+
protocol : {type : "string", group : "Misc", defaultValue : null},
|
|
149
|
+
|
|
150
|
+
/**
|
|
151
|
+
* the client
|
|
152
|
+
*/
|
|
153
|
+
client : {type : "string", group : "Misc", defaultValue : null},
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* the language
|
|
157
|
+
*/
|
|
158
|
+
language : {type : "string", group : "Misc", defaultValue : null},
|
|
159
|
+
|
|
160
|
+
/**
|
|
161
|
+
* the semantic mappings
|
|
162
|
+
*/
|
|
163
|
+
semanticMappings : {type : "object", group : "Misc", defaultValue : null},
|
|
164
|
+
|
|
165
|
+
/**
|
|
166
|
+
* the application component
|
|
167
|
+
*/
|
|
168
|
+
appComponent : {type : "object", group : "Misc", defaultValue : null},
|
|
169
|
+
|
|
170
|
+
/**
|
|
171
|
+
* whether to defer the creation
|
|
172
|
+
*/
|
|
173
|
+
deferCreation : {type : "boolean", group : "Misc", defaultValue : false},
|
|
174
|
+
|
|
175
|
+
/**
|
|
176
|
+
* the system alias
|
|
177
|
+
*/
|
|
178
|
+
systemAlias : {type : "string", group : "Misc", defaultValue : null}
|
|
179
|
+
}
|
|
180
|
+
},
|
|
181
|
+
renderer: DshRenderer
|
|
182
|
+
});
|
|
181
183
|
|
|
182
184
|
|
|
183
185
|
/**
|
|
@@ -13,36 +13,35 @@ sap.ui.define(
|
|
|
13
13
|
* @class dsh renderer.
|
|
14
14
|
* @static
|
|
15
15
|
*/
|
|
16
|
-
sap.zen.dsh.DshRenderer = {
|
|
16
|
+
var DshRenderer = sap.zen.dsh.DshRenderer = {
|
|
17
|
+
apiVersion: 2
|
|
17
18
|
};
|
|
18
19
|
/**
|
|
19
20
|
* Renders the HTML for the given control, using the provided {@link sap.ui.core.RenderManager}.
|
|
20
21
|
*
|
|
21
22
|
* @param {sap.ui.core.RenderManager} oRm the RenderManager that can be used for writing to the render output buffer
|
|
22
|
-
* @param {sap.
|
|
23
|
+
* @param {sap.zen.dsh.Dsh} oControl an object representation of the control that should be rendered
|
|
23
24
|
*/
|
|
24
|
-
|
|
25
|
+
DshRenderer.render = function(oRm, oControl){
|
|
25
26
|
// write the HTML into the render manager
|
|
26
|
-
oRm.
|
|
27
|
-
oRm.writeControlData(oControl);
|
|
27
|
+
oRm.openStart("div", oControl);
|
|
28
28
|
|
|
29
|
-
oRm.
|
|
30
|
-
oRm.
|
|
29
|
+
oRm.style("width", oControl.getWidth());
|
|
30
|
+
oRm.style("height", oControl.getHeight());
|
|
31
31
|
|
|
32
|
-
oRm.
|
|
33
|
-
oRm.
|
|
34
|
-
oRm.
|
|
35
|
-
oRm.
|
|
36
|
-
oRm.
|
|
37
|
-
oRm.
|
|
38
|
-
oRm.
|
|
39
|
-
oRm.
|
|
40
|
-
oRm.
|
|
41
|
-
oRm.
|
|
42
|
-
oRm.
|
|
43
|
-
oRm.write("\">");
|
|
44
|
-
oRm.write("</div>");
|
|
45
|
-
oRm.write("</div>");
|
|
32
|
+
oRm.class("sapZenDshDsh");
|
|
33
|
+
oRm.class("sapUiBody");
|
|
34
|
+
oRm.openEnd();
|
|
35
|
+
oRm.openStart("div", oControl.getId() + "sapbi_snippet_ROOT");
|
|
36
|
+
oRm.class("sapbi_snippet_ROOT");
|
|
37
|
+
oRm.class("sapUiBody");
|
|
38
|
+
oRm.style("width", "100%");
|
|
39
|
+
oRm.style("height", "100%");
|
|
40
|
+
oRm.openEnd();
|
|
41
|
+
oRm.close("div");
|
|
42
|
+
oRm.close("div");
|
|
46
43
|
};
|
|
44
|
+
|
|
45
|
+
return DshRenderer;
|
|
47
46
|
}
|
|
48
47
|
);
|
|
@@ -8088,7 +8088,7 @@ sap.zen.TemplateLoader.prototype.getContentAsString = function()
|
|
|
8088
8088
|
{
|
|
8089
8089
|
loUri.setPath("/");
|
|
8090
8090
|
}
|
|
8091
|
-
loRequest.
|
|
8091
|
+
loRequest.setFromParentUriAndRelativeUrl(loUri, this.mUrl, false);
|
|
8092
8092
|
loRequest.setMethod(oFF.HttpRequestMethod.HTTP_GET);
|
|
8093
8093
|
loRequest.setAcceptContentType(oFF.ContentType.APPLICATION_XML);
|
|
8094
8094
|
loRequest.setTextContentEncoding("UTF-8");
|
|
@@ -8494,10 +8494,11 @@ sap.zen.DataSourceInfo.prototype.initMe = function(oDataSource)
|
|
|
8494
8494
|
{
|
|
8495
8495
|
return;
|
|
8496
8496
|
}
|
|
8497
|
-
var
|
|
8498
|
-
|
|
8497
|
+
var systemName = loQueryManager.getSystemDescription().getName();
|
|
8498
|
+
var systemConnect = loQueryManager.getApplication().getSystemConnect(systemName);
|
|
8499
|
+
if (oFF.notNull(systemConnect))
|
|
8499
8500
|
{
|
|
8500
|
-
var loServerMetadata =
|
|
8501
|
+
var loServerMetadata = systemConnect.getServerMetadata();
|
|
8501
8502
|
if (oFF.notNull(loServerMetadata))
|
|
8502
8503
|
{
|
|
8503
8504
|
this.mSystem = loServerMetadata.getId();
|
|
@@ -31,7 +31,7 @@ sap.ui.define(
|
|
|
31
31
|
* @alias sap.zen.dsh
|
|
32
32
|
* @public
|
|
33
33
|
* @author SAP SE
|
|
34
|
-
* @version 1.
|
|
34
|
+
* @version 1.108.0
|
|
35
35
|
*/
|
|
36
36
|
var thisLib = sap.ui.getCore().initLibrary(
|
|
37
37
|
{
|
|
@@ -56,7 +56,7 @@ sap.ui.define(
|
|
|
56
56
|
],
|
|
57
57
|
elements: [],
|
|
58
58
|
noLibraryCSS: true,
|
|
59
|
-
version: "1.
|
|
59
|
+
version: "1.108.0"
|
|
60
60
|
}
|
|
61
61
|
);
|
|
62
62
|
|
|
@@ -1,796 +0,0 @@
|
|
|
1
|
-
FF_COMMON_APPLY=Apply
|
|
2
|
-
FF_COMMON_CANCEL=Cancel
|
|
3
|
-
FF_COMMON_OK=OK
|
|
4
|
-
FF_COMMON_OVERWRITE=Overwrite
|
|
5
|
-
FF_COMMON_SAVE=Save
|
|
6
|
-
FF_COMMON_WARNING=Warning
|
|
7
|
-
FF_CONNECTION_LABEL_VALUE=Connection:
|
|
8
|
-
FF_CURR_DIALOG_TARGET_CURRENCY_LABEL=Target Currency
|
|
9
|
-
FF_CURR_DIALOG_TARGET_DROPDOWN_DEFAULT_VALUE=Display Original Currency
|
|
10
|
-
FF_CURR_DIALOG_TARGET_DROPDOWN_VALUE={0} | {1}
|
|
11
|
-
FF_CURR_DIALOG_TITLE=Select Conversions
|
|
12
|
-
FF_CURR_DIALOG_TOAST_ERROR_TRANSLATION_NOT_ENABLED=A Currency Translation cannot be applied on this query.
|
|
13
|
-
FF_CURR_DIALOG_TOAST_ERROR_TRANSLATION_NOT_SUPPORTED=The query does not support Currency Translation.
|
|
14
|
-
FF_CURR_DIALOG_TRANSLATION_TYPE_LABEL=Currency Translation Type
|
|
15
|
-
FF_CURR_DIALOG_TYPE_DROPDOWN_DEFAULT_VALUE=No Conversion
|
|
16
|
-
FF_DATASOURCE_PICKER_CATALOG=Catalog
|
|
17
|
-
FF_DATASOURCE_PICKER_RECENT=Recent
|
|
18
|
-
FF_DD_ALL_NODES=All nodes
|
|
19
|
-
FF_DD_BREAK_GROUPING=Break grouping
|
|
20
|
-
FF_DD_CONDENSE_NODES=Condense nodes with only 1 child
|
|
21
|
-
FF_DD_CONTENT=Content:
|
|
22
|
-
FF_DD_CONTENT_KEY=ID
|
|
23
|
-
FF_DD_CONTENT_KEY_AND_TEXT=ID (Description)
|
|
24
|
-
FF_DD_CONTENT_TEXT=Description
|
|
25
|
-
FF_DD_CONTENT_TEXT_AND_KEY=Description (ID)
|
|
26
|
-
FF_DD_DIMENSION=Dimension
|
|
27
|
-
FF_DD_DISPLAY=Display
|
|
28
|
-
FF_DD_DISPLAY_HIERARCHICALLY=Display hierarchically
|
|
29
|
-
FF_DD_ENTER_HIERARCHY_NAME=Hierarchy Name
|
|
30
|
-
FF_DD_HIERARCHIES=Hierarchies
|
|
31
|
-
FF_DD_HIERARCHY=Hierarchy:
|
|
32
|
-
FF_DD_INCLUDE_UNBOOKED=Include unbooked values
|
|
33
|
-
FF_DD_NODES_TO_SHOW=Nodes to show:
|
|
34
|
-
FF_DD_NODE_POSITION=Position of child nodes
|
|
35
|
-
FF_DD_NODE_POSITION_ABOVE=Above
|
|
36
|
-
FF_DD_NODE_POSITION_BELOW=Below
|
|
37
|
-
FF_DD_ONLY_ROOT_NODES=Only root nodes
|
|
38
|
-
FF_DD_ROOT_AND_X_CHILD_LEVEL=From root to level {0}
|
|
39
|
-
FF_DD_SORTING=Sorting
|
|
40
|
-
FF_DD_SORT_BY=Sort by:
|
|
41
|
-
FF_DD_SORT_BY_FILTER=Filter
|
|
42
|
-
FF_DD_SORT_BY_HIERARCHY=Hierarchy
|
|
43
|
-
FF_DD_SORT_DIRECTION=Direction:
|
|
44
|
-
FF_DD_SORT_DIRECTION_ASCENDING=Ascending
|
|
45
|
-
FF_DD_SORT_DIRECTION_DESCENDING=Descending
|
|
46
|
-
FF_DD_SORT_DIRECTION_NONE=None
|
|
47
|
-
FF_DD_SUPPRESS_POSTED=Suppress values of posted nodes
|
|
48
|
-
FF_DD_TITLE=Properties for {0}
|
|
49
|
-
FF_DD_TOTALS=Totals:
|
|
50
|
-
FF_DD_TOTALS_HIDDEN=Hidden
|
|
51
|
-
FF_DD_TOTALS_MORE_THAN_ONE=When more than 1 value
|
|
52
|
-
FF_DD_TOTALS_POSITION=Totals Position:
|
|
53
|
-
FF_DD_TOTALS_POSITION_BOT=Bottom
|
|
54
|
-
FF_DD_TOTALS_POSITION_TOP=Top
|
|
55
|
-
FF_DD_TOTALS_VISIBLE=Visible
|
|
56
|
-
FF_DD_TYPE=Description Type:
|
|
57
|
-
FF_DD_TYPE_LONG=Long
|
|
58
|
-
FF_DD_TYPE_MEDIUM=Medium
|
|
59
|
-
FF_DD_TYPE_SHORT=Short
|
|
60
|
-
FF_DD_TYPE_XXL=XXL
|
|
61
|
-
FF_ERROR_AUTHENTICATION_CANCELED=Authentication canceled
|
|
62
|
-
FF_ERROR_INVALID_PASSWORD=Invalid password
|
|
63
|
-
FF_ERROR_INVALID_USERNAME=Invalid user name
|
|
64
|
-
FF_ERROR_WRONG_CREDENTIALS=We couldn't connect to your {0} system
|
|
65
|
-
FF_FILTERLINE_ADD_FILTER=Add Filter
|
|
66
|
-
FF_FILTERLINE_DELETE_FILTER=Delete Filter
|
|
67
|
-
FF_FILTERLINE_DIMENSIONS=Dimensions
|
|
68
|
-
FF_FILTERLINE_FD_TITLE=Set Filter for {0}
|
|
69
|
-
FF_FILTERLINE_FILTER_MENU_DIMENSION_NAME_TOOLTIP={0} ({1})
|
|
70
|
-
FF_FILTERLINE_MEASURES=Measures
|
|
71
|
-
FF_FILTERLINE_NULL=(Null)
|
|
72
|
-
FF_GDS_QB_ADD_COLUMN=Add Column
|
|
73
|
-
FF_GDS_QB_ADD_ROW=Add Row
|
|
74
|
-
FF_GDS_QB_ATTRIBUTE_MOVE_DOWN=Down
|
|
75
|
-
FF_GDS_QB_ATTRIBUTE_MOVE_LEFT=Left
|
|
76
|
-
FF_GDS_QB_ATTRIBUTE_MOVE_RIGHT=Right
|
|
77
|
-
FF_GDS_QB_ATTRIBUTE_MOVE_UP=Up
|
|
78
|
-
FF_GDS_QB_AXIS_COLUMNS=Columns
|
|
79
|
-
FF_GDS_QB_AXIS_DISPLAY_COMPACT=Compact Display
|
|
80
|
-
FF_GDS_QB_AXIS_DISPLAY_HIERARCHICALLY=Display Axis Hierarchically
|
|
81
|
-
FF_GDS_QB_AXIS_ROWS=Rows
|
|
82
|
-
FF_GDS_QB_AXIS_SWAP=Swap Axis
|
|
83
|
-
FF_GDS_QB_BUILDER_ADD_MEASURE_INFO=Add at least one measure.
|
|
84
|
-
FF_GDS_QB_BUILDER_REMOVE=Remove
|
|
85
|
-
FF_GDS_QB_BUILDER_TITLE=Builder
|
|
86
|
-
FF_GDS_QB_CANNOT_OPEN_MODEL_MSG=Failed to open the model!
|
|
87
|
-
FF_GDS_QB_CELLCHART=Cell Chart
|
|
88
|
-
FF_GDS_QB_CELLCHART_BAR_COLOR=Bar Color
|
|
89
|
-
FF_GDS_QB_CELLCHART_DISTRIBUTE_COLORS=Distribute Colors
|
|
90
|
-
FF_GDS_QB_CELLCHART_KEEP_VALUE_DISPLAY=Keep Value Display
|
|
91
|
-
FF_GDS_QB_CELLCHART_LINE_COLOR=Line Color
|
|
92
|
-
FF_GDS_QB_CELLCHART_ORIENTATION=Orientation
|
|
93
|
-
FF_GDS_QB_CELLCHART_ORIENTATION_HORIZONTAL=Horizontal
|
|
94
|
-
FF_GDS_QB_CELLCHART_ORIENTATION_VERTICAL=Vertical
|
|
95
|
-
FF_GDS_QB_CELLCHART_SHOW=Show
|
|
96
|
-
FF_GDS_QB_CELLCHART_TYPE=Type
|
|
97
|
-
FF_GDS_QB_CELLCHART_TYPE_BAR=Bar
|
|
98
|
-
FF_GDS_QB_CELLCHART_TYPE_PIN=Pin
|
|
99
|
-
FF_GDS_QB_CELLCHART_TYPE_VARIANCE_BAR=Variance Bar
|
|
100
|
-
FF_GDS_QB_CHANGE_DATA_SOURCE=Change Data Source...
|
|
101
|
-
FF_GDS_QB_COLOR_BLACK_1=Black 1
|
|
102
|
-
FF_GDS_QB_COLOR_BLACK_2=Black 2
|
|
103
|
-
FF_GDS_QB_COLOR_BLUE_1=Blue 1
|
|
104
|
-
FF_GDS_QB_COLOR_BLUE_2=Blue 2
|
|
105
|
-
FF_GDS_QB_COLOR_BLUE_3=Blue 3
|
|
106
|
-
FF_GDS_QB_COLOR_BLUE_4=Blue 4
|
|
107
|
-
FF_GDS_QB_COLOR_BLUE_5=Blue 5
|
|
108
|
-
FF_GDS_QB_COLOR_BROWN_1=Brown 1
|
|
109
|
-
FF_GDS_QB_COLOR_BROWN_2=Brown 2
|
|
110
|
-
FF_GDS_QB_COLOR_GREEN=Green
|
|
111
|
-
FF_GDS_QB_COLOR_GREY_1=Grey 1
|
|
112
|
-
FF_GDS_QB_COLOR_GREY_2=Grey 2
|
|
113
|
-
FF_GDS_QB_COLOR_GREY_3=Grey 3
|
|
114
|
-
FF_GDS_QB_COLOR_GREY_4=Grey 4
|
|
115
|
-
FF_GDS_QB_COLOR_PURPLE=Purple
|
|
116
|
-
FF_GDS_QB_COLOR_VIOLET=Violet
|
|
117
|
-
FF_GDS_QB_COLOR_YELLOW_1=Yellow 1
|
|
118
|
-
FF_GDS_QB_COLOR_YELLOW_2=Yellow 2
|
|
119
|
-
FF_GDS_QB_COMMENT_CREATE=Create Comment
|
|
120
|
-
FF_GDS_QB_COMMENT_DELETE=Delete Comment
|
|
121
|
-
FF_GDS_QB_COMMENT_DELETE_MESSAGE=Do you really want to delete the comment?
|
|
122
|
-
FF_GDS_QB_COMMENT_DELETE_TITLE=Deleting Comment...
|
|
123
|
-
FF_GDS_QB_COMMENT_EDIT=Edit Comment
|
|
124
|
-
FF_GDS_QB_COMMENT_SHOW=Show Comment
|
|
125
|
-
FF_GDS_QB_COMMON_ACCOUNT=Accounts
|
|
126
|
-
FF_GDS_QB_COMMON_MEASURES=Measures
|
|
127
|
-
FF_GDS_QB_COMMON_MORE=More
|
|
128
|
-
FF_GDS_QB_COMMON_STRUCTURE=Structure
|
|
129
|
-
FF_GDS_QB_CONDITIONS=Conditions
|
|
130
|
-
FF_GDS_QB_DATA=Data
|
|
131
|
-
FF_GDS_QB_DATASOURCE_PICKER_CATALOG=Select Data Source
|
|
132
|
-
FF_GDS_QB_DIALOG_ACCOUNT=Account ...
|
|
133
|
-
FF_GDS_QB_DIALOG_CURRENCY_CONVERSION=Currency Conversion ...
|
|
134
|
-
FF_GDS_QB_DIALOG_CURRENCY_CONVERSION_SELECT=Select Conversions ...
|
|
135
|
-
FF_GDS_QB_DIALOG_DATACELL=Cell ...
|
|
136
|
-
FF_GDS_QB_DIALOG_LAYOUT=Layout ...
|
|
137
|
-
FF_GDS_QB_DIALOG_MEASURE=Measure ...
|
|
138
|
-
FF_GDS_QB_DIALOG_PROMPTS=Edit Prompts...
|
|
139
|
-
FF_GDS_QB_DIALOG_QUERYINFO=Query Info...
|
|
140
|
-
FF_GDS_QB_DIALOG_TOPN=Create Top N ...
|
|
141
|
-
FF_GDS_QB_DIALOG_VARIABLE=Set Variables...
|
|
142
|
-
FF_GDS_QB_DIALOG_VARIABLE_SAC=Set Variables for {0}
|
|
143
|
-
FF_GDS_QB_DIMENSION=Dimension
|
|
144
|
-
FF_GDS_QB_DIMENSIONS=Dimensions
|
|
145
|
-
FF_GDS_QB_DIMENSION_ACCOUNT=Account Dimension
|
|
146
|
-
FF_GDS_QB_DIMENSION_ATTRIBUTES=Attributes
|
|
147
|
-
FF_GDS_QB_DIMENSION_CALCULATED=Calculated Dimension
|
|
148
|
-
FF_GDS_QB_DIMENSION_FIELDS=Fields
|
|
149
|
-
FF_GDS_QB_DIMENSION_MEASURE_STRUCTURE=Measure Structure
|
|
150
|
-
FF_GDS_QB_DIMENSION_MOVE=Move
|
|
151
|
-
FF_GDS_QB_DIMENSION_MOVE_DOWN=Down
|
|
152
|
-
FF_GDS_QB_DIMENSION_MOVE_LEFT=Left
|
|
153
|
-
FF_GDS_QB_DIMENSION_MOVE_RIGHT=Right
|
|
154
|
-
FF_GDS_QB_DIMENSION_MOVE_TO_COLUMNS=Move to Columns
|
|
155
|
-
FF_GDS_QB_DIMENSION_MOVE_TO_COLUMNS_SHORT=To Columns
|
|
156
|
-
FF_GDS_QB_DIMENSION_MOVE_TO_ROWS=Move to Rows
|
|
157
|
-
FF_GDS_QB_DIMENSION_MOVE_TO_ROWS_SHORT=To Rows
|
|
158
|
-
FF_GDS_QB_DIMENSION_MOVE_UP=Up
|
|
159
|
-
FF_GDS_QB_DIMENSION_REMOVE_FROM_AXIS=Remove
|
|
160
|
-
FF_GDS_QB_DIMENSION_SECONDARY_STRUCTURE=Secondary Structure
|
|
161
|
-
FF_GDS_QB_DOCUMENT_LOAD=Load
|
|
162
|
-
FF_GDS_QB_DOCUMENT_LOAD_DATASOURCE=Select Data Source...
|
|
163
|
-
FF_GDS_QB_DOCUMENT_LOAD_DATASOURCE_LEGACY=Select Data Source (Legacy)...
|
|
164
|
-
FF_GDS_QB_DOCUMENT_LOAD_INSIGHT=Select Insight...
|
|
165
|
-
FF_GDS_QB_DOCUMENT_LOAD_MODEL=Select Model...
|
|
166
|
-
FF_GDS_QB_DRILL=Drill
|
|
167
|
-
FF_GDS_QB_DRILL_ABOVE=Above
|
|
168
|
-
FF_GDS_QB_DRILL_ADVANCED_SETTINGS=Advanced Settings...
|
|
169
|
-
FF_GDS_QB_DRILL_ALL_NODES=All Nodes
|
|
170
|
-
FF_GDS_QB_DRILL_ALL_NODES_+=All Nodes +
|
|
171
|
-
FF_GDS_QB_DRILL_ARRANGE=Arrange Parent Nodes
|
|
172
|
-
FF_GDS_QB_DRILL_BELOW=Below
|
|
173
|
-
FF_GDS_QB_DRILL_CHILDREN_ABOVE_PARENT=Children above Parent
|
|
174
|
-
FF_GDS_QB_DRILL_COLLAPSE=Collapse
|
|
175
|
-
FF_GDS_QB_DRILL_COMPACT_DISPLAY=Compact Display
|
|
176
|
-
FF_GDS_QB_DRILL_DIMENSION_DEFAULT=Dimension Default
|
|
177
|
-
FF_GDS_QB_DRILL_EXPAND=Expand
|
|
178
|
-
FF_GDS_QB_DRILL_FLAT_PRESENTATION=Flat Presentation
|
|
179
|
-
FF_GDS_QB_DRILL_HIERARCHY=Hierarchy
|
|
180
|
-
FF_GDS_QB_DRILL_INITIAL_DISPLAY_LEVEL=Drill Level
|
|
181
|
-
FF_GDS_QB_DRILL_LEFT=To the Left
|
|
182
|
-
FF_GDS_QB_DRILL_LEVEL_1=Level 1
|
|
183
|
-
FF_GDS_QB_DRILL_LEVEL_10=Level 10
|
|
184
|
-
FF_GDS_QB_DRILL_LEVEL_11=Level 11
|
|
185
|
-
FF_GDS_QB_DRILL_LEVEL_12=Level 12
|
|
186
|
-
FF_GDS_QB_DRILL_LEVEL_13=Level 13
|
|
187
|
-
FF_GDS_QB_DRILL_LEVEL_14=Level 14
|
|
188
|
-
FF_GDS_QB_DRILL_LEVEL_15=Level 15
|
|
189
|
-
FF_GDS_QB_DRILL_LEVEL_16=Level 16
|
|
190
|
-
FF_GDS_QB_DRILL_LEVEL_17=Level 17
|
|
191
|
-
FF_GDS_QB_DRILL_LEVEL_18=Level 18
|
|
192
|
-
FF_GDS_QB_DRILL_LEVEL_19=Level 19
|
|
193
|
-
FF_GDS_QB_DRILL_LEVEL_2=Level 2
|
|
194
|
-
FF_GDS_QB_DRILL_LEVEL_20=Level 20
|
|
195
|
-
FF_GDS_QB_DRILL_LEVEL_21=Level 21
|
|
196
|
-
FF_GDS_QB_DRILL_LEVEL_22=Level 22
|
|
197
|
-
FF_GDS_QB_DRILL_LEVEL_23=Level 23
|
|
198
|
-
FF_GDS_QB_DRILL_LEVEL_24=Level 24
|
|
199
|
-
FF_GDS_QB_DRILL_LEVEL_25=Level 25
|
|
200
|
-
FF_GDS_QB_DRILL_LEVEL_26=Level 26
|
|
201
|
-
FF_GDS_QB_DRILL_LEVEL_27=Level 27
|
|
202
|
-
FF_GDS_QB_DRILL_LEVEL_28=Level 28
|
|
203
|
-
FF_GDS_QB_DRILL_LEVEL_29=Level 29
|
|
204
|
-
FF_GDS_QB_DRILL_LEVEL_3=Level 3
|
|
205
|
-
FF_GDS_QB_DRILL_LEVEL_30=Level 30
|
|
206
|
-
FF_GDS_QB_DRILL_LEVEL_4=Level 4
|
|
207
|
-
FF_GDS_QB_DRILL_LEVEL_5=Level 5
|
|
208
|
-
FF_GDS_QB_DRILL_LEVEL_6=Level 6
|
|
209
|
-
FF_GDS_QB_DRILL_LEVEL_7=Level 7
|
|
210
|
-
FF_GDS_QB_DRILL_LEVEL_8=Level 8
|
|
211
|
-
FF_GDS_QB_DRILL_LEVEL_9=Level 9
|
|
212
|
-
FF_GDS_QB_DRILL_MERGE_DIMENSIONS_ON_AXIS=Merge Dimensions on Axis
|
|
213
|
-
FF_GDS_QB_DRILL_NODE_CONDENSATION=Node Condensation
|
|
214
|
-
FF_GDS_QB_DRILL_RIGHT=To the Right
|
|
215
|
-
FF_GDS_QB_DRILL_ROOT_LEVEL=Root Level
|
|
216
|
-
FF_GDS_QB_DRILL_ROOT_PLUS_10_CHILD_LEVELS=Root + 10 Child Levels
|
|
217
|
-
FF_GDS_QB_DRILL_ROOT_PLUS_11_CHILD_LEVELS=Root + 11 Child Levels
|
|
218
|
-
FF_GDS_QB_DRILL_ROOT_PLUS_12_CHILD_LEVELS=Root + 12 Child Levels
|
|
219
|
-
FF_GDS_QB_DRILL_ROOT_PLUS_13_CHILD_LEVELS=Root + 13 Child Levels
|
|
220
|
-
FF_GDS_QB_DRILL_ROOT_PLUS_14_CHILD_LEVELS=Root + 14 Child Levels
|
|
221
|
-
FF_GDS_QB_DRILL_ROOT_PLUS_15_CHILD_LEVELS=Root + 15 Child Levels
|
|
222
|
-
FF_GDS_QB_DRILL_ROOT_PLUS_16_CHILD_LEVELS=Root + 16 Child Levels
|
|
223
|
-
FF_GDS_QB_DRILL_ROOT_PLUS_17_CHILD_LEVELS=Root + 17 Child Levels
|
|
224
|
-
FF_GDS_QB_DRILL_ROOT_PLUS_18_CHILD_LEVELS=Root + 18 Child Levels
|
|
225
|
-
FF_GDS_QB_DRILL_ROOT_PLUS_19_CHILD_LEVELS=Root + 19 Child Levels
|
|
226
|
-
FF_GDS_QB_DRILL_ROOT_PLUS_1_CHILD_LEVEL=Root + 1 Child Level
|
|
227
|
-
FF_GDS_QB_DRILL_ROOT_PLUS_20_CHILD_LEVELS=Root + 20 Child Levels
|
|
228
|
-
FF_GDS_QB_DRILL_ROOT_PLUS_21_CHILD_LEVELS=Root + 21 Child Levels
|
|
229
|
-
FF_GDS_QB_DRILL_ROOT_PLUS_22_CHILD_LEVELS=Root + 22 Child Levels
|
|
230
|
-
FF_GDS_QB_DRILL_ROOT_PLUS_23_CHILD_LEVELS=Root + 23 Child Levels
|
|
231
|
-
FF_GDS_QB_DRILL_ROOT_PLUS_24_CHILD_LEVELS=Root + 24 Child Levels
|
|
232
|
-
FF_GDS_QB_DRILL_ROOT_PLUS_25_CHILD_LEVELS=Root + 25 Child Levels
|
|
233
|
-
FF_GDS_QB_DRILL_ROOT_PLUS_26_CHILD_LEVELS=Root + 26 Child Levels
|
|
234
|
-
FF_GDS_QB_DRILL_ROOT_PLUS_27_CHILD_LEVELS=Root + 27 Child Levels
|
|
235
|
-
FF_GDS_QB_DRILL_ROOT_PLUS_28_CHILD_LEVELS=Root + 28 Child Levels
|
|
236
|
-
FF_GDS_QB_DRILL_ROOT_PLUS_29_CHILD_LEVELS=Root + 29 Child Levels
|
|
237
|
-
FF_GDS_QB_DRILL_ROOT_PLUS_2_CHILD_LEVELS=Root + 2 Child Levels
|
|
238
|
-
FF_GDS_QB_DRILL_ROOT_PLUS_3_CHILD_LEVELS=Root + 3 Child Levels
|
|
239
|
-
FF_GDS_QB_DRILL_ROOT_PLUS_4_CHILD_LEVELS=Root + 4 Child Levels
|
|
240
|
-
FF_GDS_QB_DRILL_ROOT_PLUS_5_CHILD_LEVELS=Root + 5 Child Levels
|
|
241
|
-
FF_GDS_QB_DRILL_ROOT_PLUS_6_CHILD_LEVELS=Root + 6 Child Levels
|
|
242
|
-
FF_GDS_QB_DRILL_ROOT_PLUS_7_CHILD_LEVELS=Root + 7 Child Levels
|
|
243
|
-
FF_GDS_QB_DRILL_ROOT_PLUS_8_CHILD_LEVELS=Root + 8 Child Levels
|
|
244
|
-
FF_GDS_QB_DRILL_ROOT_PLUS_9_CHILD_LEVELS=Root + 9 Child Levels
|
|
245
|
-
FF_GDS_QB_DRILL_SELECT_HIERARCHY_DIALOG=Select Hierarchy...
|
|
246
|
-
FF_GDS_QB_DRILL_SHOW_POSTED_NODES=Show Posted Nodes
|
|
247
|
-
FF_GDS_QB_DRILL_TO_DIMENSION=Drill to
|
|
248
|
-
FF_GDS_QB_EXCEPTIONS=Exceptions
|
|
249
|
-
FF_GDS_QB_EXCLUDE_MEMBER=Exclude Member
|
|
250
|
-
FF_GDS_QB_EXCLUDE_MEMBERS=Exclude Members
|
|
251
|
-
FF_GDS_QB_FIELD_MOVE_DOWN=Down
|
|
252
|
-
FF_GDS_QB_FIELD_MOVE_LEFT=Left
|
|
253
|
-
FF_GDS_QB_FIELD_MOVE_RIGHT=Right
|
|
254
|
-
FF_GDS_QB_FIELD_MOVE_UP=Up
|
|
255
|
-
FF_GDS_QB_FILE=File
|
|
256
|
-
FF_GDS_QB_FILTER=Filter
|
|
257
|
-
FF_GDS_QB_FILTER_AND_DRILL=Filter and Drill
|
|
258
|
-
FF_GDS_QB_FILTER_BY_MEMBER_DIALOG=Filter by Member...
|
|
259
|
-
FF_GDS_QB_FILTER_CLEAR=Clear
|
|
260
|
-
FF_GDS_QB_FILTER_DIALOG_TITLE=Set Filter for {0}
|
|
261
|
-
FF_GDS_QB_FILTER_DRILL_REPLACE_DIMENSION=Filter and Exchange Dimension
|
|
262
|
-
FF_GDS_QB_FILTER_EDIT=Edit ...
|
|
263
|
-
FF_GDS_QB_FILTER_EXCLUDE=Exclude
|
|
264
|
-
FF_GDS_QB_FILTER_EXCLUDE_PARTIAL_TUPLE=Exclude Partial Tuple
|
|
265
|
-
FF_GDS_QB_FILTER_EXCLUDE_PARTIAL_TUPLES=Exclude Partial Tuples
|
|
266
|
-
FF_GDS_QB_FILTER_EXCLUDE_TUPLE=Exclude Tuple
|
|
267
|
-
FF_GDS_QB_FILTER_EXCLUDE_TUPLES=Exclude Tuples
|
|
268
|
-
FF_GDS_QB_FILTER_KEEP_MEMBER=Filter Member
|
|
269
|
-
FF_GDS_QB_FILTER_KEEP_MEMBERS=Filter Members
|
|
270
|
-
FF_GDS_QB_FILTER_KEEP_PARTIAL_TUPLE=Filter Partial Tuple
|
|
271
|
-
FF_GDS_QB_FILTER_KEEP_PARTIAL_TUPLES=Filter Partial Tuples
|
|
272
|
-
FF_GDS_QB_FILTER_KEEP_TUPLE=Filter Tuple
|
|
273
|
-
FF_GDS_QB_FILTER_KEEP_TUPLES=Filter Tuples
|
|
274
|
-
FF_GDS_QB_GRID=Grid
|
|
275
|
-
FF_GDS_QB_GRID_DIMENSION_HEADERS=Dimension Headers
|
|
276
|
-
FF_GDS_QB_GRID_FREEZE=Freeze
|
|
277
|
-
FF_GDS_QB_GRID_FREEZE_COLUMN_HEADERS=Freeze Column Headers
|
|
278
|
-
FF_GDS_QB_GRID_FREEZE_FREEZE_UP_TO_ROW=Freeze up to Row
|
|
279
|
-
FF_GDS_QB_GRID_FREEZE_HEADERS=Freeze Headers
|
|
280
|
-
FF_GDS_QB_GRID_FREEZE_LINES=Freeze Lines
|
|
281
|
-
FF_GDS_QB_GRID_FREEZE_NONE=None
|
|
282
|
-
FF_GDS_QB_GRID_FREEZE_ROW_HEADERS=Freeze Row Headers
|
|
283
|
-
FF_GDS_QB_GRID_FREEZE_UP_TO_COLUMN=Freeze up to Column
|
|
284
|
-
FF_GDS_QB_GRID_HEADERS=Column/Row Headers
|
|
285
|
-
FF_GDS_QB_GRID_HIGHLIGHT_HEADERS=Highlight Headers
|
|
286
|
-
FF_GDS_QB_GRID_HIGHLIGHT_TOTALS=Highlight Totals
|
|
287
|
-
FF_GDS_QB_GRID_MERGE_REPETITIVE_MEMBER_CELLS=Merge Repetitive Member Cells
|
|
288
|
-
FF_GDS_QB_GRID_SHOW=Show
|
|
289
|
-
FF_GDS_QB_GRID_SHOW_LINES=Grid
|
|
290
|
-
FF_GDS_QB_GRID_SHOW_REPETITIVE_MEMBER_NAMES=Repetitive Member Names
|
|
291
|
-
FF_GDS_QB_GRID_SHOW_SUBTITLE=Subtitle
|
|
292
|
-
FF_GDS_QB_GRID_SHOW_TABLE_DETAILS=Table Details
|
|
293
|
-
FF_GDS_QB_GRID_SHOW_TABLE_TITLE=Table Title
|
|
294
|
-
FF_GDS_QB_GRID_STRIPING_COLUMNS=Column Striping
|
|
295
|
-
FF_GDS_QB_GRID_STRIPING_ROWS=Row Striping
|
|
296
|
-
FF_GDS_QB_GRID_TABLE_FUNCTIONS=Table Functions
|
|
297
|
-
FF_GDS_QB_GRID_THEME=Themes
|
|
298
|
-
FF_GDS_QB_GRID_THEME_FINANCE_STYLE=Finance Style
|
|
299
|
-
FF_GDS_QB_GRID_THEME_SAC_STYLE=Sac Style
|
|
300
|
-
FF_GDS_QB_GRID_THEME_SPREADSHEET_STYLE=Spreadsheet Style
|
|
301
|
-
FF_GDS_QB_HIDE=Hide
|
|
302
|
-
FF_GDS_QB_HIDE_COLUMN=Hide Column
|
|
303
|
-
FF_GDS_QB_HIDE_ROW=Hide Row
|
|
304
|
-
FF_GDS_QB_INSERT_AFTER=After
|
|
305
|
-
FF_GDS_QB_INSERT_BEFORE=Before
|
|
306
|
-
FF_GDS_QB_INSERT_COLUMN=Insert Column
|
|
307
|
-
FF_GDS_QB_INSERT_ROW=Insert Row
|
|
308
|
-
FF_GDS_QB_LABEL_DESCRIPTION=Description
|
|
309
|
-
FF_GDS_QB_LABEL_DESCRIPTION_AND_ID=Description and ID
|
|
310
|
-
FF_GDS_QB_LABEL_ID=ID
|
|
311
|
-
FF_GDS_QB_LABEL_ID_AND_DESCRIPTION=ID and Description
|
|
312
|
-
FF_GDS_QB_LANDING_PAGE_CREATE_NEW=Create New
|
|
313
|
-
FF_GDS_QB_LANDING_PAGE_FROM_DATASOURCE=From a Data Source
|
|
314
|
-
FF_GDS_QB_LANDING_PAGE_FROM_DATASOURCE_LEGACY=From a Data Source (Legacy)
|
|
315
|
-
FF_GDS_QB_LANDING_PAGE_FROM_MODEL=From an Existing Model
|
|
316
|
-
FF_GDS_QB_LANDING_PAGE_LEARN_MORE=Learn More...
|
|
317
|
-
FF_GDS_QB_LANDING_PAGE_NO_RECENT_FILES_YET=No recent files yet. Open a file and it will show up here.
|
|
318
|
-
FF_GDS_QB_LANDING_PAGE_OPEN_INSIGHT=Open Existing Insight
|
|
319
|
-
FF_GDS_QB_LANDING_PAGE_RECENTS_CHANGED_BY=Changed By
|
|
320
|
-
FF_GDS_QB_LANDING_PAGE_RECENTS_CHANGED_ON=Changed On
|
|
321
|
-
FF_GDS_QB_LANDING_PAGE_RECENTS_CREATED_BY=Created By
|
|
322
|
-
FF_GDS_QB_LANDING_PAGE_RECENTS_CREATED_ON=Created On
|
|
323
|
-
FF_GDS_QB_LANDING_PAGE_RECENTS_DESC=Description
|
|
324
|
-
FF_GDS_QB_LANDING_PAGE_RECENTS_NAME=Name
|
|
325
|
-
FF_GDS_QB_LANDING_PAGE_RECENT_FILES_TITLE=Recent Files ({0})
|
|
326
|
-
FF_GDS_QB_LANDING_PAGE_SEARCH_IN_RECENT_FILES=Search in: Recent Files
|
|
327
|
-
FF_GDS_QB_LANDING_PAGE_WELCOME_MSG=Welcome to Optimized Data Analyzer
|
|
328
|
-
FF_GDS_QB_LANDING_PAGE_WELCOME_MSG_DETAILS=Explore your data and instantly discover insights.
|
|
329
|
-
FF_GDS_QB_MISC_DEFAULT_CONTENT=Default Content
|
|
330
|
-
FF_GDS_QB_MISC_SHOW/HIDE=Show/Hide
|
|
331
|
-
FF_GDS_QB_MISC_SUPPRESS=Suppress
|
|
332
|
-
FF_GDS_QB_MISC_UNDEFINED=Undefined
|
|
333
|
-
FF_GDS_QB_MSG_ACCOUNT_MEMBER_ERROR=Unable to retrieve the account members.
|
|
334
|
-
FF_GDS_QB_MSG_COULD_NOT_SUBMIT_VARIABLES=Could not submit variables!
|
|
335
|
-
FF_GDS_QB_MSG_DATA_ACCESS_PROBLEMS=The request returned no data because of data access problems.
|
|
336
|
-
FF_GDS_QB_MSG_ERROR=An Error occurred.
|
|
337
|
-
FF_GDS_QB_MSG_FILTER_NOT_FULLY_SUPPORTED=The current filter is correctly applied to the table, but is not yet fully supported by other components. It might be lost when changing the view.
|
|
338
|
-
FF_GDS_QB_MSG_INVALID_QUERY_VIEW_STATE=The request returned no data because the system is in an invalid view state.
|
|
339
|
-
FF_GDS_QB_MSG_INVALID_VARIABLE_VALUES=The request returned no data because not all variables were filled correctly.
|
|
340
|
-
FF_GDS_QB_MSG_LOADING_QUERY=Loading query...
|
|
341
|
-
FF_GDS_QB_MSG_MEASURE_HIERARCHY_ERROR=Unable to retrieve the keyfigure hierarchy. Measures will be shown as flat list.
|
|
342
|
-
FF_GDS_QB_MSG_MISSING_QUERY_MANAGER=Fatal Error: Missing QueryManager!
|
|
343
|
-
FF_GDS_QB_MSG_NO_DATA_AVAILABLE=The request returned no data. Please check the filter, drill, and/or variable settings.
|
|
344
|
-
FF_GDS_QB_MSG_QUERY_DOES_NOT_CONTAIN_MEASURES=The query model does not contain measures.
|
|
345
|
-
FF_GDS_QB_MSG_QUERY_EXECUTED_WITH_ERRORS=The query executed with errors.
|
|
346
|
-
FF_GDS_QB_MSG_QUERY_MANAGER_REQUIRED=A query manager is required!
|
|
347
|
-
FF_GDS_QB_MSG_RESULTSET_SIZE_LIMIT_EXCEEDED=The request returned no data because the resultset size limit was exceeded. You could try to set appropriate filters or reduce the amount of dimensions on the drill.
|
|
348
|
-
FF_GDS_QB_MSG_SELECT_INITIAL_VARIABLES=Please select initial variables!
|
|
349
|
-
FF_GDS_QB_MSG_SPECIFIED_QUERY_MANAGER_RELEASED=The specified query manager is already released and cannot be used!
|
|
350
|
-
FF_GDS_QB_MSG_SPECIFY_DATA_SOURCE=Please specify a data source!
|
|
351
|
-
FF_GDS_QB_MSG_STRUCTURE_HIERARCHY_ERROR=Unable to retrieve the secondary structure hierarchy. It will be shown as flat list.
|
|
352
|
-
FF_GDS_QB_MSG_UNSUBMITTED_VARIABLES=Some resultset specific variables have not been submitted yet.
|
|
353
|
-
FF_GDS_QB_MSG_USER_NOT_AUTHORIZED=The user is not authorized to view the data as presented in this drill of the query.
|
|
354
|
-
FF_GDS_QB_MSG_VARIABLES_NOT_SET=To view the query, variables need to be set. Please set and submit the variables.
|
|
355
|
-
FF_GDS_QB_NAV_AVAILABLE_ITEMS=Available Objects
|
|
356
|
-
FF_GDS_QB_NAV_DIMENSIONS=Dimensions
|
|
357
|
-
FF_GDS_QB_NAV_HIDE_PANEL=Hide available objects
|
|
358
|
-
FF_GDS_QB_NAV_SELECT_ALL=Select All
|
|
359
|
-
FF_GDS_QB_OLAP_QUERY=Query
|
|
360
|
-
FF_GDS_QB_OLAP_RESET_TO_DEFAULT_METADATA=Reset to Metadata
|
|
361
|
-
FF_GDS_QB_OLAP_RESULTSET_AUTOREFRESH=Auto Refresh
|
|
362
|
-
FF_GDS_QB_OLAP_RESULTSET_ENABLE_AUTOREFRESH=Enable Auto Refresh
|
|
363
|
-
FF_GDS_QB_OLAP_RESULTSET_FORCEREFRESH=Refresh Data from Backend
|
|
364
|
-
FF_GDS_QB_OLAP_RESULTSET_PAUSEREFRESH=Pause Refresh
|
|
365
|
-
FF_GDS_QB_OLAP_RESULTSET_PAUSE_AUTOREFRESH=Pause Auto Refresh
|
|
366
|
-
FF_GDS_QB_OVERFLOW_NEXT_PAGE=Next Page
|
|
367
|
-
FF_GDS_QB_PANEL_BUILDER=Builder
|
|
368
|
-
FF_GDS_QB_PANEL_DESIGNER=Designer
|
|
369
|
-
FF_GDS_QB_PANEL_FILTER=Filter
|
|
370
|
-
FF_GDS_QB_PANEL_FILTER_HIDE=Hide Filter
|
|
371
|
-
FF_GDS_QB_PANEL_FILTER_SHOW=Show Filter
|
|
372
|
-
FF_GDS_QB_PANEL_PROFILER=Profiler
|
|
373
|
-
FF_GDS_QB_PANEL_SERIALIZATION=Serialization
|
|
374
|
-
FF_GDS_QB_PANEL_STYLE=Style
|
|
375
|
-
FF_GDS_QB_PRESENTATIONS=Presentations
|
|
376
|
-
FF_GDS_QB_PRESENTATION_DESCRIPTION_FORMAT=Description Format
|
|
377
|
-
FF_GDS_QB_PRESENTATION_DISPLAY_OPTIONS=Display Options
|
|
378
|
-
FF_GDS_QB_PRESENTATION_KEY=Key
|
|
379
|
-
FF_GDS_QB_PRESENTATION_KEY_AND_TEXT=Key and Text
|
|
380
|
-
FF_GDS_QB_PRESENTATION_KEY_COMPOUNDED=Compounded
|
|
381
|
-
FF_GDS_QB_PRESENTATION_KEY_EXTERNAL=External
|
|
382
|
-
FF_GDS_QB_PRESENTATION_KEY_FORMAT=ID Format
|
|
383
|
-
FF_GDS_QB_PRESENTATION_KEY_INTERNAL=Internal
|
|
384
|
-
FF_GDS_QB_PRESENTATION_KEY_NON_COMPOUNDED=Non-compounded
|
|
385
|
-
FF_GDS_QB_PRESENTATION_KEY_TYPE=Key Type
|
|
386
|
-
FF_GDS_QB_PRESENTATION_NO_DISPLAY=No Display
|
|
387
|
-
FF_GDS_QB_PRESENTATION_OPTIONS=Display Options
|
|
388
|
-
FF_GDS_QB_PRESENTATION_TEXT=Text
|
|
389
|
-
FF_GDS_QB_PRESENTATION_TEXT_AND_KEY=Text and Key
|
|
390
|
-
FF_GDS_QB_PRESENTATION_TEXT_TYPE=Text Type
|
|
391
|
-
FF_GDS_QB_PRESENTATION_TYPE_DEFAULT=Default
|
|
392
|
-
FF_GDS_QB_PRESENTATION_TYPE_DISPLAY_KEY=Display Key
|
|
393
|
-
FF_GDS_QB_PRESENTATION_TYPE_DISPLAY_KEY_MIXED_COMPOUND=Display Key Mixed Compound
|
|
394
|
-
FF_GDS_QB_PRESENTATION_TYPE_DISPLAY_KEY_NOT_COMPOUND=Display Key Not Compound
|
|
395
|
-
FF_GDS_QB_PRESENTATION_TYPE_KEY_NOT_COMPOUND=Key Not Compound
|
|
396
|
-
FF_GDS_QB_PRESENTATION_TYPE_LONG_TEXT=Long Text
|
|
397
|
-
FF_GDS_QB_PRESENTATION_TYPE_MEDIUM_TEXT=Medium Text
|
|
398
|
-
FF_GDS_QB_PRESENTATION_TYPE_NONE=None
|
|
399
|
-
FF_GDS_QB_PRESENTATION_TYPE_SHORT_TEXT=Short Text
|
|
400
|
-
FF_GDS_QB_PRESENTATION_TYPE_XL_LONG_TEXT=XL Long Text
|
|
401
|
-
FF_GDS_QB_READMODE=Read Mode
|
|
402
|
-
FF_GDS_QB_READMODE_BOOKED=Booked
|
|
403
|
-
FF_GDS_QB_READMODE_BOOKED_AND_SPACE=Booked and Space
|
|
404
|
-
FF_GDS_QB_READMODE_BOOKED_AND_SPACE_AND_STATE=Booked and Space and State
|
|
405
|
-
FF_GDS_QB_READMODE_MASTER=Master
|
|
406
|
-
FF_GDS_QB_READMODE_MASTER_AND_SPACE=Master and Space
|
|
407
|
-
FF_GDS_QB_READMODE_MASTER_AND_SPACE_AND_STATE=Master and Space and State
|
|
408
|
-
FF_GDS_QB_READMODE_REL_BOOKED=Rel Booked
|
|
409
|
-
FF_GDS_QB_READMODE_REL_BOOKED_AND_SPACE=Rel Booked and Space
|
|
410
|
-
FF_GDS_QB_READMODE_REL_BOOKED_AND_SPACE_AND_STATE=Rel Booked and Space and State
|
|
411
|
-
FF_GDS_QB_READMODE_REL_MASTER=Rel Master
|
|
412
|
-
FF_GDS_QB_READMODE_REL_MASTER_AND_SPACE=Rel Master and Space
|
|
413
|
-
FF_GDS_QB_READMODE_REL_MASTER_AND_SPACE_AND_STATE=Rel Master and Space and State
|
|
414
|
-
FF_GDS_QB_READMODE_UNBOOKED=Unbooked
|
|
415
|
-
FF_GDS_QB_READMODE_UNBOOKED_INCLUDE=Include Unbooked Values
|
|
416
|
-
FF_GDS_QB_RESOURCE_EXPLORER_INSIGHT_SAVE_AUTO_PROMPT_LABEL=Automatically open prompt when insight opens
|
|
417
|
-
FF_GDS_QB_RESOURCE_EXPLORER_INSIGHT_SAVE_NEW_NAME=New Insight
|
|
418
|
-
FF_GDS_QB_RESOURCE_EXPLORER_TITLE_INSIGHT_SAVE=Save Insight
|
|
419
|
-
FF_GDS_QB_RESOURCE_EXPLORER_TITLE_INSIGHT_SAVE_AS=Save Insight As
|
|
420
|
-
FF_GDS_QB_RETURN_TO_LANDING_PAGE=Back to Landing Page
|
|
421
|
-
FF_GDS_QB_SAVE_INSIGHT_ERROR=Failed to save insight!
|
|
422
|
-
FF_GDS_QB_SELECT_INSIGHT_TITLE=Select Insight
|
|
423
|
-
FF_GDS_QB_SELECT_MODEL_TITLE=Select Model
|
|
424
|
-
FF_GDS_QB_SET_VARIABLES=Set Variables
|
|
425
|
-
FF_GDS_QB_SORT=Sort
|
|
426
|
-
FF_GDS_QB_SORTING=Sorting
|
|
427
|
-
FF_GDS_QB_SORT_ADVANCED=Advanced
|
|
428
|
-
FF_GDS_QB_SORT_ASCENDING=Ascending
|
|
429
|
-
FF_GDS_QB_SORT_ASCENDING_ALPHABETICALLY=A-Z
|
|
430
|
-
FF_GDS_QB_SORT_ASCENDING_BY_KEY=Ascending by Key
|
|
431
|
-
FF_GDS_QB_SORT_ASCENDING_BY_TEXT=Ascending by Text
|
|
432
|
-
FF_GDS_QB_SORT_ASCENDING_VALUE_BASED=Lowest to Highest
|
|
433
|
-
FF_GDS_QB_SORT_BY_KEY=By Key
|
|
434
|
-
FF_GDS_QB_SORT_BY_TEXT=By Text
|
|
435
|
-
FF_GDS_QB_SORT_DEFAULT_ORDER=Default Order
|
|
436
|
-
FF_GDS_QB_SORT_DESCENDING=Descending
|
|
437
|
-
FF_GDS_QB_SORT_DESCENDING_ALPHABETICALLY=Z-A
|
|
438
|
-
FF_GDS_QB_SORT_DESCENDING_BY_KEY=Descending by Key
|
|
439
|
-
FF_GDS_QB_SORT_DESCENDING_BY_TEXT=Descending by Text
|
|
440
|
-
FF_GDS_QB_SORT_DESCENDING_VALUE_BASED=Highest to Lowest
|
|
441
|
-
FF_GDS_QB_SORT_OPTIONS=Sort Options
|
|
442
|
-
FF_GDS_QB_TOTALS=Totals
|
|
443
|
-
FF_GDS_QB_TOTALS_ARRANGE=Arrange Totals
|
|
444
|
-
FF_GDS_QB_TOTALS_ARRANGE_BELOW=Arrange Totals Below
|
|
445
|
-
FF_GDS_QB_TOTALS_ARRANGE_RIGHT=Arrange Totals at the Right
|
|
446
|
-
FF_GDS_QB_TOTALS_HIDE=Hide Totals
|
|
447
|
-
FF_GDS_QB_TOTALS_INCLUDING=Totals Including
|
|
448
|
-
FF_GDS_QB_TOTALS_POSITION=Totals Position
|
|
449
|
-
FF_GDS_QB_TOTALS_POSITION_BOTTOM=Bottom
|
|
450
|
-
FF_GDS_QB_TOTALS_POSITION_LEFT=Left
|
|
451
|
-
FF_GDS_QB_TOTALS_POSITION_LEFT_AND_RIGHT=Left & Right
|
|
452
|
-
FF_GDS_QB_TOTALS_POSITION_RIGHT=Right
|
|
453
|
-
FF_GDS_QB_TOTALS_POSITION_TOP=Top
|
|
454
|
-
FF_GDS_QB_TOTALS_POSITION_TOP_AND_BOTTOM=Top & Bottom
|
|
455
|
-
FF_GDS_QB_TOTALS_REMAINING=Totals Remaining
|
|
456
|
-
FF_GDS_QB_TOTALS_VISIBLE=Visible
|
|
457
|
-
FF_GDS_QB_TOTALS_VISIBLE_ALWAYS=Visible Always
|
|
458
|
-
FF_GDS_QB_TOTALS_VISIBLE_CONDITIONAL=Visible if More than One Member
|
|
459
|
-
FF_GDS_QB_VALUE_EXCEPTION_ERROR=(Error)
|
|
460
|
-
FF_GDS_QB_VALUE_EXCEPTION_NO_VALUE=(No Value)
|
|
461
|
-
FF_GDS_QB_VALUE_EXCEPTION_NULL=(Null)
|
|
462
|
-
FF_GDS_QB_VALUE_EXCEPTION_OTHER=(Other)
|
|
463
|
-
FF_GDS_QB_VALUE_EXCEPTION_UNDEFINED=(Undefined)
|
|
464
|
-
FF_GDS_QB_ZERO_SUPPRESS=Suppress Zeros
|
|
465
|
-
FF_GDS_QB_ZERO_SUPPRESSION=Zero Suppression
|
|
466
|
-
FF_GDS_QB_ZERO_SUPPRESSION_ALL_CELLS_ARE_NULL=All Cells are Null
|
|
467
|
-
FF_GDS_QB_ZERO_SUPPRESSION_ALL_CELLS_ARE_ZERO=All Cells are Zero
|
|
468
|
-
FF_GDS_QB_ZERO_SUPPRESSION_TOTAL_IS_ZERO=Total is Zero
|
|
469
|
-
FF_GDS_QB_ZERO_SUPPRESSION_TYPE_NONE=None
|
|
470
|
-
FF_GDS_STYLE_DECIMAL_PLACES=Decimal places
|
|
471
|
-
FF_GDS_STYLE_DEFAULT=Default
|
|
472
|
-
FF_GDS_STYLE_MEASURE_ALL=All Measures
|
|
473
|
-
FF_GDS_STYLE_MEASURE_SELECTION=Select Measure
|
|
474
|
-
FF_GDS_STYLE_MIXED=Mixed
|
|
475
|
-
FF_GDS_STYLE_NUMBER_FORMAT_RESET=Reset all to default
|
|
476
|
-
FF_GDS_STYLE_NUMBER_FORMAT_TITLE=Number Formatting
|
|
477
|
-
FF_GDS_STYLE_OTHER=Other
|
|
478
|
-
FF_GDS_STYLE_SCALE=Scale
|
|
479
|
-
FF_GDS_STYLE_SCALE_BILLION=Billion
|
|
480
|
-
FF_GDS_STYLE_SCALE_FORMAT=Scale format
|
|
481
|
-
FF_GDS_STYLE_SCALE_MILLION=Million
|
|
482
|
-
FF_GDS_STYLE_SCALE_THOUSAND=Thousand
|
|
483
|
-
FF_GDS_STYLE_SIGN=Sign representation
|
|
484
|
-
FF_GDS_STYLE_TITLE=Styling
|
|
485
|
-
FF_GDS_STYLE_UNIT_POSITION=Unit position
|
|
486
|
-
FF_GLOBAL_MENU_APP_EXIT_FULLSCREEN=Exit Fullscreen
|
|
487
|
-
FF_GLOBAL_MENU_APP_FULLSCREEN=Fullscreen
|
|
488
|
-
FF_GLOBAL_MENU_APP_MAXIMIZE=Maximize
|
|
489
|
-
FF_GLOBAL_MENU_APP_MINIMIZE=Minimize
|
|
490
|
-
FF_GLOBAL_MENU_CLIPBOARD_COPY=Copy
|
|
491
|
-
FF_GLOBAL_MENU_CLIPBOARD_CUT=Cut
|
|
492
|
-
FF_GLOBAL_MENU_CLIPBOARD_PASTE=Paste
|
|
493
|
-
FF_GLOBAL_MENU_CLIPBOARD_SELECTION_EXPLANATION=Please select a section in the table to be able to copy.
|
|
494
|
-
FF_GLOBAL_MENU_DOCUMENT_CLOSE=Close
|
|
495
|
-
FF_GLOBAL_MENU_DOCUMENT_EXPORT=Export...
|
|
496
|
-
FF_GLOBAL_MENU_DOCUMENT_NEW=New
|
|
497
|
-
FF_GLOBAL_MENU_DOCUMENT_OPEN=Open
|
|
498
|
-
FF_GLOBAL_MENU_DOCUMENT_SAVE=Save
|
|
499
|
-
FF_GLOBAL_MENU_DOCUMENT_SAVE_AS=Save as...
|
|
500
|
-
FF_GLOBAL_MENU_STATE_REDO=Redo
|
|
501
|
-
FF_GLOBAL_MENU_STATE_REDO_EXPLANATION=Will restore the latest undone user action.
|
|
502
|
-
FF_GLOBAL_MENU_STATE_REDO_NOT_POSSIBLE_EXPLANATION=No undone user action available that could be restored.
|
|
503
|
-
FF_GLOBAL_MENU_STATE_UNDO=Undo
|
|
504
|
-
FF_GLOBAL_MENU_STATE_UNDO_EXPLANATION=Will undo the last user action.
|
|
505
|
-
FF_GLOBAL_MENU_STATE_UNDO_NOT_POSSIBLE_EXPLANATION=No user action available that could be undone.
|
|
506
|
-
FF_GLOBAL_SAVE_RESOURCE_ERROR=Invalid File
|
|
507
|
-
FF_INSIGHT_OPEN_FAIL_INVALID_CONTENT=Invalid file content
|
|
508
|
-
FF_PASSWORD_LABEL_VALUE=Password
|
|
509
|
-
FF_QUERY_INFO_DIALOG_GENERAL_TAB_DESC_LABEL=Description:
|
|
510
|
-
FF_QUERY_INFO_DIALOG_GENERAL_TAB_HEADER=General
|
|
511
|
-
FF_QUERY_INFO_DIALOG_GENERAL_TAB_TECHNICAL_ID_LABEL=Technical ID:
|
|
512
|
-
FF_QUERY_INFO_DIALOG_INFO_PROVIDER_SECTION_HEADER=Information Provider
|
|
513
|
-
FF_QUERY_INFO_DIALOG_LAST_UPDATED_SECTION_DATE_LABEL=Date:
|
|
514
|
-
FF_QUERY_INFO_DIALOG_LAST_UPDATED_SECTION_HEADER=Last Data Update
|
|
515
|
-
FF_QUERY_INFO_DIALOG_QUERY_SECTION_HEADER=Query
|
|
516
|
-
FF_QUERY_INFO_DIALOG_TITLE=Information
|
|
517
|
-
FF_QUERY_INFO_DIALOG_VARIABLES_TAB_HEADER=Variables
|
|
518
|
-
FF_RESOURCE_EXPLORER_TITLE_OPEN_DOCUMENT=Open Document
|
|
519
|
-
FF_RESOURCE_EXPLORER_TITLE_SAVE_DOCUMENT=Save Document
|
|
520
|
-
FF_RE_DATASOURCE_NAVIGATION_CONNECTION=Connection
|
|
521
|
-
FF_RE_DATASOURCE_NAVIGATION_DATASOURCE=Datasource
|
|
522
|
-
FF_RE_DATASOURCE_NAVIGATION_DATASOURCE_ERROR=Error during datasource retrieval: {0}
|
|
523
|
-
FF_RE_DATASOURCE_NAVIGATION_MENU_DATASOURCES=Data Sources
|
|
524
|
-
FF_RE_DATASOURCE_NAVIGATION_MENU_VIEWS=Views
|
|
525
|
-
FF_RE_DATASOURCE_NAVIGATION_MENU_VIEWS_RECENTLY_USED=Recently Used
|
|
526
|
-
FF_RE_DATASOURCE_NAVIGATION_OBJECT_TYPE=Object Type
|
|
527
|
-
FF_RE_DATASOURCE_NAVIGATION_RECENTLY_USED_REMOVE_ALL=Remove all
|
|
528
|
-
FF_RE_DATASOURCE_NAVIGATION_RECENTLY_USED_REMOVE_SELECTION=Remove Selection
|
|
529
|
-
FF_RE_DATASOURCE_NAVIGATION_RECENTLY_USED_TABLE_CONNECTION=Connection
|
|
530
|
-
FF_RE_DATASOURCE_NAVIGATION_RECENTLY_USED_TABLE_DESCRIPTION=Description
|
|
531
|
-
FF_RE_DATASOURCE_NAVIGATION_RECENTLY_USED_TABLE_ID=ID
|
|
532
|
-
FF_RE_DATASOURCE_NAVIGATION_RECENTLY_USED_TABLE_PACKAGE=Package
|
|
533
|
-
FF_RE_DATASOURCE_NAVIGATION_RECENTLY_USED_TABLE_SYSTEM=System
|
|
534
|
-
FF_RE_DATASOURCE_NAVIGATION_RECENTLY_USED_TABLE_SYSTEM_TYPE=System Type
|
|
535
|
-
FF_RE_DATASOURCE_NAVIGATION_RECENTLY_USED_TITLE=Recently Used ({0})
|
|
536
|
-
FF_RE_DATASOURCE_NAVIGATION_SYSTEM_BW_NAME=SAP BW
|
|
537
|
-
FF_RE_DATASOURCE_NAVIGATION_SYSTEM_HANA_NAME=SAP HANA
|
|
538
|
-
FF_RE_DATASOURCE_NAVIGATION_SYSTEM_TYPE=System Type
|
|
539
|
-
FF_RE_DEFAULT_PROGRAM_TITLE_DATASOURCE=Select Data Source
|
|
540
|
-
FF_RE_DEFAULT_PROGRAM_TITLE_RESOURCE=Resource Explorer
|
|
541
|
-
FF_RE_DETAILS_VIEW_RESOURCE_CREATED=Created On
|
|
542
|
-
FF_RE_DETAILS_VIEW_RESOURCE_DESCRIPTION=Description
|
|
543
|
-
FF_RE_DETAILS_VIEW_RESOURCE_ID=ID
|
|
544
|
-
FF_RE_DETAILS_VIEW_RESOURCE_MODFIED=Changed On
|
|
545
|
-
FF_RE_DETAILS_VIEW_RESOURCE_NAME=Name
|
|
546
|
-
FF_RE_DETAILS_VIEW_RESOURCE_OWNER=Owner
|
|
547
|
-
FF_RE_DETAILS_VIEW_RESOURCE_OWNER_DISPLAY_NAME=Owner
|
|
548
|
-
FF_RE_DETAILS_VIEW_RESOURCE_TYPE=Type
|
|
549
|
-
FF_RE_DIALOG_ADD_FOLDER_PLACEHOLDER=Enter the new folder name
|
|
550
|
-
FF_RE_DIALOG_ADD_FOLDER_TITLE=Create New Folder
|
|
551
|
-
FF_RE_DIALOG_ADD_FOLDER_WARNING_FAIL=Failed to create folder.
|
|
552
|
-
FF_RE_DIALOG_ADD_FOLDER_WARNING_FAIL_FOLDER_EXSIST=Folder already exists
|
|
553
|
-
FF_RE_DIALOG_ADD_FOLDER_WARNING_FAIL_INVALID_FOLDER_NAME=Folder name cannot be empty, or contain special characters \\ : and *
|
|
554
|
-
FF_RE_OVERWRITE_POPUP_QUESTION=Do you want to overwrite the existing item?
|
|
555
|
-
FF_RE_PAGINATOR_GOTO_PAGE=Page {0}
|
|
556
|
-
FF_RE_PAGINATOR_NEXT_PAGE=Next page
|
|
557
|
-
FF_RE_PAGINATOR_PAGE_INFO={0} of {1}
|
|
558
|
-
FF_RE_PAGINATOR_PREV_PAGE=Previous page
|
|
559
|
-
FF_RE_PROGRAM_STATUS_ERROR_TEXT=Error during the initialization! {0}
|
|
560
|
-
FF_RE_PROGRAM_STATUS_INIT_TEXT=Initialization in progress...
|
|
561
|
-
FF_RE_QA_RECENTLY_USED=Recently used
|
|
562
|
-
FF_RE_QUICK_FILTER_ALL=All files
|
|
563
|
-
FF_RE_QUICK_FILTER_OWNED=Owned by me
|
|
564
|
-
FF_RE_QUICK_FILTER_SHARED_WITH_ME=Shared with me
|
|
565
|
-
FF_RE_RESOURCE_RETRIEVAL_ERROR=Error during resource retrieval: {0}
|
|
566
|
-
FF_RE_SAVE_FORM_ADVANCED_OPTIONS=Advanced Options
|
|
567
|
-
FF_RE_SAVE_FORM_DESCRIPTION=Description
|
|
568
|
-
FF_RE_SAVE_FORM_DESCRIPTION_PLACEHOLDER=Optional
|
|
569
|
-
FF_RE_SAVE_FORM_INVALID_NAME_ERROR=File name cannot be empty, or contain special characters \\ : and *"
|
|
570
|
-
FF_RE_SAVE_FORM_NAME=Name
|
|
571
|
-
FF_RE_SAVE_FORM_NAME_NEW=New File
|
|
572
|
-
FF_RE_TOOLBAR_REFRESH=Refresh active directory
|
|
573
|
-
FF_RE_TOOLBAR_SEARCH_PLACEHOLDER=Search...
|
|
574
|
-
FF_RE_TOOLBAR_SWITCH_VIEWER=Switch view
|
|
575
|
-
FF_SHIER_DIALOG_ABOVE=Above
|
|
576
|
-
FF_SHIER_DIALOG_AT_THE_LEFT=At the Left
|
|
577
|
-
FF_SHIER_DIALOG_AT_THE_RIGHT=At the Right
|
|
578
|
-
FF_SHIER_DIALOG_BELOW=Below
|
|
579
|
-
FF_SHIER_DIALOG_FLAT_REPRESENTATION_ITEM_LABEL=Flat presentation
|
|
580
|
-
FF_SHIER_DIALOG_HIERARCHY_LABEL=Hierarchy
|
|
581
|
-
FF_SHIER_DIALOG_NO_DIMENSION_ERROR_LABEL=Dimension must be selected for hierarchy dialog to initialize.
|
|
582
|
-
FF_SHIER_DIALOG_PARENT_NODES=Arrange Parent Nodes
|
|
583
|
-
FF_SHIER_DIALOG_TITLE=Select Hierarchy
|
|
584
|
-
FF_TITLE=Set Credentials
|
|
585
|
-
FF_USERNAME_LABEL_VALUE=User Name
|
|
586
|
-
I18N_AUGDS_READMODE_RESTRICT_TO_BOOKED=Restrict to Booked Values
|
|
587
|
-
I18N_AUGDS_RESTRICT_TO_BOOKED=Restrict to Booked Values
|
|
588
|
-
I18N_AUGDS_TCM_ABSTRACT_KEY=Abstract Key
|
|
589
|
-
I18N_AUGDS_TCM_ABSTRACT_TEXT=Abstract Text
|
|
590
|
-
I18N_AUGDS_TCM_ACCOUNT_DIALOG=Account ...
|
|
591
|
-
I18N_AUGDS_TCM_ACCOUNT_DIMENSION=Account Dimension
|
|
592
|
-
I18N_AUGDS_TCM_ACTIVE_DISPLAY_KEY=Active Display Key
|
|
593
|
-
I18N_AUGDS_TCM_ACTIVE_KEY=Active Key
|
|
594
|
-
I18N_AUGDS_TCM_ACTIVE_TEXT=Active Text
|
|
595
|
-
I18N_AUGDS_TCM_ADVANCED=Advanced
|
|
596
|
-
I18N_AUGDS_TCM_AFTER=After
|
|
597
|
-
I18N_AUGDS_TCM_ALL_CELLS_ARE_NULL=All Cells are Null
|
|
598
|
-
I18N_AUGDS_TCM_ALL_CELLS_ARE_ZERO=All Cells are Zero
|
|
599
|
-
I18N_AUGDS_TCM_ALL_NODES=All Nodes
|
|
600
|
-
I18N_AUGDS_TCM_ALL_NODES_+=All Nodes +
|
|
601
|
-
I18N_AUGDS_TCM_ASCENDING=Ascending
|
|
602
|
-
I18N_AUGDS_TCM_ASCENDING_BY_KEY=Ascending by Key
|
|
603
|
-
I18N_AUGDS_TCM_ASCENDING_BY_TEXT=Ascending by Text
|
|
604
|
-
I18N_AUGDS_TCM_ATTRIBUTES=Attributes
|
|
605
|
-
I18N_AUGDS_TCM_BAR=Bar
|
|
606
|
-
I18N_AUGDS_TCM_BAR_COLOR=Bar Color
|
|
607
|
-
I18N_AUGDS_TCM_BEFORE=Before
|
|
608
|
-
I18N_AUGDS_TCM_BLACK_1=Black 1
|
|
609
|
-
I18N_AUGDS_TCM_BLACK_2=Black 2
|
|
610
|
-
I18N_AUGDS_TCM_BLOB=Blob
|
|
611
|
-
I18N_AUGDS_TCM_BLUE_1=Blue 1
|
|
612
|
-
I18N_AUGDS_TCM_BLUE_2=Blue 2
|
|
613
|
-
I18N_AUGDS_TCM_BLUE_3=Blue 3
|
|
614
|
-
I18N_AUGDS_TCM_BLUE_4=Blue 4
|
|
615
|
-
I18N_AUGDS_TCM_BLUE_5=Blue 5
|
|
616
|
-
I18N_AUGDS_TCM_BOOKED=Booked
|
|
617
|
-
I18N_AUGDS_TCM_BOOKED_AND_SPACE=Booked and Space
|
|
618
|
-
I18N_AUGDS_TCM_BOOKED_AND_SPACE_AND_STATE=Booked and Space and State
|
|
619
|
-
I18N_AUGDS_TCM_BOTTOM=Bottom
|
|
620
|
-
I18N_AUGDS_TCM_BROWN_1=Brown 1
|
|
621
|
-
I18N_AUGDS_TCM_BROWN_2=Brown 2
|
|
622
|
-
I18N_AUGDS_TCM_BUILDER_PANEL=Builder
|
|
623
|
-
I18N_AUGDS_TCM_BUSINESS_OBJECT_NODE_IDENTIFIER=Business Object Node Identifier
|
|
624
|
-
I18N_AUGDS_TCM_CALCULATED_DIMENSION=Calculated Dimension
|
|
625
|
-
I18N_AUGDS_TCM_CELL_CHART=Cell Chart
|
|
626
|
-
I18N_AUGDS_TCM_CELL__DIALOG=Cell ...
|
|
627
|
-
I18N_AUGDS_TCM_CHILDREN_ABOVE_PARENT=Children above Parent
|
|
628
|
-
I18N_AUGDS_TCM_CLEAR=Clear
|
|
629
|
-
I18N_AUGDS_TCM_COLLAPSE=Collapse
|
|
630
|
-
I18N_AUGDS_TCM_COLUMN/ROW_HEADERS=Column/Row Headers
|
|
631
|
-
I18N_AUGDS_TCM_COLUMNS=Columns
|
|
632
|
-
I18N_AUGDS_TCM_COLUMN_STRIPING=Column Striping
|
|
633
|
-
I18N_AUGDS_TCM_CREATE_COMMENT=Create Comment
|
|
634
|
-
I18N_AUGDS_TCM_CURRENCY_CONVERSION__DIALOG=Currency Conversion ...
|
|
635
|
-
I18N_AUGDS_TCM_DEFAULT=Default
|
|
636
|
-
I18N_AUGDS_TCM_DEFAULT_CONTENT=Default Content
|
|
637
|
-
I18N_AUGDS_TCM_DEFAULT_ORDER=Default Order
|
|
638
|
-
I18N_AUGDS_TCM_DELETE_COMMENT=Delete Comment
|
|
639
|
-
I18N_AUGDS_TCM_DELETE_COMMENT_MESSAGE=Do you really want to delete the comment?
|
|
640
|
-
I18N_AUGDS_TCM_DELETE_COMMENT_TITLE=Deleting Comment...
|
|
641
|
-
I18N_AUGDS_TCM_DESCENDING=Descending
|
|
642
|
-
I18N_AUGDS_TCM_DESCENDING_BY_KEY=Descending by Key
|
|
643
|
-
I18N_AUGDS_TCM_DESCENDING_BY_TEXT=Descending by Text
|
|
644
|
-
I18N_AUGDS_TCM_DESCRIPTION=Description
|
|
645
|
-
I18N_AUGDS_TCM_DESCRIPTION_AND_ID=Description and Id
|
|
646
|
-
I18N_AUGDS_TCM_DIMENSION=Dimension
|
|
647
|
-
I18N_AUGDS_TCM_DIMENSIONS=Dimensions
|
|
648
|
-
I18N_AUGDS_TCM_DIMENSION_HEADERS=Dimension Headers
|
|
649
|
-
I18N_AUGDS_TCM_DISPLAY_AXIS_HIERARCHICALLY=Display Axis Hierarchically
|
|
650
|
-
I18N_AUGDS_TCM_DISPLAY_KEY=Display Key
|
|
651
|
-
I18N_AUGDS_TCM_DISPLAY_KEY_MIXED_COMPOUNDMENT=Display Key Mixed Compoundment
|
|
652
|
-
I18N_AUGDS_TCM_DISPLAY_KEY_NOT_COMPOUND=Display Key Not Compound
|
|
653
|
-
I18N_AUGDS_TCM_DISPLAY_OPTIONS=Display Options
|
|
654
|
-
I18N_AUGDS_TCM_DISTRIBUTE_COLORS=Distribute Colors
|
|
655
|
-
I18N_AUGDS_TCM_DOCUMENT_LINK=Document Link
|
|
656
|
-
I18N_AUGDS_TCM_DOCUMENT_LOAD=Load
|
|
657
|
-
I18N_AUGDS_TCM_DOCUMENT_LOAD_DATASOURCE=Select Data Source
|
|
658
|
-
I18N_AUGDS_TCM_DOWN=Down
|
|
659
|
-
I18N_AUGDS_TCM_DRILL=Drill
|
|
660
|
-
I18N_AUGDS_TCM_EDIT_COMMENT=Edit Comment
|
|
661
|
-
I18N_AUGDS_TCM_EDIT__DIALOG=Edit ...
|
|
662
|
-
I18N_AUGDS_TCM_EXCLUDE_MEMBER=Exclude Member
|
|
663
|
-
I18N_AUGDS_TCM_EXCLUDE_MEMBERS=Exclude Members
|
|
664
|
-
I18N_AUGDS_TCM_EXPAND=Expand
|
|
665
|
-
I18N_AUGDS_TCM_FIELDS=Fields
|
|
666
|
-
I18N_AUGDS_TCM_FILTER=Filter
|
|
667
|
-
I18N_AUGDS_TCM_FILTER_DRILL=Filter and Drill
|
|
668
|
-
I18N_AUGDS_TCM_FILTER_DRILL_EXCHANGE=Filter and Exchange Dimension
|
|
669
|
-
I18N_AUGDS_TCM_FILTER_MEMBER=Filter Member
|
|
670
|
-
I18N_AUGDS_TCM_FILTER_MEMBERS=Filter Members
|
|
671
|
-
I18N_AUGDS_TCM_FILTER_PANEL=Filter
|
|
672
|
-
I18N_AUGDS_TCM_FINANCE_STYLE=Finance Style
|
|
673
|
-
I18N_AUGDS_TCM_FLAT_PRESENTATION=Flat Presentation
|
|
674
|
-
I18N_AUGDS_TCM_FREEZE=Freeze
|
|
675
|
-
I18N_AUGDS_TCM_FREEZE_COLUMN_HEADERS=Freeze Column Headers
|
|
676
|
-
I18N_AUGDS_TCM_FREEZE_HEADERS=Freeze Headers
|
|
677
|
-
I18N_AUGDS_TCM_FREEZE_LINES=Freeze Lines
|
|
678
|
-
I18N_AUGDS_TCM_FREEZE_ROW_HEADERS=Freeze Row Headers
|
|
679
|
-
I18N_AUGDS_TCM_GREEN=Green
|
|
680
|
-
I18N_AUGDS_TCM_GREY_1=Grey 1
|
|
681
|
-
I18N_AUGDS_TCM_GREY_2=Grey 2
|
|
682
|
-
I18N_AUGDS_TCM_GREY_3=Grey 3
|
|
683
|
-
I18N_AUGDS_TCM_GREY_4=Grey 4
|
|
684
|
-
I18N_AUGDS_TCM_GRID=Grid
|
|
685
|
-
I18N_AUGDS_TCM_HIDE_TOTALS=Hide Totals
|
|
686
|
-
I18N_AUGDS_TCM_HIERARCHY=Hierarchy
|
|
687
|
-
I18N_AUGDS_TCM_HIERARCHY_DISPLAY_KEY=Hierarchy Display Key
|
|
688
|
-
I18N_AUGDS_TCM_HIERARCHY_KEY=Hierarchy Key
|
|
689
|
-
I18N_AUGDS_TCM_HIERARCHY_PATH=Hierarchy Path
|
|
690
|
-
I18N_AUGDS_TCM_HIERARCHY_TEXT=Hierarchy Text
|
|
691
|
-
I18N_AUGDS_TCM_HIGHLIGHT_HEADERS=Highlight Headers
|
|
692
|
-
I18N_AUGDS_TCM_HIGHLIGHT_TOTALS=Highlight Totals
|
|
693
|
-
I18N_AUGDS_TCM_HORIZONTAL=Horizontal
|
|
694
|
-
I18N_AUGDS_TCM_ID=Id
|
|
695
|
-
I18N_AUGDS_TCM_ID_AND_DESCRIPTION=Id and Description
|
|
696
|
-
I18N_AUGDS_TCM_INITIAL_DISPLAY_LEVEL=Initial Display Level
|
|
697
|
-
I18N_AUGDS_TCM_INSERT_COLUMN=Insert Column
|
|
698
|
-
I18N_AUGDS_TCM_INSERT_ROW=Insert Row
|
|
699
|
-
I18N_AUGDS_TCM_KEEP_VALUE_DISPLAY=Keep Value Display
|
|
700
|
-
I18N_AUGDS_TCM_KEY=Key
|
|
701
|
-
I18N_AUGDS_TCM_KEY_AND_TEXT=Key and Text
|
|
702
|
-
I18N_AUGDS_TCM_KEY_NOT_COMPOUND=Key Not Compound
|
|
703
|
-
I18N_AUGDS_TCM_KEY_TYPE=Key Type
|
|
704
|
-
I18N_AUGDS_TCM_LAYOUT__DIALOG=Layout ...
|
|
705
|
-
I18N_AUGDS_TCM_LEFT=Left
|
|
706
|
-
I18N_AUGDS_TCM_LEFT_AND_RIGHT=Left & Right
|
|
707
|
-
I18N_AUGDS_TCM_LINE_COLOR=Line Color
|
|
708
|
-
I18N_AUGDS_TCM_LONG_TEXT=Long Text
|
|
709
|
-
I18N_AUGDS_TCM_MASTER=Master
|
|
710
|
-
I18N_AUGDS_TCM_MASTER_AND_SPACE=Master and Space
|
|
711
|
-
I18N_AUGDS_TCM_MASTER_AND_SPACE_AND_STATE=Master and Space and State
|
|
712
|
-
I18N_AUGDS_TCM_MEASURE_STRUCTURE=Measure Structure
|
|
713
|
-
I18N_AUGDS_TCM_MEASURE__DIALOG=Measure ...
|
|
714
|
-
I18N_AUGDS_TCM_MEDIUM_TEXT=Medium Text
|
|
715
|
-
I18N_AUGDS_TCM_MERGE_REPETITIVE_MEMBER_CELLS=Merge Repetitive Member Cells
|
|
716
|
-
I18N_AUGDS_TCM_MOVE=Move
|
|
717
|
-
I18N_AUGDS_TCM_MOVE_TO_COLUMNS=Move to Columns
|
|
718
|
-
I18N_AUGDS_TCM_MOVE_TO_ROWS=Move to Rows
|
|
719
|
-
I18N_AUGDS_TCM_NAME_PATH=Name Path
|
|
720
|
-
I18N_AUGDS_TCM_NEXT_PAGE=Next Page
|
|
721
|
-
I18N_AUGDS_TCM_NODE_CONDENSATION=Node Condensation
|
|
722
|
-
I18N_AUGDS_TCM_NONE=None
|
|
723
|
-
I18N_AUGDS_TCM_NO_DISPLAY=No Display
|
|
724
|
-
I18N_AUGDS_TCM_OLAP_RESET=Reset
|
|
725
|
-
I18N_AUGDS_TCM_OLAP_RESULTSET_AUTOREFRESH=Auto-Refresh
|
|
726
|
-
I18N_AUGDS_TCM_OLAP_RESULTSET_FORCEREFRESH=Refresh
|
|
727
|
-
I18N_AUGDS_TCM_OLAP_RESULTSET_PAUESEREFRESH=Pause Refresh
|
|
728
|
-
I18N_AUGDS_TCM_ORIENTATION=Orientation
|
|
729
|
-
I18N_AUGDS_TCM_PIN=Pin
|
|
730
|
-
I18N_AUGDS_TCM_PRESENTATIONS=Presentations
|
|
731
|
-
I18N_AUGDS_TCM_PURPLE=Purple
|
|
732
|
-
I18N_AUGDS_TCM_QUERY=Query
|
|
733
|
-
I18N_AUGDS_TCM_READ_MODE=Read Mode
|
|
734
|
-
I18N_AUGDS_TCM_RELATED_ACTIONS=Related Actions
|
|
735
|
-
I18N_AUGDS_TCM_REL_BOOKED=Rel Booked
|
|
736
|
-
I18N_AUGDS_TCM_REL_BOOKED_AND_SPACE=Rel Booked and Space
|
|
737
|
-
I18N_AUGDS_TCM_REL_BOOKED_AND_SPACE_AND_STATE=Rel Booked and Space and State
|
|
738
|
-
I18N_AUGDS_TCM_REL_MASTER=Rel Master
|
|
739
|
-
I18N_AUGDS_TCM_REL_MASTER_AND_SPACE=Rel Master and Space
|
|
740
|
-
I18N_AUGDS_TCM_REL_MASTER_AND_SPACE_AND_STATE=Rel Master and Space and State
|
|
741
|
-
I18N_AUGDS_TCM_REMOVE=Remove
|
|
742
|
-
I18N_AUGDS_TCM_REPETITIVE_MEMBER_NAMES=Repetitive Member Names
|
|
743
|
-
I18N_AUGDS_TCM_RIGHT=Right
|
|
744
|
-
I18N_AUGDS_TCM_ROOT_LEVEL=Root Level
|
|
745
|
-
I18N_AUGDS_TCM_ROOT_PLUS_1_CHILD_LEVEL=Root + 1 Child Level
|
|
746
|
-
I18N_AUGDS_TCM_ROOT_PLUS_2_CHILD_LEVELS=Root + 2 Child Levels
|
|
747
|
-
I18N_AUGDS_TCM_ROOT_PLUS_3_CHILD_LEVELS=Root + 3 Child Levels
|
|
748
|
-
I18N_AUGDS_TCM_ROOT_PLUS_4_CHILD_LEVELS=Root + 4 Child Levels
|
|
749
|
-
I18N_AUGDS_TCM_ROOT_PLUS_5_CHILD_LEVELS=Root + 5 Child Levels
|
|
750
|
-
I18N_AUGDS_TCM_ROWS=Rows
|
|
751
|
-
I18N_AUGDS_TCM_ROW_STRIPING=Row Striping
|
|
752
|
-
I18N_AUGDS_TCM_SAC_STYLE=Sac Style
|
|
753
|
-
I18N_AUGDS_TCM_SECONDARY_STRUCTURE=Secondary Structure
|
|
754
|
-
I18N_AUGDS_TCM_SELECT_HIERARCHY__DIALOG=Select Hierarchy ...
|
|
755
|
-
I18N_AUGDS_TCM_SELF=Self
|
|
756
|
-
I18N_AUGDS_TCM_SERIALIZATION_PANEL=Serialization
|
|
757
|
-
I18N_AUGDS_TCM_SHORT_TEXT=Short Text
|
|
758
|
-
I18N_AUGDS_TCM_SHOW=Show
|
|
759
|
-
I18N_AUGDS_TCM_SHOW/HIDE=Show/Hide
|
|
760
|
-
I18N_AUGDS_TCM_SHOW_COMMENT=Show Comment
|
|
761
|
-
I18N_AUGDS_TCM_SHOW_POSTED_NODES=Show Posted Nodes
|
|
762
|
-
I18N_AUGDS_TCM_SORTING=Sorting
|
|
763
|
-
I18N_AUGDS_TCM_SPREADSHEET_STYLE=Spreadsheet Style
|
|
764
|
-
I18N_AUGDS_TCM_SUBTITLE=Subtitle
|
|
765
|
-
I18N_AUGDS_TCM_SUPPRESS=Suppress
|
|
766
|
-
I18N_AUGDS_TCM_SWAP_AXES=Swap Axes
|
|
767
|
-
I18N_AUGDS_TCM_TABLE_DETAILS=Table Details
|
|
768
|
-
I18N_AUGDS_TCM_TABLE_TITLE=Table Title
|
|
769
|
-
I18N_AUGDS_TCM_TEXT=Text
|
|
770
|
-
I18N_AUGDS_TCM_TEXT_AND_KEY=Text and Key
|
|
771
|
-
I18N_AUGDS_TCM_TEXT_TYPE=Text Type
|
|
772
|
-
I18N_AUGDS_TCM_THEMES=Themes
|
|
773
|
-
I18N_AUGDS_TCM_TOP=Top
|
|
774
|
-
I18N_AUGDS_TCM_TOP_AND_BOTTOM=Top & Bottom
|
|
775
|
-
I18N_AUGDS_TCM_TOTALS=Totals
|
|
776
|
-
I18N_AUGDS_TCM_TOTALS_INCLUDING=Totals Including
|
|
777
|
-
I18N_AUGDS_TCM_TOTALS_REMAINING=Totals Remaining
|
|
778
|
-
I18N_AUGDS_TCM_TOTAL_IS_ZERO=Total is Zero
|
|
779
|
-
I18N_AUGDS_TCM_TO_COLUMNS=To Columns
|
|
780
|
-
I18N_AUGDS_TCM_TO_ROWS=To Rows
|
|
781
|
-
I18N_AUGDS_TCM_TYPE=Type
|
|
782
|
-
I18N_AUGDS_TCM_UNDEFINED=Undefined
|
|
783
|
-
I18N_AUGDS_TCM_UP=Up
|
|
784
|
-
I18N_AUGDS_TCM_URL=Url
|
|
785
|
-
I18N_AUGDS_TCM_VALUE=Value
|
|
786
|
-
I18N_AUGDS_TCM_VARIANCE_BAR=Variance Bar
|
|
787
|
-
I18N_AUGDS_TCM_VERTICAL=Vertical
|
|
788
|
-
I18N_AUGDS_TCM_VIOLET=Violet
|
|
789
|
-
I18N_AUGDS_TCM_VISIBLE_ALWAYS=Visible Always
|
|
790
|
-
I18N_AUGDS_TCM_VISIBLE_IF_MORE_THAN_ONE_MEMBER=Visible if More than One Member
|
|
791
|
-
I18N_AUGDS_TCM_WHY_FOUND=Why Found
|
|
792
|
-
I18N_AUGDS_TCM_XL_LONG_TEXT=XL Long Text
|
|
793
|
-
I18N_AUGDS_TCM_YELLOW_1=Yellow 1
|
|
794
|
-
I18N_AUGDS_TCM_YELLOW_2=Yellow 2
|
|
795
|
-
I18N_AUGDS_TCM_ZERO_SUPPRESSION=Zero Suppression
|
|
796
|
-
I18N_AUGDS_UNBOOKED=Unbooked
|