├── .coveragerc ├── .editorconfig ├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── test.yml ├── .gitignore ├── .prospector.yaml ├── .readthedocs.yml ├── .tx └── config ├── CONTRIBUTING.rst ├── LICENSE ├── README.rst ├── docs ├── Makefile ├── authors.rst ├── changelog.rst ├── conf.py ├── extensions │ ├── __init__.py │ ├── promises.py │ └── settings.py ├── generic.rst ├── index.rst ├── localflavor │ ├── ar.rst │ ├── at.rst │ ├── au.rst │ ├── be.rst │ ├── bg.rst │ ├── br.rst │ ├── ca.rst │ ├── ch.rst │ ├── cl.rst │ ├── cn.rst │ ├── co.rst │ ├── cz.rst │ ├── de.rst │ ├── dk.rst │ ├── ec.rst │ ├── ee.rst │ ├── eg.rst │ ├── es.rst │ ├── fi.rst │ ├── fr.rst │ ├── gb.rst │ ├── gh.rst │ ├── gr.rst │ ├── hr.rst │ ├── hu.rst │ ├── id_.rst │ ├── ie_.rst │ ├── il.rst │ ├── in_.rst │ ├── ir.rst │ ├── is_.rst │ ├── it.rst │ ├── jp.rst │ ├── kw.rst │ ├── lk.rst │ ├── lt.rst │ ├── lv.rst │ ├── md.rst │ ├── mk.rst │ ├── mt.rst │ ├── mx.rst │ ├── my.rst │ ├── nl.rst │ ├── no.rst │ ├── np.rst │ ├── nz.rst │ ├── pe.rst │ ├── pk.rst │ ├── pl.rst │ ├── pt.rst │ ├── py_.rst │ ├── ro.rst │ ├── ru.rst │ ├── se.rst │ ├── sg.rst │ ├── si.rst │ ├── sk.rst │ ├── tn.rst │ ├── tr.rst │ ├── tw.rst │ ├── ua.rst │ ├── us.rst │ ├── uy.rst │ └── za.rst ├── make.bat └── requirements.txt ├── localflavor ├── __init__.py ├── ar │ ├── __init__.py │ ├── ar_provinces.py │ └── forms.py ├── at │ ├── __init__.py │ ├── at_states.py │ └── forms.py ├── au │ ├── __init__.py │ ├── au_states.py │ ├── forms.py │ ├── models.py │ └── validators.py ├── be │ ├── __init__.py │ ├── be_provinces.py │ ├── be_regions.py │ └── forms.py ├── bg │ ├── __init__.py │ ├── models.py │ ├── utils.py │ └── validators.py ├── br │ ├── __init__.py │ ├── br_states.py │ ├── forms.py │ ├── models.py │ └── validators.py ├── by │ ├── __init__.py │ ├── by_regions.py │ ├── forms.py │ ├── models.py │ └── validators.py ├── ca │ ├── __init__.py │ ├── ca_provinces.py │ ├── forms.py │ └── models.py ├── ch │ ├── __init__.py │ ├── ch_states.py │ └── forms.py ├── cl │ ├── __init__.py │ ├── cl_regions.py │ └── forms.py ├── cn │ ├── __init__.py │ ├── cn_provinces.py │ └── forms.py ├── co │ ├── __init__.py │ ├── co_departments.py │ └── forms.py ├── cu │ ├── __init__.py │ ├── choices.py │ ├── forms.py │ ├── models.py │ └── validators.py ├── cz │ ├── __init__.py │ ├── cz_regions.py │ └── forms.py ├── de │ ├── __init__.py │ ├── de_states.py │ └── forms.py ├── deprecation.py ├── dk │ ├── __init__.py │ ├── dk_municipalities.py │ ├── dk_postalcodes.py │ └── forms.py ├── ec │ ├── __init__.py │ ├── ec_provinces.py │ ├── forms.py │ └── models.py ├── ee │ ├── __init__.py │ ├── ee_counties.py │ └── forms.py ├── eg │ ├── __init__.py │ ├── choices.py │ └── forms.py ├── es │ ├── __init__.py │ ├── es_provinces.py │ ├── es_regions.py │ ├── forms.py │ └── models.py ├── fi │ ├── __init__.py │ ├── fi_municipalities.py │ └── forms.py ├── fr │ ├── __init__.py │ ├── forms.py │ ├── fr_department.py │ ├── fr_region.py │ └── models.py ├── gb │ ├── __init__.py │ ├── forms.py │ └── gb_regions.py ├── generic │ ├── __init__.py │ ├── countries │ │ ├── __init__.py │ │ ├── iso_3166.py │ │ └── sepa.py │ ├── forms.py │ ├── models.py │ └── validators.py ├── gh │ ├── __init__.py │ ├── forms.py │ ├── gh_regions.py │ └── models.py ├── gr │ ├── __init__.py │ └── forms.py ├── hr │ ├── __init__.py │ ├── forms.py │ └── hr_choices.py ├── hu │ ├── __init__.py │ ├── forms.py │ └── hu_counties.py ├── id_ │ ├── __init__.py │ ├── forms.py │ └── id_choices.py ├── ie │ ├── __init__.py │ ├── forms.py │ └── ie_counties.py ├── il │ ├── __init__.py │ └── forms.py ├── in_ │ ├── __init__.py │ ├── forms.py │ ├── in_states.py │ ├── models.py │ └── validators.py ├── ir │ ├── __init__.py │ ├── forms.py │ └── ir_provinces.py ├── is_ │ ├── __init__.py │ ├── forms.py │ └── is_postalcodes.py ├── it │ ├── __init__.py │ ├── forms.py │ ├── it_province.py │ ├── it_region.py │ └── util.py ├── jp │ ├── __init__.py │ ├── forms.py │ └── jp_prefectures.py ├── kw │ ├── __init__.py │ ├── forms.py │ ├── kw_areas.py │ ├── kw_governorates.py │ └── utils.py ├── lk │ ├── __init__.py │ ├── forms.py │ ├── lk_districts.py │ ├── lk_provinces.py │ └── models.py ├── locale │ ├── ar │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ar_DZ │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── az │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── bg │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── bn │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── br │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── bs │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ca │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── cs │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── cy │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── da │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── el │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── en_GB │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── eo │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es_AR │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es_MX │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── et │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── eu │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fa │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fi │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ga │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── gd │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── gl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── he │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── hi │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── hr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── hu │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── id │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── is │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── it │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ja │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ka │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── km │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── kn │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ko │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── lt │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── lv │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── mk │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── mn │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── nb │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── nl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── nn │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pa │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pt │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ro │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ru │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sk │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sq │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sr_Latn │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sv │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ta │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── te │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── th │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── tr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ug │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── uk │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── vi │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── zh_Hans │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── zh_Hant │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── lt │ ├── __init__.py │ ├── forms.py │ └── lt_choices.py ├── lv │ ├── __init__.py │ ├── forms.py │ └── lv_choices.py ├── ma │ ├── __init__.py │ ├── forms.py │ ├── ma_provinces.py │ └── ma_regions.py ├── md │ ├── __init__.py │ ├── choices.py │ ├── forms.py │ ├── models.py │ └── validators.py ├── mk │ ├── __init__.py │ ├── forms.py │ ├── mk_choices.py │ └── models.py ├── mt │ ├── __init__.py │ └── forms.py ├── mx │ ├── __init__.py │ ├── forms.py │ ├── models.py │ └── mx_states.py ├── my │ ├── __init__.py │ └── forms.py ├── nl │ ├── __init__.py │ ├── forms.py │ ├── models.py │ ├── nl_provinces.py │ └── validators.py ├── no │ ├── __init__.py │ ├── forms.py │ └── no_municipalities.py ├── np │ ├── __init__.py │ ├── forms.py │ ├── models.py │ ├── np_districts.py │ ├── np_provinces.py │ └── np_zones.py ├── nz │ ├── __init__.py │ ├── forms.py │ ├── nz_councils.py │ ├── nz_provinces.py │ └── nz_regions.py ├── pe │ ├── __init__.py │ ├── forms.py │ └── pe_region.py ├── pk │ ├── __init__.py │ ├── forms.py │ ├── models.py │ └── pk_states.py ├── pl │ ├── __init__.py │ ├── forms.py │ ├── pl_administrativeunits.py │ └── pl_voivodeships.py ├── pt │ ├── __init__.py │ ├── forms.py │ └── pt_regions.py ├── py_ │ ├── __init__.py │ ├── forms.py │ └── py_department.py ├── ro │ ├── __init__.py │ ├── forms.py │ └── ro_counties.py ├── ru │ ├── __init__.py │ ├── forms.py │ └── ru_regions.py ├── se │ ├── __init__.py │ ├── forms.py │ ├── se_counties.py │ └── utils.py ├── sg │ ├── __init__.py │ └── forms.py ├── si │ ├── __init__.py │ ├── forms.py │ └── si_postalcodes.py ├── sk │ ├── __init__.py │ ├── forms.py │ ├── sk_districts.py │ └── sk_regions.py ├── tn │ ├── __init__.py │ ├── forms.py │ └── tn_governorates.py ├── tr │ ├── __init__.py │ ├── forms.py │ └── tr_provinces.py ├── tw │ ├── __init__.py │ ├── forms.py │ └── tw_choices.py ├── ua │ ├── __init__.py │ ├── forms.py │ ├── models.py │ └── ua_regions.py ├── us │ ├── __init__.py │ ├── forms.py │ ├── models.py │ └── us_states.py ├── uy │ ├── __init__.py │ ├── forms.py │ ├── util.py │ └── uy_departments.py ├── ve │ ├── __init__.py │ ├── forms.py │ ├── ve_region.py │ └── ve_states.py └── za │ ├── __init__.py │ ├── forms.py │ └── za_provinces.py ├── pyproject.toml ├── tasks.py ├── tests ├── __init__.py ├── requirements.txt ├── settings.py ├── test_ar.py ├── test_at.py ├── test_au │ ├── __init__.py │ ├── forms.py │ ├── models.py │ └── tests.py ├── test_be.py ├── test_bg.py ├── test_br │ ├── __init__.py │ ├── forms.py │ ├── models.py │ └── test_br.py ├── test_by │ ├── __init__.py │ ├── forms.py │ ├── models.py │ └── tests.py ├── test_ca │ ├── __init__.py │ ├── forms.py │ ├── models.py │ └── tests.py ├── test_ch.py ├── test_cl.py ├── test_cn.py ├── test_co.py ├── test_cu │ ├── __init__.py │ ├── forms.py │ ├── models.py │ └── tests.py ├── test_cz.py ├── test_de.py ├── test_dk.py ├── test_ec │ ├── __init__.py │ ├── forms.py │ ├── models.py │ └── tests.py ├── test_ee.py ├── test_eg.py ├── test_es.py ├── test_fi.py ├── test_fr │ ├── __init__.py │ ├── forms.py │ ├── models.py │ └── tests.py ├── test_gb.py ├── test_general.py ├── test_generic │ ├── __init__.py │ ├── forms.py │ ├── models.py │ ├── test_validators.py │ └── tests.py ├── test_gh │ ├── __init__.py │ ├── models.py │ ├── selectfields_html.py │ └── tests.py ├── test_gr.py ├── test_hr.py ├── test_hu.py ├── test_id.py ├── test_ie.py ├── test_il.py ├── test_in.py ├── test_ir.py ├── test_is.py ├── test_it.py ├── test_jp.py ├── test_kw.py ├── test_lk │ ├── __init__.py │ ├── models.py │ ├── selectfields_html.py │ └── tests.py ├── test_lt.py ├── test_lv.py ├── test_ma.py ├── test_md │ ├── __init__.py │ ├── forms.py │ ├── models.py │ └── tests.py ├── test_mk │ ├── __init__.py │ ├── forms.py │ ├── models.py │ └── tests.py ├── test_mt.py ├── test_mx │ ├── __init__.py │ ├── forms.py │ ├── models.py │ └── tests.py ├── test_my.py ├── test_nl │ ├── __init__.py │ ├── forms.py │ ├── models.py │ └── tests.py ├── test_no.py ├── test_np │ ├── __init__.py │ ├── models.py │ ├── selectfields_html.py │ └── tests.py ├── test_nz.py ├── test_pk │ ├── __init__.py │ ├── forms.py │ ├── models.py │ └── tests.py ├── test_pl.py ├── test_pt.py ├── test_py.py ├── test_ro.py ├── test_ru.py ├── test_se.py ├── test_sg.py ├── test_si.py ├── test_sk.py ├── test_tn.py ├── test_tr.py ├── test_tw.py ├── test_ua │ ├── __init__.py │ ├── forms.py │ ├── models.py │ └── tests.py ├── test_us │ ├── __init__.py │ ├── forms.py │ ├── models.py │ └── tests.py ├── test_uy.py ├── test_ve.py └── test_za.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/.coveragerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/.gitignore -------------------------------------------------------------------------------- /.prospector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/.prospector.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/.tx/config -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/authors.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/extensions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/extensions/promises.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/extensions/promises.py -------------------------------------------------------------------------------- /docs/extensions/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/extensions/settings.py -------------------------------------------------------------------------------- /docs/generic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/generic.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/localflavor/ar.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/ar.rst -------------------------------------------------------------------------------- /docs/localflavor/at.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/at.rst -------------------------------------------------------------------------------- /docs/localflavor/au.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/au.rst -------------------------------------------------------------------------------- /docs/localflavor/be.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/be.rst -------------------------------------------------------------------------------- /docs/localflavor/bg.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/bg.rst -------------------------------------------------------------------------------- /docs/localflavor/br.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/br.rst -------------------------------------------------------------------------------- /docs/localflavor/ca.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/ca.rst -------------------------------------------------------------------------------- /docs/localflavor/ch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/ch.rst -------------------------------------------------------------------------------- /docs/localflavor/cl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/cl.rst -------------------------------------------------------------------------------- /docs/localflavor/cn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/cn.rst -------------------------------------------------------------------------------- /docs/localflavor/co.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/co.rst -------------------------------------------------------------------------------- /docs/localflavor/cz.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/cz.rst -------------------------------------------------------------------------------- /docs/localflavor/de.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/de.rst -------------------------------------------------------------------------------- /docs/localflavor/dk.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/dk.rst -------------------------------------------------------------------------------- /docs/localflavor/ec.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/ec.rst -------------------------------------------------------------------------------- /docs/localflavor/ee.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/ee.rst -------------------------------------------------------------------------------- /docs/localflavor/eg.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/eg.rst -------------------------------------------------------------------------------- /docs/localflavor/es.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/es.rst -------------------------------------------------------------------------------- /docs/localflavor/fi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/fi.rst -------------------------------------------------------------------------------- /docs/localflavor/fr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/fr.rst -------------------------------------------------------------------------------- /docs/localflavor/gb.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/gb.rst -------------------------------------------------------------------------------- /docs/localflavor/gh.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/gh.rst -------------------------------------------------------------------------------- /docs/localflavor/gr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/gr.rst -------------------------------------------------------------------------------- /docs/localflavor/hr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/hr.rst -------------------------------------------------------------------------------- /docs/localflavor/hu.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/hu.rst -------------------------------------------------------------------------------- /docs/localflavor/id_.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/id_.rst -------------------------------------------------------------------------------- /docs/localflavor/ie_.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/ie_.rst -------------------------------------------------------------------------------- /docs/localflavor/il.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/il.rst -------------------------------------------------------------------------------- /docs/localflavor/in_.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/in_.rst -------------------------------------------------------------------------------- /docs/localflavor/ir.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/ir.rst -------------------------------------------------------------------------------- /docs/localflavor/is_.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/is_.rst -------------------------------------------------------------------------------- /docs/localflavor/it.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/it.rst -------------------------------------------------------------------------------- /docs/localflavor/jp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/jp.rst -------------------------------------------------------------------------------- /docs/localflavor/kw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/kw.rst -------------------------------------------------------------------------------- /docs/localflavor/lk.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/lk.rst -------------------------------------------------------------------------------- /docs/localflavor/lt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/lt.rst -------------------------------------------------------------------------------- /docs/localflavor/lv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/lv.rst -------------------------------------------------------------------------------- /docs/localflavor/md.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/md.rst -------------------------------------------------------------------------------- /docs/localflavor/mk.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/mk.rst -------------------------------------------------------------------------------- /docs/localflavor/mt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/mt.rst -------------------------------------------------------------------------------- /docs/localflavor/mx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/mx.rst -------------------------------------------------------------------------------- /docs/localflavor/my.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/my.rst -------------------------------------------------------------------------------- /docs/localflavor/nl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/nl.rst -------------------------------------------------------------------------------- /docs/localflavor/no.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/no.rst -------------------------------------------------------------------------------- /docs/localflavor/np.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/np.rst -------------------------------------------------------------------------------- /docs/localflavor/nz.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/nz.rst -------------------------------------------------------------------------------- /docs/localflavor/pe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/pe.rst -------------------------------------------------------------------------------- /docs/localflavor/pk.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/pk.rst -------------------------------------------------------------------------------- /docs/localflavor/pl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/pl.rst -------------------------------------------------------------------------------- /docs/localflavor/pt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/pt.rst -------------------------------------------------------------------------------- /docs/localflavor/py_.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/py_.rst -------------------------------------------------------------------------------- /docs/localflavor/ro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/ro.rst -------------------------------------------------------------------------------- /docs/localflavor/ru.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/ru.rst -------------------------------------------------------------------------------- /docs/localflavor/se.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/se.rst -------------------------------------------------------------------------------- /docs/localflavor/sg.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/sg.rst -------------------------------------------------------------------------------- /docs/localflavor/si.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/si.rst -------------------------------------------------------------------------------- /docs/localflavor/sk.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/sk.rst -------------------------------------------------------------------------------- /docs/localflavor/tn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/tn.rst -------------------------------------------------------------------------------- /docs/localflavor/tr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/tr.rst -------------------------------------------------------------------------------- /docs/localflavor/tw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/tw.rst -------------------------------------------------------------------------------- /docs/localflavor/ua.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/ua.rst -------------------------------------------------------------------------------- /docs/localflavor/us.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/us.rst -------------------------------------------------------------------------------- /docs/localflavor/uy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/uy.rst -------------------------------------------------------------------------------- /docs/localflavor/za.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/localflavor/za.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | Django 2 | Jinja2 3 | python-stdnum>=1.6 4 | -------------------------------------------------------------------------------- /localflavor/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '5.0' 2 | -------------------------------------------------------------------------------- /localflavor/ar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/ar/ar_provinces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/ar/ar_provinces.py -------------------------------------------------------------------------------- /localflavor/ar/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/ar/forms.py -------------------------------------------------------------------------------- /localflavor/at/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/at/at_states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/at/at_states.py -------------------------------------------------------------------------------- /localflavor/at/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/at/forms.py -------------------------------------------------------------------------------- /localflavor/au/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/au/au_states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/au/au_states.py -------------------------------------------------------------------------------- /localflavor/au/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/au/forms.py -------------------------------------------------------------------------------- /localflavor/au/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/au/models.py -------------------------------------------------------------------------------- /localflavor/au/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/au/validators.py -------------------------------------------------------------------------------- /localflavor/be/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/be/be_provinces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/be/be_provinces.py -------------------------------------------------------------------------------- /localflavor/be/be_regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/be/be_regions.py -------------------------------------------------------------------------------- /localflavor/be/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/be/forms.py -------------------------------------------------------------------------------- /localflavor/bg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/bg/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/bg/models.py -------------------------------------------------------------------------------- /localflavor/bg/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/bg/utils.py -------------------------------------------------------------------------------- /localflavor/bg/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/bg/validators.py -------------------------------------------------------------------------------- /localflavor/br/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/br/br_states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/br/br_states.py -------------------------------------------------------------------------------- /localflavor/br/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/br/forms.py -------------------------------------------------------------------------------- /localflavor/br/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/br/models.py -------------------------------------------------------------------------------- /localflavor/br/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/br/validators.py -------------------------------------------------------------------------------- /localflavor/by/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/by/by_regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/by/by_regions.py -------------------------------------------------------------------------------- /localflavor/by/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/by/forms.py -------------------------------------------------------------------------------- /localflavor/by/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/by/models.py -------------------------------------------------------------------------------- /localflavor/by/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/by/validators.py -------------------------------------------------------------------------------- /localflavor/ca/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/ca/ca_provinces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/ca/ca_provinces.py -------------------------------------------------------------------------------- /localflavor/ca/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/ca/forms.py -------------------------------------------------------------------------------- /localflavor/ca/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/ca/models.py -------------------------------------------------------------------------------- /localflavor/ch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/ch/ch_states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/ch/ch_states.py -------------------------------------------------------------------------------- /localflavor/ch/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/ch/forms.py -------------------------------------------------------------------------------- /localflavor/cl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/cl/cl_regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/cl/cl_regions.py -------------------------------------------------------------------------------- /localflavor/cl/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/cl/forms.py -------------------------------------------------------------------------------- /localflavor/cn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/cn/cn_provinces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/cn/cn_provinces.py -------------------------------------------------------------------------------- /localflavor/cn/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/cn/forms.py -------------------------------------------------------------------------------- /localflavor/co/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/co/co_departments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/co/co_departments.py -------------------------------------------------------------------------------- /localflavor/co/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/co/forms.py -------------------------------------------------------------------------------- /localflavor/cu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/cu/choices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/cu/choices.py -------------------------------------------------------------------------------- /localflavor/cu/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/cu/forms.py -------------------------------------------------------------------------------- /localflavor/cu/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/cu/models.py -------------------------------------------------------------------------------- /localflavor/cu/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/cu/validators.py -------------------------------------------------------------------------------- /localflavor/cz/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/cz/cz_regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/cz/cz_regions.py -------------------------------------------------------------------------------- /localflavor/cz/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/cz/forms.py -------------------------------------------------------------------------------- /localflavor/de/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/de/de_states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/de/de_states.py -------------------------------------------------------------------------------- /localflavor/de/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/de/forms.py -------------------------------------------------------------------------------- /localflavor/deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/deprecation.py -------------------------------------------------------------------------------- /localflavor/dk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/dk/dk_municipalities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/dk/dk_municipalities.py -------------------------------------------------------------------------------- /localflavor/dk/dk_postalcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/dk/dk_postalcodes.py -------------------------------------------------------------------------------- /localflavor/dk/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/dk/forms.py -------------------------------------------------------------------------------- /localflavor/ec/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/ec/ec_provinces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/ec/ec_provinces.py -------------------------------------------------------------------------------- /localflavor/ec/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/ec/forms.py -------------------------------------------------------------------------------- /localflavor/ec/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/ec/models.py -------------------------------------------------------------------------------- /localflavor/ee/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/ee/ee_counties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/ee/ee_counties.py -------------------------------------------------------------------------------- /localflavor/ee/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/ee/forms.py -------------------------------------------------------------------------------- /localflavor/eg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/eg/choices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/eg/choices.py -------------------------------------------------------------------------------- /localflavor/eg/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/eg/forms.py -------------------------------------------------------------------------------- /localflavor/es/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/es/es_provinces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/es/es_provinces.py -------------------------------------------------------------------------------- /localflavor/es/es_regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/es/es_regions.py -------------------------------------------------------------------------------- /localflavor/es/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/es/forms.py -------------------------------------------------------------------------------- /localflavor/es/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/es/models.py -------------------------------------------------------------------------------- /localflavor/fi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/fi/fi_municipalities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/fi/fi_municipalities.py -------------------------------------------------------------------------------- /localflavor/fi/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/fi/forms.py -------------------------------------------------------------------------------- /localflavor/fr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/fr/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/fr/forms.py -------------------------------------------------------------------------------- /localflavor/fr/fr_department.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/fr/fr_department.py -------------------------------------------------------------------------------- /localflavor/fr/fr_region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/fr/fr_region.py -------------------------------------------------------------------------------- /localflavor/fr/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/fr/models.py -------------------------------------------------------------------------------- /localflavor/gb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/gb/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/gb/forms.py -------------------------------------------------------------------------------- /localflavor/gb/gb_regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/gb/gb_regions.py -------------------------------------------------------------------------------- /localflavor/generic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/generic/countries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/generic/countries/iso_3166.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/generic/countries/iso_3166.py -------------------------------------------------------------------------------- /localflavor/generic/countries/sepa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/generic/countries/sepa.py -------------------------------------------------------------------------------- /localflavor/generic/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/generic/forms.py -------------------------------------------------------------------------------- /localflavor/generic/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/generic/models.py -------------------------------------------------------------------------------- /localflavor/generic/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/generic/validators.py -------------------------------------------------------------------------------- /localflavor/gh/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/gh/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/gh/forms.py -------------------------------------------------------------------------------- /localflavor/gh/gh_regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/gh/gh_regions.py -------------------------------------------------------------------------------- /localflavor/gh/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/gh/models.py -------------------------------------------------------------------------------- /localflavor/gr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/gr/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/gr/forms.py -------------------------------------------------------------------------------- /localflavor/hr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/hr/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/hr/forms.py -------------------------------------------------------------------------------- /localflavor/hr/hr_choices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/hr/hr_choices.py -------------------------------------------------------------------------------- /localflavor/hu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/hu/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/hu/forms.py -------------------------------------------------------------------------------- /localflavor/hu/hu_counties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/hu/hu_counties.py -------------------------------------------------------------------------------- /localflavor/id_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/id_/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/id_/forms.py -------------------------------------------------------------------------------- /localflavor/id_/id_choices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/id_/id_choices.py -------------------------------------------------------------------------------- /localflavor/ie/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/ie/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/ie/forms.py -------------------------------------------------------------------------------- /localflavor/ie/ie_counties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/ie/ie_counties.py -------------------------------------------------------------------------------- /localflavor/il/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/il/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/il/forms.py -------------------------------------------------------------------------------- /localflavor/in_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/in_/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/in_/forms.py -------------------------------------------------------------------------------- /localflavor/in_/in_states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/in_/in_states.py -------------------------------------------------------------------------------- /localflavor/in_/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/in_/models.py -------------------------------------------------------------------------------- /localflavor/in_/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/in_/validators.py -------------------------------------------------------------------------------- /localflavor/ir/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/ir/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/ir/forms.py -------------------------------------------------------------------------------- /localflavor/ir/ir_provinces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/ir/ir_provinces.py -------------------------------------------------------------------------------- /localflavor/is_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/is_/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/is_/forms.py -------------------------------------------------------------------------------- /localflavor/is_/is_postalcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/is_/is_postalcodes.py -------------------------------------------------------------------------------- /localflavor/it/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/it/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/it/forms.py -------------------------------------------------------------------------------- /localflavor/it/it_province.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/it/it_province.py -------------------------------------------------------------------------------- /localflavor/it/it_region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/it/it_region.py -------------------------------------------------------------------------------- /localflavor/it/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/it/util.py -------------------------------------------------------------------------------- /localflavor/jp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/jp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/jp/forms.py -------------------------------------------------------------------------------- /localflavor/jp/jp_prefectures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/jp/jp_prefectures.py -------------------------------------------------------------------------------- /localflavor/kw/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/kw/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/kw/forms.py -------------------------------------------------------------------------------- /localflavor/kw/kw_areas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/kw/kw_areas.py -------------------------------------------------------------------------------- /localflavor/kw/kw_governorates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/kw/kw_governorates.py -------------------------------------------------------------------------------- /localflavor/kw/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/kw/utils.py -------------------------------------------------------------------------------- /localflavor/lk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/lk/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/lk/forms.py -------------------------------------------------------------------------------- /localflavor/lk/lk_districts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/lk/lk_districts.py -------------------------------------------------------------------------------- /localflavor/lk/lk_provinces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/lk/lk_provinces.py -------------------------------------------------------------------------------- /localflavor/lk/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/lk/models.py -------------------------------------------------------------------------------- /localflavor/locale/ar/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/ar/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/ar/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/ar/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/ar_DZ/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/ar_DZ/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/ar_DZ/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/ar_DZ/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/az/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/az/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/az/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/az/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/bg/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/bg/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/bg/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/bg/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/bn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/bn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/bn/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/bn/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/br/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/br/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/br/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/br/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/bs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/bs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/bs/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/bs/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/ca/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/ca/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/ca/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/ca/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/cs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/cs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/cs/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/cs/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/cy/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/cy/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/cy/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/cy/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/da/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/da/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/da/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/da/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/el/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/el/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/el/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/el/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/en_GB/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/en_GB/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/en_GB/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/en_GB/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/eo/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/eo/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/eo/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/eo/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/es_AR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/es_AR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/es_AR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/es_AR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/es_MX/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/es_MX/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/es_MX/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/es_MX/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/et/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/et/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/et/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/et/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/eu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/eu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/eu/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/eu/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/fa/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/fa/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/fa/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/fa/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/fi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/fi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/fi/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/fi/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/ga/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/ga/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/ga/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/ga/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/gd/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/gd/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/gd/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/gd/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/gl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/gl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/gl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/gl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/he/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/he/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/he/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/he/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/hi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/hi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/hi/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/hi/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/hr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/hr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/hr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/hr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/hu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/hu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/hu/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/hu/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/id/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/id/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/id/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/id/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/is/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/is/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/is/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/is/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/ja/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/ja/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/ja/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/ja/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/ka/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/ka/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/ka/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/ka/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/km/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/km/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/km/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/km/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/kn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/kn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/kn/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/kn/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/ko/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/ko/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/ko/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/ko/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/lt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/lt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/lt/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/lt/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/lv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/lv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/lv/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/lv/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/mk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/mk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/mk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/mk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/mn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/mn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/mn/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/mn/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/nb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/nb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/nb/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/nb/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/nl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/nl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/nn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/nn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/nn/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/nn/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/pa/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/pa/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/pa/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/pa/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/pl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/pl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/pt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/pt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/pt/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/pt/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/pt_BR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/pt_BR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/ro/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/ro/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/ro/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/ro/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/sk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/sk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/sk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/sk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/sl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/sl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/sl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/sl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/sq/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/sq/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/sq/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/sq/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/sr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/sr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/sr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/sr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/sr_Latn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/sr_Latn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/sr_Latn/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/sr_Latn/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/sv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/sv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/sv/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/sv/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/ta/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/ta/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/ta/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/ta/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/te/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/te/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/te/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/te/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/th/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/th/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/th/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/th/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/tr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/tr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/tr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/tr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/ug/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/ug/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/ug/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/ug/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/uk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/uk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/uk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/uk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/vi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/vi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/vi/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/vi/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/zh_Hans/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/zh_Hans/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/zh_Hans/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/zh_Hans/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/locale/zh_Hant/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/zh_Hant/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /localflavor/locale/zh_Hant/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/locale/zh_Hant/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /localflavor/lt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/lt/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/lt/forms.py -------------------------------------------------------------------------------- /localflavor/lt/lt_choices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/lt/lt_choices.py -------------------------------------------------------------------------------- /localflavor/lv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/lv/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/lv/forms.py -------------------------------------------------------------------------------- /localflavor/lv/lv_choices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/lv/lv_choices.py -------------------------------------------------------------------------------- /localflavor/ma/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/ma/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/ma/forms.py -------------------------------------------------------------------------------- /localflavor/ma/ma_provinces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/ma/ma_provinces.py -------------------------------------------------------------------------------- /localflavor/ma/ma_regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/ma/ma_regions.py -------------------------------------------------------------------------------- /localflavor/md/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/md/choices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/md/choices.py -------------------------------------------------------------------------------- /localflavor/md/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/md/forms.py -------------------------------------------------------------------------------- /localflavor/md/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/md/models.py -------------------------------------------------------------------------------- /localflavor/md/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/md/validators.py -------------------------------------------------------------------------------- /localflavor/mk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/mk/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/mk/forms.py -------------------------------------------------------------------------------- /localflavor/mk/mk_choices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/mk/mk_choices.py -------------------------------------------------------------------------------- /localflavor/mk/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/mk/models.py -------------------------------------------------------------------------------- /localflavor/mt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/mt/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/mt/forms.py -------------------------------------------------------------------------------- /localflavor/mx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/mx/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/mx/forms.py -------------------------------------------------------------------------------- /localflavor/mx/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/mx/models.py -------------------------------------------------------------------------------- /localflavor/mx/mx_states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/mx/mx_states.py -------------------------------------------------------------------------------- /localflavor/my/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/my/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/my/forms.py -------------------------------------------------------------------------------- /localflavor/nl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/nl/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/nl/forms.py -------------------------------------------------------------------------------- /localflavor/nl/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/nl/models.py -------------------------------------------------------------------------------- /localflavor/nl/nl_provinces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/nl/nl_provinces.py -------------------------------------------------------------------------------- /localflavor/nl/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/nl/validators.py -------------------------------------------------------------------------------- /localflavor/no/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/no/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/no/forms.py -------------------------------------------------------------------------------- /localflavor/no/no_municipalities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/no/no_municipalities.py -------------------------------------------------------------------------------- /localflavor/np/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/np/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/np/forms.py -------------------------------------------------------------------------------- /localflavor/np/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/np/models.py -------------------------------------------------------------------------------- /localflavor/np/np_districts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/np/np_districts.py -------------------------------------------------------------------------------- /localflavor/np/np_provinces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/np/np_provinces.py -------------------------------------------------------------------------------- /localflavor/np/np_zones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/np/np_zones.py -------------------------------------------------------------------------------- /localflavor/nz/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/nz/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/nz/forms.py -------------------------------------------------------------------------------- /localflavor/nz/nz_councils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/nz/nz_councils.py -------------------------------------------------------------------------------- /localflavor/nz/nz_provinces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/nz/nz_provinces.py -------------------------------------------------------------------------------- /localflavor/nz/nz_regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/nz/nz_regions.py -------------------------------------------------------------------------------- /localflavor/pe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/pe/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/pe/forms.py -------------------------------------------------------------------------------- /localflavor/pe/pe_region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/pe/pe_region.py -------------------------------------------------------------------------------- /localflavor/pk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/pk/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/pk/forms.py -------------------------------------------------------------------------------- /localflavor/pk/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/pk/models.py -------------------------------------------------------------------------------- /localflavor/pk/pk_states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/pk/pk_states.py -------------------------------------------------------------------------------- /localflavor/pl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/pl/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/pl/forms.py -------------------------------------------------------------------------------- /localflavor/pl/pl_administrativeunits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/pl/pl_administrativeunits.py -------------------------------------------------------------------------------- /localflavor/pl/pl_voivodeships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/pl/pl_voivodeships.py -------------------------------------------------------------------------------- /localflavor/pt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/pt/__init__.py -------------------------------------------------------------------------------- /localflavor/pt/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/pt/forms.py -------------------------------------------------------------------------------- /localflavor/pt/pt_regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/pt/pt_regions.py -------------------------------------------------------------------------------- /localflavor/py_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/py_/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/py_/forms.py -------------------------------------------------------------------------------- /localflavor/py_/py_department.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/py_/py_department.py -------------------------------------------------------------------------------- /localflavor/ro/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/ro/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/ro/forms.py -------------------------------------------------------------------------------- /localflavor/ro/ro_counties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/ro/ro_counties.py -------------------------------------------------------------------------------- /localflavor/ru/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/ru/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/ru/forms.py -------------------------------------------------------------------------------- /localflavor/ru/ru_regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/ru/ru_regions.py -------------------------------------------------------------------------------- /localflavor/se/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/se/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/se/forms.py -------------------------------------------------------------------------------- /localflavor/se/se_counties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/se/se_counties.py -------------------------------------------------------------------------------- /localflavor/se/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/se/utils.py -------------------------------------------------------------------------------- /localflavor/sg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/sg/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/sg/forms.py -------------------------------------------------------------------------------- /localflavor/si/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/si/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/si/forms.py -------------------------------------------------------------------------------- /localflavor/si/si_postalcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/si/si_postalcodes.py -------------------------------------------------------------------------------- /localflavor/sk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/sk/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/sk/forms.py -------------------------------------------------------------------------------- /localflavor/sk/sk_districts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/sk/sk_districts.py -------------------------------------------------------------------------------- /localflavor/sk/sk_regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/sk/sk_regions.py -------------------------------------------------------------------------------- /localflavor/tn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/tn/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/tn/forms.py -------------------------------------------------------------------------------- /localflavor/tn/tn_governorates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/tn/tn_governorates.py -------------------------------------------------------------------------------- /localflavor/tr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/tr/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/tr/forms.py -------------------------------------------------------------------------------- /localflavor/tr/tr_provinces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/tr/tr_provinces.py -------------------------------------------------------------------------------- /localflavor/tw/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/tw/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/tw/forms.py -------------------------------------------------------------------------------- /localflavor/tw/tw_choices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/tw/tw_choices.py -------------------------------------------------------------------------------- /localflavor/ua/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/ua/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/ua/forms.py -------------------------------------------------------------------------------- /localflavor/ua/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/ua/models.py -------------------------------------------------------------------------------- /localflavor/ua/ua_regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/ua/ua_regions.py -------------------------------------------------------------------------------- /localflavor/us/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/us/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/us/forms.py -------------------------------------------------------------------------------- /localflavor/us/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/us/models.py -------------------------------------------------------------------------------- /localflavor/us/us_states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/us/us_states.py -------------------------------------------------------------------------------- /localflavor/uy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/uy/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/uy/forms.py -------------------------------------------------------------------------------- /localflavor/uy/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/uy/util.py -------------------------------------------------------------------------------- /localflavor/uy/uy_departments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/uy/uy_departments.py -------------------------------------------------------------------------------- /localflavor/ve/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/ve/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/ve/forms.py -------------------------------------------------------------------------------- /localflavor/ve/ve_region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/ve/ve_region.py -------------------------------------------------------------------------------- /localflavor/ve/ve_states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/ve/ve_states.py -------------------------------------------------------------------------------- /localflavor/za/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localflavor/za/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/za/forms.py -------------------------------------------------------------------------------- /localflavor/za/za_provinces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/localflavor/za/za_provinces.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tasks.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- 1 | invoke>=1.2 2 | coverage>=4.4,<4.5 3 | -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_ar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_ar.py -------------------------------------------------------------------------------- /tests/test_at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_at.py -------------------------------------------------------------------------------- /tests/test_au/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_au/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_au/forms.py -------------------------------------------------------------------------------- /tests/test_au/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_au/models.py -------------------------------------------------------------------------------- /tests/test_au/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_au/tests.py -------------------------------------------------------------------------------- /tests/test_be.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_be.py -------------------------------------------------------------------------------- /tests/test_bg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_bg.py -------------------------------------------------------------------------------- /tests/test_br/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_br/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_br/forms.py -------------------------------------------------------------------------------- /tests/test_br/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_br/models.py -------------------------------------------------------------------------------- /tests/test_br/test_br.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_br/test_br.py -------------------------------------------------------------------------------- /tests/test_by/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_by/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_by/forms.py -------------------------------------------------------------------------------- /tests/test_by/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_by/models.py -------------------------------------------------------------------------------- /tests/test_by/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_by/tests.py -------------------------------------------------------------------------------- /tests/test_ca/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_ca/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_ca/forms.py -------------------------------------------------------------------------------- /tests/test_ca/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_ca/models.py -------------------------------------------------------------------------------- /tests/test_ca/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_ca/tests.py -------------------------------------------------------------------------------- /tests/test_ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_ch.py -------------------------------------------------------------------------------- /tests/test_cl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_cl.py -------------------------------------------------------------------------------- /tests/test_cn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_cn.py -------------------------------------------------------------------------------- /tests/test_co.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_co.py -------------------------------------------------------------------------------- /tests/test_cu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_cu/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_cu/forms.py -------------------------------------------------------------------------------- /tests/test_cu/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_cu/models.py -------------------------------------------------------------------------------- /tests/test_cu/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_cu/tests.py -------------------------------------------------------------------------------- /tests/test_cz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_cz.py -------------------------------------------------------------------------------- /tests/test_de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_de.py -------------------------------------------------------------------------------- /tests/test_dk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_dk.py -------------------------------------------------------------------------------- /tests/test_ec/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_ec/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_ec/forms.py -------------------------------------------------------------------------------- /tests/test_ec/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_ec/models.py -------------------------------------------------------------------------------- /tests/test_ec/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_ec/tests.py -------------------------------------------------------------------------------- /tests/test_ee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_ee.py -------------------------------------------------------------------------------- /tests/test_eg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_eg.py -------------------------------------------------------------------------------- /tests/test_es.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_es.py -------------------------------------------------------------------------------- /tests/test_fi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_fi.py -------------------------------------------------------------------------------- /tests/test_fr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_fr/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_fr/forms.py -------------------------------------------------------------------------------- /tests/test_fr/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_fr/models.py -------------------------------------------------------------------------------- /tests/test_fr/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_fr/tests.py -------------------------------------------------------------------------------- /tests/test_gb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_gb.py -------------------------------------------------------------------------------- /tests/test_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_general.py -------------------------------------------------------------------------------- /tests/test_generic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_generic/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_generic/forms.py -------------------------------------------------------------------------------- /tests/test_generic/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_generic/models.py -------------------------------------------------------------------------------- /tests/test_generic/test_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_generic/test_validators.py -------------------------------------------------------------------------------- /tests/test_generic/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_generic/tests.py -------------------------------------------------------------------------------- /tests/test_gh/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_gh/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_gh/models.py -------------------------------------------------------------------------------- /tests/test_gh/selectfields_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_gh/selectfields_html.py -------------------------------------------------------------------------------- /tests/test_gh/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_gh/tests.py -------------------------------------------------------------------------------- /tests/test_gr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_gr.py -------------------------------------------------------------------------------- /tests/test_hr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_hr.py -------------------------------------------------------------------------------- /tests/test_hu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_hu.py -------------------------------------------------------------------------------- /tests/test_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_id.py -------------------------------------------------------------------------------- /tests/test_ie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_ie.py -------------------------------------------------------------------------------- /tests/test_il.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_il.py -------------------------------------------------------------------------------- /tests/test_in.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_in.py -------------------------------------------------------------------------------- /tests/test_ir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_ir.py -------------------------------------------------------------------------------- /tests/test_is.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_is.py -------------------------------------------------------------------------------- /tests/test_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_it.py -------------------------------------------------------------------------------- /tests/test_jp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_jp.py -------------------------------------------------------------------------------- /tests/test_kw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_kw.py -------------------------------------------------------------------------------- /tests/test_lk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_lk/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_lk/models.py -------------------------------------------------------------------------------- /tests/test_lk/selectfields_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_lk/selectfields_html.py -------------------------------------------------------------------------------- /tests/test_lk/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_lk/tests.py -------------------------------------------------------------------------------- /tests/test_lt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_lt.py -------------------------------------------------------------------------------- /tests/test_lv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_lv.py -------------------------------------------------------------------------------- /tests/test_ma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_ma.py -------------------------------------------------------------------------------- /tests/test_md/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_md/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_md/forms.py -------------------------------------------------------------------------------- /tests/test_md/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_md/models.py -------------------------------------------------------------------------------- /tests/test_md/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_md/tests.py -------------------------------------------------------------------------------- /tests/test_mk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_mk/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_mk/forms.py -------------------------------------------------------------------------------- /tests/test_mk/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_mk/models.py -------------------------------------------------------------------------------- /tests/test_mk/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_mk/tests.py -------------------------------------------------------------------------------- /tests/test_mt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_mt.py -------------------------------------------------------------------------------- /tests/test_mx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_mx/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_mx/forms.py -------------------------------------------------------------------------------- /tests/test_mx/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_mx/models.py -------------------------------------------------------------------------------- /tests/test_mx/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_mx/tests.py -------------------------------------------------------------------------------- /tests/test_my.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_my.py -------------------------------------------------------------------------------- /tests/test_nl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_nl/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_nl/forms.py -------------------------------------------------------------------------------- /tests/test_nl/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_nl/models.py -------------------------------------------------------------------------------- /tests/test_nl/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_nl/tests.py -------------------------------------------------------------------------------- /tests/test_no.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_no.py -------------------------------------------------------------------------------- /tests/test_np/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_np/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_np/models.py -------------------------------------------------------------------------------- /tests/test_np/selectfields_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_np/selectfields_html.py -------------------------------------------------------------------------------- /tests/test_np/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_np/tests.py -------------------------------------------------------------------------------- /tests/test_nz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_nz.py -------------------------------------------------------------------------------- /tests/test_pk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_pk/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_pk/forms.py -------------------------------------------------------------------------------- /tests/test_pk/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_pk/models.py -------------------------------------------------------------------------------- /tests/test_pk/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_pk/tests.py -------------------------------------------------------------------------------- /tests/test_pl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_pl.py -------------------------------------------------------------------------------- /tests/test_pt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_pt.py -------------------------------------------------------------------------------- /tests/test_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_py.py -------------------------------------------------------------------------------- /tests/test_ro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_ro.py -------------------------------------------------------------------------------- /tests/test_ru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_ru.py -------------------------------------------------------------------------------- /tests/test_se.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_se.py -------------------------------------------------------------------------------- /tests/test_sg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_sg.py -------------------------------------------------------------------------------- /tests/test_si.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_si.py -------------------------------------------------------------------------------- /tests/test_sk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_sk.py -------------------------------------------------------------------------------- /tests/test_tn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_tn.py -------------------------------------------------------------------------------- /tests/test_tr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_tr.py -------------------------------------------------------------------------------- /tests/test_tw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_tw.py -------------------------------------------------------------------------------- /tests/test_ua/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_ua/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_ua/forms.py -------------------------------------------------------------------------------- /tests/test_ua/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_ua/models.py -------------------------------------------------------------------------------- /tests/test_ua/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_ua/tests.py -------------------------------------------------------------------------------- /tests/test_us/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_us/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_us/forms.py -------------------------------------------------------------------------------- /tests/test_us/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_us/models.py -------------------------------------------------------------------------------- /tests/test_us/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_us/tests.py -------------------------------------------------------------------------------- /tests/test_uy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_uy.py -------------------------------------------------------------------------------- /tests/test_ve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_ve.py -------------------------------------------------------------------------------- /tests/test_za.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tests/test_za.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django/django-localflavor/HEAD/tox.ini --------------------------------------------------------------------------------