123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- (function() {
- var callWithJQuery;
-
- callWithJQuery = function(pivotModule) {
- if (typeof exports === "object" && typeof module === "object") {
- return pivotModule(require("jquery"));
- } else if (typeof define === "function" && define.amd) {
- return define(["jquery"], pivotModule);
- } else {
- return pivotModule(jQuery);
- }
- };
-
- callWithJQuery(function($) {
- var c3r, d3r, frFmt, frFmtInt, frFmtPct, gcr, nf, r, tpl;
- nf = $.pivotUtilities.numberFormat;
- tpl = $.pivotUtilities.aggregatorTemplates;
- r = $.pivotUtilities.renderers;
- gcr = $.pivotUtilities.gchart_renderers;
- d3r = $.pivotUtilities.d3_renderers;
- c3r = $.pivotUtilities.c3_renderers;
- frFmt = nf({
- thousandsSep: ".",
- decimalSep: ","
- });
- frFmtInt = nf({
- digitsAfterDecimal: 0,
- thousandsSep: ".",
- decimalSep: ","
- });
- frFmtPct = nf({
- digitsAfterDecimal: 2,
- scaler: 100,
- suffix: "%",
- thousandsSep: ".",
- decimalSep: ","
- });
- $.pivotUtilities.locales.tr = {
- localeStrings: {
- renderError: "PivotTable sonuçlarını oluştuturken hata oluştu",
- computeError: "PivotTable sonuçlarını işlerken hata oluştu",
- uiRenderError: "PivotTable UI sonuçlarını oluştuturken hata oluştu",
- selectAll: "Tümünü Seç",
- selectNone: "Tümünü Bırak",
- tooMany: "(listelemek için fazla)",
- filterResults: "Sonuçları filtrele",
- totals: "Toplam",
- vs: "vs",
- by: "ile"
- },
- aggregators: {
- "Sayı": tpl.count(frFmtInt),
- "Benzersiz değerler sayısı": tpl.countUnique(frFmtInt),
- "Benzersiz değerler listesi": tpl.listUnique(", "),
- "Toplam": tpl.sum(frFmt),
- "Toplam (tam sayı)": tpl.sum(frFmtInt),
- "Ortalama": tpl.average(frFmt),
- "Min": tpl.min(frFmt),
- "Maks": tpl.max(frFmt),
- "Miktarların toplamı": tpl.sumOverSum(frFmt),
- "%80 daha yüksek": tpl.sumOverSumBound80(true, frFmt),
- "%80 daha düşük": tpl.sumOverSumBound80(false, frFmt),
- "Toplam oranı (toplam)": tpl.fractionOf(tpl.sum(), "total", frFmtPct),
- "Satır oranı (toplam)": tpl.fractionOf(tpl.sum(), "row", frFmtPct),
- "Sütunun oranı (toplam)": tpl.fractionOf(tpl.sum(), "col", frFmtPct),
- "Toplam oranı (sayı)": tpl.fractionOf(tpl.count(), "total", frFmtPct),
- "Satır oranı (sayı)": tpl.fractionOf(tpl.count(), "row", frFmtPct),
- "Sütunun oranı (sayı)": tpl.fractionOf(tpl.count(), "col", frFmtPct)
- },
- renderers: {
- "Tablo": r["Table"],
- "Tablo (Çubuklar)": r["Table Barchart"],
- "İlgi haritası": r["Heatmap"],
- "Satır ilgi haritası": r["Row Heatmap"],
- "Sütun ilgi haritası": r["Col Heatmap"]
- }
- };
- if (gcr) {
- $.pivotUtilities.locales.tr.gchart_renderers = {
- "Çizgi Grafiği": gcr["Line Chart"],
- "Bar Grafiği": gcr["Bar Chart"],
- "Yığılmış Çubuk Grafik ": gcr["Stacked Bar Chart"],
- "Alan Grafiği": gcr["Area Chart"]
- };
- }
- if (d3r) {
- $.pivotUtilities.locales.tr.d3_renderers = {
- "Hiyerarşik Alan Grafiği (Treemap)": d3r["Treemap"]
- };
- }
- if (c3r) {
- $.pivotUtilities.locales.tr.c3_renderers = {
- "Çizgi Grafiği": c3r["Line Chart"],
- "Bar Grafiği": c3r["Bar Chart"],
- "Yığılmış Çubuk Grafik ": c3r["Stacked Bar Chart"],
- "Alan Grafiği": c3r["Area Chart"]
- };
- }
- return $.pivotUtilities.locales.tr;
- });
-
- }).call(this);
|