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.tr.js 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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 c3r, d3r, frFmt, frFmtInt, frFmtPct, gcr, nf, r, tpl;
  14. nf = $.pivotUtilities.numberFormat;
  15. tpl = $.pivotUtilities.aggregatorTemplates;
  16. r = $.pivotUtilities.renderers;
  17. gcr = $.pivotUtilities.gchart_renderers;
  18. d3r = $.pivotUtilities.d3_renderers;
  19. c3r = $.pivotUtilities.c3_renderers;
  20. frFmt = nf({
  21. thousandsSep: ".",
  22. decimalSep: ","
  23. });
  24. frFmtInt = nf({
  25. digitsAfterDecimal: 0,
  26. thousandsSep: ".",
  27. decimalSep: ","
  28. });
  29. frFmtPct = nf({
  30. digitsAfterDecimal: 2,
  31. scaler: 100,
  32. suffix: "%",
  33. thousandsSep: ".",
  34. decimalSep: ","
  35. });
  36. $.pivotUtilities.locales.tr = {
  37. localeStrings: {
  38. renderError: "PivotTable sonuçlarını oluştuturken hata oluştu",
  39. computeError: "PivotTable sonuçlarını işlerken hata oluştu",
  40. uiRenderError: "PivotTable UI sonuçlarını oluştuturken hata oluştu",
  41. selectAll: "Tümünü Seç",
  42. selectNone: "Tümünü Bırak",
  43. tooMany: "(listelemek için fazla)",
  44. filterResults: "Sonuçları filtrele",
  45. totals: "Toplam",
  46. vs: "vs",
  47. by: "ile"
  48. },
  49. aggregators: {
  50. "Sayı": tpl.count(frFmtInt),
  51. "Benzersiz değerler sayısı": tpl.countUnique(frFmtInt),
  52. "Benzersiz değerler listesi": tpl.listUnique(", "),
  53. "Toplam": tpl.sum(frFmt),
  54. "Toplam (tam sayı)": tpl.sum(frFmtInt),
  55. "Ortalama": tpl.average(frFmt),
  56. "Min": tpl.min(frFmt),
  57. "Maks": tpl.max(frFmt),
  58. "Miktarların toplamı": tpl.sumOverSum(frFmt),
  59. "%80 daha yüksek": tpl.sumOverSumBound80(true, frFmt),
  60. "%80 daha düşük": tpl.sumOverSumBound80(false, frFmt),
  61. "Toplam oranı (toplam)": tpl.fractionOf(tpl.sum(), "total", frFmtPct),
  62. "Satır oranı (toplam)": tpl.fractionOf(tpl.sum(), "row", frFmtPct),
  63. "Sütunun oranı (toplam)": tpl.fractionOf(tpl.sum(), "col", frFmtPct),
  64. "Toplam oranı (sayı)": tpl.fractionOf(tpl.count(), "total", frFmtPct),
  65. "Satır oranı (sayı)": tpl.fractionOf(tpl.count(), "row", frFmtPct),
  66. "Sütunun oranı (sayı)": tpl.fractionOf(tpl.count(), "col", frFmtPct)
  67. },
  68. renderers: {
  69. "Tablo": r["Table"],
  70. "Tablo (Çubuklar)": r["Table Barchart"],
  71. "İlgi haritası": r["Heatmap"],
  72. "Satır ilgi haritası": r["Row Heatmap"],
  73. "Sütun ilgi haritası": r["Col Heatmap"]
  74. }
  75. };
  76. if (gcr) {
  77. $.pivotUtilities.locales.tr.gchart_renderers = {
  78. "Çizgi Grafiği": gcr["Line Chart"],
  79. "Bar Grafiği": gcr["Bar Chart"],
  80. "Yığılmış Çubuk Grafik ": gcr["Stacked Bar Chart"],
  81. "Alan Grafiği": gcr["Area Chart"]
  82. };
  83. }
  84. if (d3r) {
  85. $.pivotUtilities.locales.tr.d3_renderers = {
  86. "Hiyerarşik Alan Grafiği (Treemap)": d3r["Treemap"]
  87. };
  88. }
  89. if (c3r) {
  90. $.pivotUtilities.locales.tr.c3_renderers = {
  91. "Çizgi Grafiği": c3r["Line Chart"],
  92. "Bar Grafiği": c3r["Bar Chart"],
  93. "Yığılmış Çubuk Grafik ": c3r["Stacked Bar Chart"],
  94. "Alan Grafiği": c3r["Area Chart"]
  95. };
  96. }
  97. return $.pivotUtilities.locales.tr;
  98. });
  99. }).call(this);