Built files from Bizgaze WebServer
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

pivot.da.js 2.6KB

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 nf, o, r, t, tpl;
  14. nf = $.pivotUtilities.numberFormat;
  15. tpl = $.pivotUtilities.aggregatorTemplates;
  16. r = nf({
  17. thousandsSep: ".",
  18. decimalSep: ","
  19. });
  20. t = nf({
  21. digitsAfterDecimal: 0,
  22. thousandsSep: ".",
  23. decimalSep: ","
  24. });
  25. o = nf({
  26. digitsAfterDecimal: 1,
  27. scaler: 100,
  28. suffix: "%",
  29. thousandsSep: ".",
  30. decimalSep: ","
  31. });
  32. return $.pivotUtilities.locales.da = {
  33. localeStrings: {
  34. renderError: "Der opstod en fejl, mens du trak i feltet",
  35. computeError: "Der opstod en fejl ved beregningen af feltet",
  36. uiRenderError: "Der opstod en fejl, mens den grafiske brugerflade blev beregnet",
  37. selectAll: "Vælg alle",
  38. selectNone: "Vælg ingen",
  39. tooMany: "(for mange værdier til at vise)",
  40. filterResults: "Filter værdier",
  41. totals: "I alt",
  42. vs: "vs",
  43. by: "af"
  44. },
  45. aggregators: {
  46. "Antal": tpl.count(t),
  47. "Antal Unikke værdier": tpl.countUnique(t),
  48. "Liste unikke værdier": tpl.listUnique(", "),
  49. "Sum": tpl.sum(r),
  50. "Sum i heltal": tpl.sum(t),
  51. "Gennemsnit": tpl.average(r),
  52. "Minimum": tpl.min(r),
  53. "Maximum": tpl.max(r),
  54. "Sum iforhold til sum": tpl.sumOverSum(r),
  55. "Sum iforhold til sum, øverst 80%": tpl.sumOverSumBound80(!0, r),
  56. "Sum iforhold til sum, lavest 80%": tpl.sumOverSumBound80(!1, r),
  57. "Andel af i alt sum": tpl.fractionOf(tpl.sum(), "total", o),
  58. "Andel af række sum": tpl.fractionOf(tpl.sum(), "row", o),
  59. "Andel af kolonner sum": tpl.fractionOf(tpl.sum(), "col", o),
  60. "Andel af i alt antal": tpl.fractionOf(tpl.count(), "total", o),
  61. "Andel af række antal": tpl.fractionOf(tpl.count(), "row", o),
  62. "Andel af kolonner antal": tpl.fractionOf(tpl.count(), "col", o)
  63. },
  64. renderers: {
  65. "Tabel": $.pivotUtilities.renderers.Table,
  66. "Tabel med søjler": $.pivotUtilities.renderers["Table Barchart"],
  67. "Heatmap": $.pivotUtilities.renderers.Heatmap,
  68. "Heatmap per række": $.pivotUtilities.renderers["Row Heatmap"],
  69. "Heatmap per kolonne": $.pivotUtilities.renderers["Col Heatmap"]
  70. }
  71. };
  72. });
  73. }).call(this);