sergio
1
Using Timex, I’m trying to translate a date from “October 2024” to “Octubre 2024” (spanish).
This works:
<% [month, year] =
Date.utc_today()
|> Timex.shift(months: 9)
|> Timex.format!("{Mfull} {YYYY}") # October 2024
|> String.split(" ") %>
<%= "#{Timex.Translator.translate("es", "months", month)} #{year}" %>
Is there a better way to translate dates in Elixir?
mayel
2
1 Like
kip
3
With Elixir 1.17 (released in April) you can:
Date.utc_today()
|> Date.shift(month: 9)
|> Cldr.Date.to_string(format: "MMMM yyyy", locale: :es)
{:ok, "octubre 2024"}
Of course Timex is also still very useful.
ex_cldr_dates_times has a lot of formatting symbols so you should be able to format to your requirements. (I’m the author).
6 Likes