From 123fef945f01ed137a8fbbed3f2b05c73b631082 Mon Sep 17 00:00:00 2001 From: alex Date: Thu, 12 Sep 2019 18:10:36 +0200 Subject: [PATCH] - copied pivot.de.js pivottable language file from reporting addon to public folder --- public/js/pivottable/pivot.de.js | 76 ++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 public/js/pivottable/pivot.de.js diff --git a/public/js/pivottable/pivot.de.js b/public/js/pivottable/pivot.de.js new file mode 100644 index 000000000..855b6e430 --- /dev/null +++ b/public/js/pivottable/pivot.de.js @@ -0,0 +1,76 @@ +(function() { + var callWithJQuery; + + callWithJQuery = function(pivotModule) { + if (typeof exports === "object" && typeof module === "object") { + return pivotModule(require("jquery")); + } else if (typeof define === "function" && define.amd) { + return define(["jquery"], pivotModule); + } else { + return pivotModule(jQuery); + } + }; + callWithJQuery(function($) { + var deFmt, deFmtInt, deFmtPct, nf, tpl; + nf = $.pivotUtilities.numberFormat; + tpl = $.pivotUtilities.aggregatorTemplates; + deFmt = nf({ + thousandsSep: ".", + decimalSep: "," + }); + deFmtInt = nf({ + digitsAfterDecimal: 0, + thousandsSep: ".", + decimalSep: "," + }); + deFmtPct = nf({ + digitsAfterDecimal: 1, + scaler: 100, + suffix: "%", + thousandsSep: ".", + decimalSep: "," + }); + return $.pivotUtilities.locales.de = { + localeStrings: { + renderError: "Bei dem Zeichnen der Pivot Ergebnisse ist ein Fehler aufgetreten.", + computeError: "Bei dem berechnen der Pivot Ergebnisse ist ein Fehler aufgetreten.", + uiRenderError: "Bei dem Zeichnen des Pivot Interfaces ist ein Fehler aufgetreten.", + selectAll: "Wähle alle", + selectNone: "Wähle keine", + tooMany: "(zu viele Ergebnisse)", + filterResults: "Ergebnisse filtern", + totals: "Total", + vs: "vs", + by: "von" + }, + aggregators: { + "Anzahl": tpl.count(deFmtInt), + "Anzahl einzigartiger Werte": tpl.countUnique(deFmtInt), + "Liste einzigartiger Werte": tpl.listUnique(", "), + "Summe": tpl.sum(deFmt), + "Summe in ganzen Zahlen": tpl.sum(deFmtInt), + "Durchschnitt": tpl.average(deFmt), + "Summe über Summe": tpl.sumOverSum(deFmt), + "80% obere Grenze": tpl.sumOverSumBound80(true, deFmt), + "80% untere Grenze": tpl.sumOverSumBound80(false, deFmt), + "Prozent": tpl.fractionOf(tpl.sum(), "total", deFmtPct), + "Prozent pro Reihe": tpl.fractionOf(tpl.sum(), "row", deFmtPct), + "Prozent pro Spalte": tpl.fractionOf(tpl.sum(), "col", deFmtPct), + "Anzahl als Teil des Ganzen": tpl.fractionOf(tpl.count(), "total", deFmtPct), + "Anzahl als Teil der Reihe": tpl.fractionOf(tpl.count(), "row", deFmtPct), + "Anzahl als Teil der Spalte": tpl.fractionOf(tpl.count(), "col", deFmtPct) + }, + renderers: { + "Tabelle": $.pivotUtilities.renderers["Table"], + "Tabelle mit Balken": $.pivotUtilities.renderers["Table Barchart"], + "Heatmap": $.pivotUtilities.renderers["Heatmap"], + "Heatmap für Reihen": $.pivotUtilities.renderers["Row Heatmap"], + "Heatmap für Spalten": $.pivotUtilities.renderers["Col Heatmap"] + } + }; + }); + +}).call(this); + + +//# sourceMappingURL=pivot.de.js.map