From 3ea634a17b7d2bee599a810829a2f8dc3a6fe914 Mon Sep 17 00:00:00 2001 From: Henrik Date: Fri, 8 May 2020 15:31:48 +0200 Subject: [PATCH 1/3] translation to Swedish --- locales/pivot.se.coffee | 55 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 locales/pivot.se.coffee diff --git a/locales/pivot.se.coffee b/locales/pivot.se.coffee new file mode 100644 index 00000000..99b40df7 --- /dev/null +++ b/locales/pivot.se.coffee @@ -0,0 +1,55 @@ +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.de = + localeStrings: + renderError: "Bei der Darstellung der Pivot-Tabelle ist ein Fehler aufgetreten." + computeError: "Bei der Berechnung der Pivot-Tabelle ist ein Fehler aufgetreten." + uiRenderError: "Bei der Darstellung Oberfläche der Pivot-Tabelle ist ein Fehler aufgetreten." + selectAll: "Alles auswählen" + selectNone: "Nichts auswählen" + tooMany: "(zu viele für Liste)" + filterResults: "Ergebnisse filtern" + totals: "Gesamt" + vs: "gegen" + by: "pro" + + aggregators: + "Anzahl": tpl.count(frFmtInt) + "Anzahl eindeutiger Werte": tpl.countUnique(frFmtInt) + "Liste eindeutiger Werte": tpl.listUnique(", ") + "Summe": tpl.sum(frFmt) + "Ganzzahlige Summe": tpl.sum(frFmtInt) + "Durchschnitt": tpl.average(frFmt) + "Minimum": tpl.min(frFmt) + "Maximum": tpl.max(frFmt) + "Summe über Summe": tpl.sumOverSum(frFmt) + "80% Obergrenze": tpl.sumOverSumBound80(true, frFmt) + "80% Untergrenze": tpl.sumOverSumBound80(false, frFmt) + "Summe als Anteil von Gesamt": tpl.fractionOf(tpl.sum(), "total", frFmtPct) + "Summe als Anteil von Zeile": tpl.fractionOf(tpl.sum(), "row", frFmtPct) + "Summe als Anteil von Spalte": tpl.fractionOf(tpl.sum(), "col", frFmtPct) + "Anzahl als Anteil von Gesamt": tpl.fractionOf(tpl.count(), "total", frFmtPct) + "Anzahl als Anteil von Zeile": tpl.fractionOf(tpl.count(), "row", frFmtPct) + "Anzahl als Anteil von Spalte": tpl.fractionOf(tpl.count(), "col", frFmtPct) + + renderers: + "Tabelle": $.pivotUtilities.renderers["Table"] + "Tabelle mit Balkendiagramm": $.pivotUtilities.renderers["Table Barchart"] + "Heatmap": $.pivotUtilities.renderers["Heatmap"] + "Heatmap pro Zeile": $.pivotUtilities.renderers["Row Heatmap"] + "Heatmap pro Spalte": $.pivotUtilities.renderers["Col Heatmap"] From 8085b8be15f383f94285b5ba022fd072fb85b8d5 Mon Sep 17 00:00:00 2001 From: Henrik Date: Fri, 8 May 2020 16:17:34 +0200 Subject: [PATCH 2/3] Update pivot.se.coffee --- locales/pivot.se.coffee | 74 +++++++++++++++++++++++------------------ 1 file changed, 41 insertions(+), 33 deletions(-) diff --git a/locales/pivot.se.coffee b/locales/pivot.se.coffee index 99b40df7..be999f6c 100644 --- a/locales/pivot.se.coffee +++ b/locales/pivot.se.coffee @@ -15,41 +15,49 @@ callWithJQuery ($) -> frFmtInt = nf(digitsAfterDecimal: 0, thousandsSep: " ", decimalSep: ",") frFmtPct = nf(digitsAfterDecimal: 1, scaler: 100, suffix: "%", thousandsSep: " ", decimalSep: ",") - $.pivotUtilities.locales.de = + $.pivotUtilities.locales.se = localeStrings: - renderError: "Bei der Darstellung der Pivot-Tabelle ist ein Fehler aufgetreten." - computeError: "Bei der Berechnung der Pivot-Tabelle ist ein Fehler aufgetreten." - uiRenderError: "Bei der Darstellung Oberfläche der Pivot-Tabelle ist ein Fehler aufgetreten." - selectAll: "Alles auswählen" - selectNone: "Nichts auswählen" - tooMany: "(zu viele für Liste)" - filterResults: "Ergebnisse filtern" - totals: "Gesamt" - vs: "gegen" - by: "pro" + renderError: "Ett fel uppstod när PivotTable-resultaten skulle ritas upp.", + computeError: "Ett fel uppstod när PivotTable-resultaten skulle beräknas.", + uiRenderError: "Ett fel uppstod när användargränssnittet för PivotTable skulle ritas upp.", + selectAll: "Välj alla", + selectNone: "Välj ingen", + tooMany: "(för många att lista)", + filterResults: "Filtrera värden", + apply: "Verkställ", + cancel: "Avbryt", + totals: "Totalt", + vs: "mot", + by: "av" + aggregators: - "Anzahl": tpl.count(frFmtInt) - "Anzahl eindeutiger Werte": tpl.countUnique(frFmtInt) - "Liste eindeutiger Werte": tpl.listUnique(", ") - "Summe": tpl.sum(frFmt) - "Ganzzahlige Summe": tpl.sum(frFmtInt) - "Durchschnitt": tpl.average(frFmt) - "Minimum": tpl.min(frFmt) - "Maximum": tpl.max(frFmt) - "Summe über Summe": tpl.sumOverSum(frFmt) - "80% Obergrenze": tpl.sumOverSumBound80(true, frFmt) - "80% Untergrenze": tpl.sumOverSumBound80(false, frFmt) - "Summe als Anteil von Gesamt": tpl.fractionOf(tpl.sum(), "total", frFmtPct) - "Summe als Anteil von Zeile": tpl.fractionOf(tpl.sum(), "row", frFmtPct) - "Summe als Anteil von Spalte": tpl.fractionOf(tpl.sum(), "col", frFmtPct) - "Anzahl als Anteil von Gesamt": tpl.fractionOf(tpl.count(), "total", frFmtPct) - "Anzahl als Anteil von Zeile": tpl.fractionOf(tpl.count(), "row", frFmtPct) - "Anzahl als Anteil von Spalte": tpl.fractionOf(tpl.count(), "col", frFmtPct) + "Antal": tpl.count(frFmtInt) + "Antal unika värden": tpl.countUnique(frFmtInt) + "Lista unika värden": tpl.listUnique(", ") + "Summa": tpl.sum(frFmt) + "Heltal": tpl.sum(frFmtInt) + "Medelvärde": tpl.average(frFmt) + "Median": tpl.median(frFmt), + "Urval avvikelse": tpl["var"](1, frFmt), + "Urval standardavvikelse": tpl.stdev(1, frFmt), + "Minimum": tpl.min(frFmt) + "Maximum": tpl.max(frFmt) + "First": tpl.first(usFmt), + "Last": tpl.last(usFmt) + "Summa över summa": tpl.sumOverSum(frFmt) + "80% övre gräns": tpl.sumOverSumBound80(true, frFmt) + "80% undre gräns": tpl.sumOverSumBound80(false, frFmt) + "Summa som en andel av det totala": tpl.fractionOf(tpl.sum(), "total", frFmtPct) + "Summa som en del av raden": tpl.fractionOf(tpl.sum(), "row", frFmtPct) + "Summa som en del av kolumnen": tpl.fractionOf(tpl.sum(), "col", frFmtPct) + "Antal som en del av det totala": tpl.fractionOf(tpl.count(), "total", frFmtPct) + "Antal som en del av raden": tpl.fractionOf(tpl.count(), "row", frFmtPct) + "Antal som en del av kolumnen": tpl.fractionOf(tpl.count(), "col", frFmtPct) renderers: - "Tabelle": $.pivotUtilities.renderers["Table"] - "Tabelle mit Balkendiagramm": $.pivotUtilities.renderers["Table Barchart"] - "Heatmap": $.pivotUtilities.renderers["Heatmap"] - "Heatmap pro Zeile": $.pivotUtilities.renderers["Row Heatmap"] - "Heatmap pro Spalte": $.pivotUtilities.renderers["Col Heatmap"] + "Tabell": $.pivotUtilities.renderers["Table"] + "Tabell med stapeldiagram": $.pivotUtilities.renderers["Table Barchart"] + "Värmekarta": $.pivotUtilities.renderers["Heatmap"] + "Värmekarta per rad": $.pivotUtilities.renderers["Row Heatmap"] + "Värmekarta per kolumn": $.pivotUtilities.renderers["Col Heatmap"] \ No newline at end of file From d94bd7db5ad1a4eb056a965ed742c2131314f63d Mon Sep 17 00:00:00 2001 From: Henrik Date: Wed, 13 May 2020 22:25:32 +0200 Subject: [PATCH 3/3] Update pivot.se.coffee --- locales/pivot.se.coffee | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/locales/pivot.se.coffee b/locales/pivot.se.coffee index be999f6c..c617eea4 100644 --- a/locales/pivot.se.coffee +++ b/locales/pivot.se.coffee @@ -40,11 +40,11 @@ callWithJQuery ($) -> "Medelvärde": tpl.average(frFmt) "Median": tpl.median(frFmt), "Urval avvikelse": tpl["var"](1, frFmt), - "Urval standardavvikelse": tpl.stdev(1, frFmt), + "Urval standardavvikelse": tpl.stdev(1, frFmt), "Minimum": tpl.min(frFmt) "Maximum": tpl.max(frFmt) - "First": tpl.first(usFmt), - "Last": tpl.last(usFmt) + "Första": tpl.first(usFmt), + "Sista": tpl.last(usFmt) "Summa över summa": tpl.sumOverSum(frFmt) "80% övre gräns": tpl.sumOverSumBound80(true, frFmt) "80% undre gräns": tpl.sumOverSumBound80(false, frFmt)