Skip to content

Instantly share code, notes, and snippets.

@RalfNorthman
Created October 9, 2022 13:40
Show Gist options
  • Save RalfNorthman/ae44e63a6fcaf9380e545a88ea1c94a5 to your computer and use it in GitHub Desktop.
Save RalfNorthman/ae44e63a6fcaf9380e545a88ea1c94a5 to your computer and use it in GitHub Desktop.
litvis elm-vegalite swedish locale

Svensk lokalisering i vega-lite för tidsformat etc

cfg : List LabelledSpec -> ( VLProperty, Spec )
cfg =
    configure
        << configuration
            (coLocale
                [ loDecimal ","
                , loGrouping 3
                , loDateTime "%Y-%m-%d %H:%M:%S"
                , loDate "%Y-%m-%d"
                , loTime "%H:%M:%S"
                , loPeriods "fm" "em"
                , loDays [ "Söndag", "Måndag", "Tisdag", "Onsdag", "Torsdag", "Fredag", "Lördag" ]
                , loShortDays [ "Sön", "Mån", "Tis", "Ons", "Tor", "Fre", "Lör" ]
                , loMonths [ "Januari", "Februari", "Mars", "April", "Maj", "Juni", "Juli", "Augusti", "September", "Oktober", "November", "December" ]
                , loShortMonths [ "Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec" ]
                ]
            )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment