13 lines
265 B
Elixir
13 lines
265 B
Elixir
|
|
defmodule SimpleshopTheme.Cldr do
|
||
|
|
@moduledoc """
|
||
|
|
CLDR backend for internationalization and currency formatting.
|
||
|
|
|
||
|
|
Used by ex_money for currency handling.
|
||
|
|
"""
|
||
|
|
|
||
|
|
use Cldr,
|
||
|
|
locales: ["en"],
|
||
|
|
default_locale: "en",
|
||
|
|
providers: [Cldr.Number, Money]
|
||
|
|
end
|