cldr icon indicating copy to clipboard operation
cldr copied to clipboard

Elixir implementation of CLDR/ICU

Results 9 cldr issues
Sort by recently updated
recently updated
newest added

This PR renames `ex_messages` to `ex_cldr_messages`.

This PR adds an integration workflow for all the repositories. This will use the current branch, SEE https://github.com/elixir-cldr/cldr_territories/pull/43, for more context. For a repository that requires ex_cldr, the mix files...

I used `ex_cldr` before, which is why I wanted to use it to fetch some information for a number of locales. When I add it to a project (a real...

When adding duration formatting to an existing elixir application, I've encountered this dialyzer error: ``` lib/cldr.ex:1:overlapping_contract Overloaded contract for Transport.Cldr.Calendar.localize/3 has overlapping domains; such contracts are currently unsupported and are...

This PR introduces typo corrections in the documentation.

Just a small correction: The introduction paragraph still said "As of April 28th 2023 and ex_cldr Version 2.37.0, ex_cldr is based upon [CLDR version 43.0]http://cldr.unicode.org/index/downloads/cldr-43)." Changed to "As of August...

Per the elixir slack thread: > The runtime data_dir option resolves to _build/dev/lib/my_app/priv/cldr (and _build/dev/lib/my_app/priv is linked to priv at the project level, which is under source control). But I...

I upgraded from 2.40.3 to 2.41.0 which according to Semver should have been backwards compatible IIRC. however I had code : ``` defp default_full_format(locale) do {:ok, date_formats} = Format.date_formats(locale, :gregorian)...

Hi @kipcole9. First of all, thanks for the great lib! We are using `cldr` for matching `"accept-language"` headers to locales which we support, so that we can translate content properly...