Built files from Bizgaze WebServer
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

pivot.sq.js 2.9KB

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.sq = {
  33. localeStrings: {
  34. renderError: "Ka ndodhur një gabim gjatë shfaqjes së rezultateve të PivotTable.",
  35. computeError: "Ka ndodhur një gabim gjatë llogaritjes së rezultateve të PivotTable.",
  36. uiRenderError: "Ka ndodhur një gabim gjatë shfaqjes së ndërfaqes së PivotTable.",
  37. selectAll: "Përzgjedh të gjitha",
  38. selectNone: "Mos përzgjedh asnjërën",
  39. tooMany: "(shumë për t'u listuar)",
  40. filterResults: "Filtro vlerat",
  41. totals: "Totalet",
  42. vs: "kundër",
  43. by: "për"
  44. },
  45. aggregators: {
  46. "Numëro": tpl.count(frFmtInt),
  47. "Numëro vlerat unike": tpl.countUnique(frFmtInt),
  48. "Listo vlerat unike": tpl.listUnique(", "),
  49. "Shuma": tpl.sum(frFmt),
  50. "Shuma si numër i plotë": tpl.sum(frFmtInt),
  51. "Mesatarja": tpl.average(frFmt),
  52. "Minimumi": tpl.min(frFmt),
  53. "Maksimumi": tpl.max(frFmt),
  54. "Shuma mbi shumë": tpl.sumOverSum(frFmt),
  55. "80% kufiri i sipërm": tpl.sumOverSumBound80(true, frFmt),
  56. "80% kufiri i poshtëm": tpl.sumOverSumBound80(false, frFmt),
  57. "Shuma si thyesë e totalit": tpl.fractionOf(tpl.sum(), "total", frFmtPct),
  58. "Shuma si thyesë e rreshtave": tpl.fractionOf(tpl.sum(), "row", frFmtPct),
  59. "Shuma si thyesë e kolonave": tpl.fractionOf(tpl.sum(), "col", frFmtPct),
  60. "Numërimi si thyesë e totalit": tpl.fractionOf(tpl.count(), "total", frFmtPct),
  61. "Numërimi si thyesë e rreshtave": tpl.fractionOf(tpl.count(), "row", frFmtPct),
  62. "Numërimi si thyesë e kolonave": tpl.fractionOf(tpl.count(), "col", frFmtPct)
  63. },
  64. renderers: {
  65. "Tabela": $.pivotUtilities.renderers["Table"],
  66. "Tabela me diagram vertikal": $.pivotUtilities.renderers["Table Barchart"],
  67. "Heatmap": $.pivotUtilities.renderers["Heatmap"],
  68. "Heatmap për rresht": $.pivotUtilities.renderers["Row Heatmap"],
  69. "Heatmap për kolonë": $.pivotUtilities.renderers["Col Heatmap"]
  70. }
  71. };
  72. });
  73. }).call(this);