gitextract_0c1geu1c/ ├── .github/ │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── i18n/ │ ├── __init__.py │ ├── config.py │ ├── loaders/ │ │ ├── __init__.py │ │ ├── json_loader.py │ │ ├── loader.py │ │ ├── python_loader.py │ │ └── yaml_loader.py │ ├── resource_loader.py │ ├── tests/ │ │ ├── __init__.py │ │ ├── loader_tests.py │ │ ├── resources/ │ │ │ ├── settings/ │ │ │ │ ├── dummy_config.json │ │ │ │ ├── dummy_config.py │ │ │ │ ├── dummy_config.yml │ │ │ │ └── eucjp_config.json │ │ │ └── translations/ │ │ │ ├── bar/ │ │ │ │ └── baz.en.json │ │ │ ├── en.json │ │ │ ├── foo.en.yml │ │ │ ├── foo.ja.yml │ │ │ ├── gb.json │ │ │ ├── ja.json │ │ │ └── nested_dict_json/ │ │ │ ├── en.json │ │ │ └── pl.json │ │ ├── run_tests.py │ │ └── translation_tests.py │ ├── translations.py │ └── translator.py ├── pyproject.toml ├── requirements/ │ ├── base.txt │ ├── dev.txt │ └── test.txt ├── requirements.txt └── setup.py