forked from nicolaskruchten/pivottable
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pivot.es.coffee
55 lines (48 loc) · 2.94 KB
/
pivot.es.coffee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
callWithJQuery = (pivotModule) ->
if typeof exports is "object" and typeof module is "object" # CommonJS
pivotModule require("jquery")
else if typeof define is "function" and define.amd # AMD
define ["jquery"], pivotModule
# Plain browser env
else
pivotModule jQuery
callWithJQuery ($) ->
nf = $.pivotUtilities.numberFormat
tpl = $.pivotUtilities.aggregatorTemplates
frFmt = nf(thousandsSep: " ", decimalSep: ",")
frFmtInt = nf(digitsAfterDecimal: 0, thousandsSep: " ", decimalSep: ",")
frFmtPct = nf(digitsAfterDecimal: 1, scaler: 100, suffix: "%", thousandsSep: " ", decimalSep: ",")
$.pivotUtilities.locales.es =
localeStrings:
renderError: "Ocurrió un error durante la interpretación de la tabla din´mica."
computeError: "Ocurrió un error durante el c´lculo de la tabla din´mica."
uiRenderError: "Ocurrió un error durante el dibujado de la tabla din´mica."
selectAll: "Seleccionar todo"
selectNone: "Deseleccionar todo"
tooMany: "(demasiados valores)"
filterResults: "Filtrar resultados"
totals: "Totales"
vs: "vs"
by: "por"
aggregators:
"Cuenta": tpl.count(frFmtInt)
"Cuenta de valores únicos": tpl.countUnique(frFmtInt)
"Lista de valores únicos": tpl.listUnique(", ")
"Suma": tpl.sum(frFmt)
"Suma de enteros": tpl.sum(frFmtInt)
"Promedio": tpl.average(frFmt)
"Suma de sumas": tpl.sumOverSum(frFmt)
"Cota 80% superior": tpl.sumOverSumBound80(true, frFmt)
"Cota 80% inferior": tpl.sumOverSumBound80(false, frFmt)
"Proporción del total (suma)": tpl.fractionOf(tpl.sum(), "total", frFmtPct)
"Proporción de la fila (suma)": tpl.fractionOf(tpl.sum(), "row", frFmtPct)
"Proporción de la columna (suma)": tpl.fractionOf(tpl.sum(), "col", frFmtPct)
"Proporción del total (cuenta)": tpl.fractionOf(tpl.count(), "total", frFmtPct)
"Proporción de la fila (cuenta)": tpl.fractionOf(tpl.count(), "row", frFmtPct)
"Proporción de la columna (cuenta)": tpl.fractionOf(tpl.count(), "col", frFmtPct)
renderers:
"Tabla": $.pivotUtilities.renderers["Table"]
"Tabla con barras": $.pivotUtilities.renderers["Table Barchart"]
"Heatmap": $.pivotUtilities.renderers["Heatmap"]
"Heatmap por filas": $.pivotUtilities.renderers["Row Heatmap"]
"Heatmap por columnas": $.pivotUtilities.renderers["Col Heatmap"]