Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to 4.17 and move to UV #599

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
80 changes: 80 additions & 0 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
name: Test iso-codes, build and publish to TestPypi
on: [pull_request]
jobs:
test:
name: Run tests
runs-on: ubuntu-20.04
strategy:
matrix:
env:
- "3.13"
- "3.12"
- "3.11"
- "3.10"
- "3.9"
- type
- dev
- pkg_meta
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
cache-dependency-glob: "pyproject.toml"
- name: Install tox
run: uv tool install --python-preference only-managed --python 3.13 tox --with tox-uv
- name: Install Python
if: startsWith(matrix.env, '3.') && matrix.env != '3.13'
run: uv python install --python-preference only-managed ${{ matrix.env }}
- name: Setup test suite
run: tox run -vv --notest --skip-missing-interpreters false -e ${{ matrix.env }}
- name: Run test suite
run: tox run --skip-pkg-install -e ${{ matrix.env }}
env:
PYTEST_ADDOPTS: "-vv --durations=20"
DIFF_AGAINST: HEAD

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
cache-dependency-glob: "pyproject.toml"
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Build package
run: uv build --python 3.13 --python-preference only-managed --sdist --wheel . --out-dir dist
- name: Store the distribution packages
uses: actions/upload-artifact@v4
with:
name: ${{ env.dists-artifact-name }}
path: dist/*

release:
needs:
- build
runs-on: ubuntu-latest
environment:
name: release
url: https://pypi.org/project/tox-uv/${{ github.ref_name }}
permissions:
id-token: write
steps:
- name: Download all the dists
uses: actions/download-artifact@v4
with:
name: ${{ env.dists-artifact-name }}
path: dist/
- name: Publish to Test PyPI
uses: pypa/[email protected]
with:
password: ${{ secrets.test_pypi_password }}
repository-url: https://test.pypi.org/legacy/
skip-existing: true
25 changes: 0 additions & 25 deletions .github/workflows/publish.yaml

This file was deleted.

48 changes: 48 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Release to PyPI
on:
push:
tags: ["*"]

env:
dists-artifact-name: python-package-distributions

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
cache-dependency-glob: "pyproject.toml"
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Build package
run: uv build --python 3.13 --python-preference only-managed --sdist --wheel . --out-dir dist
- name: Store the distribution packages
uses: actions/upload-artifact@v4
with:
name: ${{ env.dists-artifact-name }}
path: dist/*

release:
needs:
- build
runs-on: ubuntu-latest
environment:
name: release
url: https://pypi.org/project/tox-uv/${{ github.ref_name }}
permissions:
id-token: write
steps:
- name: Download all the dists
uses: actions/download-artifact@v4
with:
name: ${{ env.dists-artifact-name }}
path: dist/
- name: Publish to PyPI
uses: pypa/[email protected]
with:
password: ${{ secrets.pypi_password }}
43 changes: 0 additions & 43 deletions .github/workflows/tests.yaml

This file was deleted.

63 changes: 39 additions & 24 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,25 +1,40 @@
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
default_language_version:
python: python3.10
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: check-added-large-files
- id: check-toml
- id: check-yaml
args:
- --unsafe
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.2.0
hooks:
- id: ruff
args:
- --fix
- id: ruff-format
ci:
autofix_commit_msg: 🎨 [pre-commit.ci] Auto format from pre-commit.com hooks
autoupdate_commit_msg: ⬆ [pre-commit.ci] pre-commit autoupdate
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.29.4
hooks:
- id: check-github-workflows
args: ["--verbose"]
- repo: https://github.com/codespell-project/codespell
rev: v2.3.0
hooks:
- id: codespell
additional_dependencies: ["tomli>=2.0.2"]
- repo: https://github.com/tox-dev/tox-ini-fmt
rev: "1.4.1"
hooks:
- id: tox-ini-fmt
args: ["-p", "fix"]
- repo: https://github.com/tox-dev/pyproject-fmt
rev: "v2.5.0"
hooks:
- id: pyproject-fmt
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.7.4"
hooks:
- id: ruff-format
- id: ruff
args: ["--fix", "--unsafe-fixes", "--exit-non-zero-on-fix"]
- repo: https://github.com/rbubley/mirrors-prettier
rev: "v3.3.3"
hooks:
- id: prettier
args: ["--print-width=120", "--prose-wrap=always"]
- repo: meta
hooks:
- id: check-hooks-apply
- id: check-useless-excludes
Binary file removed isocodes/share/locale/ab/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ab/LC_MESSAGES/iso_639-5.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ace/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ach/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file not shown.
Binary file removed isocodes/share/locale/af/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/af/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/af/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ak/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/am/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/am/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/am/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/am/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/an/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ar/LC_MESSAGES/iso_15924.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ar/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ar/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ar/LC_MESSAGES/iso_4217.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ar/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ar/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/as/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/as/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/as/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ast/LC_MESSAGES/iso_15924.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ast/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ast/LC_MESSAGES/iso_3166-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ast/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ast/LC_MESSAGES/iso_4217.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ast/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ast/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ast/LC_MESSAGES/iso_639-5.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ay/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/az/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/az/LC_MESSAGES/iso_3166-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/az/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/az/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/az/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ba/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/bar/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/be/LC_MESSAGES/iso_15924.mo
Binary file not shown.
Binary file removed isocodes/share/locale/be/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/be/LC_MESSAGES/iso_3166-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/be/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/be/LC_MESSAGES/iso_4217.mo
Binary file not shown.
Binary file removed isocodes/share/locale/be/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/be/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/be/LC_MESSAGES/iso_639-5.mo
Binary file not shown.
Binary file removed isocodes/share/locale/bg/LC_MESSAGES/iso_15924.mo
Binary file not shown.
Binary file removed isocodes/share/locale/bg/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/bg/LC_MESSAGES/iso_3166-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/bg/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/bg/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/bg/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/bi/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/bn/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/bn/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/bn/LC_MESSAGES/iso_4217.mo
Binary file not shown.
Binary file removed isocodes/share/locale/bn/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/bn/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/bn/LC_MESSAGES/iso_639-5.mo
Binary file not shown.
Binary file removed isocodes/share/locale/bn_BD/LC_MESSAGES/iso_15924.mo
Binary file not shown.
Binary file not shown.
Binary file removed isocodes/share/locale/bn_BD/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/bn_BD/LC_MESSAGES/iso_639-5.mo
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed isocodes/share/locale/br/LC_MESSAGES/iso_15924.mo
Binary file not shown.
Binary file removed isocodes/share/locale/br/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/br/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/br/LC_MESSAGES/iso_4217.mo
Binary file not shown.
Binary file removed isocodes/share/locale/br/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/br/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/bs/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/bs/LC_MESSAGES/iso_3166-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/bs/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/bs/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/bs/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/byn/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/byn/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/byn/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/byn/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ca/LC_MESSAGES/iso_15924.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ca/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ca/LC_MESSAGES/iso_3166-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ca/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ca/LC_MESSAGES/iso_4217.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ca/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ca/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ce/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ch/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/chr/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ckb/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
1 change: 1 addition & 0 deletions isocodes/share/locale/ckb/LC_MESSAGES/iso_639_3.mo
Binary file removed isocodes/share/locale/crh/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/crh/LC_MESSAGES/iso_3166-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/crh/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/crh/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/crh/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/cs/LC_MESSAGES/iso_15924.mo
Binary file not shown.
Binary file removed isocodes/share/locale/cs/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/cs/LC_MESSAGES/iso_3166-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/cs/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/cs/LC_MESSAGES/iso_4217.mo
Binary file not shown.
Binary file removed isocodes/share/locale/cs/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/cs/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/cs/LC_MESSAGES/iso_639-5.mo
Binary file not shown.
Binary file removed isocodes/share/locale/csb/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/cv/LC_MESSAGES/iso_15924.mo
Binary file not shown.
Binary file removed isocodes/share/locale/cv/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/cy/LC_MESSAGES/iso_15924.mo
Binary file not shown.
Binary file removed isocodes/share/locale/cy/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/cy/LC_MESSAGES/iso_3166-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/cy/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/cy/LC_MESSAGES/iso_4217.mo
Binary file not shown.
Binary file removed isocodes/share/locale/cy/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/cy/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/cy/LC_MESSAGES/iso_639-5.mo
Binary file not shown.
Binary file removed isocodes/share/locale/da/LC_MESSAGES/iso_15924.mo
Binary file not shown.
Binary file removed isocodes/share/locale/da/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/da/LC_MESSAGES/iso_3166-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/da/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/da/LC_MESSAGES/iso_4217.mo
Binary file not shown.
Binary file removed isocodes/share/locale/da/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/da/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/da/LC_MESSAGES/iso_639-5.mo
Binary file not shown.
Binary file removed isocodes/share/locale/de/LC_MESSAGES/iso_15924.mo
Binary file not shown.
Binary file removed isocodes/share/locale/de/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/de/LC_MESSAGES/iso_3166-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/de/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/de/LC_MESSAGES/iso_4217.mo
Binary file not shown.
Binary file removed isocodes/share/locale/de/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/de/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/de/LC_MESSAGES/iso_639-5.mo
Binary file not shown.
Binary file not shown.
Binary file removed isocodes/share/locale/dz/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/dz/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ee/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/el/LC_MESSAGES/iso_15924.mo
Binary file not shown.
Binary file removed isocodes/share/locale/el/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/el/LC_MESSAGES/iso_3166-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/el/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/el/LC_MESSAGES/iso_4217.mo
Binary file not shown.
Binary file removed isocodes/share/locale/el/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/el/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/el/LC_MESSAGES/iso_639-5.mo
Binary file not shown.
Binary file removed isocodes/share/locale/en/LC_MESSAGES/iso_3166-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/eo/LC_MESSAGES/iso_15924.mo
Binary file not shown.
Binary file removed isocodes/share/locale/eo/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/eo/LC_MESSAGES/iso_3166-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/eo/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/eo/LC_MESSAGES/iso_4217.mo
Binary file not shown.
Binary file removed isocodes/share/locale/eo/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/eo/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/eo/LC_MESSAGES/iso_639-5.mo
Binary file not shown.
Binary file removed isocodes/share/locale/es/LC_MESSAGES/iso_15924.mo
Binary file not shown.
Binary file removed isocodes/share/locale/es/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/es/LC_MESSAGES/iso_3166-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/es/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/es/LC_MESSAGES/iso_4217.mo
Binary file not shown.
Binary file removed isocodes/share/locale/es/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/es/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/et/LC_MESSAGES/iso_15924.mo
Binary file not shown.
Binary file removed isocodes/share/locale/et/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/et/LC_MESSAGES/iso_3166-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/et/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/et/LC_MESSAGES/iso_4217.mo
Binary file not shown.
Binary file removed isocodes/share/locale/et/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/et/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/et/LC_MESSAGES/iso_639-5.mo
Binary file not shown.
Binary file removed isocodes/share/locale/eu/LC_MESSAGES/iso_15924.mo
Binary file not shown.
Binary file removed isocodes/share/locale/eu/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/eu/LC_MESSAGES/iso_3166-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/eu/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/eu/LC_MESSAGES/iso_4217.mo
Binary file not shown.
Binary file removed isocodes/share/locale/eu/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/eu/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fa/LC_MESSAGES/iso_15924.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fa/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fa/LC_MESSAGES/iso_3166-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fa/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fa/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fa/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ff/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fi/LC_MESSAGES/iso_15924.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fi/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fi/LC_MESSAGES/iso_3166-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fi/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fi/LC_MESSAGES/iso_4217.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fi/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fi/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fil/LC_MESSAGES/iso_15924.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fil/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fil/LC_MESSAGES/iso_3166-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fo/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fo/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fr/LC_MESSAGES/iso_15924.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fr/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fr/LC_MESSAGES/iso_3166-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fr/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fr/LC_MESSAGES/iso_4217.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fr/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fr/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fr/LC_MESSAGES/iso_639-5.mo
Binary file not shown.
Binary file removed isocodes/share/locale/frp/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fur/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fur/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fur/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fur/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fur/LC_MESSAGES/iso_639-5.mo
Binary file not shown.
Binary file removed isocodes/share/locale/fy/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file not shown.
Binary file removed isocodes/share/locale/ga/LC_MESSAGES/iso_3166-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ga/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ga/LC_MESSAGES/iso_4217.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ga/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ga/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/gez/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/gez/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/gez/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/gez/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/gl/LC_MESSAGES/iso_15924.mo
Binary file not shown.
Binary file removed isocodes/share/locale/gl/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/gl/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/gl/LC_MESSAGES/iso_4217.mo
Binary file not shown.
Binary file removed isocodes/share/locale/gl/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/gl/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/gn/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/gu/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/gu/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/gu/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/gu/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/gv/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ha/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/haw/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/haw/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/he/LC_MESSAGES/iso_15924.mo
Binary file not shown.
Binary file removed isocodes/share/locale/he/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/he/LC_MESSAGES/iso_3166-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/he/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/he/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/he/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/hi/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/hi/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
1 change: 1 addition & 0 deletions isocodes/share/locale/hi/LC_MESSAGES/iso_3166_2.mo
Binary file removed isocodes/share/locale/hi/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/hi/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/hi/LC_MESSAGES/iso_639-5.mo
Binary file not shown.
Binary file removed isocodes/share/locale/hr/LC_MESSAGES/iso_15924.mo
Binary file not shown.
Binary file removed isocodes/share/locale/hr/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/hr/LC_MESSAGES/iso_3166-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/hr/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/hr/LC_MESSAGES/iso_4217.mo
Binary file not shown.
Binary file removed isocodes/share/locale/hr/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/hr/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/hr/LC_MESSAGES/iso_639-5.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ht/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/hu/LC_MESSAGES/iso_15924.mo
Binary file not shown.
Binary file not shown.
Binary file removed isocodes/share/locale/hu/LC_MESSAGES/iso_3166-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/hu/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/hu/LC_MESSAGES/iso_4217.mo
Binary file not shown.
Binary file removed isocodes/share/locale/hu/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/hu/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/hu/LC_MESSAGES/iso_639-5.mo
Binary file not shown.
Binary file removed isocodes/share/locale/hy/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/hy/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/hy/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ia/LC_MESSAGES/iso_15924.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ia/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/ia/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/id/LC_MESSAGES/iso_15924.mo
Binary file not shown.
Binary file removed isocodes/share/locale/id/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/id/LC_MESSAGES/iso_3166-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/id/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/id/LC_MESSAGES/iso_4217.mo
Binary file not shown.
Binary file removed isocodes/share/locale/id/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/id/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/id/LC_MESSAGES/iso_639-5.mo
Binary file not shown.
Binary file removed isocodes/share/locale/io/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/is/LC_MESSAGES/iso_15924.mo
Binary file not shown.
Binary file removed isocodes/share/locale/is/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/is/LC_MESSAGES/iso_3166-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/is/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/is/LC_MESSAGES/iso_4217.mo
Binary file not shown.
Binary file removed isocodes/share/locale/is/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/is/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/is/LC_MESSAGES/iso_639-5.mo
Binary file not shown.
Binary file removed isocodes/share/locale/it/LC_MESSAGES/iso_15924.mo
Binary file not shown.
Binary file removed isocodes/share/locale/it/LC_MESSAGES/iso_3166-1.mo
Binary file not shown.
Binary file removed isocodes/share/locale/it/LC_MESSAGES/iso_3166-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/it/LC_MESSAGES/iso_3166-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/it/LC_MESSAGES/iso_4217.mo
Binary file not shown.
Binary file removed isocodes/share/locale/it/LC_MESSAGES/iso_639-2.mo
Binary file not shown.
Binary file removed isocodes/share/locale/it/LC_MESSAGES/iso_639-3.mo
Binary file not shown.
Binary file removed isocodes/share/locale/it/LC_MESSAGES/iso_639-5.mo
Binary file not shown.
Loading
Loading