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.pl.js 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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 nf, plFmt, plFmtInt, plFmtPct, tpl;
  14. nf = $.pivotUtilities.numberFormat;
  15. tpl = $.pivotUtilities.aggregatorTemplates;
  16. plFmt = nf({
  17. thousandsSep: " ",
  18. decimalSep: ","
  19. });
  20. plFmtInt = nf({
  21. digitsAfterDecimal: 0,
  22. thousandsSep: " ",
  23. decimalSep: ","
  24. });
  25. plFmtPct = nf({
  26. digitsAfterDecimal: 1,
  27. scaler: 100,
  28. suffix: "%",
  29. thousandsSep: " ",
  30. decimalSep: ","
  31. });
  32. return $.pivotUtilities.locales.pl = {
  33. localeStrings: {
  34. renderError: "Wystąpił błąd podczas renderowania wyników PivotTable.",
  35. computeError: "Wystąpił błąd podczas obliczania wyników PivotTable.",
  36. uiRenderError: "Wystąpił błąd podczas renderowania UI PivotTable.",
  37. selectAll: "Zaznacz wszystko",
  38. selectNone: "Odznacz wszystkie",
  39. tooMany: "(za dużo do wylistowania)",
  40. filterResults: "Filtruj wartości",
  41. apply: "Zastosuj",
  42. cancel: "Anuluj",
  43. totals: "Podsumowanie",
  44. vs: "vs",
  45. by: "przez"
  46. },
  47. aggregators: {
  48. "Liczba": tpl.count(plFmtInt),
  49. "Liczba Unikatowych Wartości": tpl.countUnique(plFmtInt),
  50. "Lista Unikatowych Wartości": tpl.listUnique(", "),
  51. "Suma": tpl.sum(plFmt),
  52. "Całkowita Suma": tpl.sum(plFmtInt),
  53. "Średnia": tpl.average(plFmt),
  54. "Minimum": tpl.min(plFmt),
  55. "Maksimum": tpl.max(plFmt),
  56. "Pierwszy": tpl.first(plFmt),
  57. "Ostatni": tpl.last(plFmt),
  58. "Suma po Sumie": tpl.sumOverSum(plFmt),
  59. "80% Kres Dolny": tpl.sumOverSumBound80(true, plFmt),
  60. "80% Kres Górny": tpl.sumOverSumBound80(false, plFmt),
  61. "Suma jako Ułamek Całości": tpl.fractionOf(tpl.sum(), "total", plFmtPct),
  62. "Suma jako Ułamek w Wierszach": tpl.fractionOf(tpl.sum(), "row", plFmtPct),
  63. "Suma jako Ułamek w Kolumnach": tpl.fractionOf(tpl.sum(), "col", plFmtPct),
  64. "Liczba jako Ułamek Całości": tpl.fractionOf(tpl.count(), "total", plFmtPct),
  65. "Liczba jako Ułamek w Wierszach": tpl.fractionOf(tpl.count(), "row", plFmtPct),
  66. "Liczba jako Ułamek w Kolumnach": tpl.fractionOf(tpl.count(), "col", plFmtPct)
  67. },
  68. renderers: {
  69. "Tabela": $.pivotUtilities.renderers["Table"],
  70. "Tabela z Wykresem Słupkowym": $.pivotUtilities.renderers["Table Barchart"],
  71. "Mapa cieplna": $.pivotUtilities.renderers["Heatmap"],
  72. "Mapa cieplna po Wierszach": $.pivotUtilities.renderers["Row Heatmap"],
  73. "Mapa cieplna po Kolumnach": $.pivotUtilities.renderers["Col Heatmap"]
  74. }
  75. };
  76. });
  77. }).call(this);