CalendarTranslations

Build StatusHex Version

Translations for the Calendar library, heavily based on rails-i18n.

Installation

Add calendar_translations to your list of dependencies in mix.exs:

def deps do
  [{:calendar_translations, "~> 0.0.2"}]
end

Make Calendar use CalendarTranslations by adding the following line to your config/config.exs file:

config :calendar, :translation_module, CalendarTranslations.Translations

Usage

There are 100+ languages/dialect available. Various Calendar functions take a lang argument, which is a symbol.

Here is an example of the Calendar.Strftime.strftime!/2 function where the same formatting string is used with four different langauges:

{2016, 1, 11} |> Calendar.Strftime.strftime!("%A %Y %B %e", :en)
"Monday 2016 January 11"
{2016, 1, 11} |> Calendar.Strftime.strftime!("%A %Y %B %e", :hi)
"सोमवार 2016 जनवरी 11"
{2016, 1, 11} |> Calendar.Strftime.strftime!("%A %Y %B %e", :"pt-BR")
"Segunda-feira 2016 Janeiro 11"
{2016, 1, 11} |> Calendar.Strftime.strftime!("%A %Y %B %e", :da)
"mandag 2016 januar 11"

Contributing

All contributions are welcome. Please feel free to open a pull request on GitHub: https://github.com/padde/calendar_translations

License

CalendarTranslations is released under the MIT license. See the LICENSE file.