@sapui5/sap.viz 1.96.24 → 1.96.26
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/viz/.library +1 -1
- package/src/sap/viz/library.js +1 -1
- package/src/sap/viz/ui5/core/BaseChartMetadata.js +1 -1
- package/src/sap/viz/ui5/data/FlattenedDataset.js +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_ar.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_bg.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_ca.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_cs.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_cy.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_da.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_de.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_el.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_en.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_en_GB.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_en_US_saprigi.properties +6 -2
- package/src/sap/viz/ui5/messages/messagebundle_es.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_es_MX.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_et.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_fi.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_fr.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_fr_CA.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_hi.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_hr.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_hu.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_id.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_it.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_iw.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_ja.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_kk.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_ko.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_lt.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_lv.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_ms.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_nl.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_no.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_pl.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_pt.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_pt_PT.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_ro.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_ru.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_sh.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_sk.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_sl.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_sr.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_sv.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_th.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_tr.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_uk.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_vi.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_zh_CN.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_zh_TW.properties +4 -0
package/package.json
CHANGED
package/src/sap/viz/.library
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<vendor>SAP SE</vendor>
|
|
6
6
|
<copyright>SAPUI5
|
|
7
7
|
* (c) Copyright 2009-2021 SAP SE. All rights reserved.</copyright>
|
|
8
|
-
<version>1.96.
|
|
8
|
+
<version>1.96.26</version>
|
|
9
9
|
|
|
10
10
|
<documentation>Chart controls based on the SAP BI CVOM charting library</documentation>
|
|
11
11
|
|
package/src/sap/viz/library.js
CHANGED
|
@@ -341,6 +341,10 @@ sap.ui.define([
|
|
|
341
341
|
} else {
|
|
342
342
|
//analytic binding should use getTotalSize to return the correct total length
|
|
343
343
|
length = binding.getTotalSize ? binding.getTotalSize() : binding.getLength();
|
|
344
|
+
var V2ODataModel = sap.ui.require("sap/ui/model/odata/v2/ODataModel");
|
|
345
|
+
if (noPaging && length === -1 && V2ODataModel && (binding.getModel() instanceof V2ODataModel)) {
|
|
346
|
+
length = undefined;
|
|
347
|
+
}
|
|
344
348
|
}
|
|
345
349
|
}
|
|
346
350
|
if (this._bDataReceiveError) {
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=\u0628\u062F\u0648\u0646 \u062F\u0639\u0645 \u0645\u0646 SVG
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=\u0644\u0627 \u062A\u0648\u062C\u062F \u0628\u064A\u0627\u0646\u0627\u062A
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=\u0411\u0435\u0437 \u043F\u043E\u0434\u0434\u0440\u044A\u0436\u043A\u0430 SVG
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=\u041D\u044F\u043C\u0430 \u0434\u0430\u043D\u043D\u0438
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=No se suporta SVG
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=No hi ha dades
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=Bez podpory SVG
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=\u017D\u00E1dn\u00E1 data
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=Dim modd delio \u00E2 SVG
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=Dim data
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=Ingen SVG-support
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=Ingen data
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=Keine SVG-Unterst\u00FCtzung
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=Keine Daten
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=\u03A7\u03C9\u03C1\u03AF\u03C2\u03A5\u03C0\u03BF\u03C3\u03C4\u03AE\u03C1SVG
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=\u03A7\u03C9\u03C1.\u03B4\u03B5\u03B4\u03BF\u03BC\u03AD\u03BD\u03B1
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=No SVG support
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=No data
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=No SVG support
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=No data
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
2
|
-
|
|
3
|
-
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
5
|
+
NO_SVG_SUPPORT=\u206A\u206A\u206A\u200C\u200D\u200C\u200C\u200B\u200D\u200C\u200C\u200B\u200C\u200D\u200D\u200B\u200B\u200C\u200C\u200D\u200D\u200C\u200C\u200D\u200D\u200D\u200D\u200B\u200C\u200D\u200B\u200D\u200D\u200B\u200D\u200D\u200D\u200B\u200B\u200D\u206ANo SVG support\u206A\u206A
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
7
|
+
NO_DATA=\u206A\u206A\u206A\u200C\u200D\u200C\u200C\u200C\u200B\u200B\u200D\u200C\u200B\u200C\u200C\u200B\u200C\u200B\u200C\u200C\u200D\u200D\u200D\u200D\u200D\u200D\u200D\u200C\u200D\u200C\u200B\u200C\u200C\u200D\u200B\u200B\u200B\u200C\u200C\u200D\u200C\u200C\u200C\u206ANo data\u206A\u206A
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=No se soporta SVG
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=Sin datos
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=Sin compatibilidad con SVG
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=Sin datos
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=SVG tuge pole
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=Andmeid pole
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=Ei SVG-tukea
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=Ei tietoja
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=Aucun support SVG
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=Aucune donn\u00E9e
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=Aucune prise en charge SVG
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=Aucune donn\u00E9e
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=\u0915\u094B\u0908 SVG \u0938\u092E\u0930\u094D\u0925\u093F\u0924 \u0928\u0939\u0940\u0902
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=\u0915\u094B\u0908 \u0921\u0947\u091F\u093E \u0928\u0939\u0940\u0902
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=Nema SVG podr\u0161ke
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=Nema podataka
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=Nincs SVG-t\u00E1mogat\u00E1s
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=Nincs adat
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=Tidak ada dukungan SVG
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=Tidak ada data
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=Nessun supporto SVG
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=Nessun dato
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=\u05D0\u05D9\u05DF \u05EA\u05DE\u05D9\u05DB\u05EA SVG
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=\u05D0\u05D9\u05DF \u05E0\u05EA\u05D5\u05E0\u05D9\u05DD
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=SVG \u304C\u30B5\u30DD\u30FC\u30C8\u3057\u3066\u3044\u307E\u305B\u3093
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=\u30C7\u30FC\u30BF\u304C\u3042\u308A\u307E\u305B\u3093
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=SVG \u049B\u043E\u043B\u0434\u0430\u0443\u044B \u0436\u043E\u049B
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=\u0414\u0435\u0440\u0435\u043A\u0442\u0435\u0440 \u0436\u043E\u049B
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=SVG \uC9C0\uC6D0\uC774 \uC5C6\uC2B5\uB2C8\uB2E4.
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=\uB370\uC774\uD130\uAC00 \uC5C6\uC2B5\uB2C8\uB2E4.
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=N\u0117ra SVG palaikymo
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=N\u0117ra duomen\u0173
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=Bez SVG atbalsta
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=Nav datu
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=Tiada sokongan SVG
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=Tiada data
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=Geen SVG-ondersteuning
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=Geen gegevens
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=Ikke st\u00F8tte for SVG
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=Ingen data
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=Brak obs\u0142ugi SVG
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=Brak danych
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=Sem suporte SVG
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=Sem dados
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=Nenhum suporte SVG
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=Sem dados
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=F\u0103r\u0103 suport SVG
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=F\u0103r\u0103 date
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=\u0411\u0435\u0437 \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u043A\u0438 SVG
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=\u041D\u0435\u0442 \u0434\u0430\u043D\u043D\u044B\u0445
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=Nema podr\u0161ke SVG
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=Nema podataka
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=\u017Diadna podpora SVG
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=\u017Diadne d\u00E1ta
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=SVG ni podprto
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=Ni podatkov
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=\u041D\u0435\u043C\u0430 \u043F\u043E\u0434\u0440\u0448\u043A\u0435 SVG
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=\u041D\u0435\u043C\u0430 \u043F\u043E\u0434\u0430\u0442\u0430\u043A\u0430
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=Inget st\u00F6d f\u00F6r SVG
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=Inga data
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19 SVG
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=\u0E44\u0E21\u0E48\u0E21\u0E35\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=SVG deste\u011Fi yok
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=Veri yok
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=\u0411\u0435\u0437 \u043F\u0456\u0434\u0442\u0440\u0438\u043C\u043A\u0438 SVG
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=\u041D\u0435\u043C\u0430\u0454 \u0434\u0430\u043D\u0438\u0445
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=Kh\u00F4ng h\u00F4\u0303 tr\u01A1\u0323 SVG
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=Kh\u00F4ng co\u0301 d\u01B0\u0303 li\u00EA\u0323u
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=\u65E0 SVG \u652F\u6301
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=\u65E0\u6570\u636E
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=\u4E0D\u652F\u63F4 SVG
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=\u7121\u8CC7\u6599
|