# License

Copyright 2026 Kip Cole

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in
compliance with the License. You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License
is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied. See the License for the specific language governing permissions and limitations under the
License.

---

# Unicode Data

Localize embeds and redistributes data derived from the Unicode Common Locale Data Repository (CLDR) and the Unicode Character Database (UCD), both published by Unicode, Inc. The CLDR release this package was built from is recorded in `priv/localize/version`.

## What is used, and how

The build pipeline in `data/` reads CLDR's XML and JSON releases together with the UCD tables in `priv/unicode/`, and compiles them into the Erlang term files under `priv/localize/`. Those files are the form in which Unicode data is distributed:

* `priv/localize/locales/*.etf` — per-locale data: number, date, time, unit, currency, list and display-name formats, and plural rules. Only `en.etf` and `und.etf` are included in the Hex package; the remaining locales are downloaded at runtime from `https://elixir-localize.com/locales`, and are the same data in the same form.

* `priv/localize/supplemental_data/`, `priv/localize/validity/` — CLDR supplemental and validity data: territory containment, likely subtags, language matching, unit conversions and preferences, currency definitions, time zone metadata and subtag validity.

* `priv/localize/collation_table.etf` — collation weights derived from the CLDR root collation (`FractionalUCA.txt`), which is itself derived from the Unicode Collation Algorithm and the UCD.

Code generated by `mix localize.unit.gen_conversions` embeds CLDR unit conversion factors as Elixir source, and so carries this notice too.

No Unicode data is modified in meaning. The pipeline reshapes it for efficient runtime access and discards fields Localize does not use.

## Notice

The Unicode data is used under the Unicode License v3 (`SPDX-License-Identifier: Unicode-3.0`). The following notice is reproduced verbatim, as that license requires.

    COPYRIGHT AND PERMISSION NOTICE

    Copyright © 1991–2026 Unicode, Inc. All rights reserved.
    Distributed under the Terms of Use in https://www.unicode.org/copyright.html.

    Permission is hereby granted, free of charge, to any person obtaining a
    copy of data files and any associated documentation (the "Data Files") or
    software and any associated documentation (the "Software") to deal in the
    Data Files or Software without restriction, including without limitation
    the rights to use, copy, modify, merge, publish, distribute, and/or sell
    copies of the Data Files or Software, and to permit persons to whom the
    Data Files or Software are furnished to do so, provided that either (a)
    this copyright and permission notice appear with all copies of the Data
    Files or Software, or (b) this copyright and permission notice appear in
    associated Documentation.

    THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
    KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
    THIRD PARTY RIGHTS.

    IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE
    BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,
    OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
    WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
    ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA
    FILES OR SOFTWARE.

    Except as contained in this notice, the name of a copyright holder shall
    not be used in advertising or otherwise to promote the sale, use or other
    dealings in these Data Files or Software without prior written
    authorization of the copyright holder.
