Built files from Bizgaze WebServer
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

pivot.de.js 2.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. (function() {
  2. var callWithJQuery;
  3. callWithJQuery = function(pivotModule) {
  4. if (typeof exports === "object" && typeof module === "object") {
  5. return pivotModule(require("jquery"));
  6. } else if (typeof define === "function" && define.amd) {
  7. return define(["jquery"], pivotModule);
  8. } else {
  9. return pivotModule(jQuery);
  10. }
  11. };
  12. callWithJQuery(function($) {
  13. var frFmt, frFmtInt, frFmtPct, nf, tpl;
  14. nf = $.pivotUtilities.numberFormat;
  15. tpl = $.pivotUtilities.aggregatorTemplates;
  16. frFmt = nf({
  17. thousandsSep: " ",
  18. decimalSep: ","
  19. });
  20. frFmtInt = nf({
  21. digitsAfterDecimal: 0,
  22. thousandsSep: " ",
  23. decimalSep: ","
  24. });
  25. frFmtPct = nf({
  26. digitsAfterDecimal: 1,
  27. scaler: 100,
  28. suffix: "%",
  29. thousandsSep: " ",
  30. decimalSep: ","
  31. });
  32. return $.pivotUtilities.locales.de = {
  33. localeStrings: {
  34. renderError: "Bei der Darstellung der Pivot-Tabelle ist ein Fehler aufgetreten.",
  35. computeError: "Bei der Berechnung der Pivot-Tabelle ist ein Fehler aufgetreten.",
  36. uiRenderError: "Bei der Darstellung Oberfläche der Pivot-Tabelle ist ein Fehler aufgetreten.",
  37. selectAll: "Alles auswählen",
  38. selectNone: "Nichts auswählen",
  39. tooMany: "(zu viele für Liste)",
  40. filterResults: "Ergebnisse filtern",
  41. totals: "Gesamt",
  42. vs: "gegen",
  43. by: "pro"
  44. },
  45. aggregators: {
  46. "Anzahl": tpl.count(frFmtInt),
  47. "Anzahl eindeutiger Werte": tpl.countUnique(frFmtInt),
  48. "Liste eindeutiger Werte": tpl.listUnique(", "),
  49. "Summe": tpl.sum(frFmt),
  50. "Ganzzahlige Summe": tpl.sum(frFmtInt),
  51. "Durchschnitt": tpl.average(frFmt),
  52. "Minimum": tpl.min(frFmt),
  53. "Maximum": tpl.max(frFmt),
  54. "Summe über Summe": tpl.sumOverSum(frFmt),
  55. "80% Obergrenze": tpl.sumOverSumBound80(true, frFmt),
  56. "80% Untergrenze": tpl.sumOverSumBound80(false, frFmt),
  57. "Summe als Anteil von Gesamt": tpl.fractionOf(tpl.sum(), "total", frFmtPct),
  58. "Summe als Anteil von Zeile": tpl.fractionOf(tpl.sum(), "row", frFmtPct),
  59. "Summe als Anteil von Spalte": tpl.fractionOf(tpl.sum(), "col", frFmtPct),
  60. "Anzahl als Anteil von Gesamt": tpl.fractionOf(tpl.count(), "total", frFmtPct),
  61. "Anzahl als Anteil von Zeile": tpl.fractionOf(tpl.count(), "row", frFmtPct),
  62. "Anzahl als Anteil von Spalte": tpl.fractionOf(tpl.count(), "col", frFmtPct)
  63. },
  64. renderers: {
  65. "Tabelle": $.pivotUtilities.renderers["Table"],
  66. "Tabelle mit Balkendiagramm": $.pivotUtilities.renderers["Table Barchart"],
  67. "Heatmap": $.pivotUtilities.renderers["Heatmap"],
  68. "Heatmap pro Zeile": $.pivotUtilities.renderers["Row Heatmap"],
  69. "Heatmap pro Spalte": $.pivotUtilities.renderers["Col Heatmap"]
  70. }
  71. };
  72. });
  73. }).call(this);